Class: Aws::Connect::Types::Threshold
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Connect::Types::Threshold
 
- Defined in:
- gems/aws-sdk-connect/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. Only "less than" (LT) comparisons are supported.
| 25503 25504 25505 25506 25507 25508 | # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 25503 class Threshold < Struct.new( :comparison, :threshold_value) SENSITIVE = [] include Aws::Structure end |