Class: Aws::Connect::Types::NumberCondition
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::NumberCondition
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
A leaf node condition which can be used to specify a numeric condition.
<note markdown=“1”> The currently supported value for ‘FieldName` is `limit`.
</note>
  Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #comparison_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of comparison to be made when evaluating the number condition.
 - 
  
    
      #field_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the field in the number condition.
 - 
  
    
      #max_value  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maxValue to be used while evaluating the number condition.
 - 
  
    
      #min_value  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minValue to be used while evaluating the number condition.
 
Instance Attribute Details
#comparison_type ⇒ String
The type of comparison to be made when evaluating the number condition.
      16830 16831 16832 16833 16834 16835 16836 16837  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 16830 class NumberCondition < Struct.new( :field_name, :min_value, :max_value, :comparison_type) SENSITIVE = [] include Aws::Structure end  | 
  
#field_name ⇒ String
The name of the field in the number condition.
      16830 16831 16832 16833 16834 16835 16836 16837  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 16830 class NumberCondition < Struct.new( :field_name, :min_value, :max_value, :comparison_type) SENSITIVE = [] include Aws::Structure end  | 
  
#max_value ⇒ Integer
The maxValue to be used while evaluating the number condition.
      16830 16831 16832 16833 16834 16835 16836 16837  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 16830 class NumberCondition < Struct.new( :field_name, :min_value, :max_value, :comparison_type) SENSITIVE = [] include Aws::Structure end  | 
  
#min_value ⇒ Integer
The minValue to be used while evaluating the number condition.
      16830 16831 16832 16833 16834 16835 16836 16837  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 16830 class NumberCondition < Struct.new( :field_name, :min_value, :max_value, :comparison_type) SENSITIVE = [] include Aws::Structure end  |