Interface CfnLinkProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLinkProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:25.687Z")
@Stability(Stable)
public interface CfnLinkProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnLink.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.networkmanager.*;
CfnLinkProps cfnLinkProps = CfnLinkProps.builder()
.bandwidth(BandwidthProperty.builder()
.downloadSpeed(123)
.uploadSpeed(123)
.build())
.globalNetworkId("globalNetworkId")
.siteId("siteId")
// the properties below are optional
.description("description")
.provider("provider")
.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 forCfnLinkPropsstatic final classAn implementation forCfnLinkProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLinkProps.Builderbuilder()The bandwidth for the link.default StringA description of the link.The ID of the global network.default StringThe provider of the link.The 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
IResolvableorCfnLink.BandwidthProperty- See Also:
-
getGlobalNetworkId
The ID of the global network.- See Also:
-
getSiteId
The ID of the site.- See Also:
-
getDescription
A description of the link.Constraints: Maximum length of 256 characters.
- See Also:
-
getProvider
The provider of the link.Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
- 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
CfnLinkProps.BuilderofCfnLinkProps
-