:doc:`NeptuneGraph <../../neptune-graph>` / Paginator / ListPrivateGraphEndpoints

*************************
ListPrivateGraphEndpoints
*************************



.. py:class:: NeptuneGraph.Paginator.ListPrivateGraphEndpoints

  ::

    
    paginator = client.get_paginator('list_private_graph_endpoints')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`NeptuneGraph.Client.list_private_graph_endpoints`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/ListPrivateGraphEndpoints>`_    


    **Request Syntax**
    ::

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

      The unique identifier of the Neptune Analytics graph.

      

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

      
      ::

        {
            'privateGraphEndpoints': [
                {
                    'vpcId': 'string',
                    'subnetIds': [
                        'string',
                    ],
                    'status': 'CREATING'|'AVAILABLE'|'DELETING'|'FAILED',
                    'vpcEndpointId': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **privateGraphEndpoints** *(list) --* 

          A list of private endpoints for the specified Neptune Analytics graph.

          
          

          - *(dict) --* 

            Details about a private graph endpoint.

            
            

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

              The ID of the VPC in which the private graph endpoint is located.

              
            

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

              The subnet IDs associated with the private graph endpoint.

              
              

              - *(string) --* 
          
            

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

              The status of the private graph endpoint.

              
            

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

              The ID of the VPC endpoint.

              
        
      
        

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

          A token to resume pagination.

          
    