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(id, addSubnetIds,
removeSubnetIds, addSecurityGroupIds, removeSecurityGroupIds,
clientToken)
Arguments¶
id |
[required] The unique identifier of the interface endpoint to update. |
addSubnetIds |
The ID of one or more subnets to add to the endpoint. |
removeSubnetIds |
The unique identifiers of the subnets to remove from the endpoint. |
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. |
removeSecurityGroupIds |
The unique identifiers of the security groups to remove from the endpoint. |
clientToken |
Unique, case-sensitive identifier to ensure idempotency of the request. |
Value¶
A list with the following syntax:
list(
UpdateVpcEndpointDetail = list(
id = "string",
name = "string",
status = "PENDING"|"DELETING"|"ACTIVE"|"FAILED",
subnetIds = list(
"string"
),
securityGroupIds = list(
"string"
),
lastModifiedDate = 123
)
)
Request syntax¶
svc$update_vpc_endpoint(
id = "string",
addSubnetIds = list(
"string"
),
removeSubnetIds = list(
"string"
),
addSecurityGroupIds = list(
"string"
),
removeSecurityGroupIds = list(
"string"
),
clientToken = "string"
)