Class: Aws::QuickSight::Types::CustomSql

Inherits:
Struct
  • Object
show all
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 =
[:sql_query]

Instance Attribute Summary collapse

Instance Attribute Details

#columnsArray<Types::InputColumn>

The column schema from the SQL query result set.

Returns:



9123
9124
9125
9126
9127
9128
9129
9130
# File 'lib/aws-sdk-quicksight/types.rb', line 9123

class CustomSql < Struct.new(
  :data_source_arn,
  :name,
  :sql_query,
  :columns)
  SENSITIVE = [:sql_query]
  include Aws::Structure
end

#data_source_arnString

The Amazon Resource Name (ARN) of the data source.

Returns:

  • (String)


9123
9124
9125
9126
9127
9128
9129
9130
# File 'lib/aws-sdk-quicksight/types.rb', line 9123

class CustomSql < Struct.new(
  :data_source_arn,
  :name,
  :sql_query,
  :columns)
  SENSITIVE = [:sql_query]
  include Aws::Structure
end

#nameString

A display name for the SQL query result.

Returns:

  • (String)


9123
9124
9125
9126
9127
9128
9129
9130
# File 'lib/aws-sdk-quicksight/types.rb', line 9123

class CustomSql < Struct.new(
  :data_source_arn,
  :name,
  :sql_query,
  :columns)
  SENSITIVE = [:sql_query]
  include Aws::Structure
end

#sql_queryString

The SQL query.

Returns:

  • (String)


9123
9124
9125
9126
9127
9128
9129
9130
# File 'lib/aws-sdk-quicksight/types.rb', line 9123

class CustomSql < Struct.new(
  :data_source_arn,
  :name,
  :sql_query,
  :columns)
  SENSITIVE = [:sql_query]
  include Aws::Structure
end