Class: Aws::QuickSight::Types::LogicalTable

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

Instance Attribute Details

#aliasString

A display name for the logical table.

Returns:

  • (String)


19806
19807
19808
19809
19810
19811
19812
# File 'lib/aws-sdk-quicksight/types.rb', line 19806

class LogicalTable < Struct.new(
  :alias,
  :data_transforms,
  :source)
  SENSITIVE = []
  include Aws::Structure
end

#data_transformsArray<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.

Returns:



19806
19807
19808
19809
19810
19811
19812
# File 'lib/aws-sdk-quicksight/types.rb', line 19806

class LogicalTable < Struct.new(
  :alias,
  :data_transforms,
  :source)
  SENSITIVE = []
  include Aws::Structure
end

#sourceTypes::LogicalTableSource

Source of this logical table.



19806
19807
19808
19809
19810
19811
19812
# File 'lib/aws-sdk-quicksight/types.rb', line 19806

class LogicalTable < Struct.new(
  :alias,
  :data_transforms,
  :source)
  SENSITIVE = []
  include Aws::Structure
end