Class: Aws::DatabaseMigrationService::Types::ReloadTablesMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::ReloadTablesMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reload_option ⇒ String
Options for reload.
-
#replication_task_arn ⇒ String
The Amazon Resource Name (ARN) of the replication task.
-
#tables_to_reload ⇒ Array<Types::TableToReload>
The name and schema of the table to be reloaded.
Instance Attribute Details
#reload_option ⇒ String
Options for reload. Specify ‘data-reload` to reload the data and re-validate it if validation is enabled. Specify `validate-only` to re-validate the table. This option applies only when validation is enabled for the task.
Valid values: data-reload, validate-only
Default value is data-reload.
10586 10587 10588 10589 10590 10591 10592 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 10586 class ReloadTablesMessage < Struct.new( :replication_task_arn, :tables_to_reload, :reload_option) SENSITIVE = [] include Aws::Structure end |
#replication_task_arn ⇒ String
The Amazon Resource Name (ARN) of the replication task.
10586 10587 10588 10589 10590 10591 10592 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 10586 class ReloadTablesMessage < Struct.new( :replication_task_arn, :tables_to_reload, :reload_option) SENSITIVE = [] include Aws::Structure end |
#tables_to_reload ⇒ Array<Types::TableToReload>
The name and schema of the table to be reloaded.
10586 10587 10588 10589 10590 10591 10592 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 10586 class ReloadTablesMessage < Struct.new( :replication_task_arn, :tables_to_reload, :reload_option) SENSITIVE = [] include Aws::Structure end |