Class: Aws::Connect::Types::ContactSearchSummarySegmentAttributeValue
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::ContactSearchSummarySegmentAttributeValue
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
The value of a segment attribute. This is structured as a map with a single key-value pair. The key ‘valueString’ indicates that the attribute type is a string, and its corresponding value is the actual string value of the segment attribute.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #value_string  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of a segment attribute represented as a string.
 
Instance Attribute Details
#value_string ⇒ String
The value of a segment attribute represented as a string.
      3282 3283 3284 3285 3286  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 3282 class ContactSearchSummarySegmentAttributeValue < Struct.new( :value_string) SENSITIVE = [] include Aws::Structure end  |