Class: Aws::Connect::Types::Reference
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::Reference
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Well-formed data on a contact, used by agents to complete a contact request. You can have up to 4,096 UTF-8 bytes across all references for a contact.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the reference.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Status of the attachment reference type.
 - 
  
    
      #status_reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Relevant details why the reference was not successfully created.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the reference.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A valid value for the reference.
 
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the reference
      18683 18684 18685 18686 18687 18688 18689 18690 18691  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18683 class Reference < Struct.new( :value, :type, :status, :arn, :status_reason) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
Status of the attachment reference type.
      18683 18684 18685 18686 18687 18688 18689 18690 18691  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18683 class Reference < Struct.new( :value, :type, :status, :arn, :status_reason) SENSITIVE = [] include Aws::Structure end  | 
  
#status_reason ⇒ String
Relevant details why the reference was not successfully created.
      18683 18684 18685 18686 18687 18688 18689 18690 18691  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18683 class Reference < Struct.new( :value, :type, :status, :arn, :status_reason) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The type of the reference. ‘DATE` must be of type Epoch timestamp.
      18683 18684 18685 18686 18687 18688 18689 18690 18691  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18683 class Reference < Struct.new( :value, :type, :status, :arn, :status_reason) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
A valid value for the reference. For example, for a URL reference, a formatted URL that is displayed to an agent in the Contact Control Panel (CCP).
      18683 18684 18685 18686 18687 18688 18689 18690 18691  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18683 class Reference < Struct.new( :value, :type, :status, :arn, :status_reason) SENSITIVE = [] include Aws::Structure end  |