Class: Aws::QuickSight::Types::CustomSql
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::CustomSql
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
A physical table type built from the results of the custom SQL query.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#columns ⇒ Array<Types::InputColumn>
The column schema from the SQL query result set.
-
#data_source_arn ⇒ String
The Amazon Resource Name (ARN) of the data source.
-
#name ⇒ String
A display name for the SQL query result.
-
#sql_query ⇒ String
The SQL query.
Instance Attribute Details
#columns ⇒ Array<Types::InputColumn>
The column schema from the SQL query result set.
7839 7840 7841 7842 7843 7844 7845 7846 |
# File 'lib/aws-sdk-quicksight/types.rb', line 7839 class CustomSql < Struct.new( :data_source_arn, :name, :sql_query, :columns) SENSITIVE = [] include Aws::Structure end |
#data_source_arn ⇒ String
The Amazon Resource Name (ARN) of the data source.
7839 7840 7841 7842 7843 7844 7845 7846 |
# File 'lib/aws-sdk-quicksight/types.rb', line 7839 class CustomSql < Struct.new( :data_source_arn, :name, :sql_query, :columns) SENSITIVE = [] include Aws::Structure end |