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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNetworkMigrationDefinitionPropsstatic final classAn implementation forCfnNetworkMigrationDefinitionProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description of the network migration definition.getName()The name of the network migration definition.default ObjectScope tags map for the network migration definition.A list of source configurations for the network migration.getTags()Tags to assign to the network migration definition.default StringThe target deployment configuration for the migrated network.Configuration for the target network topology and addressing.S3 configuration for storing target network artifacts.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the network migration definition.- See Also:
-
getSourceConfigurations
A list of source configurations for the network migration.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnNetworkMigrationDefinition.SourceConfigurationProperty>- See Also:
-
getTargetNetwork
Configuration for the target network topology and addressing.Returns union: either
IResolvableorCfnNetworkMigrationDefinition.TargetNetworkProperty- See Also:
-
getTargetS3Configuration
S3 configuration for storing target network artifacts.Returns union: either
IResolvableorCfnNetworkMigrationDefinition.TargetS3ConfigurationProperty- See Also:
-
getDescription
A description of the network migration definition.- See Also:
-
getScopeTags
Scope tags map for the network migration definition.Returns union: either
IResolvableor Mapinvalid input: '<'String,String>- See Also:
-
getTags
Tags to assign to the network migration definition.- See Also:
-
getTargetDeployment
The target deployment configuration for the migrated network.- See Also:
-
builder
-