Class: Aws::QuickSight::Types::LogicalTable
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::LogicalTable
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
A logical table is a unit that joins and that data transformations operate on. A logical table has a source, which can be either a physical table or result of a join. When a logical table points to a physical table, the logical table acts as a mutable copy of that physical table through transform operations.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alias ⇒ String
A display name for the logical table.
-
#data_transforms ⇒ Array<Types::TransformOperation>
Transform operations that act on this logical table.
-
#source ⇒ Types::LogicalTableSource
Source of this logical table.
Instance Attribute Details
#alias ⇒ String
A display name for the logical table.
20953 20954 20955 20956 20957 20958 20959 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 20953 class LogicalTable < Struct.new( :alias, :data_transforms, :source) SENSITIVE = [] include Aws::Structure end |
#data_transforms ⇒ Array<Types::TransformOperation>
Transform operations that act on this logical table. For this structure to be valid, only one of the attributes can be non-null.
20953 20954 20955 20956 20957 20958 20959 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 20953 class LogicalTable < Struct.new( :alias, :data_transforms, :source) SENSITIVE = [] include Aws::Structure end |
#source ⇒ Types::LogicalTableSource
Source of this logical table.
20953 20954 20955 20956 20957 20958 20959 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 20953 class LogicalTable < Struct.new( :alias, :data_transforms, :source) SENSITIVE = [] include Aws::Structure end |