Update Vpc Endpoint
opensearchserviceserverless_update_vpc_endpoint | R Documentation |
Updates an OpenSearch Serverless-managed interface endpoint¶
Description¶
Updates an OpenSearch Serverless-managed interface endpoint. For more information, see Access Amazon OpenSearch Serverless using an interface endpoint.
Usage¶
opensearchserviceserverless_update_vpc_endpoint(addSecurityGroupIds,
addSubnetIds, clientToken, id, removeSecurityGroupIds, removeSubnetIds)
Arguments¶
addSecurityGroupIds
The unique identifiers of the security groups to add to the endpoint. Security groups define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.
addSubnetIds
The ID of one or more subnets to add to the endpoint.
clientToken
Unique, case-sensitive identifier to ensure idempotency of the request.
id
[required] The unique identifier of the interface endpoint to update.
removeSecurityGroupIds
The unique identifiers of the security groups to remove from the endpoint.
removeSubnetIds
The unique identifiers of the subnets to remove from the endpoint.
Value¶
A list with the following syntax:
list(
UpdateVpcEndpointDetail = list(
id = "string",
lastModifiedDate = 123,
name = "string",
securityGroupIds = list(
"string"
),
status = "PENDING"|"DELETING"|"ACTIVE"|"FAILED",
subnetIds = list(
"string"
)
)
)