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 |
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"
)