:doc:`VPCLattice <../../vpc-lattice>` / Client / list_resource_configurations

****************************
list_resource_configurations
****************************



.. py:method:: VPCLattice.Client.list_resource_configurations(**kwargs)

  

  Lists the resource configurations owned by or shared with this account.

  

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


  **Request Syntax**
  ::

    response = client.list_resource_configurations(
        resourceGatewayIdentifier='string',
        resourceConfigurationGroupIdentifier='string',
        domainVerificationIdentifier='string',
        maxResults=123,
        nextToken='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 maxResults: integer
  :param maxResults: 

    The maximum page size.

    

  
  :type nextToken: string
  :param nextToken: 

    A pagination token for the next page of results.

    

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

        If there are additional results, a pagination token for the next page of results.

        
  
  **Exceptions**
  
  *   :py:class:`VPCLattice.Client.exceptions.ValidationException`

  
  *   :py:class:`VPCLattice.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`VPCLattice.Client.exceptions.ThrottlingException`

  
  *   :py:class:`VPCLattice.Client.exceptions.InternalServerException`

  