Class: Aws::TimestreamQuery::Types::Datum
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::TimestreamQuery::Types::Datum
 
- 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
- 
  
    
      #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. 
- 
  
    
      #time_series_value  ⇒ Array<Types::TimeSeriesDataPoint> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Indicates if the data point is a timeseries data type. 
Instance Attribute Details
#array_value ⇒ Array<Types::Datum>
Indicates if the data point is an array.
| 239 240 241 242 243 244 245 246 247 | # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 239 class Datum < Struct.new( :scalar_value, :time_series_value, :array_value, :row_value, :null_value) SENSITIVE = [] include Aws::Structure end | 
#null_value ⇒ Boolean
Indicates if the data point is null.
| 239 240 241 242 243 244 245 246 247 | # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 239 class Datum < Struct.new( :scalar_value, :time_series_value, :array_value, :row_value, :null_value) SENSITIVE = [] include Aws::Structure end | 
#row_value ⇒ Types::Row
Indicates if the data point is a row.
| 239 240 241 242 243 244 245 246 247 | # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 239 class Datum < Struct.new( :scalar_value, :time_series_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.
| 239 240 241 242 243 244 245 246 247 | # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 239 class Datum < Struct.new( :scalar_value, :time_series_value, :array_value, :row_value, :null_value) SENSITIVE = [] include Aws::Structure end | 
#time_series_value ⇒ Array<Types::TimeSeriesDataPoint>
Indicates if the data point is a timeseries data type.
| 239 240 241 242 243 244 245 246 247 | # File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 239 class Datum < Struct.new( :scalar_value, :time_series_value, :array_value, :row_value, :null_value) SENSITIVE = [] include Aws::Structure end |