Class: Aws::TimestreamWrite::Types::Dimension
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::TimestreamWrite::Types::Dimension
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-timestreamwrite/types.rb
 
Overview
Represents the metadata attributes of the time series. For example, the name and Availability Zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #dimension_value_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The data type of the dimension for the time-series data point.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Dimension represents the metadata attributes of the time series.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the dimension.
 
Instance Attribute Details
#dimension_value_type ⇒ String
The data type of the dimension for the time-series data point.
      677 678 679 680 681 682 683  | 
    
      # File 'lib/aws-sdk-timestreamwrite/types.rb', line 677 class Dimension < Struct.new( :name, :value, :dimension_value_type) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
Dimension represents the metadata attributes of the time series. For example, the name and Availability Zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions.
For constraints on dimension names, see [Naming Constraints].
[1]: docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html#limits.naming
      677 678 679 680 681 682 683  | 
    
      # File 'lib/aws-sdk-timestreamwrite/types.rb', line 677 class Dimension < Struct.new( :name, :value, :dimension_value_type) SENSITIVE = [] include Aws::Structure end  |