Provides information to Amazon Web Services about your customer gateway device
Source:R/ec2_operations.R
ec2_create_customer_gateway.RdProvides information to Amazon Web Services about your customer gateway device. The customer gateway device is the appliance at your end of the VPN connection. You must provide the IP address of the customer gateway device’s external interface. The IP address must be static and can be behind a device performing network address translation (NAT).
See https://www.paws-r-sdk.com/docs/ec2_create_customer_gateway/ for full documentation.
Usage
ec2_create_customer_gateway(
BgpAsn = NULL,
PublicIp = NULL,
CertificateArn = NULL,
Type,
TagSpecifications = NULL,
DeviceName = NULL,
IpAddress = NULL,
BgpAsnExtended = NULL,
DryRun = NULL
)Arguments
- BgpAsn
For customer gateway devices that support BGP, specify the device's ASN. You must specify either
BgpAsnorBgpAsnExtendedwhen creating the customer gateway. If the ASN is larger than2,147,483,647, you must useBgpAsnExtended.Default: 65000
Valid values:
1to2,147,483,647- PublicIp
This member has been deprecated. The Internet-routable IP address for the customer gateway's outside interface. The address must be static.
- CertificateArn
The Amazon Resource Name (ARN) for the customer gateway certificate.
- Type
[required] The type of VPN connection that this customer gateway supports (
ipsec.1).The tags to apply to the customer gateway.
- DeviceName
A name for the customer gateway device.
Length Constraints: Up to 255 characters.
- IpAddress
The IP address for the customer gateway device's outside interface. The address must be static. If
OutsideIpAddressTypein your VPN connection options is set toPrivateIpv4, you can use an RFC6598 or RFC1918 private IPv4 address. IfOutsideIpAddressTypeis set toIpv6, you can use an IPv6 address.- BgpAsnExtended
For customer gateway devices that support BGP, specify the device's ASN. You must specify either
BgpAsnorBgpAsnExtendedwhen creating the customer gateway. If the ASN is larger than2,147,483,647, you must useBgpAsnExtended.Valid values:
2,147,483,648to4,294,967,295- 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.