Skip to content

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 list_pipeline_endpoints operation returns a NextToken, you can include the returned NextToken in subsequent list_pipeline_endpoints operations, which returns results in the next page.

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