Skip to content

List Vpc Endpoints

opensearchservice_list_vpc_endpoints R Documentation

Retrieves all Amazon OpenSearch Service-managed VPC endpoints in the current Amazon Web Services account and Region

Description

Retrieves all Amazon OpenSearch Service-managed VPC endpoints in the current Amazon Web Services account and Region.

Usage

opensearchservice_list_vpc_endpoints(NextToken)

Arguments

NextToken

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

Value

A list with the following syntax:

list(
  VpcEndpointSummaryList = list(
    list(
      VpcEndpointId = "string",
      VpcEndpointOwner = "string",
      DomainArn = "string",
      Status = "CREATING"|"CREATE_FAILED"|"ACTIVE"|"UPDATING"|"UPDATE_FAILED"|"DELETING"|"DELETE_FAILED"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_vpc_endpoints(
  NextToken = "string"
)