CfnVPNGatewayMixinProps

class aws_cdk.mixins_preview.aws_ec2.mixins.CfnVPNGatewayMixinProps(*, amazon_side_asn=None, tags=None, type=None)

Bases: object

Properties for CfnVPNGatewayPropsMixin.

Parameters:
  • 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.

  • type (Optional[str]) – The type of VPN connection the virtual private gateway supports.

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.mixins_preview.aws_ec2 import mixins as ec2_mixins

cfn_vPNGateway_mixin_props = ec2_mixins.CfnVPNGatewayMixinProps(
    amazon_side_asn=123,
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    type="type"
)

Attributes

amazon_side_asn

The private Autonomous System Number (ASN) for the Amazon side of a BGP session.

See:

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

tags

Any tags assigned to the virtual private gateway.

See:

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

type

The type of VPN connection the virtual private gateway supports.

See:

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