CfnVPNGatewayProps
- class aws_cdk.aws_ec2.CfnVPNGatewayProps(*, type, amazon_side_asn=None, tags=None)
 Bases:
objectProperties for defining a
CfnVPNGateway.- Parameters:
 type (
str) – The type of VPN connection the virtual private gateway supports.amazon_side_asn (
Union[int,float,None]) – The private Autonomous System Number (ASN) for the Amazon side of a BGP session.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Any tags assigned to the virtual private gateway.
- See:
 http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngateway.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_vPNGateway_props = ec2.CfnVPNGatewayProps( type="type", # the properties below are optional amazon_side_asn=123, tags=[CfnTag( key="key", value="value" )] )
Attributes
- amazon_side_asn
 The private Autonomous System Number (ASN) for the Amazon side of a BGP session.
- tags
 Any tags assigned to the virtual private gateway.
- type
 The type of VPN connection the virtual private gateway supports.