aws-sdk-connect 1.158.0 → 1.160.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 +328 -186
- data/lib/aws-sdk-connect/client_api.rb +113 -0
- data/lib/aws-sdk-connect/types.rb +657 -161
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/types.rbs +107 -0
- metadata +2 -2
@@ -161,6 +161,20 @@ module Aws::Connect
|
|
161
161
|
include Aws::Structure
|
162
162
|
end
|
163
163
|
|
164
|
+
# Information about an agent hierarchy group.
|
165
|
+
#
|
166
|
+
# @!attribute [rw] arn
|
167
|
+
# The Amazon Resource Name (ARN) of the group.
|
168
|
+
# @return [String]
|
169
|
+
#
|
170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentHierarchyGroup AWS API Documentation
|
171
|
+
#
|
172
|
+
class AgentHierarchyGroup < Struct.new(
|
173
|
+
:arn)
|
174
|
+
SENSITIVE = []
|
175
|
+
include Aws::Structure
|
176
|
+
end
|
177
|
+
|
164
178
|
# A structure that defines search criteria for contacts using agent
|
165
179
|
# hierarchy group levels. For more information about agent hierarchies,
|
166
180
|
# see [Set Up Agent Hierarchies][1] in the *Amazon Connect Administrator
|
@@ -216,12 +230,42 @@ module Aws::Connect
|
|
216
230
|
# Agent pause duration for a contact in seconds.
|
217
231
|
# @return [Integer]
|
218
232
|
#
|
233
|
+
# @!attribute [rw] hierarchy_groups
|
234
|
+
# The agent hierarchy groups for the agent.
|
235
|
+
# @return [Types::HierarchyGroups]
|
236
|
+
#
|
237
|
+
# @!attribute [rw] device_info
|
238
|
+
# Information regarding Agent’s device.
|
239
|
+
# @return [Types::DeviceInfo]
|
240
|
+
#
|
241
|
+
# @!attribute [rw] capabilities
|
242
|
+
# The configuration for the allowed capabilities for participants
|
243
|
+
# present over the call.
|
244
|
+
# @return [Types::ParticipantCapabilities]
|
245
|
+
#
|
219
246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentInfo AWS API Documentation
|
220
247
|
#
|
221
248
|
class AgentInfo < Struct.new(
|
222
249
|
:id,
|
223
250
|
:connected_to_agent_timestamp,
|
224
|
-
:agent_pause_duration_in_seconds
|
251
|
+
:agent_pause_duration_in_seconds,
|
252
|
+
:hierarchy_groups,
|
253
|
+
:device_info,
|
254
|
+
:capabilities)
|
255
|
+
SENSITIVE = []
|
256
|
+
include Aws::Structure
|
257
|
+
end
|
258
|
+
|
259
|
+
# Information about the quality of the Agent's media connection
|
260
|
+
#
|
261
|
+
# @!attribute [rw] audio
|
262
|
+
# Information about the audio quality of the Agent
|
263
|
+
# @return [Types::AudioQualityMetricsInfo]
|
264
|
+
#
|
265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentQualityMetrics AWS API Documentation
|
266
|
+
#
|
267
|
+
class AgentQualityMetrics < Struct.new(
|
268
|
+
:audio)
|
225
269
|
SENSITIVE = []
|
226
270
|
include Aws::Structure
|
227
271
|
end
|
@@ -1104,6 +1148,35 @@ module Aws::Connect
|
|
1104
1148
|
include Aws::Structure
|
1105
1149
|
end
|
1106
1150
|
|
1151
|
+
# An object to specify the predefined attribute condition.
|
1152
|
+
#
|
1153
|
+
# @!attribute [rw] name
|
1154
|
+
# The name of predefined attribute.
|
1155
|
+
# @return [String]
|
1156
|
+
#
|
1157
|
+
# @!attribute [rw] value
|
1158
|
+
# The value of predefined attribute.
|
1159
|
+
# @return [String]
|
1160
|
+
#
|
1161
|
+
# @!attribute [rw] proficiency_level
|
1162
|
+
# The proficiency level of the condition.
|
1163
|
+
# @return [Float]
|
1164
|
+
#
|
1165
|
+
# @!attribute [rw] comparison_operator
|
1166
|
+
# The operator of the condition.
|
1167
|
+
# @return [String]
|
1168
|
+
#
|
1169
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AttributeCondition AWS API Documentation
|
1170
|
+
#
|
1171
|
+
class AttributeCondition < Struct.new(
|
1172
|
+
:name,
|
1173
|
+
:value,
|
1174
|
+
:proficiency_level,
|
1175
|
+
:comparison_operator)
|
1176
|
+
SENSITIVE = []
|
1177
|
+
include Aws::Structure
|
1178
|
+
end
|
1179
|
+
|
1107
1180
|
# Has audio-specific configurations as the operating parameter for Echo
|
1108
1181
|
# Reduction.
|
1109
1182
|
#
|
@@ -1120,6 +1193,30 @@ module Aws::Connect
|
|
1120
1193
|
include Aws::Structure
|
1121
1194
|
end
|
1122
1195
|
|
1196
|
+
# Contains information for score and potential quality issues for Audio
|
1197
|
+
#
|
1198
|
+
# @!attribute [rw] quality_score
|
1199
|
+
# Number measuring the estimated quality of the media connection.
|
1200
|
+
# @return [Float]
|
1201
|
+
#
|
1202
|
+
# @!attribute [rw] potential_quality_issues
|
1203
|
+
# List of potential issues causing degradation of quality on a media
|
1204
|
+
# connection. If the service did not detect any potential quality
|
1205
|
+
# issues the list is empty.
|
1206
|
+
#
|
1207
|
+
# Valid values: `HighPacketLoss` \| `HighRoundTripTime` \|
|
1208
|
+
# `HighJitterBuffer`
|
1209
|
+
# @return [Array<String>]
|
1210
|
+
#
|
1211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AudioQualityMetricsInfo AWS API Documentation
|
1212
|
+
#
|
1213
|
+
class AudioQualityMetricsInfo < Struct.new(
|
1214
|
+
:quality_score,
|
1215
|
+
:potential_quality_issues)
|
1216
|
+
SENSITIVE = []
|
1217
|
+
include Aws::Structure
|
1218
|
+
end
|
1219
|
+
|
1123
1220
|
# Information about available phone numbers.
|
1124
1221
|
#
|
1125
1222
|
# @!attribute [rw] phone_number
|
@@ -1899,6 +1996,53 @@ module Aws::Connect
|
|
1899
1996
|
# Services generated and user-defined tags.
|
1900
1997
|
# @return [Hash<String,String>]
|
1901
1998
|
#
|
1999
|
+
# @!attribute [rw] connected_to_system_timestamp
|
2000
|
+
# The timestamp when customer endpoint connected to Amazon Connect.
|
2001
|
+
# @return [Time]
|
2002
|
+
#
|
2003
|
+
# @!attribute [rw] routing_criteria
|
2004
|
+
# Latest routing criteria on the contact.
|
2005
|
+
# @return [Types::RoutingCriteria]
|
2006
|
+
#
|
2007
|
+
# @!attribute [rw] customer
|
2008
|
+
# Information about the Customer on the contact.
|
2009
|
+
# @return [Types::Customer]
|
2010
|
+
#
|
2011
|
+
# @!attribute [rw] campaign
|
2012
|
+
# Information associated with a campaign.
|
2013
|
+
# @return [Types::Campaign]
|
2014
|
+
#
|
2015
|
+
# @!attribute [rw] answering_machine_detection_status
|
2016
|
+
# Indicates how an [outbound campaign][1] call is actually disposed if
|
2017
|
+
# the contact is connected to Amazon Connect.
|
2018
|
+
#
|
2019
|
+
#
|
2020
|
+
#
|
2021
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/how-to-create-campaigns.html
|
2022
|
+
# @return [String]
|
2023
|
+
#
|
2024
|
+
# @!attribute [rw] customer_voice_activity
|
2025
|
+
# Information about customer’s voice activity.
|
2026
|
+
# @return [Types::CustomerVoiceActivity]
|
2027
|
+
#
|
2028
|
+
# @!attribute [rw] quality_metrics
|
2029
|
+
# Information about the quality of the participant's media
|
2030
|
+
# connection.
|
2031
|
+
# @return [Types::QualityMetrics]
|
2032
|
+
#
|
2033
|
+
# @!attribute [rw] disconnect_details
|
2034
|
+
# Information about the call disconnect experience.
|
2035
|
+
# @return [Types::DisconnectDetails]
|
2036
|
+
#
|
2037
|
+
# @!attribute [rw] segment_attributes
|
2038
|
+
# A set of system defined key-value pairs stored on individual contact
|
2039
|
+
# segments using an attribute map. The attributes are standard Amazon
|
2040
|
+
# Connect attributes and can be accessed in flows. Attribute keys can
|
2041
|
+
# include only alphanumeric, -, and \_ characters. This field can be
|
2042
|
+
# used to show channel subtype. For example, `connect:Guide` or
|
2043
|
+
# `connect:SMS`.
|
2044
|
+
# @return [Hash<String,Types::SegmentAttributeValue>]
|
2045
|
+
#
|
1902
2046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Contact AWS API Documentation
|
1903
2047
|
#
|
1904
2048
|
class Contact < Struct.new(
|
@@ -1924,7 +2068,16 @@ module Aws::Connect
|
|
1924
2068
|
:wisdom_info,
|
1925
2069
|
:queue_time_adjustment_seconds,
|
1926
2070
|
:queue_priority,
|
1927
|
-
:tags
|
2071
|
+
:tags,
|
2072
|
+
:connected_to_system_timestamp,
|
2073
|
+
:routing_criteria,
|
2074
|
+
:customer,
|
2075
|
+
:campaign,
|
2076
|
+
:answering_machine_detection_status,
|
2077
|
+
:customer_voice_activity,
|
2078
|
+
:quality_metrics,
|
2079
|
+
:disconnect_details,
|
2080
|
+
:segment_attributes)
|
1928
2081
|
SENSITIVE = [:name, :description]
|
1929
2082
|
include Aws::Structure
|
1930
2083
|
end
|
@@ -4446,6 +4599,61 @@ module Aws::Connect
|
|
4446
4599
|
include Aws::Structure
|
4447
4600
|
end
|
4448
4601
|
|
4602
|
+
# Information about the Customer on the contact.
|
4603
|
+
#
|
4604
|
+
# @!attribute [rw] device_info
|
4605
|
+
# Information regarding Customer’s device.
|
4606
|
+
# @return [Types::DeviceInfo]
|
4607
|
+
#
|
4608
|
+
# @!attribute [rw] capabilities
|
4609
|
+
# The configuration for the allowed capabilities for participants
|
4610
|
+
# present over the call.
|
4611
|
+
# @return [Types::ParticipantCapabilities]
|
4612
|
+
#
|
4613
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Customer AWS API Documentation
|
4614
|
+
#
|
4615
|
+
class Customer < Struct.new(
|
4616
|
+
:device_info,
|
4617
|
+
:capabilities)
|
4618
|
+
SENSITIVE = []
|
4619
|
+
include Aws::Structure
|
4620
|
+
end
|
4621
|
+
|
4622
|
+
# Information about the quality of the Customer's media connection
|
4623
|
+
#
|
4624
|
+
# @!attribute [rw] audio
|
4625
|
+
# Information about the audio quality of the Customer
|
4626
|
+
# @return [Types::AudioQualityMetricsInfo]
|
4627
|
+
#
|
4628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CustomerQualityMetrics AWS API Documentation
|
4629
|
+
#
|
4630
|
+
class CustomerQualityMetrics < Struct.new(
|
4631
|
+
:audio)
|
4632
|
+
SENSITIVE = []
|
4633
|
+
include Aws::Structure
|
4634
|
+
end
|
4635
|
+
|
4636
|
+
# Information about customer’s voice activity.
|
4637
|
+
#
|
4638
|
+
# @!attribute [rw] greeting_start_timestamp
|
4639
|
+
# Timestamp that measures the beginning of the customer greeting from
|
4640
|
+
# an outbound voice call.
|
4641
|
+
# @return [Time]
|
4642
|
+
#
|
4643
|
+
# @!attribute [rw] greeting_end_timestamp
|
4644
|
+
# Timestamp that measures the end of the customer greeting from an
|
4645
|
+
# outbound voice call.
|
4646
|
+
# @return [Time]
|
4647
|
+
#
|
4648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CustomerVoiceActivity AWS API Documentation
|
4649
|
+
#
|
4650
|
+
class CustomerVoiceActivity < Struct.new(
|
4651
|
+
:greeting_start_timestamp,
|
4652
|
+
:greeting_end_timestamp)
|
4653
|
+
SENSITIVE = []
|
4654
|
+
include Aws::Structure
|
4655
|
+
end
|
4656
|
+
|
4449
4657
|
# Information about a reference when the `referenceType` is `DATE`.
|
4450
4658
|
# Otherwise, null.
|
4451
4659
|
#
|
@@ -5928,6 +6136,30 @@ module Aws::Connect
|
|
5928
6136
|
include Aws::Structure
|
5929
6137
|
end
|
5930
6138
|
|
6139
|
+
# Information regarding the device.
|
6140
|
+
#
|
6141
|
+
# @!attribute [rw] platform_name
|
6142
|
+
# Name of the platform that the participant used for the call.
|
6143
|
+
# @return [String]
|
6144
|
+
#
|
6145
|
+
# @!attribute [rw] platform_version
|
6146
|
+
# Version of the platform that the participant used for the call.
|
6147
|
+
# @return [String]
|
6148
|
+
#
|
6149
|
+
# @!attribute [rw] operating_system
|
6150
|
+
# Operating system that the participant used for the call.
|
6151
|
+
# @return [String]
|
6152
|
+
#
|
6153
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeviceInfo AWS API Documentation
|
6154
|
+
#
|
6155
|
+
class DeviceInfo < Struct.new(
|
6156
|
+
:platform_name,
|
6157
|
+
:platform_version,
|
6158
|
+
:operating_system)
|
6159
|
+
SENSITIVE = []
|
6160
|
+
include Aws::Structure
|
6161
|
+
end
|
6162
|
+
|
5931
6163
|
# Contains information about the dimensions for a set of metrics.
|
5932
6164
|
#
|
5933
6165
|
# @!attribute [rw] queue
|
@@ -6303,6 +6535,21 @@ module Aws::Connect
|
|
6303
6535
|
include Aws::Structure
|
6304
6536
|
end
|
6305
6537
|
|
6538
|
+
# Information about the call disconnect experience.
|
6539
|
+
#
|
6540
|
+
# @!attribute [rw] potential_disconnect_issue
|
6541
|
+
# Indicates the potential disconnection issues for a call. This field
|
6542
|
+
# is not populated if the service does not detect potential issues.
|
6543
|
+
# @return [String]
|
6544
|
+
#
|
6545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisconnectDetails AWS API Documentation
|
6546
|
+
#
|
6547
|
+
class DisconnectDetails < Struct.new(
|
6548
|
+
:potential_disconnect_issue)
|
6549
|
+
SENSITIVE = []
|
6550
|
+
include Aws::Structure
|
6551
|
+
end
|
6552
|
+
|
6306
6553
|
# Contains details about why a contact was disconnected. Only Amazon
|
6307
6554
|
# Connect outbound campaigns can provide this field.
|
6308
6555
|
#
|
@@ -7390,6 +7637,49 @@ module Aws::Connect
|
|
7390
7637
|
include Aws::Structure
|
7391
7638
|
end
|
7392
7639
|
|
7640
|
+
# An object to specify the expiration of a routing step.
|
7641
|
+
#
|
7642
|
+
# @!attribute [rw] duration_in_seconds
|
7643
|
+
# The number of seconds to wait before expiring the routing step.
|
7644
|
+
# @return [Integer]
|
7645
|
+
#
|
7646
|
+
# @!attribute [rw] expiry_timestamp
|
7647
|
+
# The timestamp indicating when the routing step expires.
|
7648
|
+
# @return [Time]
|
7649
|
+
#
|
7650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Expiry AWS API Documentation
|
7651
|
+
#
|
7652
|
+
class Expiry < Struct.new(
|
7653
|
+
:duration_in_seconds,
|
7654
|
+
:expiry_timestamp)
|
7655
|
+
SENSITIVE = []
|
7656
|
+
include Aws::Structure
|
7657
|
+
end
|
7658
|
+
|
7659
|
+
# A tagged union to specify expression for a routing step.
|
7660
|
+
#
|
7661
|
+
# @!attribute [rw] attribute_condition
|
7662
|
+
# An object to specify the predefined attribute condition.
|
7663
|
+
# @return [Types::AttributeCondition]
|
7664
|
+
#
|
7665
|
+
# @!attribute [rw] and_expression
|
7666
|
+
# List of routing expressions which will be AND-ed together.
|
7667
|
+
# @return [Array<Types::Expression>]
|
7668
|
+
#
|
7669
|
+
# @!attribute [rw] or_expression
|
7670
|
+
# List of routing expressions which will be OR-ed together.
|
7671
|
+
# @return [Array<Types::Expression>]
|
7672
|
+
#
|
7673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Expression AWS API Documentation
|
7674
|
+
#
|
7675
|
+
class Expression < Struct.new(
|
7676
|
+
:attribute_condition,
|
7677
|
+
:and_expression,
|
7678
|
+
:or_expression)
|
7679
|
+
SENSITIVE = []
|
7680
|
+
include Aws::Structure
|
7681
|
+
end
|
7682
|
+
|
7393
7683
|
# Request for which contact failed to be generated.
|
7394
7684
|
#
|
7395
7685
|
# @!attribute [rw] request_identifier
|
@@ -8450,36 +8740,40 @@ module Aws::Connect
|
|
8450
8740
|
# The filters to apply to returned metrics. You can filter on the
|
8451
8741
|
# following resources:
|
8452
8742
|
#
|
8453
|
-
# * Queues
|
8454
|
-
#
|
8455
|
-
# * Routing profiles
|
8456
|
-
#
|
8457
8743
|
# * Agents
|
8458
8744
|
#
|
8459
8745
|
# * Channels
|
8460
8746
|
#
|
8461
|
-
# * User hierarchy groups
|
8462
|
-
#
|
8463
8747
|
# * Feature
|
8464
8748
|
#
|
8749
|
+
# * Queues
|
8750
|
+
#
|
8751
|
+
# * Routing profiles
|
8752
|
+
#
|
8465
8753
|
# * Routing step expression
|
8466
8754
|
#
|
8755
|
+
# * User hierarchy groups
|
8756
|
+
#
|
8467
8757
|
# At least one filter must be passed from queues, routing profiles,
|
8468
8758
|
# agents, or user hierarchy groups.
|
8469
8759
|
#
|
8470
8760
|
# To filter by phone number, see [Create a historical metrics
|
8471
|
-
# report][1] in the *Amazon Connect Administrator
|
8761
|
+
# report][1] in the *Amazon Connect Administrator Guide*.
|
8472
8762
|
#
|
8473
8763
|
# Note the following limits:
|
8474
8764
|
#
|
8475
8765
|
# * **Filter keys**: A maximum of 5 filter keys are supported in a
|
8476
|
-
# single request. Valid filter keys: `
|
8477
|
-
# `
|
8478
|
-
# `
|
8479
|
-
# `
|
8480
|
-
# `
|
8481
|
-
# `contact/segmentAttributes/connect:Subtype` \|
|
8482
|
-
# `
|
8766
|
+
# single request. Valid filter keys: `AGENT` \|
|
8767
|
+
# `AGENT_HIERARCHY_LEVEL_ONE` \| `AGENT_HIERARCHY_LEVEL_TWO` \|
|
8768
|
+
# `AGENT_HIERARCHY_LEVEL_THREE` \| `AGENT_HIERARCHY_LEVEL_FOUR` \|
|
8769
|
+
# `AGENT_HIERARCHY_LEVEL_FIVE` \| `CASE_TEMPLATE_ARN` \|
|
8770
|
+
# `CASE_STATUS` \| `CHANNEL` \|
|
8771
|
+
# `contact/segmentAttributes/connect:Subtype` \| `FEATURE` \|
|
8772
|
+
# `FLOW_TYPE` \| `FLOWS_NEXT_RESOURCE_ID` \|
|
8773
|
+
# `FLOWS_NEXT_RESOURCE_QUEUE_ID` \| `FLOWS_OUTCOME_TYPE` \|
|
8774
|
+
# `FLOWS_RESOURCE_ID` \| `INITIATION_METHOD` \|
|
8775
|
+
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
8776
|
+
# `ROUTING_STEP_EXPRESSION` \| `QUEUE` \| `Q_CONNECT_ENABLED` \|
|
8483
8777
|
#
|
8484
8778
|
# * **Filter values**: A maximum of 100 filter values are supported in
|
8485
8779
|
# a single request. VOICE, CHAT, and TASK are valid `filterValue`
|
@@ -8525,20 +8819,22 @@ module Aws::Connect
|
|
8525
8819
|
#
|
8526
8820
|
# If no grouping is specified, a summary of all metrics is returned.
|
8527
8821
|
#
|
8528
|
-
# Valid grouping keys: `
|
8529
|
-
# `CHANNEL` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
|
8822
|
+
# Valid grouping keys: `AGENT` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
|
8530
8823
|
# `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
|
8531
8824
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
8532
|
-
# `CASE_TEMPLATE_ARN` \| `CASE_STATUS` \|
|
8533
|
-
# `contact/segmentAttributes/connect:Subtype` \|
|
8534
|
-
# `
|
8825
|
+
# `CASE_TEMPLATE_ARN` \| `CASE_STATUS` \| `CHANNEL` \|
|
8826
|
+
# `contact/segmentAttributes/connect:Subtype` \| `FLOWS_RESOURCE_ID`
|
8827
|
+
# \| `FLOWS_MODULE_RESOURCE_ID` \| `FLOW_TYPE` \| `FLOWS_OUTCOME_TYPE`
|
8828
|
+
# \| `INITIATION_METHOD` \| `Q_CONNECT_ENABLED` \| `QUEUE` \|
|
8829
|
+
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
8830
|
+
# `ROUTING_STEP_EXPRESSION`
|
8535
8831
|
# @return [Array<String>]
|
8536
8832
|
#
|
8537
8833
|
# @!attribute [rw] metrics
|
8538
8834
|
# The metrics to retrieve. Specify the name, groupings, and filters
|
8539
8835
|
# for each metric. The following historical metrics are available. For
|
8540
8836
|
# a description of each metric, see [Historical metrics
|
8541
|
-
# definitions][1] in the *Amazon Connect Administrator
|
8837
|
+
# definitions][1] in the *Amazon Connect Administrator Guide*.
|
8542
8838
|
#
|
8543
8839
|
# ABANDONMENT\_RATE
|
8544
8840
|
#
|
@@ -8740,6 +9036,18 @@ module Aws::Connect
|
|
8740
9036
|
#
|
8741
9037
|
# UI name: [Average conversation duration][20]
|
8742
9038
|
#
|
9039
|
+
# AVG\_FLOW\_TIME
|
9040
|
+
#
|
9041
|
+
# : Unit: Seconds
|
9042
|
+
#
|
9043
|
+
# Valid groupings and filters: Channel,
|
9044
|
+
# contact/segmentAttributes/connect:Subtype, Flow type, Flows module
|
9045
|
+
# resource ID, Flows next resource ID, Flows next resource queue ID,
|
9046
|
+
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9047
|
+
# published timestamp
|
9048
|
+
#
|
9049
|
+
# UI name: [Average flow time][21]
|
9050
|
+
#
|
8743
9051
|
# AVG\_GREETING\_TIME\_AGENT
|
8744
9052
|
#
|
8745
9053
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8751,7 +9059,7 @@ module Aws::Connect
|
|
8751
9059
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8752
9060
|
# Q in Connect
|
8753
9061
|
#
|
8754
|
-
# UI name: [Average agent greeting time][
|
9062
|
+
# UI name: [Average agent greeting time][22]
|
8755
9063
|
#
|
8756
9064
|
# AVG\_HANDLE\_TIME
|
8757
9065
|
#
|
@@ -8761,7 +9069,7 @@ module Aws::Connect
|
|
8761
9069
|
# Agent, Agent Hierarchy, Feature,
|
8762
9070
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression
|
8763
9071
|
#
|
8764
|
-
# UI name: [Average handle time][
|
9072
|
+
# UI name: [Average handle time][23]
|
8765
9073
|
#
|
8766
9074
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8767
9075
|
#
|
@@ -8775,7 +9083,7 @@ module Aws::Connect
|
|
8775
9083
|
# Agent, Agent Hierarchy, Feature,
|
8776
9084
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
8777
9085
|
#
|
8778
|
-
# UI name: [Average customer hold time][
|
9086
|
+
# UI name: [Average customer hold time][24]
|
8779
9087
|
#
|
8780
9088
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8781
9089
|
#
|
@@ -8789,7 +9097,7 @@ module Aws::Connect
|
|
8789
9097
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8790
9098
|
# Q in Connect
|
8791
9099
|
#
|
8792
|
-
# UI name: [Average customer hold time all contacts][
|
9100
|
+
# UI name: [Average customer hold time all contacts][25]
|
8793
9101
|
#
|
8794
9102
|
# AVG\_HOLDS
|
8795
9103
|
#
|
@@ -8799,7 +9107,7 @@ module Aws::Connect
|
|
8799
9107
|
# Agent, Agent Hierarchy, Feature,
|
8800
9108
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
8801
9109
|
#
|
8802
|
-
# UI name: [Average holds][
|
9110
|
+
# UI name: [Average holds][26]
|
8803
9111
|
#
|
8804
9112
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8805
9113
|
#
|
@@ -8813,7 +9121,7 @@ module Aws::Connect
|
|
8813
9121
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8814
9122
|
# Q in Connect
|
8815
9123
|
#
|
8816
|
-
# UI name: [Average agent interaction and customer hold time][
|
9124
|
+
# UI name: [Average agent interaction and customer hold time][27]
|
8817
9125
|
#
|
8818
9126
|
# AVG\_INTERACTION\_TIME
|
8819
9127
|
#
|
@@ -8824,7 +9132,7 @@ module Aws::Connect
|
|
8824
9132
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8825
9133
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8826
9134
|
#
|
8827
|
-
# UI name: [Average agent interaction time][
|
9135
|
+
# UI name: [Average agent interaction time][28]
|
8828
9136
|
#
|
8829
9137
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8830
9138
|
#
|
@@ -8841,7 +9149,7 @@ module Aws::Connect
|
|
8841
9149
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8842
9150
|
# Q in Connect
|
8843
9151
|
#
|
8844
|
-
# UI name: [Average agent interruptions][
|
9152
|
+
# UI name: [Average agent interruptions][29]
|
8845
9153
|
#
|
8846
9154
|
# AVG\_INTERRUPTION\_TIME\_AGENT
|
8847
9155
|
#
|
@@ -8854,7 +9162,7 @@ module Aws::Connect
|
|
8854
9162
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8855
9163
|
# Q in Connect
|
8856
9164
|
#
|
8857
|
-
# UI name: [Average agent interruption time][
|
9165
|
+
# UI name: [Average agent interruption time][30]
|
8858
9166
|
#
|
8859
9167
|
# AVG\_NON\_TALK\_TIME
|
8860
9168
|
#
|
@@ -8867,7 +9175,7 @@ module Aws::Connect
|
|
8867
9175
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8868
9176
|
# Q in Connect
|
8869
9177
|
#
|
8870
|
-
# UI name: [Average non-talk time][
|
9178
|
+
# UI name: [Average non-talk time][31]
|
8871
9179
|
#
|
8872
9180
|
# AVG\_QUEUE\_ANSWER\_TIME
|
8873
9181
|
#
|
@@ -8876,7 +9184,7 @@ module Aws::Connect
|
|
8876
9184
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8877
9185
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8878
9186
|
#
|
8879
|
-
# UI name: [Average queue answer time][
|
9187
|
+
# UI name: [Average queue answer time][32]
|
8880
9188
|
#
|
8881
9189
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8882
9190
|
#
|
@@ -8889,7 +9197,7 @@ module Aws::Connect
|
|
8889
9197
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8890
9198
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
8891
9199
|
#
|
8892
|
-
# UI name: [Average resolution time][
|
9200
|
+
# UI name: [Average resolution time][33]
|
8893
9201
|
#
|
8894
9202
|
# AVG\_TALK\_TIME
|
8895
9203
|
#
|
@@ -8902,7 +9210,7 @@ module Aws::Connect
|
|
8902
9210
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8903
9211
|
# Q in Connect
|
8904
9212
|
#
|
8905
|
-
# UI name: [Average talk time][
|
9213
|
+
# UI name: [Average talk time][34]
|
8906
9214
|
#
|
8907
9215
|
# AVG\_TALK\_TIME\_AGENT
|
8908
9216
|
#
|
@@ -8915,7 +9223,7 @@ module Aws::Connect
|
|
8915
9223
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8916
9224
|
# Q in Connect
|
8917
9225
|
#
|
8918
|
-
# UI name: [Average agent talk time][
|
9226
|
+
# UI name: [Average agent talk time][35]
|
8919
9227
|
#
|
8920
9228
|
# AVG\_TALK\_TIME\_CUSTOMER
|
8921
9229
|
#
|
@@ -8928,7 +9236,7 @@ module Aws::Connect
|
|
8928
9236
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8929
9237
|
# Q in Connect
|
8930
9238
|
#
|
8931
|
-
# UI name: [Average customer talk time][
|
9239
|
+
# UI name: [Average customer talk time][36]
|
8932
9240
|
#
|
8933
9241
|
# CASES\_CREATED
|
8934
9242
|
#
|
@@ -8938,17 +9246,50 @@ module Aws::Connect
|
|
8938
9246
|
#
|
8939
9247
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8940
9248
|
#
|
8941
|
-
# UI name: [Cases created][
|
9249
|
+
# UI name: [Cases created][37]
|
8942
9250
|
#
|
8943
9251
|
# CONTACTS\_ABANDONED
|
8944
9252
|
#
|
8945
9253
|
# : Unit: Count
|
8946
9254
|
#
|
9255
|
+
# Metric filter:
|
9256
|
+
#
|
9257
|
+
# * Valid values: `API`\| `Incoming` \| `Outbound` \| `Transfer` \|
|
9258
|
+
# `Callback` \| `Queue_Transfer`\| `Disconnect`
|
9259
|
+
#
|
9260
|
+
# ^
|
9261
|
+
#
|
8947
9262
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8948
9263
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8949
9264
|
# RoutingStepExpression, Q in Connect
|
8950
9265
|
#
|
8951
|
-
# UI name: [Contact abandoned][
|
9266
|
+
# UI name: [Contact abandoned][38]
|
9267
|
+
#
|
9268
|
+
# CONTACTS\_ABANDONED\_IN\_X
|
9269
|
+
#
|
9270
|
+
# : Unit: Count
|
9271
|
+
#
|
9272
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9273
|
+
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9274
|
+
#
|
9275
|
+
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
9276
|
+
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9277
|
+
# `LT` (for "Less than").
|
9278
|
+
#
|
9279
|
+
# UI name: [Contacts abandoned in X seconds][39]
|
9280
|
+
#
|
9281
|
+
# CONTACTS\_ANSWERED\_IN\_X
|
9282
|
+
#
|
9283
|
+
# : Unit: Count
|
9284
|
+
#
|
9285
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9286
|
+
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9287
|
+
#
|
9288
|
+
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
9289
|
+
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9290
|
+
# `LT` (for "Less than").
|
9291
|
+
#
|
9292
|
+
# UI name: [Contacts answered in X seconds][40]
|
8952
9293
|
#
|
8953
9294
|
# CONTACTS\_CREATED
|
8954
9295
|
#
|
@@ -8959,7 +9300,7 @@ module Aws::Connect
|
|
8959
9300
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8960
9301
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8961
9302
|
#
|
8962
|
-
# UI name: [Contacts created][
|
9303
|
+
# UI name: [Contacts created][41]
|
8963
9304
|
#
|
8964
9305
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8965
9306
|
#
|
@@ -8976,7 +9317,7 @@ module Aws::Connect
|
|
8976
9317
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression,
|
8977
9318
|
# Q in Connect
|
8978
9319
|
#
|
8979
|
-
# UI name: [API contacts handled][
|
9320
|
+
# UI name: [API contacts handled][42]
|
8980
9321
|
#
|
8981
9322
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8982
9323
|
#
|
@@ -8991,7 +9332,7 @@ module Aws::Connect
|
|
8991
9332
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
8992
9333
|
# Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8993
9334
|
#
|
8994
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
9335
|
+
# UI name: [Contacts handled (connected to agent timestamp)][43]
|
8995
9336
|
#
|
8996
9337
|
# CONTACTS\_HOLD\_ABANDONS
|
8997
9338
|
#
|
@@ -9001,7 +9342,7 @@ module Aws::Connect
|
|
9001
9342
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9002
9343
|
# Q in Connect
|
9003
9344
|
#
|
9004
|
-
# UI name: [Contacts hold disconnect][
|
9345
|
+
# UI name: [Contacts hold disconnect][43]
|
9005
9346
|
#
|
9006
9347
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
9007
9348
|
#
|
@@ -9010,7 +9351,7 @@ module Aws::Connect
|
|
9010
9351
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9011
9352
|
# Agent, Agent Hierarchy, Q in Connect
|
9012
9353
|
#
|
9013
|
-
# UI name: [Contacts hold agent disconnect][
|
9354
|
+
# UI name: [Contacts hold agent disconnect][44]
|
9014
9355
|
#
|
9015
9356
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
9016
9357
|
#
|
@@ -9019,7 +9360,7 @@ module Aws::Connect
|
|
9019
9360
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9020
9361
|
# Agent, Agent Hierarchy, Q in Connect
|
9021
9362
|
#
|
9022
|
-
# UI name: [Contacts hold customer disconnect][
|
9363
|
+
# UI name: [Contacts hold customer disconnect][45]
|
9023
9364
|
#
|
9024
9365
|
# CONTACTS\_PUT\_ON\_HOLD
|
9025
9366
|
#
|
@@ -9028,7 +9369,7 @@ module Aws::Connect
|
|
9028
9369
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9029
9370
|
# Agent, Agent Hierarchy, Q in Connect
|
9030
9371
|
#
|
9031
|
-
# UI name: [Contacts put on hold][
|
9372
|
+
# UI name: [Contacts put on hold][45]
|
9032
9373
|
#
|
9033
9374
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
9034
9375
|
#
|
@@ -9037,7 +9378,7 @@ module Aws::Connect
|
|
9037
9378
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9038
9379
|
# Agent, Agent Hierarchy, Q in Connect
|
9039
9380
|
#
|
9040
|
-
# UI name: [Contacts transferred out external][
|
9381
|
+
# UI name: [Contacts transferred out external][46]
|
9041
9382
|
#
|
9042
9383
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
9043
9384
|
#
|
@@ -9046,7 +9387,7 @@ module Aws::Connect
|
|
9046
9387
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9047
9388
|
# Agent, Agent Hierarchy, Q in Connect
|
9048
9389
|
#
|
9049
|
-
# UI name: [Contacts transferred out internal][
|
9390
|
+
# UI name: [Contacts transferred out internal][47]
|
9050
9391
|
#
|
9051
9392
|
# CONTACTS\_QUEUED
|
9052
9393
|
#
|
@@ -9056,7 +9397,7 @@ module Aws::Connect
|
|
9056
9397
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9057
9398
|
# Q in Connect
|
9058
9399
|
#
|
9059
|
-
# UI name: [Contacts queued][
|
9400
|
+
# UI name: [Contacts queued][48]
|
9060
9401
|
#
|
9061
9402
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
9062
9403
|
#
|
@@ -9065,7 +9406,7 @@ module Aws::Connect
|
|
9065
9406
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
9066
9407
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
9067
9408
|
#
|
9068
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
9409
|
+
# UI name: [Contacts queued (enqueue timestamp)][49]
|
9069
9410
|
#
|
9070
9411
|
# CONTACTS\_RESOLVED\_IN\_X
|
9071
9412
|
#
|
@@ -9078,7 +9419,7 @@ module Aws::Connect
|
|
9078
9419
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9079
9420
|
# `LT` (for "Less than").
|
9080
9421
|
#
|
9081
|
-
# UI name: [Contacts resolved in X][
|
9422
|
+
# UI name: [Contacts resolved in X][50]
|
9082
9423
|
#
|
9083
9424
|
# CONTACTS\_TRANSFERRED\_OUT
|
9084
9425
|
#
|
@@ -9088,7 +9429,7 @@ module Aws::Connect
|
|
9088
9429
|
# Agent, Agent Hierarchy, Feature,
|
9089
9430
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9090
9431
|
#
|
9091
|
-
# UI name: [Contacts transferred out][
|
9432
|
+
# UI name: [Contacts transferred out][51]
|
9092
9433
|
#
|
9093
9434
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9094
9435
|
#
|
@@ -9102,7 +9443,7 @@ module Aws::Connect
|
|
9102
9443
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9103
9444
|
# Q in Connect
|
9104
9445
|
#
|
9105
|
-
# UI name: [Contacts transferred out by agent][
|
9446
|
+
# UI name: [Contacts transferred out by agent][52]
|
9106
9447
|
#
|
9107
9448
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
9108
9449
|
#
|
@@ -9112,7 +9453,7 @@ module Aws::Connect
|
|
9112
9453
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9113
9454
|
# Q in Connect
|
9114
9455
|
#
|
9115
|
-
# UI name: [Contacts transferred out queue][
|
9456
|
+
# UI name: [Contacts transferred out queue][52]
|
9116
9457
|
#
|
9117
9458
|
# CURRENT\_CASES
|
9118
9459
|
#
|
@@ -9122,7 +9463,42 @@ module Aws::Connect
|
|
9122
9463
|
#
|
9123
9464
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9124
9465
|
#
|
9125
|
-
# UI name: [Current cases][
|
9466
|
+
# UI name: [Current cases][53]
|
9467
|
+
#
|
9468
|
+
# FLOWS\_OUTCOME
|
9469
|
+
#
|
9470
|
+
# : Unit: Count
|
9471
|
+
#
|
9472
|
+
# Valid groupings and filters: Channel,
|
9473
|
+
# contact/segmentAttributes/connect:Subtype, Flow type, Flows module
|
9474
|
+
# resource ID, Flows next resource ID, Flows next resource queue ID,
|
9475
|
+
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9476
|
+
# published timestamp
|
9477
|
+
#
|
9478
|
+
# UI name: [Flows outcome][54]
|
9479
|
+
#
|
9480
|
+
# FLOWS\_STARTED
|
9481
|
+
#
|
9482
|
+
# : Unit: Count
|
9483
|
+
#
|
9484
|
+
# Valid groupings and filters: Channel,
|
9485
|
+
# contact/segmentAttributes/connect:Subtype, Flow type, Flows module
|
9486
|
+
# resource ID, Flows resource ID, Initiation method, Resource
|
9487
|
+
# published timestamp
|
9488
|
+
#
|
9489
|
+
# UI name: [Flows started][55]
|
9490
|
+
#
|
9491
|
+
# MAX\_FLOW\_TIME
|
9492
|
+
#
|
9493
|
+
# : Unit: Seconds
|
9494
|
+
#
|
9495
|
+
# Valid groupings and filters: Channel,
|
9496
|
+
# contact/segmentAttributes/connect:Subtype, Flow type, Flows module
|
9497
|
+
# resource ID, Flows next resource ID, Flows next resource queue ID,
|
9498
|
+
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9499
|
+
# published timestamp
|
9500
|
+
#
|
9501
|
+
# UI name: [Maximum flow time][56]
|
9126
9502
|
#
|
9127
9503
|
# MAX\_QUEUED\_TIME
|
9128
9504
|
#
|
@@ -9132,7 +9508,19 @@ module Aws::Connect
|
|
9132
9508
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9133
9509
|
# Q in Connect
|
9134
9510
|
#
|
9135
|
-
# UI name: [Maximum queued time][
|
9511
|
+
# UI name: [Maximum queued time][57]
|
9512
|
+
#
|
9513
|
+
# MIN\_FLOW\_TIME
|
9514
|
+
#
|
9515
|
+
# : Unit: Seconds
|
9516
|
+
#
|
9517
|
+
# Valid groupings and filters: Channel,
|
9518
|
+
# contact/segmentAttributes/connect:Subtype, Flow type, Flows module
|
9519
|
+
# resource ID, Flows next resource ID, Flows next resource queue ID,
|
9520
|
+
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9521
|
+
# published timestamp
|
9522
|
+
#
|
9523
|
+
# UI name: [Minimum flow time][58]
|
9136
9524
|
#
|
9137
9525
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
9138
9526
|
#
|
@@ -9142,7 +9530,7 @@ module Aws::Connect
|
|
9142
9530
|
#
|
9143
9531
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9144
9532
|
#
|
9145
|
-
# UI name: [Cases resolved on first contact][
|
9533
|
+
# UI name: [Cases resolved on first contact][59]
|
9146
9534
|
#
|
9147
9535
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
9148
9536
|
#
|
@@ -9160,6 +9548,24 @@ module Aws::Connect
|
|
9160
9548
|
#
|
9161
9549
|
# UI name: Not available
|
9162
9550
|
#
|
9551
|
+
# PERCENT\_FLOWS\_OUTCOME
|
9552
|
+
#
|
9553
|
+
# : Unit: Percent
|
9554
|
+
#
|
9555
|
+
# Valid metric filter key: `FLOWS_OUTCOME_TYPE`
|
9556
|
+
#
|
9557
|
+
# Valid groupings and filters: Channel,
|
9558
|
+
# contact/segmentAttributes/connect:Subtype, Flow type, Flows module
|
9559
|
+
# resource ID, Flows next resource ID, Flows next resource queue ID,
|
9560
|
+
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9561
|
+
# published timestamp
|
9562
|
+
#
|
9563
|
+
# UI name: [Flows outcome percentage][60].
|
9564
|
+
#
|
9565
|
+
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
9566
|
+
#
|
9567
|
+
# </note>
|
9568
|
+
#
|
9163
9569
|
# PERCENT\_NON\_TALK\_TIME
|
9164
9570
|
#
|
9165
9571
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -9171,7 +9577,7 @@ module Aws::Connect
|
|
9171
9577
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9172
9578
|
# Q in Connect
|
9173
9579
|
#
|
9174
|
-
# UI name: [Non-talk time percent][
|
9580
|
+
# UI name: [Non-talk time percent][61]
|
9175
9581
|
#
|
9176
9582
|
# PERCENT\_TALK\_TIME
|
9177
9583
|
#
|
@@ -9184,7 +9590,7 @@ module Aws::Connect
|
|
9184
9590
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9185
9591
|
# Q in Connect
|
9186
9592
|
#
|
9187
|
-
# UI name: [Talk time percent][
|
9593
|
+
# UI name: [Talk time percent][62]
|
9188
9594
|
#
|
9189
9595
|
# PERCENT\_TALK\_TIME\_AGENT
|
9190
9596
|
#
|
@@ -9197,7 +9603,7 @@ module Aws::Connect
|
|
9197
9603
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9198
9604
|
# Q in Connect
|
9199
9605
|
#
|
9200
|
-
# UI name: [Agent talk time percent][
|
9606
|
+
# UI name: [Agent talk time percent][63]
|
9201
9607
|
#
|
9202
9608
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
9203
9609
|
#
|
@@ -9210,7 +9616,7 @@ module Aws::Connect
|
|
9210
9616
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9211
9617
|
# Q in Connect
|
9212
9618
|
#
|
9213
|
-
# UI name: [Customer talk time percent][
|
9619
|
+
# UI name: [Customer talk time percent][64]
|
9214
9620
|
#
|
9215
9621
|
# REOPENED\_CASE\_ACTIONS
|
9216
9622
|
#
|
@@ -9220,7 +9626,7 @@ module Aws::Connect
|
|
9220
9626
|
#
|
9221
9627
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9222
9628
|
#
|
9223
|
-
# UI name: [Cases reopened][
|
9629
|
+
# UI name: [Cases reopened][65]
|
9224
9630
|
#
|
9225
9631
|
# RESOLVED\_CASE\_ACTIONS
|
9226
9632
|
#
|
@@ -9230,7 +9636,7 @@ module Aws::Connect
|
|
9230
9636
|
#
|
9231
9637
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9232
9638
|
#
|
9233
|
-
# UI name: [Cases resolved][
|
9639
|
+
# UI name: [Cases resolved][66]
|
9234
9640
|
#
|
9235
9641
|
# SERVICE\_LEVEL
|
9236
9642
|
#
|
@@ -9245,7 +9651,7 @@ module Aws::Connect
|
|
9245
9651
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9246
9652
|
# `LT` (for "Less than").
|
9247
9653
|
#
|
9248
|
-
# UI name: [Service level X][
|
9654
|
+
# UI name: [Service level X][67]
|
9249
9655
|
#
|
9250
9656
|
# STEP\_CONTACTS\_QUEUED
|
9251
9657
|
#
|
@@ -9262,7 +9668,7 @@ module Aws::Connect
|
|
9262
9668
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9263
9669
|
# Agent, Agent Hierarchy, Q in Connect
|
9264
9670
|
#
|
9265
|
-
# UI name: [After contact work time][
|
9671
|
+
# UI name: [After contact work time][68]
|
9266
9672
|
#
|
9267
9673
|
# SUM\_CONNECTING\_TIME\_AGENT
|
9268
9674
|
#
|
@@ -9275,7 +9681,7 @@ module Aws::Connect
|
|
9275
9681
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9276
9682
|
# Agent, Agent Hierarchy
|
9277
9683
|
#
|
9278
|
-
# UI name: [Agent API connecting time][
|
9684
|
+
# UI name: [Agent API connecting time][69]
|
9279
9685
|
#
|
9280
9686
|
# <note markdown="1"> The `Negate` key in Metric Level Filters is not applicable for
|
9281
9687
|
# this metric.
|
@@ -9289,7 +9695,7 @@ module Aws::Connect
|
|
9289
9695
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9290
9696
|
# Agent, Agent Hierarchy, Q in Connect
|
9291
9697
|
#
|
9292
|
-
# UI name: [Contact flow time][
|
9698
|
+
# UI name: [Contact flow time][70]
|
9293
9699
|
#
|
9294
9700
|
# SUM\_CONTACT\_TIME\_AGENT
|
9295
9701
|
#
|
@@ -9298,33 +9704,7 @@ module Aws::Connect
|
|
9298
9704
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9299
9705
|
# Agent, Agent Hierarchy
|
9300
9706
|
#
|
9301
|
-
# UI name: [Agent on contact time][
|
9302
|
-
#
|
9303
|
-
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
9304
|
-
#
|
9305
|
-
# : Unit: Count
|
9306
|
-
#
|
9307
|
-
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9308
|
-
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9309
|
-
#
|
9310
|
-
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
9311
|
-
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9312
|
-
# `LT` (for "Less than").
|
9313
|
-
#
|
9314
|
-
# UI name: [Contacts answered in X seconds][64]
|
9315
|
-
#
|
9316
|
-
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
9317
|
-
#
|
9318
|
-
# : Unit: Count
|
9319
|
-
#
|
9320
|
-
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9321
|
-
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9322
|
-
#
|
9323
|
-
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
9324
|
-
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9325
|
-
# `LT` (for "Less than").
|
9326
|
-
#
|
9327
|
-
# UI name: [Contacts abandoned in X seconds][65]
|
9707
|
+
# UI name: [Agent on contact time][71]
|
9328
9708
|
#
|
9329
9709
|
# SUM\_CONTACTS\_DISCONNECTED
|
9330
9710
|
#
|
@@ -9336,7 +9716,7 @@ module Aws::Connect
|
|
9336
9716
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9337
9717
|
# Q in Connect
|
9338
9718
|
#
|
9339
|
-
# UI name: [Contact disconnected][
|
9719
|
+
# UI name: [Contact disconnected][72]
|
9340
9720
|
#
|
9341
9721
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
9342
9722
|
#
|
@@ -9345,7 +9725,7 @@ module Aws::Connect
|
|
9345
9725
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9346
9726
|
# Agent, Agent Hierarchy
|
9347
9727
|
#
|
9348
|
-
# UI name: [Error status time][
|
9728
|
+
# UI name: [Error status time][73]
|
9349
9729
|
#
|
9350
9730
|
# SUM\_HANDLE\_TIME
|
9351
9731
|
#
|
@@ -9354,7 +9734,7 @@ module Aws::Connect
|
|
9354
9734
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9355
9735
|
# Agent, Agent Hierarchy, Q in Connect
|
9356
9736
|
#
|
9357
|
-
# UI name: [Contact handle time][
|
9737
|
+
# UI name: [Contact handle time][74]
|
9358
9738
|
#
|
9359
9739
|
# SUM\_HOLD\_TIME
|
9360
9740
|
#
|
@@ -9363,7 +9743,7 @@ module Aws::Connect
|
|
9363
9743
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9364
9744
|
# Agent, Agent Hierarchy, Q in Connect
|
9365
9745
|
#
|
9366
|
-
# UI name: [Customer hold time][
|
9746
|
+
# UI name: [Customer hold time][75]
|
9367
9747
|
#
|
9368
9748
|
# SUM\_IDLE\_TIME\_AGENT
|
9369
9749
|
#
|
@@ -9372,7 +9752,7 @@ module Aws::Connect
|
|
9372
9752
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
9373
9753
|
# Hierarchy
|
9374
9754
|
#
|
9375
|
-
# UI name: [Agent idle time][
|
9755
|
+
# UI name: [Agent idle time][76]
|
9376
9756
|
#
|
9377
9757
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
9378
9758
|
#
|
@@ -9381,7 +9761,7 @@ module Aws::Connect
|
|
9381
9761
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9382
9762
|
# Agent, Agent Hierarchy, Q in Connect
|
9383
9763
|
#
|
9384
|
-
# UI name: [Agent interaction and hold time][
|
9764
|
+
# UI name: [Agent interaction and hold time][77]
|
9385
9765
|
#
|
9386
9766
|
# SUM\_INTERACTION\_TIME
|
9387
9767
|
#
|
@@ -9390,7 +9770,7 @@ module Aws::Connect
|
|
9390
9770
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9391
9771
|
# Agent, Agent Hierarchy
|
9392
9772
|
#
|
9393
|
-
# UI name: [Agent interaction time][
|
9773
|
+
# UI name: [Agent interaction time][78]
|
9394
9774
|
#
|
9395
9775
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
9396
9776
|
#
|
@@ -9399,7 +9779,7 @@ module Aws::Connect
|
|
9399
9779
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
9400
9780
|
# Hierarchy
|
9401
9781
|
#
|
9402
|
-
# UI name: [Non-Productive Time][
|
9782
|
+
# UI name: [Non-Productive Time][79]
|
9403
9783
|
#
|
9404
9784
|
# SUM\_ONLINE\_TIME\_AGENT
|
9405
9785
|
#
|
@@ -9408,7 +9788,7 @@ module Aws::Connect
|
|
9408
9788
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
9409
9789
|
# Hierarchy
|
9410
9790
|
#
|
9411
|
-
# UI name: [Online time][
|
9791
|
+
# UI name: [Online time][80]
|
9412
9792
|
#
|
9413
9793
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
9414
9794
|
#
|
@@ -9417,7 +9797,7 @@ module Aws::Connect
|
|
9417
9797
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9418
9798
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9419
9799
|
#
|
9420
|
-
# UI name: [Callback attempts][
|
9800
|
+
# UI name: [Callback attempts][81]
|
9421
9801
|
#
|
9422
9802
|
#
|
9423
9803
|
#
|
@@ -9441,61 +9821,67 @@ module Aws::Connect
|
|
9441
9821
|
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-case-resolution-time-historical
|
9442
9822
|
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contact-duration-historical
|
9443
9823
|
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-conversation-duration-historical
|
9444
|
-
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9445
|
-
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9446
|
-
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9447
|
-
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9448
|
-
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9449
|
-
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9450
|
-
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
9451
|
-
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9452
|
-
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-
|
9453
|
-
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
9454
|
-
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
9455
|
-
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9456
|
-
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9457
|
-
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-
|
9458
|
-
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-
|
9459
|
-
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
9460
|
-
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
9461
|
-
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9462
|
-
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9463
|
-
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9464
|
-
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9465
|
-
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9466
|
-
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9467
|
-
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9468
|
-
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9469
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9470
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9471
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9472
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9473
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9474
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9475
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9476
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9477
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9478
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9479
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9480
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9481
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9482
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9483
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9484
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9485
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9486
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9487
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9488
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9489
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9490
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9491
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9492
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9493
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9494
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-
|
9495
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9496
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9497
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9498
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9824
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-flow-time-historical
|
9825
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-greeting-time-agent-historical
|
9826
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-handle-time-historical
|
9827
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-customer-hold-time-historical
|
9828
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#avg-customer-hold-time-all-contacts-historical
|
9829
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-holds-historical
|
9830
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-customer-hold-time-historical
|
9831
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
9832
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-agent-historical
|
9833
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-time-agent-historical
|
9834
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##average-non-talk-time-historical
|
9835
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-answer-time-historical
|
9836
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-resolution-time-historical
|
9837
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-historical
|
9838
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-agent-historical
|
9839
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-customer-historical
|
9840
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##cases-created-historical
|
9841
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
9842
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
9843
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
9844
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
|
9845
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
|
9846
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
|
9847
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
|
9848
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
|
9849
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
|
9850
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
9851
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
9852
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
9853
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
9854
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
9855
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
9856
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
9857
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
|
9858
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-started-historical
|
9859
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-flow-time-historical
|
9860
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
9861
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#minimum-flow-time-historical
|
9862
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
9863
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-percentage-historical
|
9864
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
9865
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
9866
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
9867
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
9868
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
9869
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historicall
|
9870
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
9871
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
9872
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
9873
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
9874
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
9875
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
9876
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
9877
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
9878
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
9879
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
9880
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
9881
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
9882
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
9883
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
9884
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
9499
9885
|
# @return [Array<Types::MetricV2>]
|
9500
9886
|
#
|
9501
9887
|
# @!attribute [rw] next_token
|
@@ -9879,6 +10265,41 @@ module Aws::Connect
|
|
9879
10265
|
include Aws::Structure
|
9880
10266
|
end
|
9881
10267
|
|
10268
|
+
# Information about the agent hierarchy. Hierarchies can be configured
|
10269
|
+
# with up to five levels.
|
10270
|
+
#
|
10271
|
+
# @!attribute [rw] level_1
|
10272
|
+
# The group at level one of the agent hierarchy.
|
10273
|
+
# @return [Types::AgentHierarchyGroup]
|
10274
|
+
#
|
10275
|
+
# @!attribute [rw] level_2
|
10276
|
+
# The group at level two of the agent hierarchy.
|
10277
|
+
# @return [Types::AgentHierarchyGroup]
|
10278
|
+
#
|
10279
|
+
# @!attribute [rw] level_3
|
10280
|
+
# The group at level three of the agent hierarchy.
|
10281
|
+
# @return [Types::AgentHierarchyGroup]
|
10282
|
+
#
|
10283
|
+
# @!attribute [rw] level_4
|
10284
|
+
# The group at level four of the agent hierarchy.
|
10285
|
+
# @return [Types::AgentHierarchyGroup]
|
10286
|
+
#
|
10287
|
+
# @!attribute [rw] level_5
|
10288
|
+
# The group at level five of the agent hierarchy.
|
10289
|
+
# @return [Types::AgentHierarchyGroup]
|
10290
|
+
#
|
10291
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HierarchyGroups AWS API Documentation
|
10292
|
+
#
|
10293
|
+
class HierarchyGroups < Struct.new(
|
10294
|
+
:level_1,
|
10295
|
+
:level_2,
|
10296
|
+
:level_3,
|
10297
|
+
:level_4,
|
10298
|
+
:level_5)
|
10299
|
+
SENSITIVE = []
|
10300
|
+
include Aws::Structure
|
10301
|
+
end
|
10302
|
+
|
9882
10303
|
# Contains information about a hierarchy level.
|
9883
10304
|
#
|
9884
10305
|
# @!attribute [rw] id
|
@@ -13504,8 +13925,7 @@ module Aws::Connect
|
|
13504
13925
|
# Valid metric filter keys: `INITIATION_METHOD`, `DISCONNECT_REASON`.
|
13505
13926
|
# These are the same values as the `InitiationMethod` and
|
13506
13927
|
# `DisconnectReason` in the contact record. For more information, see
|
13507
|
-
# [ContactTraceRecord][1] in the *Amazon Connect Administrator
|
13508
|
-
# Guide*.
|
13928
|
+
# [ContactTraceRecord][1] in the *Amazon Connect Administrator Guide*.
|
13509
13929
|
#
|
13510
13930
|
#
|
13511
13931
|
#
|
@@ -14494,6 +14914,25 @@ module Aws::Connect
|
|
14494
14914
|
#
|
14495
14915
|
class PutUserStatusResponse < Aws::EmptyStructure; end
|
14496
14916
|
|
14917
|
+
# Information about the quality of the participant's media connection.
|
14918
|
+
#
|
14919
|
+
# @!attribute [rw] agent
|
14920
|
+
# Information about the quality of Agent media connection.
|
14921
|
+
# @return [Types::AgentQualityMetrics]
|
14922
|
+
#
|
14923
|
+
# @!attribute [rw] customer
|
14924
|
+
# Information about the quality of Customer media connection.
|
14925
|
+
# @return [Types::CustomerQualityMetrics]
|
14926
|
+
#
|
14927
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QualityMetrics AWS API Documentation
|
14928
|
+
#
|
14929
|
+
class QualityMetrics < Struct.new(
|
14930
|
+
:agent,
|
14931
|
+
:customer)
|
14932
|
+
SENSITIVE = []
|
14933
|
+
include Aws::Structure
|
14934
|
+
end
|
14935
|
+
|
14497
14936
|
# Contains information about a queue.
|
14498
14937
|
#
|
14499
14938
|
# @!attribute [rw] name
|
@@ -15660,6 +16099,39 @@ module Aws::Connect
|
|
15660
16099
|
#
|
15661
16100
|
class ResumeContactResponse < Aws::EmptyStructure; end
|
15662
16101
|
|
16102
|
+
# Latest routing criteria on the contact.
|
16103
|
+
#
|
16104
|
+
# @!attribute [rw] steps
|
16105
|
+
# List of routing steps. When Amazon Connect does not find an
|
16106
|
+
# available agent meeting the requirements in a step for a given step
|
16107
|
+
# duration, the routing criteria will move on to the next step
|
16108
|
+
# sequentially until a join is completed with an agent. When all steps
|
16109
|
+
# are exhausted, the contact will be offered to any agent in the
|
16110
|
+
# queue.
|
16111
|
+
# @return [Array<Types::Step>]
|
16112
|
+
#
|
16113
|
+
# @!attribute [rw] activation_timestamp
|
16114
|
+
# The timestamp indicating when the routing criteria is set to active.
|
16115
|
+
# A routing criteria is activated when contact is transferred to a
|
16116
|
+
# queue. ActivationTimestamp will be set on routing criteria for
|
16117
|
+
# contacts in agent queue even though Routing criteria is never
|
16118
|
+
# activated for contacts in agent queue.
|
16119
|
+
# @return [Time]
|
16120
|
+
#
|
16121
|
+
# @!attribute [rw] index
|
16122
|
+
# Information about the index of the routing criteria.
|
16123
|
+
# @return [Integer]
|
16124
|
+
#
|
16125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingCriteria AWS API Documentation
|
16126
|
+
#
|
16127
|
+
class RoutingCriteria < Struct.new(
|
16128
|
+
:steps,
|
16129
|
+
:activation_timestamp,
|
16130
|
+
:index)
|
16131
|
+
SENSITIVE = []
|
16132
|
+
include Aws::Structure
|
16133
|
+
end
|
16134
|
+
|
15663
16135
|
# Contains information about a routing profile.
|
15664
16136
|
#
|
15665
16137
|
# @!attribute [rw] instance_id
|
@@ -18570,6 +19042,30 @@ module Aws::Connect
|
|
18570
19042
|
include Aws::Structure
|
18571
19043
|
end
|
18572
19044
|
|
19045
|
+
# Step signifies the criteria to be used for routing to an agent
|
19046
|
+
#
|
19047
|
+
# @!attribute [rw] expiry
|
19048
|
+
# An object to specify the expiration of a routing step.
|
19049
|
+
# @return [Types::Expiry]
|
19050
|
+
#
|
19051
|
+
# @!attribute [rw] expression
|
19052
|
+
# A tagged union to specify expression for a routing step.
|
19053
|
+
# @return [Types::Expression]
|
19054
|
+
#
|
19055
|
+
# @!attribute [rw] status
|
19056
|
+
# Represents status of the Routing step.
|
19057
|
+
# @return [String]
|
19058
|
+
#
|
19059
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Step AWS API Documentation
|
19060
|
+
#
|
19061
|
+
class Step < Struct.new(
|
19062
|
+
:expiry,
|
19063
|
+
:expression,
|
19064
|
+
:status)
|
19065
|
+
SENSITIVE = []
|
19066
|
+
include Aws::Structure
|
19067
|
+
end
|
19068
|
+
|
18573
19069
|
# @!attribute [rw] instance_id
|
18574
19070
|
# The identifier of the Amazon Connect instance. You can [find the
|
18575
19071
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|