Interface CfnNetworkMigrationDefinition.TargetNetworkProperty

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

@Stability(Stable) public static interface CfnNetworkMigrationDefinition.TargetNetworkProperty extends software.amazon.jsii.JsiiSerializable
Configuration for the target network topology and addressing.

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.mgn.*;
 TargetNetworkProperty targetNetworkProperty = TargetNetworkProperty.builder()
         .topology("topology")
         // the properties below are optional
         .inboundCidr("inboundCidr")
         .inspectionCidr("inspectionCidr")
         .outboundCidr("outboundCidr")
         .build();
 

See Also: