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¶
maxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento get the next page of results. The default is 20.nextTokenIf your initial
list_vpc_endpointsoperation returns anextToken, you can include the returnednextTokenin subsequentlist_vpc_endpointsoperations, which returns results in the next page.vpcEndpointFiltersFilter 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"
)
)
)