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
-
#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
18286 18287 18288 18289 18290 18291 18292 18293 18294 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18286 class Reference < Struct.new( :value, :type, :status, :arn, :status_reason) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Status of the attachment reference type.
18286 18287 18288 18289 18290 18291 18292 18293 18294 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18286 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.
18286 18287 18288 18289 18290 18291 18292 18293 18294 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18286 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.
18286 18287 18288 18289 18290 18291 18292 18293 18294 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18286 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).
18286 18287 18288 18289 18290 18291 18292 18293 18294 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18286 class Reference < Struct.new( :value, :type, :status, :arn, :status_reason) SENSITIVE = [] include Aws::Structure end |