CfnLagProps
- class aws_cdk.aws_directconnect.CfnLagProps(*, connections_bandwidth, lag_name, location, minimum_links=None, provider_name=None, request_mac_sec=None, tags=None)
Bases:
objectProperties for defining a
CfnLag.- Parameters:
connections_bandwidth (
str) – The bandwidth of the individual physical dedicated connections bundled by the LAG.lag_name (
str) – The name of the LAG.location (
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 import aws_directconnect as directconnect cfn_lag_props = directconnect.CfnLagProps( connections_bandwidth="connectionsBandwidth", lag_name="lagName", location="location", # the properties below are optional 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.
- lag_name
The name of the LAG.
- location
The location for the LAG.
- minimum_links
The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.
- provider_name
The name of the service provider associated with the requested LAG.
- request_mac_sec
Indicates whether you want the LAG to support MAC Security (MACsec).
- tags
The tags associated with the LAG.