:doc:`OpenSearchIngestion <../../osis>` / Client / list_pipeline_endpoint_connections

**********************************
list_pipeline_endpoint_connections
**********************************



.. py:method:: OpenSearchIngestion.Client.list_pipeline_endpoint_connections(**kwargs)

  

  Lists the pipeline endpoints connected to pipelines in your account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/osis-2022-01-01/ListPipelineEndpointConnections>`_  


  **Request Syntax**
  ::

    response = client.list_pipeline_endpoint_connections(
        MaxResults=123,
        NextToken='string'
    )
    
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of pipeline endpoint connections to return in the response.

    

  
  :type NextToken: string
  :param NextToken: 

    If your initial ``ListPipelineEndpointConnections`` operation returns a ``nextToken``, you can include the returned ``nextToken`` in subsequent ``ListPipelineEndpointConnections`` operations, which returns results in the next page.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'NextToken': 'string',
          'PipelineEndpointConnections': [
              {
                  'PipelineArn': 'string',
                  'EndpointId': 'string',
                  'Status': 'CREATING'|'ACTIVE'|'CREATE_FAILED'|'DELETING'|'REVOKING'|'REVOKED',
                  'VpcEndpointOwner': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        When ``nextToken`` is returned, there are more results available. The value of ``nextToken`` is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.

        
      

      - **PipelineEndpointConnections** *(list) --* 

        A list of pipeline endpoint connections.

        
        

        - *(dict) --* 

          Represents a connection to a pipeline endpoint, containing details about the endpoint association.

          
          

          - **PipelineArn** *(string) --* 

            The Amazon Resource Name (ARN) of the pipeline in the endpoint connection.

            
          

          - **EndpointId** *(string) --* 

            The unique identifier of the endpoint in the connection.

            
          

          - **Status** *(string) --* 

            The current status of the pipeline endpoint connection.

            
          

          - **VpcEndpointOwner** *(string) --* 

            The Amazon Web Services account ID that owns the VPC endpoint used in this connection.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`OpenSearchIngestion.Client.exceptions.DisabledOperationException`

  
  *   :py:class:`OpenSearchIngestion.Client.exceptions.LimitExceededException`

  
  *   :py:class:`OpenSearchIngestion.Client.exceptions.ValidationException`

  
  *   :py:class:`OpenSearchIngestion.Client.exceptions.InternalException`

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

  