Class: Aws::TimestreamQuery::Types::PrepareQueryRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:query_string]

Instance Attribute Summary collapse

Instance Attribute Details

#query_stringString

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.

Returns:

  • (String)


698
699
700
701
702
703
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 698

class PrepareQueryRequest < Struct.new(
  :query_string,
  :validate_only)
  SENSITIVE = [:query_string]
  include Aws::Structure
end

#validate_onlyBoolean

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.

Returns:

  • (Boolean)


698
699
700
701
702
703
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 698

class PrepareQueryRequest < Struct.new(
  :query_string,
  :validate_only)
  SENSITIVE = [:query_string]
  include Aws::Structure
end