Modify Vpc Endpoint Service Configuration
ec2_modify_vpc_endpoint_service_configuration | R Documentation |
Modifies the attributes of the specified VPC endpoint service configuration¶
Description¶
Modifies the attributes of the specified VPC endpoint service configuration.
If you set or modify the private DNS name, you must prove that you own the private DNS domain name.
Usage¶
ec2_modify_vpc_endpoint_service_configuration(DryRun, ServiceId,
PrivateDnsName, RemovePrivateDnsName, AcceptanceRequired,
AddNetworkLoadBalancerArns, RemoveNetworkLoadBalancerArns,
AddGatewayLoadBalancerArns, RemoveGatewayLoadBalancerArns,
AddSupportedIpAddressTypes, RemoveSupportedIpAddressTypes,
AddSupportedRegions, RemoveSupportedRegions)
Arguments¶
DryRun
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation
. Otherwise, it isUnauthorizedOperation
.ServiceId
[required] The ID of the service.
PrivateDnsName
(Interface endpoint configuration) The private DNS name to assign to the endpoint service.
RemovePrivateDnsName
(Interface endpoint configuration) Removes the private DNS name of the endpoint service.
AcceptanceRequired
Indicates whether requests to create an endpoint to the service must be accepted.
AddNetworkLoadBalancerArns
The Amazon Resource Names (ARNs) of Network Load Balancers to add to the service configuration.
RemoveNetworkLoadBalancerArns
The Amazon Resource Names (ARNs) of Network Load Balancers to remove from the service configuration.
AddGatewayLoadBalancerArns
The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to the service configuration.
RemoveGatewayLoadBalancerArns
The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove from the service configuration.
AddSupportedIpAddressTypes
The IP address types to add to the service configuration.
RemoveSupportedIpAddressTypes
The IP address types to remove from the service configuration.
AddSupportedRegions
The supported Regions to add to the service configuration.
RemoveSupportedRegions
The supported Regions to remove from the service configuration.
Value¶
A list with the following syntax:
Request syntax¶
svc$modify_vpc_endpoint_service_configuration(
DryRun = TRUE|FALSE,
ServiceId = "string",
PrivateDnsName = "string",
RemovePrivateDnsName = TRUE|FALSE,
AcceptanceRequired = TRUE|FALSE,
AddNetworkLoadBalancerArns = list(
"string"
),
RemoveNetworkLoadBalancerArns = list(
"string"
),
AddGatewayLoadBalancerArns = list(
"string"
),
RemoveGatewayLoadBalancerArns = list(
"string"
),
AddSupportedIpAddressTypes = list(
"string"
),
RemoveSupportedIpAddressTypes = list(
"string"
),
AddSupportedRegions = list(
"string"
),
RemoveSupportedRegions = list(
"string"
)
)