interface CfnDirectConnectGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DirectConnect.Mixins.CfnDirectConnectGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdirectconnect/mixins#CfnDirectConnectGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.directconnect.mixins.CfnDirectConnectGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_directconnect.mixins.CfnDirectConnectGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_directconnect » mixins » 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 { mixins as directconnect_mixins } from '@aws-cdk/mixins-preview/aws-directconnect';
const cfnDirectConnectGatewayMixinProps: directconnect_mixins.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