Class: Aws::TimestreamQuery::Types::PrepareQueryRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::TimestreamQuery::Types::PrepareQueryRequest
 
 
- Defined in:
 - gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 [:query_string]
Instance Attribute Summary collapse
- 
  
    
      #query_string  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Timestream query string that you want to use as a prepared statement.
 - 
  
    
      #validate_only  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
By setting this value to
true, Timestream will only validate that the query string is a valid Timestream query, and not store the prepared query for later use. 
Instance Attribute Details
#query_string ⇒ String
The Timestream query string that you want to use as a prepared
statement. Parameter names can be specified in the query string @
character followed by an identifier.
      774 775 776 777 778 779  | 
    
      # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 774 class PrepareQueryRequest < Struct.new( :query_string, :validate_only) SENSITIVE = [:query_string] include Aws::Structure end  | 
  
#validate_only ⇒ Boolean
By setting this value to true, Timestream will only validate that
the query string is a valid Timestream query, and not store the
prepared query for later use.
      774 775 776 777 778 779  | 
    
      # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 774 class PrepareQueryRequest < Struct.new( :query_string, :validate_only) SENSITIVE = [:query_string] include Aws::Structure end  |