:doc:`VPCLattice <../../vpc-lattice>` / Paginator / ListResourceGateways

********************
ListResourceGateways
********************



.. py:class:: VPCLattice.Paginator.ListResourceGateways

  ::

    
    paginator = client.get_paginator('list_resource_gateways')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`VPCLattice.Client.list_resource_gateways`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListResourceGateways>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': '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**

      
      ::

        {
            'items': [
                {
                    'name': 'string',
                    'id': 'string',
                    'arn': 'string',
                    'status': 'ACTIVE'|'CREATE_IN_PROGRESS'|'UPDATE_IN_PROGRESS'|'DELETE_IN_PROGRESS'|'CREATE_FAILED'|'UPDATE_FAILED'|'DELETE_FAILED',
                    'vpcIdentifier': 'string',
                    'subnetIds': [
                        'string',
                    ],
                    'securityGroupIds': [
                        'string',
                    ],
                    'ipAddressType': 'IPV4'|'IPV6'|'DUALSTACK',
                    'ipv4AddressesPerEni': 123,
                    'createdAt': datetime(2015, 1, 1),
                    'lastUpdatedAt': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

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

          Information about the resource gateways.

          
          

          - *(dict) --* 

            Summary information about a resource gateway.

            
            

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

              The name of the resource gateway.

              
            

            - **id** *(string) --* 

              The ID of the resource gateway.

              
            

            - **arn** *(string) --* 

              The Amazon Resource Name (ARN) of the resource gateway.

              
            

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

              The name of the resource gateway.

              
            

            - **vpcIdentifier** *(string) --* 

              The ID of the VPC for the resource gateway.

              
            

            - **subnetIds** *(list) --* 

              The IDs of the VPC subnets for the resource gateway.

              
              

              - *(string) --* 
          
            

            - **securityGroupIds** *(list) --* 

              The IDs of the security groups applied to the resource gateway.

              
              

              - *(string) --* 
          
            

            - **ipAddressType** *(string) --* 

              The type of IP address used by the resource gateway.

              
            

            - **ipv4AddressesPerEni** *(integer) --* 

              The number of IPv4 addresses in each ENI for the resource gateway.

              
            

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

              The date and time that the VPC endpoint association was created, in ISO-8601 format.

              
            

            - **lastUpdatedAt** *(datetime) --* 

              The most recent date and time that the resource gateway was updated, in ISO-8601 format.

              
        
      
        

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

          A token to resume pagination.

          
    