Class: Aws::IoT::Types::MetricDimension
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::MetricDimension
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The dimension of a metric.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #dimension_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier for the dimension.
 - 
  
    
      #operator  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Defines how the ‘dimensionValues` of a dimension are interpreted.
 
Instance Attribute Details
#dimension_name ⇒ String
A unique identifier for the dimension.
      11836 11837 11838 11839 11840 11841  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 11836 class MetricDimension < Struct.new( :dimension_name, :operator) SENSITIVE = [] include Aws::Structure end  | 
  
#operator ⇒ String
Defines how the ‘dimensionValues` of a dimension are interpreted. For example, for dimension type TOPIC_FILTER, the `IN` operator, a message will be counted only if its topic matches one of the topic filters. With `NOT_IN` operator, a message will be counted only if it doesn’t match any of the topic filters. The operator is optional: if it’s not provided (is ‘null`), it will be interpreted as `IN`.
      11836 11837 11838 11839 11840 11841  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 11836 class MetricDimension < Struct.new( :dimension_name, :operator) SENSITIVE = [] include Aws::Structure end  |