Class: Aws::TimestreamQuery::Types::PrepareQueryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::PrepareQueryRequest
- Includes:
- Structure
- Defined in:
- 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.
698 699 700 701 702 703 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 698 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.
698 699 700 701 702 703 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 698 class PrepareQueryRequest < Struct.new( :query_string, :validate_only) SENSITIVE = [:query_string] include Aws::Structure end |