:doc:`SecurityHub <../../securityhub>` / Paginator / DescribeActionTargets

*********************
DescribeActionTargets
*********************



.. py:class:: SecurityHub.Paginator.DescribeActionTargets

  ::

    
    paginator = client.get_paginator('describe_action_targets')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`SecurityHub.Client.describe_action_targets`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeActionTargets>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          ActionTargetArns=[
              'string',
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type ActionTargetArns: list
    :param ActionTargetArns: 

      A list of custom action target ARNs for the custom action targets to retrieve.

      

    
      - *(string) --* 

      
  
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

        {
            'ActionTargets': [
                {
                    'ActionTargetArn': 'string',
                    'Name': 'string',
                    'Description': 'string'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ActionTargets** *(list) --* 

          A list of ``ActionTarget`` objects. Each object includes the ``ActionTargetArn``, ``Description``, and ``Name`` of a custom action target available in Security Hub.

          
          

          - *(dict) --* 

            An ``ActionTarget`` object.

            
            

            - **ActionTargetArn** *(string) --* 

              The ARN for the target action.

              
            

            - **Name** *(string) --* 

              The name of the action target.

              
            

            - **Description** *(string) --* 

              The description of the target action.

              
        
      
    