Interface CfnCoreNetwork.CoreNetworkNetworkFunctionGroupProperty

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

@Stability(Stable) public static interface CfnCoreNetwork.CoreNetworkNetworkFunctionGroupProperty extends software.amazon.jsii.JsiiSerializable
Describes a network function group.

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.*;
 CoreNetworkNetworkFunctionGroupProperty coreNetworkNetworkFunctionGroupProperty = CoreNetworkNetworkFunctionGroupProperty.builder()
         .edgeLocations(List.of("edgeLocations"))
         .name("name")
         .segments(SegmentsProperty.builder()
                 .sendTo(List.of("sendTo"))
                 .sendVia(List.of("sendVia"))
                 .build())
         .build();
 

See Also: