CfnDirectConnectGatewayProps
- class aws_cdk.aws_directconnect.CfnDirectConnectGatewayProps(*, direct_connect_gateway_name, amazon_side_asn=None, tags=None)
Bases:
objectProperties for defining a
CfnDirectConnectGateway.- Parameters:
direct_connect_gateway_name (
str) – The name of the Direct Connect gateway.amazon_side_asn (
Optional[str]) – The autonomous system number (ASN) for the Amazon side of the connection.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags associated with the Direct Connect gateway.
- See:
- 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 import aws_directconnect as directconnect cfn_direct_connect_gateway_props = directconnect.CfnDirectConnectGatewayProps( direct_connect_gateway_name="directConnectGatewayName", # the properties below are optional amazon_side_asn="amazonSideAsn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- amazon_side_asn
The autonomous system number (ASN) for the Amazon side of the connection.
- direct_connect_gateway_name
The name of the Direct Connect gateway.
- tags
The tags associated with the Direct Connect gateway.