Class: Aws::QuickSight::Types::RelationalTable
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::RelationalTable
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass RelationalTable data as a hash:
{
data_source_arn: "Arn", # required
catalog: "RelationalTableCatalog",
schema: "RelationalTableSchema",
name: "RelationalTableName", # required
input_columns: [ # required
{
name: "ColumnName", # required
type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
},
],
}
A physical table type for relational data sources.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog ⇒ String
The catalog associated with a table.
-
#data_source_arn ⇒ String
The Amazon Resource Name (ARN) for the data source.
-
#input_columns ⇒ Array<Types::InputColumn>
The column schema of the table.
-
#name ⇒ String
The name of the relational table.
-
#schema ⇒ String
The schema name.
Instance Attribute Details
#catalog ⇒ String
The catalog associated with a table.
10611 10612 10613 10614 10615 10616 10617 10618 10619 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10611 class RelationalTable < Struct.new( :data_source_arn, :catalog, :schema, :name, :input_columns) SENSITIVE = [] include Aws::Structure end |
#data_source_arn ⇒ String
The Amazon Resource Name (ARN) for the data source.
10611 10612 10613 10614 10615 10616 10617 10618 10619 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10611 class RelationalTable < Struct.new( :data_source_arn, :catalog, :schema, :name, :input_columns) SENSITIVE = [] include Aws::Structure end |
#input_columns ⇒ Array<Types::InputColumn>
The column schema of the table.
10611 10612 10613 10614 10615 10616 10617 10618 10619 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10611 class RelationalTable < Struct.new( :data_source_arn, :catalog, :schema, :name, :input_columns) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the relational table.
10611 10612 10613 10614 10615 10616 10617 10618 10619 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10611 class RelationalTable < Struct.new( :data_source_arn, :catalog, :schema, :name, :input_columns) SENSITIVE = [] include Aws::Structure end |
#schema ⇒ String
The schema name. This name applies to certain relational database engines.
10611 10612 10613 10614 10615 10616 10617 10618 10619 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10611 class RelationalTable < Struct.new( :data_source_arn, :catalog, :schema, :name, :input_columns) SENSITIVE = [] include Aws::Structure end |