Class: Aws::DatabaseMigrationService::Types::TableToReload

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb

Overview

Provides the name of the schema and table to be reloaded.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#schema_nameString

The schema name of the table to be reloaded.

Returns:

  • (String)


13274
13275
13276
13277
13278
13279
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 13274

class TableToReload < Struct.new(
  :schema_name,
  :table_name)
  SENSITIVE = []
  include Aws::Structure
end

#table_nameString

The table name of the table to be reloaded.

Returns:

  • (String)


13274
13275
13276
13277
13278
13279
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 13274

class TableToReload < Struct.new(
  :schema_name,
  :table_name)
  SENSITIVE = []
  include Aws::Structure
end