Interface CfnLinkMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLinkMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.861Z")
@Stability(Stable)
public interface CfnLinkMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnLinkPropsMixin.
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.networkmanager.*;
CfnLinkMixinProps cfnLinkMixinProps = CfnLinkMixinProps.builder()
.bandwidth(BandwidthProperty.builder()
.downloadSpeed(123)
.uploadSpeed(123)
.build())
.description("description")
.globalNetworkId("globalNetworkId")
.provider("provider")
.siteId("siteId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLinkMixinPropsstatic final classAn implementation forCfnLinkMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLinkMixinProps.Builderbuilder()default ObjectThe bandwidth for the link.default StringA description of the link.default StringThe ID of the global network.default StringThe provider of the link.default StringThe ID of the site.getTags()The tags for the link.default StringgetType()The type of the link.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBandwidth
The bandwidth for the link.Returns union: either
IResolvableorCfnLinkPropsMixin.BandwidthProperty- See Also:
-
getDescription
A description of the link.Constraints: Maximum length of 256 characters.
- See Also:
-
getGlobalNetworkId
The ID of the global network.- See Also:
-
getProvider
The provider of the link.Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
- See Also:
-
getSiteId
The ID of the site.- See Also:
-
getTags
The tags for the link.- See Also:
-
getType
The type of the link.Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
- See Also:
-
builder
- Returns:
- a
CfnLinkMixinProps.BuilderofCfnLinkMixinProps
-