CfnLagMixinProps

class aws_cdk.mixins_preview.aws_directconnect.mixins.CfnLagMixinProps(*, connections_bandwidth=None, lag_name=None, location=None, minimum_links=None, provider_name=None, request_mac_sec=None, tags=None)

Bases: object

Properties for CfnLagPropsMixin.

Parameters:
  • connections_bandwidth (Optional[str]) – The bandwidth of the individual physical dedicated connections bundled by the LAG.

  • lag_name (Optional[str]) – The name of the LAG.

  • location (Optional[str]) – The location for the LAG.

  • minimum_links (Union[int, float, None]) – The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.

  • provider_name (Optional[str]) – The name of the service provider associated with the requested LAG.

  • request_mac_sec (Union[bool, IResolvable, None]) – Indicates whether you want the LAG to support MAC Security (MACsec).

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags associated with the LAG.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-lag.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_directconnect import mixins as directconnect_mixins

cfn_lag_mixin_props = directconnect_mixins.CfnLagMixinProps(
    connections_bandwidth="connectionsBandwidth",
    lag_name="lagName",
    location="location",
    minimum_links=123,
    provider_name="providerName",
    request_mac_sec=False,
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

connections_bandwidth

The bandwidth of the individual physical dedicated connections bundled by the LAG.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-lag.html#cfn-directconnect-lag-connectionsbandwidth

lag_name

The name of the LAG.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-lag.html#cfn-directconnect-lag-lagname

location

The location for the LAG.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-lag.html#cfn-directconnect-lag-location

The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-lag.html#cfn-directconnect-lag-minimumlinks

provider_name

The name of the service provider associated with the requested LAG.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-lag.html#cfn-directconnect-lag-providername

request_mac_sec

Indicates whether you want the LAG to support MAC Security (MACsec).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-lag.html#cfn-directconnect-lag-requestmacsec

tags

The tags associated with the LAG.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-lag.html#cfn-directconnect-lag-tags