Interface CfnLinkProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLinkProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.477Z")
@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();
-
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. -
getGlobalNetworkId
The ID of the global network. -
getSiteId
The ID of the site. -
getDescription
A description of the link.Constraints: Maximum length of 256 characters.
-
getProvider
The provider of the link.Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
-
getTags
The tags for the link. -
getType
The type of the link.Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
-
builder
- Returns:
- a
CfnLinkProps.BuilderofCfnLinkProps
-