@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.058Z") @Stability(value=Stable) public interface CfnCoreNetworkProps 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.*;
Object policyDocument;
CfnCoreNetworkProps cfnCoreNetworkProps = CfnCoreNetworkProps.builder()
.globalNetworkId("globalNetworkId")
// the properties below are optional
.description("description")
.policyDocument(policyDocument)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCoreNetworkProps.Builder
A builder for
CfnCoreNetworkProps |
static class |
CfnCoreNetworkProps.Jsii$Proxy
An implementation for
CfnCoreNetworkProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCoreNetworkProps.Builder |
builder() |
default String |
getDescription()
The description of a core network.
|
String |
getGlobalNetworkId()
The ID of the global network that your core network is a part of.
|
default Object |
getPolicyDocument()
Describes a core network policy.
|
default List<CfnTag> |
getTags()
The tags associated with a core network.
|
@Stability(value=Stable) @NotNull String getGlobalNetworkId()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getPolicyDocument()
If you update the policy document, CloudFormation will apply the core network change set generated from the updated policy document, and then set it as the LIVE policy.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnCoreNetworkProps.Builder builder()
CfnCoreNetworkProps.Builder of CfnCoreNetworkPropsCopyright © 2022. All rights reserved.