Class: Aws::DatabaseMigrationService::Types::DataMigrationSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::DataMigrationSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[:selection_rules]
Instance Attribute Summary collapse
-
#cloudwatch_logs_enabled ⇒ Boolean
Whether to enable CloudWatch logging for the data migration.
-
#number_of_jobs ⇒ Integer
The number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target.
-
#selection_rules ⇒ String
A JSON-formatted string that defines what objects to include and exclude from the migration.
Instance Attribute Details
#cloudwatch_logs_enabled ⇒ Boolean
Whether to enable CloudWatch logging for the data migration.
1987 1988 1989 1990 1991 1992 1993 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 1987 class DataMigrationSettings < Struct.new( :number_of_jobs, :cloudwatch_logs_enabled, :selection_rules) SENSITIVE = [:selection_rules] include Aws::Structure end |
#number_of_jobs ⇒ Integer
The number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target.
1987 1988 1989 1990 1991 1992 1993 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 1987 class DataMigrationSettings < Struct.new( :number_of_jobs, :cloudwatch_logs_enabled, :selection_rules) SENSITIVE = [:selection_rules] include Aws::Structure end |
#selection_rules ⇒ String
A JSON-formatted string that defines what objects to include and exclude from the migration.
1987 1988 1989 1990 1991 1992 1993 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 1987 class DataMigrationSettings < Struct.new( :number_of_jobs, :cloudwatch_logs_enabled, :selection_rules) SENSITIVE = [:selection_rules] include Aws::Structure end |