Interface CfnCoreNetworkProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCoreNetworkProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.454Z") @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();
 
  • Method Details

    • getGlobalNetworkId

      @Stability(Stable) @NotNull String getGlobalNetworkId()
      The ID of the global network that your core network is a part of.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of a core network.
    • getPolicyDocument

      @Stability(Stable) @Nullable default Object 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.

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The list of key-value tags associated with a core network.
    • builder

      @Stability(Stable) static CfnCoreNetworkProps.Builder builder()
      Returns:
      a CfnCoreNetworkProps.Builder of CfnCoreNetworkProps