You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DatabaseMigrationService::Types::ReloadTablesMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ReloadTablesMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  replication_task_arn: "String", # required
  tables_to_reload: [ # required
    {
      schema_name: "String", # required
      table_name: "String", # required
    },
  ],
  reload_option: "data-reload", # accepts data-reload, validate-only
}

Instance Attribute Summary collapse

Instance Attribute Details

#reload_optionString

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.

Possible values:

  • data-reload
  • validate-only

Returns:

  • (String)

    Options for reload.

#replication_task_arnString

The Amazon Resource Name (ARN) of the replication task.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the replication task.

#tables_to_reloadArray<Types::TableToReload>

The name and schema of the table to be reloaded.

Returns: