@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.063Z") @Stability(value=Stable) public interface CfnLinkProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLinkProps.Builder
A builder for
CfnLinkProps |
static class |
CfnLinkProps.Jsii$Proxy
An implementation for
CfnLinkProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnLinkProps.Builder |
builder() |
Object |
getBandwidth()
The bandwidth for the link.
|
default String |
getDescription()
A description of the link.
|
String |
getGlobalNetworkId()
The ID of the global network.
|
default String |
getProvider()
The provider of the link.
|
String |
getSiteId()
The ID of the site.
|
default List<CfnTag> |
getTags()
The tags for the link.
|
default String |
getType()
The type of the link.
|
@Stability(value=Stable) @NotNull Object getBandwidth()
@Stability(value=Stable) @NotNull String getGlobalNetworkId()
@Stability(value=Stable) @NotNull String getSiteId()
@Stability(value=Stable) @Nullable default String getDescription()
Constraints: Maximum length of 256 characters.
@Stability(value=Stable) @Nullable default String getProvider()
Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
@Stability(value=Stable) @Nullable default String getType()
Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
@Stability(value=Stable) static CfnLinkProps.Builder builder()
CfnLinkProps.Builder of CfnLinkPropsCopyright © 2022. All rights reserved.