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

*******************
list_rules_packages
*******************



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

  

  Lists all available Amazon Inspector rules packages.

  

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


  **Request Syntax**
  ::

    response = client.list_rules_packages(
        nextToken='string',
        maxResults=123
    )
    
  :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 **ListRulesPackages** 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**

    
    ::

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

    

    - *(dict) --* 
      

      - **rulesPackageArns** *(list) --* 

        The list of ARNs that specifies the rules packages 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 all available Amazon Inspector rules packages.
  ::

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

  
  Expected Output:
  ::

    {
        'nextToken': '1',
        'rulesPackageArns': [
            'arn:aws:inspector:us-west-2:758058086616:rulespackage/0-9hgA516p',
            'arn:aws:inspector:us-west-2:758058086616:rulespackage/0-H5hpSawc',
            'arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ',
            'arn:aws:inspector:us-west-2:758058086616:rulespackage/0-vg5GGHSD',
        ],
        'ResponseMetadata': {
            '...': '...',
        },
    }

  