:doc:`Inspector <../../inspector>` / Client / list_assessment_targets

***********************
list_assessment_targets
***********************



.. py:method:: Inspector.Client.list_assessment_targets(**kwargs)

  

  Lists the ARNs of the assessment targets within this AWS account. For more information about assessment targets, see `Amazon Inspector Assessment Targets <https://docs.aws.amazon.com/inspector/latest/userguide/inspector_applications.html>`__.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/inspector-2016-02-16/ListAssessmentTargets>`_  


  **Request Syntax**
  ::

    response = client.list_assessment_targets(
        filter={
            'assessmentTargetNamePattern': 'string'
        },
        nextToken='string',
        maxResults=123
    )
    
  :type filter: dict
  :param filter: 

    You can use this parameter to specify a subset of data to be included in the action's response.

     

    For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match.

    

  
    - **assessmentTargetNamePattern** *(string) --* 

      For a record to match a filter, an explicit value or a string that contains a wildcard that is specified for this data type property must match the value of the **assessmentTargetName** property of the  AssessmentTarget data type.

      

    
  
  :type nextToken: string
  :param nextToken: 

    You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the **ListAssessmentTargets** action. Subsequent calls to the action fill **nextToken** in the request with the value of **NextToken** from the previous response to continue listing data.

    

  
  :type maxResults: integer
  :param maxResults: 

    You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500.

    

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

    
    ::

      {
          'assessmentTargetArns': [
              'string',
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **assessmentTargetArns** *(list) --* 

        A list of ARNs that specifies the assessment targets that are returned by the action.

        
        

        - *(string) --* 
    
      

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

        When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the **nextToken** parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null.

        
  
  **Exceptions**
  
  *   :py:class:`Inspector.Client.exceptions.InternalException`

  
  *   :py:class:`Inspector.Client.exceptions.InvalidInputException`

  
  *   :py:class:`Inspector.Client.exceptions.AccessDeniedException`

  

  **Examples**

  Lists the ARNs of the assessment targets within this AWS account. 
  ::

    response = client.list_assessment_targets(
        maxResults=123,
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'assessmentTargetArns': [
            'arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq',
        ],
        'nextToken': '1',
        'ResponseMetadata': {
            '...': '...',
        },
    }

  