aws-sdk-connect 1.204.0 → 1.206.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +279 -141
- data/lib/aws-sdk-connect/client_api.rb +33 -0
- data/lib/aws-sdk-connect/types.rb +392 -148
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +34 -1
- metadata +1 -1
@@ -2046,6 +2046,61 @@ module Aws::Connect
|
|
2046
2046
|
include Aws::Structure
|
2047
2047
|
end
|
2048
2048
|
|
2049
|
+
# Information about the overall participant interactions at the contact
|
2050
|
+
# level.
|
2051
|
+
#
|
2052
|
+
# @!attribute [rw] multi_party
|
2053
|
+
# A boolean flag indicating whether multiparty chat or supervisor
|
2054
|
+
# barge were enabled on this contact.
|
2055
|
+
# @return [Boolean]
|
2056
|
+
#
|
2057
|
+
# @!attribute [rw] total_messages
|
2058
|
+
# The number of chat messages on the contact.
|
2059
|
+
# @return [Integer]
|
2060
|
+
#
|
2061
|
+
# @!attribute [rw] total_bot_messages
|
2062
|
+
# The total number of bot and automated messages on a chat contact.
|
2063
|
+
# @return [Integer]
|
2064
|
+
#
|
2065
|
+
# @!attribute [rw] total_bot_message_length_in_chars
|
2066
|
+
# The total number of characters from bot and automated messages on a
|
2067
|
+
# chat contact.
|
2068
|
+
# @return [Integer]
|
2069
|
+
#
|
2070
|
+
# @!attribute [rw] conversation_close_time_in_millis
|
2071
|
+
# The time it took for a contact to end after the last customer
|
2072
|
+
# message.
|
2073
|
+
# @return [Integer]
|
2074
|
+
#
|
2075
|
+
# @!attribute [rw] conversation_turn_count
|
2076
|
+
# The number of conversation turns in a chat contact, which represents
|
2077
|
+
# the back-and-forth exchanges between customer and other
|
2078
|
+
# participants.
|
2079
|
+
# @return [Integer]
|
2080
|
+
#
|
2081
|
+
# @!attribute [rw] agent_first_response_timestamp
|
2082
|
+
# The agent first response timestamp for a chat contact.
|
2083
|
+
# @return [Time]
|
2084
|
+
#
|
2085
|
+
# @!attribute [rw] agent_first_response_time_in_millis
|
2086
|
+
# The time for an agent to respond after obtaining a chat contact.
|
2087
|
+
# @return [Integer]
|
2088
|
+
#
|
2089
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ChatContactMetrics AWS API Documentation
|
2090
|
+
#
|
2091
|
+
class ChatContactMetrics < Struct.new(
|
2092
|
+
:multi_party,
|
2093
|
+
:total_messages,
|
2094
|
+
:total_bot_messages,
|
2095
|
+
:total_bot_message_length_in_chars,
|
2096
|
+
:conversation_close_time_in_millis,
|
2097
|
+
:conversation_turn_count,
|
2098
|
+
:agent_first_response_timestamp,
|
2099
|
+
:agent_first_response_time_in_millis)
|
2100
|
+
SENSITIVE = []
|
2101
|
+
include Aws::Structure
|
2102
|
+
end
|
2103
|
+
|
2049
2104
|
# Chat integration event containing payload to perform different chat
|
2050
2105
|
# actions such as:
|
2051
2106
|
#
|
@@ -2136,6 +2191,32 @@ module Aws::Connect
|
|
2136
2191
|
include Aws::Structure
|
2137
2192
|
end
|
2138
2193
|
|
2194
|
+
# Information about how agent, bot, and customer interact in a chat
|
2195
|
+
# contact.
|
2196
|
+
#
|
2197
|
+
# @!attribute [rw] chat_contact_metrics
|
2198
|
+
# Information about the overall participant interactions at the
|
2199
|
+
# contact level.
|
2200
|
+
# @return [Types::ChatContactMetrics]
|
2201
|
+
#
|
2202
|
+
# @!attribute [rw] agent_metrics
|
2203
|
+
# Information about agent interactions in a contact.
|
2204
|
+
# @return [Types::ParticipantMetrics]
|
2205
|
+
#
|
2206
|
+
# @!attribute [rw] customer_metrics
|
2207
|
+
# Information about customer interactions in a contact.
|
2208
|
+
# @return [Types::ParticipantMetrics]
|
2209
|
+
#
|
2210
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ChatMetrics AWS API Documentation
|
2211
|
+
#
|
2212
|
+
class ChatMetrics < Struct.new(
|
2213
|
+
:chat_contact_metrics,
|
2214
|
+
:agent_metrics,
|
2215
|
+
:customer_metrics)
|
2216
|
+
SENSITIVE = []
|
2217
|
+
include Aws::Structure
|
2218
|
+
end
|
2219
|
+
|
2139
2220
|
# Configuration information for the chat participant role.
|
2140
2221
|
#
|
2141
2222
|
# @!attribute [rw] participant_timer_config_list
|
@@ -2667,6 +2748,11 @@ module Aws::Connect
|
|
2667
2748
|
# connection.
|
2668
2749
|
# @return [Types::QualityMetrics]
|
2669
2750
|
#
|
2751
|
+
# @!attribute [rw] chat_metrics
|
2752
|
+
# Information about how agent, bot, and customer interact in a chat
|
2753
|
+
# contact.
|
2754
|
+
# @return [Types::ChatMetrics]
|
2755
|
+
#
|
2670
2756
|
# @!attribute [rw] disconnect_details
|
2671
2757
|
# Information about the call disconnect experience.
|
2672
2758
|
# @return [Types::DisconnectDetails]
|
@@ -2744,6 +2830,7 @@ module Aws::Connect
|
|
2744
2830
|
:answering_machine_detection_status,
|
2745
2831
|
:customer_voice_activity,
|
2746
2832
|
:quality_metrics,
|
2833
|
+
:chat_metrics,
|
2747
2834
|
:disconnect_details,
|
2748
2835
|
:additional_email_recipients,
|
2749
2836
|
:segment_attributes,
|
@@ -3923,29 +4010,31 @@ module Aws::Connect
|
|
3923
4010
|
# @!attribute [rw] references
|
3924
4011
|
# A formatted URL that is shown to an agent in the Contact Control
|
3925
4012
|
# Panel (CCP). Tasks can have the following reference types at the
|
3926
|
-
# time of creation: URL \| NUMBER \| STRING \| DATE \| EMAIL
|
3927
|
-
# ATTACHMENT
|
4013
|
+
# time of creation: `URL` \| `NUMBER` \| `STRING` \| `DATE` \| `EMAIL`
|
4014
|
+
# \| `ATTACHMENT`.
|
3928
4015
|
# @return [Hash<String,Types::Reference>]
|
3929
4016
|
#
|
3930
4017
|
# @!attribute [rw] channel
|
3931
|
-
# The channel for the contact
|
4018
|
+
# The channel for the contact.
|
3932
4019
|
#
|
3933
|
-
#
|
3934
|
-
#
|
3935
|
-
# incorrect. We are working to update this topic.
|
4020
|
+
# The CHAT channel is not supported. The following information is
|
4021
|
+
# incorrect. We're working to correct it.
|
3936
4022
|
# @return [String]
|
3937
4023
|
#
|
3938
4024
|
# @!attribute [rw] initiation_method
|
3939
4025
|
# Indicates how the contact was initiated.
|
3940
4026
|
#
|
3941
|
-
# CreateContact only supports the following initiation methods
|
4027
|
+
# CreateContact only supports the following initiation methods. Valid
|
4028
|
+
# values by channel are:
|
3942
4029
|
#
|
3943
|
-
# * For
|
4030
|
+
# * For VOICE: `TRANSFER` and the subtype `connect:ExternalAudio`
|
3944
4031
|
#
|
3945
|
-
# * For
|
4032
|
+
# * For EMAIL: `OUTBOUND` \| `AGENT_REPLY` \| `FLOW`
|
3946
4033
|
#
|
3947
|
-
#
|
3948
|
-
#
|
4034
|
+
# * For TASK: `API`
|
4035
|
+
#
|
4036
|
+
# The other channels listed below are incorrect. We're working to
|
4037
|
+
# correct this information.
|
3949
4038
|
# @return [String]
|
3950
4039
|
#
|
3951
4040
|
# @!attribute [rw] expiry_duration_in_minutes
|
@@ -3954,10 +4043,14 @@ module Aws::Connect
|
|
3954
4043
|
#
|
3955
4044
|
# @!attribute [rw] user_info
|
3956
4045
|
# User details for the contact
|
4046
|
+
#
|
4047
|
+
# UserInfo is required when creating an EMAIL contact with `OUTBOUND`
|
4048
|
+
# and `AGENT_REPLY` contact initiation methods.
|
3957
4049
|
# @return [Types::UserInfo]
|
3958
4050
|
#
|
3959
4051
|
# @!attribute [rw] initiate_as
|
3960
|
-
# Initial state of the contact when it's created
|
4052
|
+
# Initial state of the contact when it's created. Only TASK channel
|
4053
|
+
# contacts can be initiated with `COMPLETED` state.
|
3961
4054
|
# @return [String]
|
3962
4055
|
#
|
3963
4056
|
# @!attribute [rw] name
|
@@ -4052,8 +4145,7 @@ module Aws::Connect
|
|
4052
4145
|
# @return [String]
|
4053
4146
|
#
|
4054
4147
|
# @!attribute [rw] email_address
|
4055
|
-
# The email address
|
4056
|
-
# \[^\\s@\]+@\[^\\s@\]+\\.\[^\\s@\]+ format.
|
4148
|
+
# The email address, including the domain.
|
4057
4149
|
# @return [String]
|
4058
4150
|
#
|
4059
4151
|
# @!attribute [rw] display_name
|
@@ -7017,8 +7109,7 @@ module Aws::Connect
|
|
7017
7109
|
# @return [String]
|
7018
7110
|
#
|
7019
7111
|
# @!attribute [rw] email_address
|
7020
|
-
# The email address
|
7021
|
-
# \[^\\s@\]+@\[^\\s@\]+\\.\[^\\s@\]+ format.
|
7112
|
+
# The email address, including the domain.
|
7022
7113
|
# @return [String]
|
7023
7114
|
#
|
7024
7115
|
# @!attribute [rw] display_name
|
@@ -8373,11 +8464,10 @@ module Aws::Connect
|
|
8373
8464
|
include Aws::Structure
|
8374
8465
|
end
|
8375
8466
|
|
8376
|
-
# Contains information about a source or destination email address
|
8467
|
+
# Contains information about a source or destination email address.
|
8377
8468
|
#
|
8378
8469
|
# @!attribute [rw] email_address
|
8379
|
-
# The email address
|
8380
|
-
# \[^\\s@\]+@\[^\\s@\]+\\.\[^\\s@\]+ format.
|
8470
|
+
# The email address, including the domain.
|
8381
8471
|
# @return [String]
|
8382
8472
|
#
|
8383
8473
|
# @!attribute [rw] display_name
|
@@ -8404,8 +8494,7 @@ module Aws::Connect
|
|
8404
8494
|
# @return [String]
|
8405
8495
|
#
|
8406
8496
|
# @!attribute [rw] email_address
|
8407
|
-
# The email address
|
8408
|
-
# \[^\\s@\]+@\[^\\s@\]+\\.\[^\\s@\]+ format.
|
8497
|
+
# The email address, including the domain.
|
8409
8498
|
# @return [String]
|
8410
8499
|
#
|
8411
8500
|
# @!attribute [rw] description
|
@@ -10751,8 +10840,9 @@ module Aws::Connect
|
|
10751
10840
|
# `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
10752
10841
|
# `ANSWERING_MACHINE_DETECTION_STATUS` \| ` BOT_ID` \| `BOT_ALIAS`
|
10753
10842
|
# \| `BOT_VERSION` \| `BOT_LOCALE` \| `BOT_INTENT_NAME` \|
|
10754
|
-
# `CAMPAIGN` \| `CAMPAIGN_DELIVERY_EVENT_TYPE`
|
10755
|
-
#
|
10843
|
+
# `CAMPAIGN` \| `CAMPAIGN_DELIVERY_EVENT_TYPE` \|
|
10844
|
+
# `CAMPAIGN_EXCLUDED_EVENT_TYPE ` \| `CASE_TEMPLATE_ARN` \|
|
10845
|
+
# `CASE_STATUS` \| `CHANNEL` \|
|
10756
10846
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
10757
10847
|
# \| `EVALUATION_FORM` \| `EVALUATION_SECTION` \|
|
10758
10848
|
# `EVALUATION_QUESTION` \| `EVALUATION_SOURCE` \| `FEATURE` \|
|
@@ -10816,7 +10906,8 @@ module Aws::Connect
|
|
10816
10906
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
10817
10907
|
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `BOT_ID` \| `BOT_ALIAS` \|
|
10818
10908
|
# `BOT_VERSION` \| `BOT_LOCALE` \| `BOT_INTENT_NAME` \| `CAMPAIGN` \|
|
10819
|
-
# `CAMPAIGN_DELIVERY_EVENT_TYPE` \| `
|
10909
|
+
# `CAMPAIGN_DELIVERY_EVENT_TYPE` \| `CAMPAIGN_EXCLUDED_EVENT_TYPE` \|
|
10910
|
+
# `CAMPAIGN_EXECUTION_TIMESTAMP` \| `CASE_TEMPLATE_ARN` \|
|
10820
10911
|
# `CASE_STATUS` \| `CHANNEL` \|
|
10821
10912
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
10822
10913
|
# \| `EVALUATION_FORM` \| `EVALUATION_SECTION` \|
|
@@ -11381,6 +11472,19 @@ module Aws::Connect
|
|
11381
11472
|
#
|
11382
11473
|
# UI name: [Campaign interactions][47]
|
11383
11474
|
#
|
11475
|
+
# CAMPAIGN\_PROGRESS\_RATE
|
11476
|
+
#
|
11477
|
+
# : This metric is only available for outbound campaigns initiated
|
11478
|
+
# using a customer segment. It is not available for event triggered
|
11479
|
+
# campaigns.
|
11480
|
+
#
|
11481
|
+
# Unit: Percent
|
11482
|
+
#
|
11483
|
+
# Valid groupings and filters: Campaign, Campaign Execution
|
11484
|
+
# Timestamp
|
11485
|
+
#
|
11486
|
+
# UI name: [Campaign progress rate][48]
|
11487
|
+
#
|
11384
11488
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
11385
11489
|
#
|
11386
11490
|
# : This metric is available only for outbound campaigns.
|
@@ -11390,7 +11494,20 @@ module Aws::Connect
|
|
11390
11494
|
# Valid groupings and filters: Campaign, Channel,
|
11391
11495
|
# contact/segmentAttributes/connect:Subtype
|
11392
11496
|
#
|
11393
|
-
# UI name: [Campaign send attempts][
|
11497
|
+
# UI name: [Campaign send attempts][49]
|
11498
|
+
#
|
11499
|
+
# CAMPAIGN\_SEND\_EXCLUSIONS
|
11500
|
+
#
|
11501
|
+
# : This metric is available only for outbound campaigns.
|
11502
|
+
#
|
11503
|
+
# Valid metric filter key: CAMPAIGN\_EXCLUDED\_EVENT\_TYPE
|
11504
|
+
#
|
11505
|
+
# Unit: Count
|
11506
|
+
#
|
11507
|
+
# Valid groupings and filters: Campaign, Campaign Excluded Event
|
11508
|
+
# Type, Campaign Execution Timestamp
|
11509
|
+
#
|
11510
|
+
# UI name: [Campaign send exclusions][50]
|
11394
11511
|
#
|
11395
11512
|
# CASES\_CREATED
|
11396
11513
|
#
|
@@ -11400,7 +11517,7 @@ module Aws::Connect
|
|
11400
11517
|
#
|
11401
11518
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11402
11519
|
#
|
11403
|
-
# UI name: [Cases created][
|
11520
|
+
# UI name: [Cases created][51]
|
11404
11521
|
#
|
11405
11522
|
# CONTACTS\_CREATED
|
11406
11523
|
#
|
@@ -11411,7 +11528,7 @@ module Aws::Connect
|
|
11411
11528
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11412
11529
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11413
11530
|
#
|
11414
|
-
# UI name: [Contacts created][
|
11531
|
+
# UI name: [Contacts created][52]
|
11415
11532
|
#
|
11416
11533
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11417
11534
|
#
|
@@ -11428,7 +11545,7 @@ module Aws::Connect
|
|
11428
11545
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression,
|
11429
11546
|
# Q in Connect
|
11430
11547
|
#
|
11431
|
-
# UI name: [API contacts handled][
|
11548
|
+
# UI name: [API contacts handled][53]
|
11432
11549
|
#
|
11433
11550
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11434
11551
|
#
|
@@ -11443,7 +11560,7 @@ module Aws::Connect
|
|
11443
11560
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11444
11561
|
# Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11445
11562
|
#
|
11446
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
11563
|
+
# UI name: [Contacts handled (connected to agent timestamp)][54]
|
11447
11564
|
#
|
11448
11565
|
# CONTACTS\_HOLD\_ABANDONS
|
11449
11566
|
#
|
@@ -11453,7 +11570,7 @@ module Aws::Connect
|
|
11453
11570
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11454
11571
|
# Q in Connect
|
11455
11572
|
#
|
11456
|
-
# UI name: [Contacts hold disconnect][
|
11573
|
+
# UI name: [Contacts hold disconnect][55]
|
11457
11574
|
#
|
11458
11575
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
11459
11576
|
#
|
@@ -11462,7 +11579,7 @@ module Aws::Connect
|
|
11462
11579
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11463
11580
|
# Agent, Agent Hierarchy, Q in Connect
|
11464
11581
|
#
|
11465
|
-
# UI name: [Contacts hold agent disconnect][
|
11582
|
+
# UI name: [Contacts hold agent disconnect][56]
|
11466
11583
|
#
|
11467
11584
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
11468
11585
|
#
|
@@ -11471,7 +11588,7 @@ module Aws::Connect
|
|
11471
11588
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11472
11589
|
# Agent, Agent Hierarchy, Q in Connect
|
11473
11590
|
#
|
11474
|
-
# UI name: [Contacts hold customer disconnect][
|
11591
|
+
# UI name: [Contacts hold customer disconnect][57]
|
11475
11592
|
#
|
11476
11593
|
# CONTACTS\_PUT\_ON\_HOLD
|
11477
11594
|
#
|
@@ -11480,7 +11597,7 @@ module Aws::Connect
|
|
11480
11597
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11481
11598
|
# Agent, Agent Hierarchy, Q in Connect
|
11482
11599
|
#
|
11483
|
-
# UI name: [Contacts put on hold][
|
11600
|
+
# UI name: [Contacts put on hold][58]
|
11484
11601
|
#
|
11485
11602
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
11486
11603
|
#
|
@@ -11489,7 +11606,7 @@ module Aws::Connect
|
|
11489
11606
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11490
11607
|
# Agent, Agent Hierarchy, Q in Connect
|
11491
11608
|
#
|
11492
|
-
# UI name: [Contacts transferred out external][
|
11609
|
+
# UI name: [Contacts transferred out external][59]
|
11493
11610
|
#
|
11494
11611
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
11495
11612
|
#
|
@@ -11498,7 +11615,7 @@ module Aws::Connect
|
|
11498
11615
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11499
11616
|
# Agent, Agent Hierarchy, Q in Connect
|
11500
11617
|
#
|
11501
|
-
# UI name: [Contacts transferred out internal][
|
11618
|
+
# UI name: [Contacts transferred out internal][60]
|
11502
11619
|
#
|
11503
11620
|
# CONTACTS\_QUEUED
|
11504
11621
|
#
|
@@ -11508,7 +11625,7 @@ module Aws::Connect
|
|
11508
11625
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11509
11626
|
# Q in Connect
|
11510
11627
|
#
|
11511
|
-
# UI name: [Contacts queued][
|
11628
|
+
# UI name: [Contacts queued][61]
|
11512
11629
|
#
|
11513
11630
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
11514
11631
|
#
|
@@ -11517,7 +11634,7 @@ module Aws::Connect
|
|
11517
11634
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11518
11635
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
11519
11636
|
#
|
11520
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
11637
|
+
# UI name: [Contacts queued (enqueue timestamp)][62]
|
11521
11638
|
#
|
11522
11639
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
11523
11640
|
#
|
@@ -11530,7 +11647,7 @@ module Aws::Connect
|
|
11530
11647
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11531
11648
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11532
11649
|
#
|
11533
|
-
# UI name: [Contacts removed from queue in X seconds][
|
11650
|
+
# UI name: [Contacts removed from queue in X seconds][63]
|
11534
11651
|
#
|
11535
11652
|
# CONTACTS\_RESOLVED\_IN\_X
|
11536
11653
|
#
|
@@ -11543,7 +11660,7 @@ module Aws::Connect
|
|
11543
11660
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11544
11661
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11545
11662
|
#
|
11546
|
-
# UI name: [Contacts resolved in X][
|
11663
|
+
# UI name: [Contacts resolved in X][64]
|
11547
11664
|
#
|
11548
11665
|
# CONTACTS\_TRANSFERRED\_OUT
|
11549
11666
|
#
|
@@ -11553,7 +11670,7 @@ module Aws::Connect
|
|
11553
11670
|
# Agent, Agent Hierarchy, Feature,
|
11554
11671
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11555
11672
|
#
|
11556
|
-
# UI name: [Contacts transferred out][
|
11673
|
+
# UI name: [Contacts transferred out][65]
|
11557
11674
|
#
|
11558
11675
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11559
11676
|
#
|
@@ -11567,7 +11684,7 @@ module Aws::Connect
|
|
11567
11684
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11568
11685
|
# Q in Connect
|
11569
11686
|
#
|
11570
|
-
# UI name: [Contacts transferred out by agent][
|
11687
|
+
# UI name: [Contacts transferred out by agent][66]
|
11571
11688
|
#
|
11572
11689
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
11573
11690
|
#
|
@@ -11577,7 +11694,7 @@ module Aws::Connect
|
|
11577
11694
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11578
11695
|
# Q in Connect
|
11579
11696
|
#
|
11580
|
-
# UI name: [Contacts transferred out queue][
|
11697
|
+
# UI name: [Contacts transferred out queue][67]
|
11581
11698
|
#
|
11582
11699
|
# CURRENT\_CASES
|
11583
11700
|
#
|
@@ -11587,7 +11704,7 @@ module Aws::Connect
|
|
11587
11704
|
#
|
11588
11705
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11589
11706
|
#
|
11590
|
-
# UI name: [Current cases][
|
11707
|
+
# UI name: [Current cases][68]
|
11591
11708
|
#
|
11592
11709
|
# DELIVERY\_ATTEMPTS
|
11593
11710
|
#
|
@@ -11603,7 +11720,7 @@ module Aws::Connect
|
|
11603
11720
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11604
11721
|
# Queue, Routing Profile
|
11605
11722
|
#
|
11606
|
-
# UI name: [Delivery attempts][
|
11723
|
+
# UI name: [Delivery attempts][69]
|
11607
11724
|
#
|
11608
11725
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
11609
11726
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -11629,7 +11746,7 @@ module Aws::Connect
|
|
11629
11746
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11630
11747
|
# Queue, Routing Profile
|
11631
11748
|
#
|
11632
|
-
# UI name: [Delivery attempt disposition rate][
|
11749
|
+
# UI name: [Delivery attempt disposition rate][70]
|
11633
11750
|
#
|
11634
11751
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only
|
11635
11752
|
# available for SMS and Email campaign delivery modes. Agent, Queue,
|
@@ -11647,7 +11764,7 @@ module Aws::Connect
|
|
11647
11764
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
11648
11765
|
# Routing Profile
|
11649
11766
|
#
|
11650
|
-
# UI name: [Evaluations performed][
|
11767
|
+
# UI name: [Evaluations performed][71]
|
11651
11768
|
#
|
11652
11769
|
# FLOWS\_OUTCOME
|
11653
11770
|
#
|
@@ -11659,7 +11776,7 @@ module Aws::Connect
|
|
11659
11776
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11660
11777
|
# published timestamp
|
11661
11778
|
#
|
11662
|
-
# UI name: [Flows outcome][
|
11779
|
+
# UI name: [Flows outcome][72]
|
11663
11780
|
#
|
11664
11781
|
# FLOWS\_STARTED
|
11665
11782
|
#
|
@@ -11670,7 +11787,7 @@ module Aws::Connect
|
|
11670
11787
|
# resource ID, Flows resource ID, Initiation method, Resource
|
11671
11788
|
# published timestamp
|
11672
11789
|
#
|
11673
|
-
# UI name: [Flows started][
|
11790
|
+
# UI name: [Flows started][73]
|
11674
11791
|
#
|
11675
11792
|
# HUMAN\_ANSWERED\_CALLS
|
11676
11793
|
#
|
@@ -11682,7 +11799,7 @@ module Aws::Connect
|
|
11682
11799
|
#
|
11683
11800
|
# Valid groupings and filters: Agent, Campaign
|
11684
11801
|
#
|
11685
|
-
# UI name: [Human answered][
|
11802
|
+
# UI name: [Human answered][74]
|
11686
11803
|
#
|
11687
11804
|
# MAX\_FLOW\_TIME
|
11688
11805
|
#
|
@@ -11694,7 +11811,7 @@ module Aws::Connect
|
|
11694
11811
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11695
11812
|
# published timestamp
|
11696
11813
|
#
|
11697
|
-
# UI name: [Maximum flow time][
|
11814
|
+
# UI name: [Maximum flow time][75]
|
11698
11815
|
#
|
11699
11816
|
# MAX\_QUEUED\_TIME
|
11700
11817
|
#
|
@@ -11704,7 +11821,7 @@ module Aws::Connect
|
|
11704
11821
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11705
11822
|
# Q in Connect
|
11706
11823
|
#
|
11707
|
-
# UI name: [Maximum queued time][
|
11824
|
+
# UI name: [Maximum queued time][76]
|
11708
11825
|
#
|
11709
11826
|
# MIN\_FLOW\_TIME
|
11710
11827
|
#
|
@@ -11716,7 +11833,7 @@ module Aws::Connect
|
|
11716
11833
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11717
11834
|
# published timestamp
|
11718
11835
|
#
|
11719
|
-
# UI name: [Minimum flow time][
|
11836
|
+
# UI name: [Minimum flow time][77]
|
11720
11837
|
#
|
11721
11838
|
# PERCENT\_AUTOMATIC\_FAILS
|
11722
11839
|
#
|
@@ -11726,7 +11843,7 @@ module Aws::Connect
|
|
11726
11843
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
11727
11844
|
# Routing Profile
|
11728
11845
|
#
|
11729
|
-
# UI name: [Automatic fails percent][
|
11846
|
+
# UI name: [Automatic fails percent][78]
|
11730
11847
|
#
|
11731
11848
|
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
11732
11849
|
#
|
@@ -11739,7 +11856,7 @@ module Aws::Connect
|
|
11739
11856
|
# Initiation method, Invoking resource type, Parent flows resource
|
11740
11857
|
# ID
|
11741
11858
|
#
|
11742
|
-
# UI name: [Percent bot conversations outcome][
|
11859
|
+
# UI name: [Percent bot conversations outcome][79]
|
11743
11860
|
#
|
11744
11861
|
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
11745
11862
|
#
|
@@ -11752,7 +11869,7 @@ module Aws::Connect
|
|
11752
11869
|
# published timestamp, Initiation method, Invoking resource type,
|
11753
11870
|
# Parent flows resource ID
|
11754
11871
|
#
|
11755
|
-
# UI name: [Percent bot intents outcome][
|
11872
|
+
# UI name: [Percent bot intents outcome][80]
|
11756
11873
|
#
|
11757
11874
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
11758
11875
|
#
|
@@ -11762,7 +11879,7 @@ module Aws::Connect
|
|
11762
11879
|
#
|
11763
11880
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11764
11881
|
#
|
11765
|
-
# UI name: [Cases resolved on first contact][
|
11882
|
+
# UI name: [Cases resolved on first contact][81]
|
11766
11883
|
#
|
11767
11884
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
11768
11885
|
#
|
@@ -11794,7 +11911,7 @@ module Aws::Connect
|
|
11794
11911
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11795
11912
|
# published timestamp
|
11796
11913
|
#
|
11797
|
-
# UI name: [Flows outcome percentage][
|
11914
|
+
# UI name: [Flows outcome percentage][82].
|
11798
11915
|
#
|
11799
11916
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
11800
11917
|
#
|
@@ -11811,7 +11928,7 @@ module Aws::Connect
|
|
11811
11928
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11812
11929
|
# Q in Connect
|
11813
11930
|
#
|
11814
|
-
# UI name: [Non-talk time percent][
|
11931
|
+
# UI name: [Non-talk time percent][83]
|
11815
11932
|
#
|
11816
11933
|
# PERCENT\_TALK\_TIME
|
11817
11934
|
#
|
@@ -11824,7 +11941,7 @@ module Aws::Connect
|
|
11824
11941
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11825
11942
|
# Q in Connect
|
11826
11943
|
#
|
11827
|
-
# UI name: [Talk time percent][
|
11944
|
+
# UI name: [Talk time percent][84]
|
11828
11945
|
#
|
11829
11946
|
# PERCENT\_TALK\_TIME\_AGENT
|
11830
11947
|
#
|
@@ -11837,7 +11954,7 @@ module Aws::Connect
|
|
11837
11954
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11838
11955
|
# Q in Connect
|
11839
11956
|
#
|
11840
|
-
# UI name: [Agent talk time percent][
|
11957
|
+
# UI name: [Agent talk time percent][85]
|
11841
11958
|
#
|
11842
11959
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
11843
11960
|
#
|
@@ -11850,7 +11967,49 @@ module Aws::Connect
|
|
11850
11967
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11851
11968
|
# Q in Connect
|
11852
11969
|
#
|
11853
|
-
# UI name: [Customer talk time percent][
|
11970
|
+
# UI name: [Customer talk time percent][86]
|
11971
|
+
#
|
11972
|
+
# RECIPIENTS\_ATTEMPTED
|
11973
|
+
#
|
11974
|
+
# : This metric is only available for outbound campaigns initiated
|
11975
|
+
# using a customer segment. It is not available for event triggered
|
11976
|
+
# campaigns.
|
11977
|
+
#
|
11978
|
+
# Unit: Count
|
11979
|
+
#
|
11980
|
+
# Valid groupings and filters: Campaign, Campaign Execution
|
11981
|
+
# Timestamp
|
11982
|
+
#
|
11983
|
+
# UI name: [Recipients attempted][87]
|
11984
|
+
#
|
11985
|
+
# RECIPIENTS\_INTERACTED
|
11986
|
+
#
|
11987
|
+
# : This metric is only available for outbound campaigns initiated
|
11988
|
+
# using a customer segment. It is not available for event triggered
|
11989
|
+
# campaigns.
|
11990
|
+
#
|
11991
|
+
# Valid metric filter key: CAMPAIGN\_INTERACTION\_EVENT\_TYPE
|
11992
|
+
#
|
11993
|
+
# Unit: Count
|
11994
|
+
#
|
11995
|
+
# Valid groupings and filters: Campaign, Channel,
|
11996
|
+
# contact/segmentAttributes/connect:Subtype, Campaign Execution
|
11997
|
+
# Timestamp
|
11998
|
+
#
|
11999
|
+
# UI name: [Recipients interacted][88]
|
12000
|
+
#
|
12001
|
+
# RECIPIENTS\_TARGETED
|
12002
|
+
#
|
12003
|
+
# : This metric is only available for outbound campaigns initiated
|
12004
|
+
# using a customer segment. It is not available for event triggered
|
12005
|
+
# campaigns.
|
12006
|
+
#
|
12007
|
+
# Unit: Count
|
12008
|
+
#
|
12009
|
+
# Valid groupings and filters: Campaign, Campaign Execution
|
12010
|
+
# Timestamp
|
12011
|
+
#
|
12012
|
+
# UI name: [Recipients targeted][89]
|
11854
12013
|
#
|
11855
12014
|
# REOPENED\_CASE\_ACTIONS
|
11856
12015
|
#
|
@@ -11860,7 +12019,7 @@ module Aws::Connect
|
|
11860
12019
|
#
|
11861
12020
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11862
12021
|
#
|
11863
|
-
# UI name: [Cases reopened][
|
12022
|
+
# UI name: [Cases reopened][90]
|
11864
12023
|
#
|
11865
12024
|
# RESOLVED\_CASE\_ACTIONS
|
11866
12025
|
#
|
@@ -11870,7 +12029,7 @@ module Aws::Connect
|
|
11870
12029
|
#
|
11871
12030
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11872
12031
|
#
|
11873
|
-
# UI name: [Cases resolved][
|
12032
|
+
# UI name: [Cases resolved][91]
|
11874
12033
|
#
|
11875
12034
|
# SERVICE\_LEVEL
|
11876
12035
|
#
|
@@ -11885,7 +12044,7 @@ module Aws::Connect
|
|
11885
12044
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11886
12045
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11887
12046
|
#
|
11888
|
-
# UI name: [Service level X][
|
12047
|
+
# UI name: [Service level X][92]
|
11889
12048
|
#
|
11890
12049
|
# STEP\_CONTACTS\_QUEUED
|
11891
12050
|
#
|
@@ -11916,7 +12075,7 @@ module Aws::Connect
|
|
11916
12075
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11917
12076
|
# Agent, Agent Hierarchy
|
11918
12077
|
#
|
11919
|
-
# UI name: [Agent API connecting time][
|
12078
|
+
# UI name: [Agent API connecting time][93]
|
11920
12079
|
#
|
11921
12080
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for
|
11922
12081
|
# this metric.
|
@@ -11938,7 +12097,7 @@ module Aws::Connect
|
|
11938
12097
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11939
12098
|
# RoutingStepExpression, Q in Connect
|
11940
12099
|
#
|
11941
|
-
# UI name: [Contact abandoned][
|
12100
|
+
# UI name: [Contact abandoned][94]
|
11942
12101
|
#
|
11943
12102
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
11944
12103
|
#
|
@@ -11951,7 +12110,7 @@ module Aws::Connect
|
|
11951
12110
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11952
12111
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11953
12112
|
#
|
11954
|
-
# UI name: [Contacts abandoned in X seconds][
|
12113
|
+
# UI name: [Contacts abandoned in X seconds][95]
|
11955
12114
|
#
|
11956
12115
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
11957
12116
|
#
|
@@ -11964,7 +12123,7 @@ module Aws::Connect
|
|
11964
12123
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11965
12124
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11966
12125
|
#
|
11967
|
-
# UI name: [Contacts answered in X seconds][
|
12126
|
+
# UI name: [Contacts answered in X seconds][96]
|
11968
12127
|
#
|
11969
12128
|
# SUM\_CONTACT\_FLOW\_TIME
|
11970
12129
|
#
|
@@ -11973,7 +12132,7 @@ module Aws::Connect
|
|
11973
12132
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11974
12133
|
# Agent, Agent Hierarchy, Q in Connect
|
11975
12134
|
#
|
11976
|
-
# UI name: [Contact flow time][
|
12135
|
+
# UI name: [Contact flow time][97]
|
11977
12136
|
#
|
11978
12137
|
# SUM\_CONTACT\_TIME\_AGENT
|
11979
12138
|
#
|
@@ -11982,7 +12141,7 @@ module Aws::Connect
|
|
11982
12141
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11983
12142
|
# Hierarchy
|
11984
12143
|
#
|
11985
|
-
# UI name: [Agent on contact time][
|
12144
|
+
# UI name: [Agent on contact time][98]
|
11986
12145
|
#
|
11987
12146
|
# SUM\_CONTACTS\_DISCONNECTED
|
11988
12147
|
#
|
@@ -11994,7 +12153,7 @@ module Aws::Connect
|
|
11994
12153
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11995
12154
|
# Q in Connect
|
11996
12155
|
#
|
11997
|
-
# UI name: [Contact disconnected][
|
12156
|
+
# UI name: [Contact disconnected][99]
|
11998
12157
|
#
|
11999
12158
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
12000
12159
|
#
|
@@ -12003,7 +12162,7 @@ module Aws::Connect
|
|
12003
12162
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12004
12163
|
# Hierarchy
|
12005
12164
|
#
|
12006
|
-
# UI name: [Error status time][
|
12165
|
+
# UI name: [Error status time][100]
|
12007
12166
|
#
|
12008
12167
|
# SUM\_HANDLE\_TIME
|
12009
12168
|
#
|
@@ -12012,7 +12171,7 @@ module Aws::Connect
|
|
12012
12171
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12013
12172
|
# Agent, Agent Hierarchy, Q in Connect
|
12014
12173
|
#
|
12015
|
-
# UI name: [Contact handle time][
|
12174
|
+
# UI name: [Contact handle time][101]
|
12016
12175
|
#
|
12017
12176
|
# SUM\_HOLD\_TIME
|
12018
12177
|
#
|
@@ -12021,7 +12180,7 @@ module Aws::Connect
|
|
12021
12180
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12022
12181
|
# Agent, Agent Hierarchy, Q in Connect
|
12023
12182
|
#
|
12024
|
-
# UI name: [Customer hold time][
|
12183
|
+
# UI name: [Customer hold time][102]
|
12025
12184
|
#
|
12026
12185
|
# SUM\_IDLE\_TIME\_AGENT
|
12027
12186
|
#
|
@@ -12030,7 +12189,7 @@ module Aws::Connect
|
|
12030
12189
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12031
12190
|
# Hierarchy
|
12032
12191
|
#
|
12033
|
-
# UI name: [Agent idle time][
|
12192
|
+
# UI name: [Agent idle time][103]
|
12034
12193
|
#
|
12035
12194
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
12036
12195
|
#
|
@@ -12039,7 +12198,7 @@ module Aws::Connect
|
|
12039
12198
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12040
12199
|
# Agent, Agent Hierarchy, Q in Connect
|
12041
12200
|
#
|
12042
|
-
# UI name: [Agent interaction and hold time][
|
12201
|
+
# UI name: [Agent interaction and hold time][104]
|
12043
12202
|
#
|
12044
12203
|
# SUM\_INTERACTION\_TIME
|
12045
12204
|
#
|
@@ -12048,7 +12207,7 @@ module Aws::Connect
|
|
12048
12207
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12049
12208
|
# Agent, Agent Hierarchy
|
12050
12209
|
#
|
12051
|
-
# UI name: [Agent interaction time][
|
12210
|
+
# UI name: [Agent interaction time][105]
|
12052
12211
|
#
|
12053
12212
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
12054
12213
|
#
|
@@ -12057,7 +12216,7 @@ module Aws::Connect
|
|
12057
12216
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12058
12217
|
# Hierarchy
|
12059
12218
|
#
|
12060
|
-
# UI name: [Agent non-productive time][
|
12219
|
+
# UI name: [Agent non-productive time][106]
|
12061
12220
|
#
|
12062
12221
|
# SUM\_ONLINE\_TIME\_AGENT
|
12063
12222
|
#
|
@@ -12066,7 +12225,7 @@ module Aws::Connect
|
|
12066
12225
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12067
12226
|
# Hierarchy
|
12068
12227
|
#
|
12069
|
-
# UI name: [Online time][
|
12228
|
+
# UI name: [Online time][107]
|
12070
12229
|
#
|
12071
12230
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
12072
12231
|
#
|
@@ -12075,7 +12234,7 @@ module Aws::Connect
|
|
12075
12234
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12076
12235
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
12077
12236
|
#
|
12078
|
-
# UI name: [Callback attempts][
|
12237
|
+
# UI name: [Callback attempts][108]
|
12079
12238
|
#
|
12080
12239
|
#
|
12081
12240
|
#
|
@@ -12126,62 +12285,67 @@ module Aws::Connect
|
|
12126
12285
|
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x
|
12127
12286
|
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x-rate
|
12128
12287
|
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-interactions
|
12129
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
12130
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12131
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12132
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12133
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12134
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12135
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12136
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-
|
12137
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12138
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12139
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12140
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12141
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12142
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12143
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12144
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12145
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12146
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
12147
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12148
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12149
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12150
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12151
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12152
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12153
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12154
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12155
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12156
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12157
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12158
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12159
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12160
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12161
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12162
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12163
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12164
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12165
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12166
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12167
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12168
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12169
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12170
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12171
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12172
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12173
|
-
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12174
|
-
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-
|
12175
|
-
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12176
|
-
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12177
|
-
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12178
|
-
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12179
|
-
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-
|
12180
|
-
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12181
|
-
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12182
|
-
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12183
|
-
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12184
|
-
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12288
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-progress-rate
|
12289
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-attempts
|
12290
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-exclusions
|
12291
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-created
|
12292
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-created
|
12293
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#api-contacts-handled
|
12294
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-by-connected-to-agent-timestamp
|
12295
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
|
12296
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-agent-disconnect
|
12297
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-customer-disconnect
|
12298
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-put-on-hold
|
12299
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-external
|
12300
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-internal
|
12301
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
|
12302
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued-by-enqueue
|
12303
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-removed-from-queue
|
12304
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-resolved
|
12305
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
12306
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-by-agent
|
12307
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
|
12308
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#current-cases
|
12309
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempts
|
12310
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempt-disposition-rate
|
12311
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#evaluations-performed
|
12312
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
|
12313
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-started
|
12314
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#human-answered
|
12315
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-flow-time
|
12316
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-queued-time
|
12317
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
|
12318
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#automatic-fails-percent
|
12319
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome
|
12320
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome
|
12321
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved-on-first-contact
|
12322
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome-percentage
|
12323
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-talk-time-percent
|
12324
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#talk-time-percent
|
12325
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-talk-time-percent
|
12326
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-talk-time-percent
|
12327
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-attempted
|
12328
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-interacted
|
12329
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-targeted
|
12330
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-reopened
|
12331
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved
|
12332
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
|
12333
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-api-connecting-time
|
12334
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
|
12335
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned-in-x-seconds
|
12336
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-answered-in-x-seconds
|
12337
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-flow-time
|
12338
|
+
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-on-contact-time
|
12339
|
+
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-disconnected
|
12340
|
+
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#error-status-time
|
12341
|
+
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-handle-time
|
12342
|
+
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-hold-time
|
12343
|
+
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-idle-time
|
12344
|
+
# [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-and-hold-time
|
12345
|
+
# [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-time
|
12346
|
+
# [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-productive-time
|
12347
|
+
# [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#online-time
|
12348
|
+
# [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-attempts
|
12185
12349
|
# @return [Array<Types::MetricV2>]
|
12186
12350
|
#
|
12187
12351
|
# @!attribute [rw] next_token
|
@@ -13250,14 +13414,33 @@ module Aws::Connect
|
|
13250
13414
|
include Aws::Structure
|
13251
13415
|
end
|
13252
13416
|
|
13253
|
-
#
|
13417
|
+
# Information about the additional TO and CC recipients of an inbound
|
13418
|
+
# email contact.
|
13419
|
+
#
|
13420
|
+
# <note markdown="1"> You can include up to 50 email addresses in total, distributed across
|
13421
|
+
# [DestinationEmailAddress][1], `ToAddresses`, and `CcAddresses`. This
|
13422
|
+
# total must include one required `DestinationEmailAddress`. You can
|
13423
|
+
# then specify up to 49 addresses allocated across `ToAddresses` and
|
13424
|
+
# `CcAddresses` as needed.
|
13425
|
+
#
|
13426
|
+
# </note>
|
13427
|
+
#
|
13428
|
+
#
|
13429
|
+
#
|
13430
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartEmailContact.html#API_StartEmailContact_RequestBody
|
13254
13431
|
#
|
13255
13432
|
# @!attribute [rw] to_addresses
|
13256
|
-
# The additional recipients information present in to list.
|
13433
|
+
# The **additional** recipients information present in to list. You
|
13434
|
+
# must have 1 required recipient (`DestinationEmailAddress`). You can
|
13435
|
+
# then specify up to 49 additional recipients (across `ToAddresses`
|
13436
|
+
# and `CcAddresses`), for a total of 50 recipients.
|
13257
13437
|
# @return [Array<Types::EmailAddressInfo>]
|
13258
13438
|
#
|
13259
13439
|
# @!attribute [rw] cc_addresses
|
13260
|
-
# The additional recipients information present in cc list.
|
13440
|
+
# The **additional** recipients information present in cc list. You
|
13441
|
+
# must have 1 required recipient (`DestinationEmailAddress`). You can
|
13442
|
+
# then specify up to 49 additional recipients (across `ToAddresses`
|
13443
|
+
# and `CcAddresses`), for a total of 50 recipients.
|
13261
13444
|
# @return [Array<Types::EmailAddressInfo>]
|
13262
13445
|
#
|
13263
13446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InboundAdditionalRecipients AWS API Documentation
|
@@ -17091,10 +17274,17 @@ module Aws::Connect
|
|
17091
17274
|
include Aws::Structure
|
17092
17275
|
end
|
17093
17276
|
|
17094
|
-
#
|
17277
|
+
# Information about the additional recipients of outbound email.
|
17095
17278
|
#
|
17096
17279
|
# @!attribute [rw] cc_email_addresses
|
17097
|
-
#
|
17280
|
+
# Information about the **additional** CC email address recipients.
|
17281
|
+
# Email recipients are limited to 50 total addresses: 1 required
|
17282
|
+
# recipient in the [DestinationEmailAddress][1] field and up to 49
|
17283
|
+
# recipients in the 'CcEmailAddresses' field.
|
17284
|
+
#
|
17285
|
+
#
|
17286
|
+
#
|
17287
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_SendOutboundEmail.html#API_SendOutboundEmail_RequestBody
|
17098
17288
|
# @return [Array<Types::EmailAddressInfo>]
|
17099
17289
|
#
|
17100
17290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OutboundAdditionalRecipients AWS API Documentation
|
@@ -17143,7 +17333,7 @@ module Aws::Connect
|
|
17143
17333
|
include Aws::Structure
|
17144
17334
|
end
|
17145
17335
|
|
17146
|
-
# The outbound email address
|
17336
|
+
# The outbound email address ID.
|
17147
17337
|
#
|
17148
17338
|
# @!attribute [rw] outbound_email_address_id
|
17149
17339
|
# The identifier of the email address.
|
@@ -17301,6 +17491,62 @@ module Aws::Connect
|
|
17301
17491
|
include Aws::Structure
|
17302
17492
|
end
|
17303
17493
|
|
17494
|
+
# Information about a participant's interactions in a contact.
|
17495
|
+
#
|
17496
|
+
# @!attribute [rw] participant_id
|
17497
|
+
# The Participant's ID.
|
17498
|
+
# @return [String]
|
17499
|
+
#
|
17500
|
+
# @!attribute [rw] participant_type
|
17501
|
+
# Information about the conversation participant. Following are the
|
17502
|
+
# participant types: \[Agent, Customer, Supervisor\].
|
17503
|
+
# @return [String]
|
17504
|
+
#
|
17505
|
+
# @!attribute [rw] conversation_abandon
|
17506
|
+
# A boolean flag indicating whether the chat conversation was
|
17507
|
+
# abandoned by a Participant.
|
17508
|
+
# @return [Boolean]
|
17509
|
+
#
|
17510
|
+
# @!attribute [rw] messages_sent
|
17511
|
+
# Number of chat messages sent by Participant.
|
17512
|
+
# @return [Integer]
|
17513
|
+
#
|
17514
|
+
# @!attribute [rw] num_responses
|
17515
|
+
# Number of chat messages sent by Participant.
|
17516
|
+
# @return [Integer]
|
17517
|
+
#
|
17518
|
+
# @!attribute [rw] message_length_in_chars
|
17519
|
+
# Number of chat characters sent by Participant.
|
17520
|
+
# @return [Integer]
|
17521
|
+
#
|
17522
|
+
# @!attribute [rw] total_response_time_in_millis
|
17523
|
+
# Total chat response time by Participant.
|
17524
|
+
# @return [Integer]
|
17525
|
+
#
|
17526
|
+
# @!attribute [rw] max_response_time_in_millis
|
17527
|
+
# Maximum chat response time by Participant.
|
17528
|
+
# @return [Integer]
|
17529
|
+
#
|
17530
|
+
# @!attribute [rw] last_message_timestamp
|
17531
|
+
# Timestamp of last chat message by Participant.
|
17532
|
+
# @return [Time]
|
17533
|
+
#
|
17534
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ParticipantMetrics AWS API Documentation
|
17535
|
+
#
|
17536
|
+
class ParticipantMetrics < Struct.new(
|
17537
|
+
:participant_id,
|
17538
|
+
:participant_type,
|
17539
|
+
:conversation_abandon,
|
17540
|
+
:messages_sent,
|
17541
|
+
:num_responses,
|
17542
|
+
:message_length_in_chars,
|
17543
|
+
:total_response_time_in_millis,
|
17544
|
+
:max_response_time_in_millis,
|
17545
|
+
:last_message_timestamp)
|
17546
|
+
SENSITIVE = []
|
17547
|
+
include Aws::Structure
|
17548
|
+
end
|
17549
|
+
|
17304
17550
|
# Configuration information for the timer. After the timer configuration
|
17305
17551
|
# is set, it persists for the duration of the chat. It persists across
|
17306
17552
|
# new contacts in the chain, for example, transfer contacts.
|
@@ -22095,9 +22341,7 @@ module Aws::Connect
|
|
22095
22341
|
# @return [Types::ParticipantDetails]
|
22096
22342
|
#
|
22097
22343
|
# @!attribute [rw] initial_message
|
22098
|
-
# The initial message to be sent to the newly created chat.
|
22099
|
-
# have a Lex bot in your flow, the initial message is not delivered to
|
22100
|
-
# the Lex bot.
|
22344
|
+
# The initial message to be sent to the newly created chat.
|
22101
22345
|
# @return [Types::ChatMessage]
|
22102
22346
|
#
|
22103
22347
|
# @!attribute [rw] client_token
|
@@ -22408,7 +22652,7 @@ module Aws::Connect
|
|
22408
22652
|
# @return [Types::EmailAddressInfo]
|
22409
22653
|
#
|
22410
22654
|
# @!attribute [rw] destination_email_address
|
22411
|
-
# The email address associated with the instance.
|
22655
|
+
# The email address associated with the Amazon Connect instance.
|
22412
22656
|
# @return [String]
|
22413
22657
|
#
|
22414
22658
|
# @!attribute [rw] description
|
@@ -22684,7 +22928,7 @@ module Aws::Connect
|
|
22684
22928
|
# @return [String]
|
22685
22929
|
#
|
22686
22930
|
# @!attribute [rw] from_email_address
|
22687
|
-
# The email address associated with the instance.
|
22931
|
+
# The email address associated with the Amazon Connect instance.
|
22688
22932
|
# @return [Types::EmailAddressInfo]
|
22689
22933
|
#
|
22690
22934
|
# @!attribute [rw] destination_email_address
|
@@ -22692,7 +22936,7 @@ module Aws::Connect
|
|
22692
22936
|
# @return [Types::EmailAddressInfo]
|
22693
22937
|
#
|
22694
22938
|
# @!attribute [rw] additional_recipients
|
22695
|
-
# The
|
22939
|
+
# The additional recipients address of email in CC.
|
22696
22940
|
# @return [Types::OutboundAdditionalRecipients]
|
22697
22941
|
#
|
22698
22942
|
# @!attribute [rw] email_message
|