VpnGatewayProps
- class aws_cdk.aws_ec2.VpnGatewayProps(*, type, amazon_side_asn=None)
Bases:
object
The VpnGateway Properties.
- Parameters:
type (
str
) – Default type ipsec.1.amazon_side_asn (
Union
[int
,float
,None
]) – Explicitly specify an Asn or let aws pick an Asn for you. Default: 65000
- 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 vpn_gateway_props = ec2.VpnGatewayProps( type="type", # the properties below are optional amazon_side_asn=123 )
Attributes
- amazon_side_asn
Explicitly specify an Asn or let aws pick an Asn for you.
- Default:
65000
- type
Default type ipsec.1.