Class: Aws::TimestreamQuery::Types::QueryResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::QueryResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamquery/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_info ⇒ Array<Types::ColumnInfo>
The column data types of the returned result set.
-
#next_token ⇒ String
A pagination token that can be used again on a ‘Query` call to get the next set of results.
-
#query_id ⇒ String
A unique ID for the given query.
-
#query_status ⇒ Types::QueryStatus
Information about the status of the query, including progress and bytes scanned.
-
#rows ⇒ Array<Types::Row>
The result set rows returned by the query.
Instance Attribute Details
#column_info ⇒ Array<Types::ColumnInfo>
The column data types of the returned result set.
860 861 862 863 864 865 866 867 868 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 860 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token that can be used again on a ‘Query` call to get the next set of results.
860 861 862 863 864 865 866 867 868 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 860 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status) SENSITIVE = [] include Aws::Structure end |
#query_id ⇒ String
A unique ID for the given query.
860 861 862 863 864 865 866 867 868 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 860 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status) SENSITIVE = [] include Aws::Structure end |
#query_status ⇒ Types::QueryStatus
Information about the status of the query, including progress and bytes scanned.
860 861 862 863 864 865 866 867 868 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 860 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status) SENSITIVE = [] include Aws::Structure end |
#rows ⇒ Array<Types::Row>
The result set rows returned by the query.
860 861 862 863 864 865 866 867 868 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 860 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status) SENSITIVE = [] include Aws::Structure end |