Class: Aws::Connect::Types::StringReference
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::StringReference
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Information about a reference when the ‘referenceType` is `STRING`. Otherwise, null.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifier of the string reference.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A valid string.
 
Instance Attribute Details
#name ⇒ String
Identifier of the string reference.
      23102 23103 23104 23105 23106 23107  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23102 class StringReference < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
A valid string.
      23102 23103 23104 23105 23106 23107  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23102 class StringReference < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end  |