Class: Aws::Connect::Types::Reference
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::Reference
- Defined in:
- gems/aws-sdk-connect/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
-
#type ⇒ String
The type of the reference.
-
#value ⇒ String
A valid value for the reference.
Instance Attribute Details
#type ⇒ String
The type of the reference. DATE
must be of type Epoch timestamp.
16689 16690 16691 16692 16693 16694 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 16689 class Reference < Struct.new( :value, :type) 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).
16689 16690 16691 16692 16693 16694 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 16689 class Reference < Struct.new( :value, :type) SENSITIVE = [] include Aws::Structure end |