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

*****************************************
ListServiceNetworkVpcEndpointAssociations
*****************************************



.. py:class:: VPCLattice.Paginator.ListServiceNetworkVpcEndpointAssociations

  ::

    
    paginator = client.get_paginator('list_service_network_vpc_endpoint_associations')

  
  

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

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

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


    **Request Syntax**
    ::

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

      The ID of the service network associated with the VPC endpoint.

      

    
    :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': [
                {
                    'vpcEndpointId': 'string',
                    'vpcId': 'string',
                    'vpcEndpointOwnerId': 'string',
                    'id': 'string',
                    'state': 'string',
                    'serviceNetworkArn': 'string',
                    'createdAt': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

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

          Information about the association between the VPC endpoint and service network.

          
          

          - *(dict) --* 

            Describes the association between a service network and a VPC endpoint.

            
            

            - **vpcEndpointId** *(string) --* 

              The ID of the VPC endpoint associated with the service network.

              
            

            - **vpcId** *(string) --* 

              The ID of the VPC for the association.

              
            

            - **vpcEndpointOwnerId** *(string) --* 

              The owner of the VPC endpoint associated with the service network.

              
            

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

              The ID of the association.

              
            

            - **state** *(string) --* 

              The state of the association.

              
            

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

              The Amazon Resource Name (ARN) of the service network.

              
            

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

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

              
        
      
        

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

          A token to resume pagination.

          
    