Class: Aws::Connect::Types::Reference

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#typeString

The type of the reference. DATE must be of type Epoch timestamp.

Returns:

  • (String)


14768
14769
14770
14771
14772
14773
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 14768

class Reference < Struct.new(
  :value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

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).

Returns:

  • (String)


14768
14769
14770
14771
14772
14773
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 14768

class Reference < Struct.new(
  :value,
  :type)
  SENSITIVE = []
  include Aws::Structure
end