Class: Aws::TimestreamQuery::Types::ParameterMapping
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::ParameterMapping
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamquery/types.rb
Overview
Mapping for named parameters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
Parameter name.
-
#type ⇒ Types::Type
Contains the data type of a column in a query result set.
Instance Attribute Details
#name ⇒ String
Parameter name.
677 678 679 680 681 682 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 677 class ParameterMapping < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ Types::Type
Contains the data type of a column in a query result set. The data type can be scalar or complex. The supported scalar data types are integers, Boolean, string, double, timestamp, date, time, and intervals. The supported complex data types are arrays, rows, and timeseries.
677 678 679 680 681 682 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 677 class ParameterMapping < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |