:doc:`BedrockAgentCoreControl <../../bedrock-agentcore-control>` / Paginator / ListGatewayTargets

******************
ListGatewayTargets
******************



.. py:class:: BedrockAgentCoreControl.Paginator.ListGatewayTargets

  ::

    
    paginator = client.get_paginator('list_gateway_targets')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`BedrockAgentCoreControl.Client.list_gateway_targets`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayTargets>`_    


    **Request Syntax**
    ::

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

      The identifier of the gateway to list targets for.

      

    
    :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**

      
      ::

        {
            'items': [
                {
                    'targetId': 'string',
                    'name': 'string',
                    'status': 'CREATING'|'UPDATING'|'UPDATE_UNSUCCESSFUL'|'DELETING'|'READY'|'FAILED'|'SYNCHRONIZING'|'SYNCHRONIZE_UNSUCCESSFUL',
                    'description': 'string',
                    'createdAt': datetime(2015, 1, 1),
                    'updatedAt': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **items** *(list) --* 

          The list of gateway target summaries.

          
          

          - *(dict) --* 

            Contains summary information about a gateway target. A target represents an endpoint that the gateway can connect to.

            
            

            - **targetId** *(string) --* 

              The unique identifier of the target.

              
            

            - **name** *(string) --* 

              The name of the target.

              
            

            - **status** *(string) --* 

              The current status of the target.

              
            

            - **description** *(string) --* 

              The description of the target.

              
            

            - **createdAt** *(datetime) --* 

              The timestamp when the target was created.

              
            

            - **updatedAt** *(datetime) --* 

              The timestamp when the target was last updated.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    