Batch Get Vpc Endpoint
opensearchserviceserverless_batch_get_vpc_endpoint | R Documentation |
Returns attributes for one or more VPC endpoints associated with the current account¶
Description¶
Returns attributes for one or more VPC endpoints associated with the current account. For more information, see Access Amazon OpenSearch Serverless using an interface endpoint.
Usage¶
Arguments¶
ids
[required] A list of VPC endpoint identifiers.
Value¶
A list with the following syntax:
list(
vpcEndpointDetails = list(
list(
createdDate = 123,
failureCode = "string",
failureMessage = "string",
id = "string",
name = "string",
securityGroupIds = list(
"string"
),
status = "PENDING"|"DELETING"|"ACTIVE"|"FAILED",
subnetIds = list(
"string"
),
vpcId = "string"
)
),
vpcEndpointErrorDetails = list(
list(
errorCode = "string",
errorMessage = "string",
id = "string"
)
)
)