Interface CfnCoreNetwork.CoreNetworkSegmentProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCoreNetwork.CoreNetworkSegmentProperty.Jsii$Proxy
Enclosing class:
CfnCoreNetwork

@Stability(Stable) public static interface CfnCoreNetwork.CoreNetworkSegmentProperty extends software.amazon.jsii.JsiiSerializable
Describes a core network segment, which are dedicated routes.

Only attachments within this segment can communicate with each other.

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.*;
 CoreNetworkSegmentProperty coreNetworkSegmentProperty = CoreNetworkSegmentProperty.builder()
         .edgeLocations(List.of("edgeLocations"))
         .name("name")
         .sharedSegments(List.of("sharedSegments"))
         .build();