Class: Aws::QuickSight::Types::LogicalTableSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::LogicalTableSource
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass LogicalTableSource data as a hash:
{
join_instruction: {
left_operand: "LogicalTableId", # required
right_operand: "LogicalTableId", # required
left_join_key_properties: {
unique_key: false,
},
right_join_key_properties: {
unique_key: false,
},
type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
on_clause: "OnClause", # required
},
physical_table_id: "PhysicalTableId",
data_set_arn: "Arn",
}
Information about the source of a logical table. This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_set_arn ⇒ String
The Amazon Resource Number (ARN) of the parent dataset.
-
#join_instruction ⇒ Types::JoinInstruction
Specifies the result of a join of two logical tables.
-
#physical_table_id ⇒ String
Physical table ID.
Instance Attribute Details
#data_set_arn ⇒ String
The Amazon Resource Number (ARN) of the parent dataset.
9577 9578 9579 9580 9581 9582 9583 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9577 class LogicalTableSource < Struct.new( :join_instruction, :physical_table_id, :data_set_arn) SENSITIVE = [] include Aws::Structure end |
#join_instruction ⇒ Types::JoinInstruction
Specifies the result of a join of two logical tables.
9577 9578 9579 9580 9581 9582 9583 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9577 class LogicalTableSource < Struct.new( :join_instruction, :physical_table_id, :data_set_arn) SENSITIVE = [] include Aws::Structure end |
#physical_table_id ⇒ String
Physical table ID.
9577 9578 9579 9580 9581 9582 9583 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9577 class LogicalTableSource < Struct.new( :join_instruction, :physical_table_id, :data_set_arn) SENSITIVE = [] include Aws::Structure end |