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

**************************
ListResourceConfigurations
**************************



.. py:class:: VPCLattice.Paginator.ListResourceConfigurations

  ::

    
    paginator = client.get_paginator('list_resource_configurations')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          resourceGatewayIdentifier='string',
          resourceConfigurationGroupIdentifier='string',
          domainVerificationIdentifier='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type resourceGatewayIdentifier: string
    :param resourceGatewayIdentifier: 

      The ID of the resource gateway for the resource configuration.

      

    
    :type resourceConfigurationGroupIdentifier: string
    :param resourceConfigurationGroupIdentifier: 

      The ID of the resource configuration of type ``Group``.

      

    
    :type domainVerificationIdentifier: string
    :param domainVerificationIdentifier: 

      The domain verification ID.

      

    
    :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': [
                {
                    'id': 'string',
                    'name': 'string',
                    'arn': 'string',
                    'resourceGatewayId': 'string',
                    'resourceConfigurationGroupId': 'string',
                    'type': 'GROUP'|'CHILD'|'SINGLE'|'ARN',
                    'status': 'ACTIVE'|'CREATE_IN_PROGRESS'|'UPDATE_IN_PROGRESS'|'DELETE_IN_PROGRESS'|'CREATE_FAILED'|'UPDATE_FAILED'|'DELETE_FAILED',
                    'amazonManaged': True|False,
                    'createdAt': datetime(2015, 1, 1),
                    'lastUpdatedAt': datetime(2015, 1, 1),
                    'customDomainName': 'string',
                    'domainVerificationId': 'string',
                    'groupDomain': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

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

          Information about the resource configurations.

          
          

          - *(dict) --* 

            Summary information about a resource configuration.

            
            

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

              The ID of the resource configuration.

              
            

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

              The name of the resource configuration.

              
            

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

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

              
            

            - **resourceGatewayId** *(string) --* 

              The ID of the resource gateway.

              
            

            - **resourceConfigurationGroupId** *(string) --* 

              The ID of the group resource configuration.

              
            

            - **type** *(string) --* 

              The type of resource configuration.

               

              
              * ``SINGLE`` - A single resource.
               
              * ``GROUP`` - A group of resources. You must create a group resource configuration before you create a child resource configuration.
               
              * ``CHILD`` - A single resource that is part of a group resource configuration.
               
              * ``ARN`` - An Amazon Web Services resource.
              

              
            

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

              The status of the resource configuration.

              
            

            - **amazonManaged** *(boolean) --* 

              Indicates whether the resource configuration was created and is managed by Amazon.

              
            

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

              The date and time that the resource configuration was created, in ISO-8601 format.

              
            

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

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

              
            

            - **customDomainName** *(string) --* 

              The custom domain name.

              
            

            - **domainVerificationId** *(string) --* 

              The domain verification ID.

              
            

            - **groupDomain** *(string) --* 

              (GROUP) The group domain for a group resource configuration. Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain.

              
        
      
        

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

          A token to resume pagination.

          
    