interface CfnLagProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DirectConnect.CfnLagProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdirectconnect#CfnLagProps |
Java | software.amazon.awscdk.services.directconnect.CfnLagProps |
Python | aws_cdk.aws_directconnect.CfnLagProps |
TypeScript | aws-cdk-lib » aws_directconnect » CfnLagProps |
Properties for defining a CfnLag.
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 { aws_directconnect as directconnect } from 'aws-cdk-lib';
const cfnLagProps: directconnect.CfnLagProps = {
connectionsBandwidth: 'connectionsBandwidth',
lagName: 'lagName',
location: 'location',
// the properties below are optional
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
The bandwidth of the individual physical dedicated connections bundled by the LAG.
lagName
Type:
string
The name of the LAG.
location
Type:
string
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