CfnCustomerGatewayProps

class aws_cdk.aws_ec2.CfnCustomerGatewayProps(*, bgp_asn, ip_address, type, device_name=None, tags=None)

Bases: object

Properties for defining a CfnCustomerGateway.

Parameters:
  • bgp_asn (Union[int, float]) – For devices that support BGP, the customer gateway’s BGP ASN. Default: 65000 Default: - 65000

  • ip_address (str) – IPv4 address for the customer gateway device’s outside interface. The address must be static.

  • type (str) – The type of VPN connection that this customer gateway supports ( ipsec.1 ).

  • device_name (Optional[str]) – The name of customer gateway device.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – One or more tags for the customer gateway.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customergateway.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ec2 as ec2

cfn_customer_gateway_props = ec2.CfnCustomerGatewayProps(
    bgp_asn=123,
    ip_address="ipAddress",
    type="type",

    # the properties below are optional
    device_name="deviceName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

bgp_asn

For devices that support BGP, the customer gateway’s BGP ASN.

Default: 65000

Default:
  • 65000

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customergateway.html#cfn-ec2-customergateway-bgpasn

device_name

The name of customer gateway device.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customergateway.html#cfn-ec2-customergateway-devicename

ip_address

IPv4 address for the customer gateway device’s outside interface.

The address must be static.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customergateway.html#cfn-ec2-customergateway-ipaddress

tags

One or more tags for the customer gateway.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customergateway.html#cfn-ec2-customergateway-tags

type

The type of VPN connection that this customer gateway supports ( ipsec.1 ).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-customergateway.html#cfn-ec2-customergateway-type