Interface CfnNetworkMigrationDefinitionProps

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:14.167Z") @Stability(Stable) public interface CfnNetworkMigrationDefinitionProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnNetworkMigrationDefinition.

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.*;
 CfnNetworkMigrationDefinitionProps cfnNetworkMigrationDefinitionProps = CfnNetworkMigrationDefinitionProps.builder()
         .name("name")
         .sourceConfigurations(List.of(SourceConfigurationProperty.builder()
                 .sourceEnvironment("sourceEnvironment")
                 .sourceS3Configuration(SourceS3ConfigurationProperty.builder()
                         .s3Bucket("s3Bucket")
                         .s3BucketOwner("s3BucketOwner")
                         .s3Key("s3Key")
                         .build())
                 .build()))
         .targetNetwork(TargetNetworkProperty.builder()
                 .topology("topology")
                 // the properties below are optional
                 .inboundCidr("inboundCidr")
                 .inspectionCidr("inspectionCidr")
                 .outboundCidr("outboundCidr")
                 .build())
         .targetS3Configuration(TargetS3ConfigurationProperty.builder()
                 .s3Bucket("s3Bucket")
                 .s3BucketOwner("s3BucketOwner")
                 .build())
         // the properties below are optional
         .description("description")
         .scopeTags(Map.of(
                 "scopeTagsKey", "scopeTags"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .targetDeployment("targetDeployment")
         .build();
 

See Also: