List Pipeline Endpoints
| opensearchingestion_list_pipeline_endpoints | R Documentation |
Lists all pipeline endpoints in your account¶
Description¶
Lists all pipeline endpoints in your account.
Usage¶
opensearchingestion_list_pipeline_endpoints(MaxResults, NextToken)
Arguments¶
MaxResults |
The maximum number of pipeline endpoints to return in the response. |
NextToken |
If your initial |
Value¶
A list with the following syntax:
list(
NextToken = "string",
PipelineEndpoints = list(
list(
PipelineArn = "string",
EndpointId = "string",
Status = "CREATING"|"ACTIVE"|"CREATE_FAILED"|"DELETING"|"REVOKING"|"REVOKED",
VpcId = "string",
VpcOptions = list(
SubnetIds = list(
"string"
),
SecurityGroupIds = list(
"string"
)
),
IngestEndpointUrl = "string"
)
)
)
Request syntax¶
svc$list_pipeline_endpoints(
MaxResults = 123,
NextToken = "string"
)