Skip to content

List Pipeline Endpoint Connections

opensearchingestion_list_pipeline_endpoint_connections R Documentation

Lists the pipeline endpoints connected to pipelines in your account

Description

Lists the pipeline endpoints connected to pipelines in your account.

Usage

opensearchingestion_list_pipeline_endpoint_connections(MaxResults,
  NextToken)

Arguments

MaxResults

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

NextToken

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

Value

A list with the following syntax:

list(
  NextToken = "string",
  PipelineEndpointConnections = list(
    list(
      PipelineArn = "string",
      EndpointId = "string",
      Status = "CREATING"|"ACTIVE"|"CREATE_FAILED"|"DELETING"|"REVOKING"|"REVOKED",
      VpcEndpointOwner = "string"
    )
  )
)

Request syntax

svc$list_pipeline_endpoint_connections(
  MaxResults = 123,
  NextToken = "string"
)