Interface CfnCoreNetworkProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCoreNetworkProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-05-22T23:39:55.291Z")
@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 class
A builder forCfnCoreNetworkProps
static final class
An implementation forCfnCoreNetworkProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnCoreNetworkProps.Builder
builder()
default String
The description of a core network.The ID of the global network that your core network is a part of.default Object
Describes 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.Builder
ofCfnCoreNetworkProps
-