Class: Aws::Connect::Types::Condition
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Connect::Types::Condition
 
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
A leaf node condition which can be used to specify a ProficiencyName, ProficiencyValue and ProficiencyLimit.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #number_condition  ⇒ Types::NumberCondition 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A leaf node condition which can be used to specify a numeric condition. 
- 
  
    
      #string_condition  ⇒ Types::StringCondition 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A leaf node condition which can be used to specify a string condition. 
Instance Attribute Details
#number_condition ⇒ Types::NumberCondition
A leaf node condition which can be used to specify a numeric condition.
| 2662 2663 2664 2665 2666 2667 | # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2662 class Condition < Struct.new( :string_condition, :number_condition) SENSITIVE = [] include Aws::Structure end | 
#string_condition ⇒ Types::StringCondition
A leaf node condition which can be used to specify a string condition.
FieldName are name and

value.
| 2662 2663 2664 2665 2666 2667 | # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2662 class Condition < Struct.new( :string_condition, :number_condition) SENSITIVE = [] include Aws::Structure end |