interface CfnConnectionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DirectConnect.CfnConnectionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdirectconnect#CfnConnectionProps |
Java | software.amazon.awscdk.services.directconnect.CfnConnectionProps |
Python | aws_cdk.aws_directconnect.CfnConnectionProps |
TypeScript | aws-cdk-lib » aws_directconnect » CfnConnectionProps |
Properties for defining a CfnConnection.
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 cfnConnectionProps: directconnect.CfnConnectionProps = {
bandwidth: 'bandwidth',
connectionName: 'connectionName',
location: 'location',
// the properties below are optional
lagId: 'lagId',
providerName: 'providerName',
requestMacSec: false,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| bandwidth | string | The bandwidth of the connection. |
| connection | string | The name of the connection. |
| location | string | The location of the connection. |
| lag | string | ILag | |
| provider | string | The name of the service provider associated with the requested connection. |
| request | boolean | IResolvable | Indicates whether you want the connection to support MAC Security (MACsec). |
| tags? | Cfn[] | The tags associated with the connection. |
bandwidth
Type:
string
The bandwidth of the connection.
connectionName
Type:
string
The name of the connection.
location
Type:
string
The location of the connection.
lagId?
Type:
string | ILag
(optional)
providerName?
Type:
string
(optional)
The name of the service provider associated with the requested connection.
requestMacSec?
Type:
boolean | IResolvable
(optional)
Indicates whether you want the connection to support MAC Security (MACsec).
tags?
Type:
Cfn[]
(optional)
The tags associated with the connection.

.NET
Go
Java
Python
TypeScript