Class: Aws::BCMDataExports::Types::GetTableResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMDataExports::Types::GetTableResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bcmdataexports/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The table description.
-
#schema ⇒ Array<Types::Column>
The schema of the table.
-
#table_name ⇒ String
The name of the table.
-
#table_properties ⇒ Hash<String,String>
TableProperties are additional configurations you can provide to change the data and schema of a table.
Instance Attribute Details
#description ⇒ String
The table description.
394 395 396 397 398 399 400 401 |
# File 'lib/aws-sdk-bcmdataexports/types.rb', line 394 class GetTableResponse < Struct.new( :description, :schema, :table_name, :table_properties) SENSITIVE = [] include Aws::Structure end |
#schema ⇒ Array<Types::Column>
The schema of the table.
394 395 396 397 398 399 400 401 |
# File 'lib/aws-sdk-bcmdataexports/types.rb', line 394 class GetTableResponse < Struct.new( :description, :schema, :table_name, :table_properties) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the table.
394 395 396 397 398 399 400 401 |
# File 'lib/aws-sdk-bcmdataexports/types.rb', line 394 class GetTableResponse < Struct.new( :description, :schema, :table_name, :table_properties) SENSITIVE = [] include Aws::Structure end |
#table_properties ⇒ Hash<String,String>
TableProperties are additional configurations you can provide to change the data and schema of a table. Each table can have different TableProperties. Tables are not required to have any TableProperties. Each table property has a default value that it assumes if not specified.
394 395 396 397 398 399 400 401 |
# File 'lib/aws-sdk-bcmdataexports/types.rb', line 394 class GetTableResponse < Struct.new( :description, :schema, :table_name, :table_properties) SENSITIVE = [] include Aws::Structure end |