interface CfnConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DirectConnect.Mixins.CfnConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdirectconnect/mixins#CfnConnectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.directconnect.mixins.CfnConnectionMixinProps |
Python | aws_cdk.mixins_preview.aws_directconnect.mixins.CfnConnectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_directconnect » mixins » CfnConnectionMixinProps |
Properties for CfnConnectionPropsMixin.
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 cfnConnectionMixinProps: directconnect_mixins.CfnConnectionMixinProps = {
bandwidth: 'bandwidth',
connectionName: 'connectionName',
lagId: 'lagId',
location: 'location',
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. |
| lag | string | |
| location? | string | The location of the connection. |
| 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
(optional)
The bandwidth of the connection.
connectionName?
Type:
string
(optional)
The name of the connection.
lagId?
Type:
string
(optional)
location?
Type:
string
(optional)
The location of the connection.
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