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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNetworkMigrationDefinition.TargetNetworkPropertystatic final classAn implementation forCfnNetworkMigrationDefinition.TargetNetworkProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe CIDR block for inbound traffic in the target network.default StringThe CIDR block for inspection traffic in the target network.default StringThe CIDR block for outbound traffic in the target network.The network topology type for the target environment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTopology
The network topology type for the target environment.- See Also:
-
getInboundCidr
The CIDR block for inbound traffic in the target network.- See Also:
-
getInspectionCidr
The CIDR block for inspection traffic in the target network.- See Also:
-
getOutboundCidr
The CIDR block for outbound traffic in the target network.- See Also:
-
builder
-