Update Endpoint Access
redshiftserverless_update_endpoint_access | R Documentation |
Updates an Amazon Redshift Serverless managed endpoint¶
Description¶
Updates an Amazon Redshift Serverless managed endpoint.
Usage¶
redshiftserverless_update_endpoint_access(endpointName,
vpcSecurityGroupIds)
Arguments¶
endpointName |
[required] The name of the VPC endpoint to update. |
vpcSecurityGroupIds |
The list of VPC security groups associated with the endpoint after the endpoint is modified. |
Value¶
A list with the following syntax:
list(
endpoint = list(
address = "string",
endpointArn = "string",
endpointCreateTime = as.POSIXct(
"2015-01-01"
),
endpointName = "string",
endpointStatus = "string",
port = 123,
subnetIds = list(
"string"
),
vpcEndpoint = list(
networkInterfaces = list(
list(
availabilityZone = "string",
ipv6Address = "string",
networkInterfaceId = "string",
privateIpAddress = "string",
subnetId = "string"
)
),
vpcEndpointId = "string",
vpcId = "string"
),
vpcSecurityGroups = list(
list(
status = "string",
vpcSecurityGroupId = "string"
)
),
workgroupName = "string"
)
)
Request syntax¶
svc$update_endpoint_access(
endpointName = "string",
vpcSecurityGroupIds = list(
"string"
)
)