Class: Aws::Connect::Types::StringCondition
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::StringCondition
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
A leaf node condition which can be used to specify a string condition.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #comparison_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of comparison to be made when evaluating the string condition.
 - 
  
    
      #field_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the field in the string condition.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the string.
 
Instance Attribute Details
#comparison_type ⇒ String
The type of comparison to be made when evaluating the string condition.
      23081 23082 23083 23084 23085 23086 23087  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23081 class StringCondition < Struct.new( :field_name, :value, :comparison_type) SENSITIVE = [] include Aws::Structure end  | 
  
#field_name ⇒ String
The name of the field in the string condition.
      23081 23082 23083 23084 23085 23086 23087  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23081 class StringCondition < Struct.new( :field_name, :value, :comparison_type) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
The value of the string.
      23081 23082 23083 23084 23085 23086 23087  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23081 class StringCondition < Struct.new( :field_name, :value, :comparison_type) SENSITIVE = [] include Aws::Structure end  |