Interface CfnMigrationProjectMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMigrationProjectMixinProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.dms.mixins.*;
CfnMigrationProjectMixinProps cfnMigrationProjectMixinProps = CfnMigrationProjectMixinProps.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 classA builder forCfnMigrationProjectMixinPropsstatic final classAn implementation forCfnMigrationProjectMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA user-friendly description of the migration project.default StringThe Amazon Resource Name (ARN) of the instance profile for your migration project.default StringThe identifier of the instance profile for your migration project.default StringThe name of the associated instance profile.default StringDeprecated.this property has been deprecateddefault StringThe identifier of the migration project.default StringThe name of the migration project.default ObjectThe schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.default ObjectInformation 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 ObjectInformation about the target data provider, including the name or ARN, and AWS Secrets Manager parameters.default StringThe 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.Returns union: either
IResolvableorCfnMigrationProjectPropsMixin.SchemaConversionApplicationAttributesProperty- See Also:
-
getSourceDataProviderDescriptors
Information about the source data provider, including the name or ARN, and AWS Secrets Manager parameters.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnMigrationProjectPropsMixin.DataProviderDescriptorProperty>- 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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnMigrationProjectPropsMixin.DataProviderDescriptorProperty>- 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
-