Class: Aws::TimestreamQuery::Types::Datum

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

Overview

Datum represents a single data point in a query result.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#array_valueArray<Types::Datum>

Indicates if the data point is an array.

Returns:



217
218
219
220
221
222
223
224
225
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 217

class Datum < Struct.new(
  :scalar_value,
  :time_series_value,
  :array_value,
  :row_value,
  :null_value)
  SENSITIVE = []
  include Aws::Structure
end

#null_valueBoolean

Indicates if the data point is null.

Returns:

  • (Boolean)


217
218
219
220
221
222
223
224
225
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 217

class Datum < Struct.new(
  :scalar_value,
  :time_series_value,
  :array_value,
  :row_value,
  :null_value)
  SENSITIVE = []
  include Aws::Structure
end

#row_valueTypes::Row

Indicates if the data point is a row.

Returns:



217
218
219
220
221
222
223
224
225
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 217

class Datum < Struct.new(
  :scalar_value,
  :time_series_value,
  :array_value,
  :row_value,
  :null_value)
  SENSITIVE = []
  include Aws::Structure
end

#scalar_valueString

Indicates if the data point is a scalar value such as integer, string, double, or Boolean.

Returns:

  • (String)


217
218
219
220
221
222
223
224
225
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 217

class Datum < Struct.new(
  :scalar_value,
  :time_series_value,
  :array_value,
  :row_value,
  :null_value)
  SENSITIVE = []
  include Aws::Structure
end

#time_series_valueArray<Types::TimeSeriesDataPoint>

Indicates if the data point is a timeseries data type.

Returns:



217
218
219
220
221
222
223
224
225
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 217

class Datum < Struct.new(
  :scalar_value,
  :time_series_value,
  :array_value,
  :row_value,
  :null_value)
  SENSITIVE = []
  include Aws::Structure
end