interface CfnDirectConnectGatewayProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DirectConnect.CfnDirectConnectGatewayProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdirectconnect#CfnDirectConnectGatewayProps |
Java | software.amazon.awscdk.services.directconnect.CfnDirectConnectGatewayProps |
Python | aws_cdk.aws_directconnect.CfnDirectConnectGatewayProps |
TypeScript | aws-cdk-lib » aws_directconnect » CfnDirectConnectGatewayProps |
Properties for defining a CfnDirectConnectGateway.
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-lib';
const cfnDirectConnectGatewayProps: directconnect.CfnDirectConnectGatewayProps = {
directConnectGatewayName: 'directConnectGatewayName',
// the properties below are optional
amazonSideAsn: 'amazonSideAsn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| direct | string | The name of the Direct Connect gateway. |
| amazon | string | The autonomous system number (ASN) for the Amazon side of the connection. |
| tags? | Cfn[] | The tags associated with the Direct Connect gateway. |
directConnectGatewayName
Type:
string
The name of the Direct Connect gateway.
amazonSideAsn?
Type:
string
(optional)
The autonomous system number (ASN) for the Amazon side of the connection.
tags?
Type:
Cfn[]
(optional)
The tags associated with the Direct Connect gateway.

.NET
Go
Java
Python
TypeScript