Interface CfnMigrationProjectProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMigrationProjectProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-14T03:24:56.458Z")
@Stability(Stable)
public interface CfnMigrationProjectProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMigrationProject
.
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.dms.*; CfnMigrationProjectProps cfnMigrationProjectProps = CfnMigrationProjectProps.builder() .description("description") .instanceProfileArn("instanceProfileArn") .instanceProfileIdentifier("instanceProfileIdentifier") .instanceProfileName("instanceProfileName") .migrationProjectCreationTime("migrationProjectCreationTime") .migrationProjectIdentifier("migrationProjectIdentifier") .migrationProjectName("migrationProjectName") .schemaConversionApplicationAttributes(SchemaConversionApplicationAttributesProperty.builder() .s3BucketPath("s3BucketPath") .s3BucketRoleArn("s3BucketRoleArn") .build()) .sourceDataProviderDescriptors(List.of(DataProviderDescriptorProperty.builder() .dataProviderArn("dataProviderArn") .dataProviderIdentifier("dataProviderIdentifier") .dataProviderName("dataProviderName") .secretsManagerAccessRoleArn("secretsManagerAccessRoleArn") .secretsManagerSecretId("secretsManagerSecretId") .build())) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .targetDataProviderDescriptors(List.of(DataProviderDescriptorProperty.builder() .dataProviderArn("dataProviderArn") .dataProviderIdentifier("dataProviderIdentifier") .dataProviderName("dataProviderName") .secretsManagerAccessRoleArn("secretsManagerAccessRoleArn") .secretsManagerSecretId("secretsManagerSecretId") .build())) .transformationRules("transformationRules") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMigrationProjectProps
static final class
An implementation forCfnMigrationProjectProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
A user-friendly description of the migration project.default String
The Amazon Resource Name (ARN) of the instance profile for your migration project.default String
The identifier of the instance profile for your migration project.default String
The name of the associated instance profile.default String
Deprecated.this property has been deprecateddefault String
The identifier of the migration project.default String
The name of the migration project.default Object
The schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.default Object
Information about the source data provider, including the name or ARN, and AWS Secrets Manager parameters.getTags()
An array of key-value pairs to apply to this resource.default Object
Information about the target data provider, including the name or ARN, and AWS Secrets Manager parameters.default String
The settings in JSON format for migration rules.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A user-friendly description of the migration project.- See Also:
-
getInstanceProfileArn
The Amazon Resource Name (ARN) of the instance profile for your migration project.- See Also:
-
getInstanceProfileIdentifier
The identifier of the instance profile for your migration project.- See Also:
-
getInstanceProfileName
The name of the associated instance profile.- See Also:
-
getMigrationProjectCreationTime
Deprecated.this property has been deprecated(deprecated) The property describes a creating time of the migration project.- See Also:
-
getMigrationProjectIdentifier
The identifier of the migration project.Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
- See Also:
-
getMigrationProjectName
The name of the migration project.- See Also:
-
getSchemaConversionApplicationAttributes
The schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.- See Also:
-
getSourceDataProviderDescriptors
Information about the source data provider, including the name or ARN, and AWS Secrets Manager parameters.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
getTargetDataProviderDescriptors
Information about the target data provider, including the name or ARN, and AWS Secrets Manager parameters.- See Also:
-
getTransformationRules
The settings in JSON format for migration rules.Migration rules make it possible for you to change the object names according to the rules that you specify. For example, you can change an object name to lowercase or uppercase, add or remove a prefix or suffix, or rename objects.
- See Also:
-
builder
- Returns:
- a
CfnMigrationProjectProps.Builder
ofCfnMigrationProjectProps
-