Create Vpc Endpoint
elasticsearchservice_create_vpc_endpoint | R Documentation |
Creates an Amazon OpenSearch Service-managed VPC endpoint¶
Description¶
Creates an Amazon OpenSearch Service-managed VPC endpoint.
Usage¶
Arguments¶
DomainArn
[required] The Amazon Resource Name (ARN) of the domain to grant access to.
VpcOptions
[required] Options to specify the subnets and security groups for the endpoint.
ClientToken
Unique, case-sensitive identifier to ensure idempotency of the request.
Value¶
A list with the following syntax:
list(
VpcEndpoint = list(
VpcEndpointId = "string",
VpcEndpointOwner = "string",
DomainArn = "string",
VpcOptions = list(
VPCId = "string",
SubnetIds = list(
"string"
),
AvailabilityZones = list(
"string"
),
SecurityGroupIds = list(
"string"
)
),
Status = "CREATING"|"CREATE_FAILED"|"ACTIVE"|"UPDATING"|"UPDATE_FAILED"|"DELETING"|"DELETE_FAILED",
Endpoint = "string"
)
)