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

**************************************
ListServiceNetworkResourceAssociations
**************************************



.. py:class:: VPCLattice.Paginator.ListServiceNetworkResourceAssociations

  ::

    
    paginator = client.get_paginator('list_service_network_resource_associations')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          serviceNetworkIdentifier='string',
          resourceConfigurationIdentifier='string',
          includeChildren=True|False,
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type serviceNetworkIdentifier: string
    :param serviceNetworkIdentifier: 

      The ID of the service network.

      

    
    :type resourceConfigurationIdentifier: string
    :param resourceConfigurationIdentifier: 

      The ID of the resource configuration.

      

    
    :type includeChildren: boolean
    :param includeChildren: 

      Include service network resource associations of the child resource configuration with the grouped resource configuration.

       

      The type is boolean and the default value is false.

      

    
    :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',
                    'arn': 'string',
                    'status': 'CREATE_IN_PROGRESS'|'ACTIVE'|'PARTIAL'|'DELETE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_FAILED',
                    'createdBy': 'string',
                    'createdAt': datetime(2015, 1, 1),
                    'resourceConfigurationId': 'string',
                    'resourceConfigurationArn': 'string',
                    'resourceConfigurationName': 'string',
                    'serviceNetworkId': 'string',
                    'serviceNetworkArn': 'string',
                    'serviceNetworkName': 'string',
                    'dnsEntry': {
                        'domainName': 'string',
                        'hostedZoneId': 'string'
                    },
                    'privateDnsEntry': {
                        'domainName': 'string',
                        'hostedZoneId': 'string'
                    },
                    'isManagedAssociation': True|False,
                    'failureCode': 'string',
                    'privateDnsEnabled': True|False
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

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

          Information about the associations.

          
          

          - *(dict) --* 

            Summary information about an association between a service network and a resource configuration.

            
            

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

              The ID of the association between the service network and resource configuration.

              
            

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

              The Amazon Resource Name (ARN) of the association.

              
            

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

              The status of the service network’s association with the resource configuration. If the deletion fails, try to delete again.

              
            

            - **createdBy** *(string) --* 

              The account that created the association.

              
            

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

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

              
            

            - **resourceConfigurationId** *(string) --* 

              The ID of the resource configuration associated with the service network.

              
            

            - **resourceConfigurationArn** *(string) --* 

              The Amazon Resource Name (ARN) of the association.

              
            

            - **resourceConfigurationName** *(string) --* 

              The name of the resource configuration associated with the service network.

              
            

            - **serviceNetworkId** *(string) --* 

              The ID of the service network associated with the resource configuration.

              
            

            - **serviceNetworkArn** *(string) --* 

              The Amazon Resource Name (ARN) of the service network associated with the resource configuration.

              
            

            - **serviceNetworkName** *(string) --* 

              The name of the service network associated with the resource configuration.

              
            

            - **dnsEntry** *(dict) --* 

              The DNS entry for the service.

              
              

              - **domainName** *(string) --* 

                The domain name of the service.

                
              

              - **hostedZoneId** *(string) --* 

                The ID of the hosted zone.

                
          
            

            - **privateDnsEntry** *(dict) --* 

              The private DNS entry for the service.

              
              

              - **domainName** *(string) --* 

                The domain name of the service.

                
              

              - **hostedZoneId** *(string) --* 

                The ID of the hosted zone.

                
          
            

            - **isManagedAssociation** *(boolean) --* 

              Specifies whether the association is managed by Amazon.

              
            

            - **failureCode** *(string) --* 

              The failure code.

              
            

            - **privateDnsEnabled** *(boolean) --* 

              Indicates if private DNS is enabled for the service network resource association.

              
        
      
        

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

          A token to resume pagination.

          
    