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. import aws_cdk.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
- Return type
Union
[int
,float
,None
]
-
type
¶ Default type ipsec.1.
- Return type
str