Modifies the connection options for your Site-to-Site VPN connection
Source:R/ec2_operations.R
ec2_modify_vpn_connection_options.RdModifies the connection options for your Site-to-Site VPN connection.
See https://www.paws-r-sdk.com/docs/ec2_modify_vpn_connection_options/ for full documentation.
Usage
ec2_modify_vpn_connection_options(
VpnConnectionId,
LocalIpv4NetworkCidr = NULL,
RemoteIpv4NetworkCidr = NULL,
LocalIpv6NetworkCidr = NULL,
RemoteIpv6NetworkCidr = NULL,
TunnelBandwidth = NULL,
DryRun = NULL
)Arguments
- VpnConnectionId
[required] The ID of the Site-to-Site VPN connection.
- LocalIpv4NetworkCidr
The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.
Default:
0.0.0.0/0- RemoteIpv4NetworkCidr
The IPv4 CIDR on the Amazon Web Services side of the VPN connection.
Default:
0.0.0.0/0- LocalIpv6NetworkCidr
The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.
Default:
::/0- RemoteIpv6NetworkCidr
The IPv6 CIDR on the Amazon Web Services side of the VPN connection.
Default:
::/0- TunnelBandwidth
The desired bandwidth specification for the VPN connection.
standardsupports up to 1.25 Gbps per tunnel, whilelargesupports up to 5 Gbps per tunnel. Large bandwidth is only available for VPN connections attached to a transit gateway or to Cloud WAN. The default value isstandard.- 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.