Class: Aws::DatabaseMigrationService::Types::DataMigrationSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::DataMigrationSettings
- Defined in:
- gems/aws-sdk-databasemigrationservice/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.
2013 2014 2015 2016 2017 2018 2019 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 2013 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.
2013 2014 2015 2016 2017 2018 2019 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 2013 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.
2013 2014 2015 2016 2017 2018 2019 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 2013 class DataMigrationSettings < Struct.new( :number_of_jobs, :cloudwatch_logs_enabled, :selection_rules) SENSITIVE = [:selection_rules] include Aws::Structure end |