interface DataMigrationSettingsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.DMS.CfnDataMigration.DataMigrationSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdms#CfnDataMigration_DataMigrationSettingsProperty |
Java | software.amazon.awscdk.services.dms.CfnDataMigration.DataMigrationSettingsProperty |
Python | aws_cdk.aws_dms.CfnDataMigration.DataMigrationSettingsProperty |
TypeScript | aws-cdk-lib » aws_dms » CfnDataMigration » DataMigrationSettingsProperty |
Options for configuring a data migration, including whether to enable CloudWatch logs, and the selection rules to use to include or exclude database objects from the migration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dms as dms } from 'aws-cdk-lib';
const dataMigrationSettingsProperty: dms.CfnDataMigration.DataMigrationSettingsProperty = {
cloudwatchLogsEnabled: false,
numberOfJobs: 123,
selectionRules: 'selectionRules',
};
Properties
Name | Type | Description |
---|---|---|
cloudwatch | boolean | IResolvable | Whether to enable CloudWatch logging for the data migration. |
number | number | The number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target. |
selection | string | A JSON-formatted string that defines what objects to include and exclude from the migration. |
cloudwatchLogsEnabled?
Type:
boolean |
IResolvable
(optional)
Whether to enable CloudWatch logging for the data migration.
numberOfJobs?
Type:
number
(optional)
The number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target.
selectionRules?
Type:
string
(optional)
A JSON-formatted string that defines what objects to include and exclude from the migration.