Class: Aws::IoTSiteWise::Types::Datum

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

Overview

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:



3429
3430
3431
3432
3433
3434
3435
3436
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3429

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

#null_valueBoolean

Indicates if the data point is null.

Returns:

  • (Boolean)


3429
3430
3431
3432
3433
3434
3435
3436
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3429

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

#row_valueTypes::Row

Indicates if the data point is a row.

Returns:



3429
3430
3431
3432
3433
3434
3435
3436
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3429

class Datum < Struct.new(
  :scalar_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)


3429
3430
3431
3432
3433
3434
3435
3436
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3429

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