interface CfnDirectConnectGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DirectConnect.CfnDirectConnectGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdirectconnect#CfnDirectConnectGatewayMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.directconnect.CfnDirectConnectGatewayMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_directconnect.CfnDirectConnectGatewayMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_directconnect » CfnDirectConnectGatewayMixinProps |
Properties for CfnDirectConnectGatewayPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_directconnect as directconnect } from '@aws-cdk/cfn-property-mixins';
const cfnDirectConnectGatewayMixinProps: directconnect.CfnDirectConnectGatewayMixinProps = {
amazonSideAsn: 'amazonSideAsn',
directConnectGatewayName: 'directConnectGatewayName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| amazon | string | The autonomous system number (ASN) for the Amazon side of the connection. |
| direct | string | The name of the Direct Connect gateway. |
| tags? | Cfn[] | The tags associated with the Direct Connect gateway. |
amazonSideAsn?
Type:
string
(optional)
The autonomous system number (ASN) for the Amazon side of the connection.
directConnectGatewayName?
Type:
string
(optional)
The name of the Direct Connect gateway.
tags?
Type:
Cfn[]
(optional)
The tags associated with the Direct Connect gateway.

.NET
Go
Java
Python
TypeScript