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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


13837
13838
13839
13840
13841
13842
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 13837

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)


13837
13838
13839
13840
13841
13842
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 13837

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