interface CfnLagMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DirectConnect.Mixins.CfnLagMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdirectconnect/mixins#CfnLagMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.directconnect.mixins.CfnLagMixinProps |
Python | aws_cdk.mixins_preview.aws_directconnect.mixins.CfnLagMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_directconnect » mixins » CfnLagMixinProps |
Properties for CfnLagPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-lag.html
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 cfnLagMixinProps: directconnect_mixins.CfnLagMixinProps = {
connectionsBandwidth: 'connectionsBandwidth',
lagName: 'lagName',
location: 'location',
minimumLinks: 123,
providerName: 'providerName',
requestMacSec: false,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| connections | string | The bandwidth of the individual physical dedicated connections bundled by the LAG. |
| lag | string | The name of the LAG. |
| location? | string | The location for the LAG. |
| minimum | number | The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational. |
| provider | string | The name of the service provider associated with the requested LAG. |
| request | boolean | IResolvable | Indicates whether you want the LAG to support MAC Security (MACsec). |
| tags? | Cfn[] | The tags associated with the LAG. |
connectionsBandwidth?
Type:
string
(optional)
The bandwidth of the individual physical dedicated connections bundled by the LAG.
lagName?
Type:
string
(optional)
The name of the LAG.
location?
Type:
string
(optional)
The location for the LAG.
minimumLinks?
Type:
number
(optional)
The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.
providerName?
Type:
string
(optional)
The name of the service provider associated with the requested LAG.
requestMacSec?
Type:
boolean | IResolvable
(optional)
Indicates whether you want the LAG to support MAC Security (MACsec).
tags?
Type:
Cfn[]
(optional)
The tags associated with the LAG.

.NET
Go
Java
Python
TypeScript