@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:07.383Z") @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()
`AWS::NetworkManager::Link.Bandwidth`.
|
default String |
getDescription()
`AWS::NetworkManager::Link.Description`.
|
String |
getGlobalNetworkId()
`AWS::NetworkManager::Link.GlobalNetworkId`.
|
default String |
getProvider()
`AWS::NetworkManager::Link.Provider`.
|
String |
getSiteId()
`AWS::NetworkManager::Link.SiteId`.
|
default List<CfnTag> |
getTags()
`AWS::NetworkManager::Link.Tags`.
|
default String |
getType()
`AWS::NetworkManager::Link.Type`.
|
@Stability(value=Stable) @NotNull Object getBandwidth()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @NotNull String getGlobalNetworkId()
@Stability(value=Stable) @Nullable default String getProvider()
@Stability(value=Stable) @NotNull String getSiteId()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default String getType()
@Stability(value=Stable) static CfnLinkProps.Builder builder()
CfnLinkProps.Builder of CfnLinkPropsCopyright © 2021. All rights reserved.