Class: Aws::Connect::Types::ThresholdV2
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::ThresholdV2
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Contains information about the threshold for service level metrics.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #comparison  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of comparison.
 - 
  
    
      #threshold_value  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The threshold value to compare.
 
Instance Attribute Details
#comparison ⇒ String
The type of comparison. Currently, “less than” (LT), “less than equal” (LTE), and “greater than” (GT) comparisons are supported.
      23641 23642 23643 23644 23645 23646  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23641 class ThresholdV2 < Struct.new( :comparison, :threshold_value) SENSITIVE = [] include Aws::Structure end  | 
  
#threshold_value ⇒ Float
The threshold value to compare.
      23641 23642 23643 23644 23645 23646  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23641 class ThresholdV2 < Struct.new( :comparison, :threshold_value) SENSITIVE = [] include Aws::Structure end  |