CfnDirectConnectGatewayMixinProps

class aws_cdk.mixins_preview.aws_directconnect.mixins.CfnDirectConnectGatewayMixinProps(*, amazon_side_asn=None, direct_connect_gateway_name=None, tags=None)

Bases: object

Properties for CfnDirectConnectGatewayPropsMixin.

Parameters:
  • amazon_side_asn (Optional[str]) – The autonomous system number (ASN) for the Amazon side of the connection.

  • direct_connect_gateway_name (Optional[str]) – The name of the Direct Connect gateway.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags associated with the Direct Connect gateway.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-directconnectgateway.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# 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_directconnect import mixins as directconnect_mixins

cfn_direct_connect_gateway_mixin_props = directconnect_mixins.CfnDirectConnectGatewayMixinProps(
    amazon_side_asn="amazonSideAsn",
    direct_connect_gateway_name="directConnectGatewayName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

amazon_side_asn

The autonomous system number (ASN) for the Amazon side of the connection.

See:

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

direct_connect_gateway_name

The name of the Direct Connect gateway.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-directconnectgateway.html#cfn-directconnect-directconnectgateway-directconnectgatewayname

tags

The tags associated with the Direct Connect gateway.

See:

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