:doc:`FIS <../../fis>` / Client / list_experiment_resolved_targets

********************************
list_experiment_resolved_targets
********************************



.. py:method:: FIS.Client.list_experiment_resolved_targets(**kwargs)

  

  Lists the resolved targets information of the specified experiment.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ListExperimentResolvedTargets>`_  


  **Request Syntax**
  ::

    response = client.list_experiment_resolved_targets(
        experimentId='string',
        maxResults=123,
        nextToken='string',
        targetName='string'
    )
    
  :type experimentId: string
  :param experimentId: **[REQUIRED]** 

    The ID of the experiment.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

    

  
  :type nextToken: string
  :param nextToken: 

    The token for the next page of results.

    

  
  :type targetName: string
  :param targetName: 

    The name of the target.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'resolvedTargets': [
              {
                  'resourceType': 'string',
                  'targetName': 'string',
                  'targetInformation': {
                      'string': 'string'
                  }
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **resolvedTargets** *(list) --* 

        The resolved targets.

        
        

        - *(dict) --* 

          Describes a resolved target.

          
          

          - **resourceType** *(string) --* 

            The resource type of the target.

            
          

          - **targetName** *(string) --* 

            The name of the target.

            
          

          - **targetInformation** *(dict) --* 

            Information about the target.

            
            

            - *(string) --* 
              

              - *(string) --* 
        
      
      
    
      

      - **nextToken** *(string) --* 

        The token to use to retrieve the next page of results. This value is null when there are no more results to return.

        
  
  **Exceptions**
  
  *   :py:class:`FIS.Client.exceptions.ValidationException`

  
  *   :py:class:`FIS.Client.exceptions.ResourceNotFoundException`

  