Interface CfnCoreNetworkProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCoreNetworkProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:16.706Z")
@Stability(Stable)
public interface CfnCoreNetworkProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCoreNetwork.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCoreNetworkPropsstatic final classAn implementation forCfnCoreNetworkProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnCoreNetworkProps.Builderbuilder()default StringThe description of a core network.The ID of the global network that your core network is a part of.default ObjectDescribes a core network policy.getTags()The list of key-value tags associated with a core network.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGlobalNetworkId
The ID of the global network that your core network is a part of.- See Also:
-
getDescription
The description of a core network.- See Also:
-
getPolicyDocument
Describes a core network policy. For more information, see Core network policies .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.
- See Also:
-
getTags
The list of key-value tags associated with a core network.- See Also:
-
builder
- Returns:
- a
CfnCoreNetworkProps.BuilderofCfnCoreNetworkProps
-