Class: Aws::TimestreamQuery::Types::QueryResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::TimestreamQuery::Types::QueryResponse
 
 
- Defined in:
 - gems/aws-sdk-timestreamquery/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
Querycall to get the next set of results. - 
  
    
      #query_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique ID for the given query.
 - 
  
    
      #query_insights_response  ⇒ Types::QueryInsightsResponse 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Encapsulates
QueryInsightscontaining insights and metrics related to the query that you executed. - 
  
    
      #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.
      1172 1173 1174 1175 1176 1177 1178 1179 1180 1181  | 
    
      # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1172 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status, :query_insights_response) 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.
      1172 1173 1174 1175 1176 1177 1178 1179 1180 1181  | 
    
      # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1172 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status, :query_insights_response) SENSITIVE = [] include Aws::Structure end  | 
  
#query_id ⇒ String
A unique ID for the given query.
      1172 1173 1174 1175 1176 1177 1178 1179 1180 1181  | 
    
      # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1172 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status, :query_insights_response) SENSITIVE = [] include Aws::Structure end  | 
  
#query_insights_response ⇒ Types::QueryInsightsResponse
Encapsulates QueryInsights containing insights and metrics related
to the query that you executed.
      1172 1173 1174 1175 1176 1177 1178 1179 1180 1181  | 
    
      # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1172 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status, :query_insights_response) SENSITIVE = [] include Aws::Structure end  | 
  
#query_status ⇒ Types::QueryStatus
Information about the status of the query, including progress and bytes scanned.
      1172 1173 1174 1175 1176 1177 1178 1179 1180 1181  | 
    
      # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1172 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status, :query_insights_response) SENSITIVE = [] include Aws::Structure end  | 
  
#rows ⇒ Array<Types::Row>
The result set rows returned by the query.
      1172 1173 1174 1175 1176 1177 1178 1179 1180 1181  | 
    
      # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1172 class QueryResponse < Struct.new( :query_id, :next_token, :rows, :column_info, :query_status, :query_insights_response) SENSITIVE = [] include Aws::Structure end  |