Interface CfnDataMigration.DataMigrationSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataMigration.DataMigrationSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDataMigration
@Stability(Stable)
public static interface CfnDataMigration.DataMigrationSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.dms.*;
DataMigrationSettingsProperty dataMigrationSettingsProperty = DataMigrationSettingsProperty.builder()
.cloudwatchLogsEnabled(false)
.numberOfJobs(123)
.selectionRules("selectionRules")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataMigration.DataMigrationSettingsPropertystatic final classAn implementation forCfnDataMigration.DataMigrationSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectWhether to enable CloudWatch logging for the data migration.default NumberThe number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target.default StringA JSON-formatted string that defines what objects to include and exclude from the migration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudwatchLogsEnabled
Whether to enable CloudWatch logging for the data migration.Returns union: either
BooleanorIResolvable- See Also:
-
getNumberOfJobs
The number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target.- See Also:
-
getSelectionRules
A JSON-formatted string that defines what objects to include and exclude from the migration.- See Also:
-
builder
-