Class: Aws::TimestreamQuery::Types::PrepareQueryResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::PrepareQueryResponse
- Defined in:
- gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:query_string]
Instance Attribute Summary collapse
-
#columns ⇒ Array<Types::SelectColumn>
A list of SELECT clause columns of the submitted query string.
-
#parameters ⇒ Array<Types::ParameterMapping>
A list of parameters used in the submitted query string.
-
#query_string ⇒ String
The query string that you want prepare.
Instance Attribute Details
#columns ⇒ Array<Types::SelectColumn>
A list of SELECT clause columns of the submitted query string.
795 796 797 798 799 800 801 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 795 class PrepareQueryResponse < Struct.new( :query_string, :columns, :parameters) SENSITIVE = [:query_string] include Aws::Structure end |
#parameters ⇒ Array<Types::ParameterMapping>
A list of parameters used in the submitted query string.
795 796 797 798 799 800 801 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 795 class PrepareQueryResponse < Struct.new( :query_string, :columns, :parameters) SENSITIVE = [:query_string] include Aws::Structure end |
#query_string ⇒ String
The query string that you want prepare.
795 796 797 798 799 800 801 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 795 class PrepareQueryResponse < Struct.new( :query_string, :columns, :parameters) SENSITIVE = [:query_string] include Aws::Structure end |