Modify Vpc Endpoint Service Configuration
| ec2_modify_vpc_endpoint_service_configuration | R Documentation |
Modifies the attributes of your VPC endpoint service configuration¶
Description¶
Modifies the attributes of your VPC endpoint service configuration. You can change the Network Load Balancers or Gateway Load Balancers for your service, and you can specify whether acceptance is required for requests to connect to your endpoint service through an interface VPC endpoint.
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)
Arguments¶
DryRunChecks 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.
AcceptanceRequiredIndicates whether requests to create an endpoint to your service must be accepted.
AddNetworkLoadBalancerArnsThe Amazon Resource Names (ARNs) of Network Load Balancers to add to your service configuration.
RemoveNetworkLoadBalancerArnsThe Amazon Resource Names (ARNs) of Network Load Balancers to remove from your service configuration.
AddGatewayLoadBalancerArnsThe Amazon Resource Names (ARNs) of Gateway Load Balancers to add to your service configuration.
RemoveGatewayLoadBalancerArnsThe Amazon Resource Names (ARNs) of Gateway Load Balancers to remove from your service configuration.
AddSupportedIpAddressTypesThe IP address types to add to your service configuration.
RemoveSupportedIpAddressTypesThe IP address types to remove from your 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"
)
)