List Vpc Endpoints
opensearchserviceserverless_list_vpc_endpoints | R Documentation |
Returns the OpenSearch Serverless-managed interface VPC endpoints associated with the current account¶
Description¶
Returns the OpenSearch Serverless-managed interface VPC endpoints associated with the current account. For more information, see Access Amazon OpenSearch Serverless using an interface endpoint.
Usage¶
Arguments¶
maxResults
An optional parameter that specifies the maximum number of results to return. You can use
nextToken
to get the next page of results. The default is 20.nextToken
If your initial
list_vpc_endpoints
operation returns anextToken
, you can include the returnednextToken
in subsequentlist_vpc_endpoints
operations, which returns results in the next page.vpcEndpointFilters
Filter the results according to the current status of the VPC endpoint. Possible statuses are
CREATING
,DELETING
,UPDATING
,ACTIVE
, andFAILED
.
Value¶
A list with the following syntax:
list(
nextToken = "string",
vpcEndpointSummaries = list(
list(
id = "string",
name = "string",
status = "PENDING"|"DELETING"|"ACTIVE"|"FAILED"
)
)
)