Class: Aws::IoTSiteWise::Types::Datum
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::Datum
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
Represents a single data point in a query result.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#array_value ⇒ Array<Types::Datum>
Indicates if the data point is an array.
-
#null_value ⇒ Boolean
Indicates if the data point is null.
-
#row_value ⇒ Types::Row
Indicates if the data point is a row.
-
#scalar_value ⇒ String
Indicates if the data point is a scalar value such as integer, string, double, or Boolean.
Instance Attribute Details
#array_value ⇒ Array<Types::Datum>
Indicates if the data point is an array.
3698 3699 3700 3701 3702 3703 3704 3705 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3698 class Datum < Struct.new( :scalar_value, :array_value, :row_value, :null_value) SENSITIVE = [] include Aws::Structure end |
#null_value ⇒ Boolean
Indicates if the data point is null.
3698 3699 3700 3701 3702 3703 3704 3705 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3698 class Datum < Struct.new( :scalar_value, :array_value, :row_value, :null_value) SENSITIVE = [] include Aws::Structure end |
#row_value ⇒ Types::Row
Indicates if the data point is a row.
3698 3699 3700 3701 3702 3703 3704 3705 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3698 class Datum < Struct.new( :scalar_value, :array_value, :row_value, :null_value) SENSITIVE = [] include Aws::Structure end |
#scalar_value ⇒ String
Indicates if the data point is a scalar value such as integer, string, double, or Boolean.
3698 3699 3700 3701 3702 3703 3704 3705 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 3698 class Datum < Struct.new( :scalar_value, :array_value, :row_value, :null_value) SENSITIVE = [] include Aws::Structure end |