Interface CfnLagMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLagMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:58.098Z")
@Stability(Stable)
public interface CfnLagMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnLagPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.directconnect.*;
CfnLagMixinProps cfnLagMixinProps = CfnLagMixinProps.builder()
.connectionsBandwidth("connectionsBandwidth")
.lagName("lagName")
.location("location")
.minimumLinks(123)
.providerName("providerName")
.requestMacSec(false)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLagMixinPropsstatic final classAn implementation forCfnLagMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLagMixinProps.Builderbuilder()default StringThe bandwidth of the individual physical dedicated connections bundled by the LAG.default StringThe name of the LAG.default StringThe location for the LAG.default NumberThe minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.default StringThe name of the service provider associated with the requested LAG.default ObjectIndicates whether you want the LAG to support MAC Security (MACsec).getTags()The tags associated with the LAG.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionsBandwidth
The bandwidth of the individual physical dedicated connections bundled by the LAG.- See Also:
-
getLagName
The name of the LAG.- See Also:
-
getLocation
The location for the LAG.- See Also:
-
getMinimumLinks
The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.- See Also:
-
getProviderName
The name of the service provider associated with the requested LAG.- See Also:
-
getRequestMacSec
Indicates whether you want the LAG to support MAC Security (MACsec).Returns union: either
BooleanorIResolvable- See Also:
-
getTags
The tags associated with the LAG.- See Also:
-
builder
- Returns:
- a
CfnLagMixinProps.BuilderofCfnLagMixinProps
-