aws-sdk-connect 1.200.0 → 1.202.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 +221 -188
- data/lib/aws-sdk-connect/client_api.rb +196 -127
- data/lib/aws-sdk-connect/types.rb +414 -184
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/types.rbs +48 -0
- metadata +3 -6
@@ -269,6 +269,32 @@ module Aws::Connect
|
|
269
269
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/inapp-calling.html
|
270
270
|
# @return [Types::ParticipantCapabilities]
|
271
271
|
#
|
272
|
+
# @!attribute [rw] after_contact_work_duration
|
273
|
+
# The difference in time, in whole seconds, between
|
274
|
+
# `AfterContactWorkStartTimestamp` and `AfterContactWorkEndTimestamp`.
|
275
|
+
# @return [Integer]
|
276
|
+
#
|
277
|
+
# @!attribute [rw] after_contact_work_start_timestamp
|
278
|
+
# The date and time when the agent started doing After Contact Work
|
279
|
+
# for the contact, in UTC time.
|
280
|
+
# @return [Time]
|
281
|
+
#
|
282
|
+
# @!attribute [rw] after_contact_work_end_timestamp
|
283
|
+
# The date and time when the agent ended After Contact Work for the
|
284
|
+
# contact, in UTC time. In cases when agent finishes doing
|
285
|
+
# `AfterContactWork` for chat contacts and switches their activity
|
286
|
+
# status to offline or equivalent without clearing the contact in CCP,
|
287
|
+
# discrepancies may be noticed for `AfterContactWorkEndTimestamp`.
|
288
|
+
# @return [Time]
|
289
|
+
#
|
290
|
+
# @!attribute [rw] agent_initiated_hold_duration
|
291
|
+
# The total hold duration in seconds initiated by the agent.
|
292
|
+
# @return [Integer]
|
293
|
+
#
|
294
|
+
# @!attribute [rw] state_transitions
|
295
|
+
# List of `StateTransition` for a supervisor.
|
296
|
+
# @return [Array<Types::StateTransition>]
|
297
|
+
#
|
272
298
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentInfo AWS API Documentation
|
273
299
|
#
|
274
300
|
class AgentInfo < Struct.new(
|
@@ -277,7 +303,12 @@ module Aws::Connect
|
|
277
303
|
:agent_pause_duration_in_seconds,
|
278
304
|
:hierarchy_groups,
|
279
305
|
:device_info,
|
280
|
-
:capabilities
|
306
|
+
:capabilities,
|
307
|
+
:after_contact_work_duration,
|
308
|
+
:after_contact_work_start_timestamp,
|
309
|
+
:after_contact_work_end_timestamp,
|
310
|
+
:agent_initiated_hold_duration,
|
311
|
+
:state_transitions)
|
281
312
|
SENSITIVE = []
|
282
313
|
include Aws::Structure
|
283
314
|
end
|
@@ -2653,6 +2684,29 @@ module Aws::Connect
|
|
2653
2684
|
# `connect:SMS`.
|
2654
2685
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
2655
2686
|
#
|
2687
|
+
# @!attribute [rw] recordings
|
2688
|
+
# If recording was enabled, this is information about the recordings.
|
2689
|
+
# @return [Array<Types::RecordingInfo>]
|
2690
|
+
#
|
2691
|
+
# @!attribute [rw] disconnect_reason
|
2692
|
+
# The disconnect reason for the contact.
|
2693
|
+
# @return [String]
|
2694
|
+
#
|
2695
|
+
# @!attribute [rw] contact_evaluations
|
2696
|
+
# Information about the contact evaluations where the key is the
|
2697
|
+
# FormId, which is a unique identifier for the form.
|
2698
|
+
# @return [Hash<String,Types::ContactEvaluation>]
|
2699
|
+
#
|
2700
|
+
# @!attribute [rw] contact_details
|
2701
|
+
# A map of string key/value pairs that contain user-defined attributes
|
2702
|
+
# which are lightly typed within the contact. This object is used only
|
2703
|
+
# for task contacts.
|
2704
|
+
# @return [Types::ContactDetails]
|
2705
|
+
#
|
2706
|
+
# @!attribute [rw] attributes
|
2707
|
+
# The attributes of the contact.
|
2708
|
+
# @return [Hash<String,String>]
|
2709
|
+
#
|
2656
2710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Contact AWS API Documentation
|
2657
2711
|
#
|
2658
2712
|
class Contact < Struct.new(
|
@@ -2692,7 +2746,12 @@ module Aws::Connect
|
|
2692
2746
|
:quality_metrics,
|
2693
2747
|
:disconnect_details,
|
2694
2748
|
:additional_email_recipients,
|
2695
|
-
:segment_attributes
|
2749
|
+
:segment_attributes,
|
2750
|
+
:recordings,
|
2751
|
+
:disconnect_reason,
|
2752
|
+
:contact_evaluations,
|
2753
|
+
:contact_details,
|
2754
|
+
:attributes)
|
2696
2755
|
SENSITIVE = [:name, :description]
|
2697
2756
|
include Aws::Structure
|
2698
2757
|
end
|
@@ -2784,6 +2843,73 @@ module Aws::Connect
|
|
2784
2843
|
include Aws::Structure
|
2785
2844
|
end
|
2786
2845
|
|
2846
|
+
# A map of string key/value pairs that contain user-defined attributes
|
2847
|
+
# which are lightly typed within the contact. This object is used only
|
2848
|
+
# for task contacts.
|
2849
|
+
#
|
2850
|
+
# @!attribute [rw] name
|
2851
|
+
# The name of the contact details.
|
2852
|
+
# @return [String]
|
2853
|
+
#
|
2854
|
+
# @!attribute [rw] description
|
2855
|
+
# Teh description of the contact details.
|
2856
|
+
# @return [String]
|
2857
|
+
#
|
2858
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactDetails AWS API Documentation
|
2859
|
+
#
|
2860
|
+
class ContactDetails < Struct.new(
|
2861
|
+
:name,
|
2862
|
+
:description)
|
2863
|
+
SENSITIVE = []
|
2864
|
+
include Aws::Structure
|
2865
|
+
end
|
2866
|
+
|
2867
|
+
# Information about the contact evaluations where the key is the FormId,
|
2868
|
+
# which is a unique identifier for the form.
|
2869
|
+
#
|
2870
|
+
# @!attribute [rw] form_id
|
2871
|
+
# The `FormId` of the contact evaluation.
|
2872
|
+
# @return [String]
|
2873
|
+
#
|
2874
|
+
# @!attribute [rw] evaluation_arn
|
2875
|
+
# The Amazon Resource Name for the evaluation form. It is always
|
2876
|
+
# present.
|
2877
|
+
# @return [String]
|
2878
|
+
#
|
2879
|
+
# @!attribute [rw] status
|
2880
|
+
# The status of the evaluation.
|
2881
|
+
# @return [String]
|
2882
|
+
#
|
2883
|
+
# @!attribute [rw] start_timestamp
|
2884
|
+
# The date and time when the evaluation was started, in UTC time.
|
2885
|
+
# @return [Time]
|
2886
|
+
#
|
2887
|
+
# @!attribute [rw] end_timestamp
|
2888
|
+
# The date and time when the evaluation was submitted, in UTC time.
|
2889
|
+
# @return [Time]
|
2890
|
+
#
|
2891
|
+
# @!attribute [rw] delete_timestamp
|
2892
|
+
# The date and time when the evaluation was deleted, in UTC time.
|
2893
|
+
# @return [Time]
|
2894
|
+
#
|
2895
|
+
# @!attribute [rw] export_location
|
2896
|
+
# The path where evaluation was exported.
|
2897
|
+
# @return [String]
|
2898
|
+
#
|
2899
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactEvaluation AWS API Documentation
|
2900
|
+
#
|
2901
|
+
class ContactEvaluation < Struct.new(
|
2902
|
+
:form_id,
|
2903
|
+
:evaluation_arn,
|
2904
|
+
:status,
|
2905
|
+
:start_timestamp,
|
2906
|
+
:end_timestamp,
|
2907
|
+
:delete_timestamp,
|
2908
|
+
:export_location)
|
2909
|
+
SENSITIVE = []
|
2910
|
+
include Aws::Structure
|
2911
|
+
end
|
2912
|
+
|
2787
2913
|
# Filters user data based on the contact information that is associated
|
2788
2914
|
# to the users. It contains a list of [contact states][1].
|
2789
2915
|
#
|
@@ -5692,12 +5818,12 @@ module Aws::Connect
|
|
5692
5818
|
end
|
5693
5819
|
|
5694
5820
|
# Contains information about a real-time metric. For a description of
|
5695
|
-
# each metric, see [
|
5696
|
-
#
|
5821
|
+
# each metric, see [Metrics definitions][1] in the *Amazon Connect
|
5822
|
+
# Administrator Guide*.
|
5697
5823
|
#
|
5698
5824
|
#
|
5699
5825
|
#
|
5700
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
5826
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
|
5701
5827
|
#
|
5702
5828
|
# @!attribute [rw] name
|
5703
5829
|
# The name of the metric.
|
@@ -9841,8 +9967,8 @@ module Aws::Connect
|
|
9841
9967
|
# @!attribute [rw] current_metrics
|
9842
9968
|
# The metrics to retrieve. Specify the name and unit for each metric.
|
9843
9969
|
# The following metrics are available. For a description of all the
|
9844
|
-
# metrics, see [
|
9845
|
-
#
|
9970
|
+
# metrics, see [Metrics definitions][1] in the *Amazon Connect
|
9971
|
+
# Administrator Guide*.
|
9846
9972
|
#
|
9847
9973
|
# AGENTS\_AFTER\_CONTACT\_WORK
|
9848
9974
|
#
|
@@ -9942,19 +10068,19 @@ module Aws::Connect
|
|
9942
10068
|
#
|
9943
10069
|
#
|
9944
10070
|
#
|
9945
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9946
|
-
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9947
|
-
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9948
|
-
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9949
|
-
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9950
|
-
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9951
|
-
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9952
|
-
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9953
|
-
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9954
|
-
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9955
|
-
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9956
|
-
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9957
|
-
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10071
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
|
10072
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#aftercallwork-real-time
|
10073
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#available-real-time
|
10074
|
+
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#error-real-time
|
10075
|
+
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-productive-time-real-time
|
10076
|
+
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#on-call-real-time
|
10077
|
+
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#online-real-time
|
10078
|
+
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#staffed-real-time
|
10079
|
+
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#in-queue-real-time
|
10080
|
+
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#scheduled-real-time
|
10081
|
+
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#oldest-real-time
|
10082
|
+
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#active-real-time
|
10083
|
+
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#availability-real-time
|
9958
10084
|
# @return [Array<Types::CurrentMetric>]
|
9959
10085
|
#
|
9960
10086
|
# @!attribute [rw] next_token
|
@@ -10312,8 +10438,8 @@ module Aws::Connect
|
|
10312
10438
|
# @!attribute [rw] historical_metrics
|
10313
10439
|
# The metrics to retrieve. Specify the name, unit, and statistic for
|
10314
10440
|
# each metric. The following historical metrics are available. For a
|
10315
|
-
# description of each metric, see [
|
10316
|
-
#
|
10441
|
+
# description of each metric, see [Metrics definition][1] in the
|
10442
|
+
# *Amazon Connect Administrator Guide*.
|
10317
10443
|
#
|
10318
10444
|
# <note markdown="1"> This API does not support a contacts incoming metric (there's no
|
10319
10445
|
# CONTACTS\_INCOMING metric missing from the documented list).
|
@@ -10478,7 +10604,7 @@ module Aws::Connect
|
|
10478
10604
|
#
|
10479
10605
|
#
|
10480
10606
|
#
|
10481
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10607
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
|
10482
10608
|
# @return [Array<Types::HistoricalMetric>]
|
10483
10609
|
#
|
10484
10610
|
# @!attribute [rw] next_token
|
@@ -10712,8 +10838,8 @@ module Aws::Connect
|
|
10712
10838
|
# @!attribute [rw] metrics
|
10713
10839
|
# The metrics to retrieve. Specify the name, groupings, and filters
|
10714
10840
|
# for each metric. The following historical metrics are available. For
|
10715
|
-
# a description of each metric, see [
|
10716
|
-
#
|
10841
|
+
# a description of each metric, see [Metrics definition][1] in the
|
10842
|
+
# *Amazon Connect Administrator Guide*.
|
10717
10843
|
#
|
10718
10844
|
# ABANDONMENT\_RATE
|
10719
10845
|
#
|
@@ -10961,7 +11087,7 @@ module Aws::Connect
|
|
10961
11087
|
# Evaluation Form ID, Evaluation Section ID, Evaluation Question ID,
|
10962
11088
|
# Evaluation Source, Form Version, Queue, Routing Profile
|
10963
11089
|
#
|
10964
|
-
# UI name: [Average
|
11090
|
+
# UI name: [Average evaluation score][24]
|
10965
11091
|
#
|
10966
11092
|
# AVG\_FLOW\_TIME
|
10967
11093
|
#
|
@@ -11184,7 +11310,7 @@ module Aws::Connect
|
|
11184
11310
|
# Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
|
11185
11311
|
# Evaluation Source, Form Version, Queue, Routing Profile
|
11186
11312
|
#
|
11187
|
-
# UI name: [Average weighted
|
11313
|
+
# UI name: [Average weighted evaluation score][42]
|
11188
11314
|
#
|
11189
11315
|
# BOT\_CONVERSATIONS\_COMPLETED
|
11190
11316
|
#
|
@@ -11197,7 +11323,7 @@ module Aws::Connect
|
|
11197
11323
|
# Initiation method, Invoking resource type, Parent flows resource
|
11198
11324
|
# ID
|
11199
11325
|
#
|
11200
|
-
# UI name: [Bot conversations][43]
|
11326
|
+
# UI name: [Bot conversations completed][43]
|
11201
11327
|
#
|
11202
11328
|
# BOT\_INTENTS\_COMPLETED
|
11203
11329
|
#
|
@@ -11327,7 +11453,7 @@ module Aws::Connect
|
|
11327
11453
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11328
11454
|
# Q in Connect
|
11329
11455
|
#
|
11330
|
-
# UI name: [Contacts hold disconnect][
|
11456
|
+
# UI name: [Contacts hold disconnect][53]
|
11331
11457
|
#
|
11332
11458
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
11333
11459
|
#
|
@@ -11336,7 +11462,7 @@ module Aws::Connect
|
|
11336
11462
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11337
11463
|
# Agent, Agent Hierarchy, Q in Connect
|
11338
11464
|
#
|
11339
|
-
# UI name: [Contacts hold agent disconnect][
|
11465
|
+
# UI name: [Contacts hold agent disconnect][54]
|
11340
11466
|
#
|
11341
11467
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
11342
11468
|
#
|
@@ -11345,7 +11471,7 @@ module Aws::Connect
|
|
11345
11471
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11346
11472
|
# Agent, Agent Hierarchy, Q in Connect
|
11347
11473
|
#
|
11348
|
-
# UI name: [Contacts hold customer disconnect][
|
11474
|
+
# UI name: [Contacts hold customer disconnect][55]
|
11349
11475
|
#
|
11350
11476
|
# CONTACTS\_PUT\_ON\_HOLD
|
11351
11477
|
#
|
@@ -11354,7 +11480,7 @@ module Aws::Connect
|
|
11354
11480
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11355
11481
|
# Agent, Agent Hierarchy, Q in Connect
|
11356
11482
|
#
|
11357
|
-
# UI name: [Contacts put on hold][
|
11483
|
+
# UI name: [Contacts put on hold][56]
|
11358
11484
|
#
|
11359
11485
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
11360
11486
|
#
|
@@ -11363,7 +11489,7 @@ module Aws::Connect
|
|
11363
11489
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11364
11490
|
# Agent, Agent Hierarchy, Q in Connect
|
11365
11491
|
#
|
11366
|
-
# UI name: [Contacts transferred out external][
|
11492
|
+
# UI name: [Contacts transferred out external][57]
|
11367
11493
|
#
|
11368
11494
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
11369
11495
|
#
|
@@ -11372,7 +11498,7 @@ module Aws::Connect
|
|
11372
11498
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11373
11499
|
# Agent, Agent Hierarchy, Q in Connect
|
11374
11500
|
#
|
11375
|
-
# UI name: [Contacts transferred out internal][
|
11501
|
+
# UI name: [Contacts transferred out internal][58]
|
11376
11502
|
#
|
11377
11503
|
# CONTACTS\_QUEUED
|
11378
11504
|
#
|
@@ -11382,7 +11508,7 @@ module Aws::Connect
|
|
11382
11508
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11383
11509
|
# Q in Connect
|
11384
11510
|
#
|
11385
|
-
# UI name: [Contacts queued][
|
11511
|
+
# UI name: [Contacts queued][59]
|
11386
11512
|
#
|
11387
11513
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
11388
11514
|
#
|
@@ -11391,7 +11517,7 @@ module Aws::Connect
|
|
11391
11517
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11392
11518
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
11393
11519
|
#
|
11394
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
11520
|
+
# UI name: [Contacts queued (enqueue timestamp)][60]
|
11395
11521
|
#
|
11396
11522
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
11397
11523
|
#
|
@@ -11404,7 +11530,7 @@ module Aws::Connect
|
|
11404
11530
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11405
11531
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11406
11532
|
#
|
11407
|
-
# UI name: [Contacts removed from queue in X seconds][
|
11533
|
+
# UI name: [Contacts removed from queue in X seconds][61]
|
11408
11534
|
#
|
11409
11535
|
# CONTACTS\_RESOLVED\_IN\_X
|
11410
11536
|
#
|
@@ -11417,7 +11543,7 @@ module Aws::Connect
|
|
11417
11543
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11418
11544
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11419
11545
|
#
|
11420
|
-
# UI name: [Contacts resolved in X][
|
11546
|
+
# UI name: [Contacts resolved in X][62]
|
11421
11547
|
#
|
11422
11548
|
# CONTACTS\_TRANSFERRED\_OUT
|
11423
11549
|
#
|
@@ -11427,7 +11553,7 @@ module Aws::Connect
|
|
11427
11553
|
# Agent, Agent Hierarchy, Feature,
|
11428
11554
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11429
11555
|
#
|
11430
|
-
# UI name: [Contacts transferred out][
|
11556
|
+
# UI name: [Contacts transferred out][63]
|
11431
11557
|
#
|
11432
11558
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11433
11559
|
#
|
@@ -11441,7 +11567,7 @@ module Aws::Connect
|
|
11441
11567
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11442
11568
|
# Q in Connect
|
11443
11569
|
#
|
11444
|
-
# UI name: [Contacts transferred out by agent][
|
11570
|
+
# UI name: [Contacts transferred out by agent][64]
|
11445
11571
|
#
|
11446
11572
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
11447
11573
|
#
|
@@ -11451,7 +11577,7 @@ module Aws::Connect
|
|
11451
11577
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11452
11578
|
# Q in Connect
|
11453
11579
|
#
|
11454
|
-
# UI name: [Contacts transferred out queue][
|
11580
|
+
# UI name: [Contacts transferred out queue][65]
|
11455
11581
|
#
|
11456
11582
|
# CURRENT\_CASES
|
11457
11583
|
#
|
@@ -11461,7 +11587,7 @@ module Aws::Connect
|
|
11461
11587
|
#
|
11462
11588
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11463
11589
|
#
|
11464
|
-
# UI name: [Current cases][
|
11590
|
+
# UI name: [Current cases][66]
|
11465
11591
|
#
|
11466
11592
|
# DELIVERY\_ATTEMPTS
|
11467
11593
|
#
|
@@ -11477,7 +11603,7 @@ module Aws::Connect
|
|
11477
11603
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11478
11604
|
# Queue, Routing Profile
|
11479
11605
|
#
|
11480
|
-
# UI name: [Delivery attempts][
|
11606
|
+
# UI name: [Delivery attempts][67]
|
11481
11607
|
#
|
11482
11608
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
11483
11609
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -11503,7 +11629,7 @@ module Aws::Connect
|
|
11503
11629
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11504
11630
|
# Queue, Routing Profile
|
11505
11631
|
#
|
11506
|
-
# UI name: [Delivery attempt disposition rate][
|
11632
|
+
# UI name: [Delivery attempt disposition rate][68]
|
11507
11633
|
#
|
11508
11634
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only
|
11509
11635
|
# available for SMS and Email campaign delivery modes. Agent, Queue,
|
@@ -11521,7 +11647,7 @@ module Aws::Connect
|
|
11521
11647
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
11522
11648
|
# Routing Profile
|
11523
11649
|
#
|
11524
|
-
# UI name: [Evaluations performed][
|
11650
|
+
# UI name: [Evaluations performed][69]
|
11525
11651
|
#
|
11526
11652
|
# FLOWS\_OUTCOME
|
11527
11653
|
#
|
@@ -11533,7 +11659,7 @@ module Aws::Connect
|
|
11533
11659
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11534
11660
|
# published timestamp
|
11535
11661
|
#
|
11536
|
-
# UI name: [Flows outcome][
|
11662
|
+
# UI name: [Flows outcome][70]
|
11537
11663
|
#
|
11538
11664
|
# FLOWS\_STARTED
|
11539
11665
|
#
|
@@ -11544,7 +11670,7 @@ module Aws::Connect
|
|
11544
11670
|
# resource ID, Flows resource ID, Initiation method, Resource
|
11545
11671
|
# published timestamp
|
11546
11672
|
#
|
11547
|
-
# UI name: [Flows started][
|
11673
|
+
# UI name: [Flows started][71]
|
11548
11674
|
#
|
11549
11675
|
# HUMAN\_ANSWERED\_CALLS
|
11550
11676
|
#
|
@@ -11556,7 +11682,7 @@ module Aws::Connect
|
|
11556
11682
|
#
|
11557
11683
|
# Valid groupings and filters: Agent, Campaign
|
11558
11684
|
#
|
11559
|
-
# UI name: [Human answered][
|
11685
|
+
# UI name: [Human answered][72]
|
11560
11686
|
#
|
11561
11687
|
# MAX\_FLOW\_TIME
|
11562
11688
|
#
|
@@ -11568,7 +11694,7 @@ module Aws::Connect
|
|
11568
11694
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11569
11695
|
# published timestamp
|
11570
11696
|
#
|
11571
|
-
# UI name: [Maximum flow time][
|
11697
|
+
# UI name: [Maximum flow time][73]
|
11572
11698
|
#
|
11573
11699
|
# MAX\_QUEUED\_TIME
|
11574
11700
|
#
|
@@ -11578,7 +11704,7 @@ module Aws::Connect
|
|
11578
11704
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11579
11705
|
# Q in Connect
|
11580
11706
|
#
|
11581
|
-
# UI name: [Maximum queued time][
|
11707
|
+
# UI name: [Maximum queued time][74]
|
11582
11708
|
#
|
11583
11709
|
# MIN\_FLOW\_TIME
|
11584
11710
|
#
|
@@ -11590,7 +11716,7 @@ module Aws::Connect
|
|
11590
11716
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11591
11717
|
# published timestamp
|
11592
11718
|
#
|
11593
|
-
# UI name: [Minimum flow time][
|
11719
|
+
# UI name: [Minimum flow time][75]
|
11594
11720
|
#
|
11595
11721
|
# PERCENT\_AUTOMATIC\_FAILS
|
11596
11722
|
#
|
@@ -11600,7 +11726,7 @@ module Aws::Connect
|
|
11600
11726
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
11601
11727
|
# Routing Profile
|
11602
11728
|
#
|
11603
|
-
# UI name: [Automatic fails percent][
|
11729
|
+
# UI name: [Automatic fails percent][76]
|
11604
11730
|
#
|
11605
11731
|
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
11606
11732
|
#
|
@@ -11613,7 +11739,7 @@ module Aws::Connect
|
|
11613
11739
|
# Initiation method, Invoking resource type, Parent flows resource
|
11614
11740
|
# ID
|
11615
11741
|
#
|
11616
|
-
# UI name: [Percent bot conversations outcome][
|
11742
|
+
# UI name: [Percent bot conversations outcome][77]
|
11617
11743
|
#
|
11618
11744
|
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
11619
11745
|
#
|
@@ -11626,7 +11752,7 @@ module Aws::Connect
|
|
11626
11752
|
# published timestamp, Initiation method, Invoking resource type,
|
11627
11753
|
# Parent flows resource ID
|
11628
11754
|
#
|
11629
|
-
# UI name: [Percent bot intents outcome][
|
11755
|
+
# UI name: [Percent bot intents outcome][78]
|
11630
11756
|
#
|
11631
11757
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
11632
11758
|
#
|
@@ -11636,7 +11762,7 @@ module Aws::Connect
|
|
11636
11762
|
#
|
11637
11763
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11638
11764
|
#
|
11639
|
-
# UI name: [Cases resolved on first contact][
|
11765
|
+
# UI name: [Cases resolved on first contact][79]
|
11640
11766
|
#
|
11641
11767
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
11642
11768
|
#
|
@@ -11668,7 +11794,7 @@ module Aws::Connect
|
|
11668
11794
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11669
11795
|
# published timestamp
|
11670
11796
|
#
|
11671
|
-
# UI name: [Flows outcome percentage][
|
11797
|
+
# UI name: [Flows outcome percentage][80].
|
11672
11798
|
#
|
11673
11799
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
11674
11800
|
#
|
@@ -11685,7 +11811,7 @@ module Aws::Connect
|
|
11685
11811
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11686
11812
|
# Q in Connect
|
11687
11813
|
#
|
11688
|
-
# UI name: [Non-talk time percent][
|
11814
|
+
# UI name: [Non-talk time percent][81]
|
11689
11815
|
#
|
11690
11816
|
# PERCENT\_TALK\_TIME
|
11691
11817
|
#
|
@@ -11698,7 +11824,7 @@ module Aws::Connect
|
|
11698
11824
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11699
11825
|
# Q in Connect
|
11700
11826
|
#
|
11701
|
-
# UI name: [Talk time percent][
|
11827
|
+
# UI name: [Talk time percent][82]
|
11702
11828
|
#
|
11703
11829
|
# PERCENT\_TALK\_TIME\_AGENT
|
11704
11830
|
#
|
@@ -11711,7 +11837,7 @@ module Aws::Connect
|
|
11711
11837
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11712
11838
|
# Q in Connect
|
11713
11839
|
#
|
11714
|
-
# UI name: [Agent talk time percent][
|
11840
|
+
# UI name: [Agent talk time percent][83]
|
11715
11841
|
#
|
11716
11842
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
11717
11843
|
#
|
@@ -11724,7 +11850,7 @@ module Aws::Connect
|
|
11724
11850
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11725
11851
|
# Q in Connect
|
11726
11852
|
#
|
11727
|
-
# UI name: [Customer talk time percent][
|
11853
|
+
# UI name: [Customer talk time percent][84]
|
11728
11854
|
#
|
11729
11855
|
# REOPENED\_CASE\_ACTIONS
|
11730
11856
|
#
|
@@ -11734,7 +11860,7 @@ module Aws::Connect
|
|
11734
11860
|
#
|
11735
11861
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11736
11862
|
#
|
11737
|
-
# UI name: [Cases reopened][
|
11863
|
+
# UI name: [Cases reopened][85]
|
11738
11864
|
#
|
11739
11865
|
# RESOLVED\_CASE\_ACTIONS
|
11740
11866
|
#
|
@@ -11744,7 +11870,7 @@ module Aws::Connect
|
|
11744
11870
|
#
|
11745
11871
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11746
11872
|
#
|
11747
|
-
# UI name: [Cases resolved][
|
11873
|
+
# UI name: [Cases resolved][86]
|
11748
11874
|
#
|
11749
11875
|
# SERVICE\_LEVEL
|
11750
11876
|
#
|
@@ -11759,7 +11885,7 @@ module Aws::Connect
|
|
11759
11885
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11760
11886
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11761
11887
|
#
|
11762
|
-
# UI name: [Service level X][
|
11888
|
+
# UI name: [Service level X][87]
|
11763
11889
|
#
|
11764
11890
|
# STEP\_CONTACTS\_QUEUED
|
11765
11891
|
#
|
@@ -11777,7 +11903,7 @@ module Aws::Connect
|
|
11777
11903
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11778
11904
|
# Agent, Agent Hierarchy, Q in Connect
|
11779
11905
|
#
|
11780
|
-
# UI name: [After contact work time][
|
11906
|
+
# UI name: [After contact work time][14]
|
11781
11907
|
#
|
11782
11908
|
# SUM\_CONNECTING\_TIME\_AGENT
|
11783
11909
|
#
|
@@ -11790,7 +11916,7 @@ module Aws::Connect
|
|
11790
11916
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11791
11917
|
# Agent, Agent Hierarchy
|
11792
11918
|
#
|
11793
|
-
# UI name: [Agent API connecting time][
|
11919
|
+
# UI name: [Agent API connecting time][88]
|
11794
11920
|
#
|
11795
11921
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for
|
11796
11922
|
# this metric.
|
@@ -11812,7 +11938,7 @@ module Aws::Connect
|
|
11812
11938
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11813
11939
|
# RoutingStepExpression, Q in Connect
|
11814
11940
|
#
|
11815
|
-
# UI name: [Contact abandoned][
|
11941
|
+
# UI name: [Contact abandoned][89]
|
11816
11942
|
#
|
11817
11943
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
11818
11944
|
#
|
@@ -11825,7 +11951,7 @@ module Aws::Connect
|
|
11825
11951
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11826
11952
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11827
11953
|
#
|
11828
|
-
# UI name: [Contacts abandoned in X seconds][
|
11954
|
+
# UI name: [Contacts abandoned in X seconds][90]
|
11829
11955
|
#
|
11830
11956
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
11831
11957
|
#
|
@@ -11838,7 +11964,7 @@ module Aws::Connect
|
|
11838
11964
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11839
11965
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11840
11966
|
#
|
11841
|
-
# UI name: [Contacts answered in X seconds][
|
11967
|
+
# UI name: [Contacts answered in X seconds][91]
|
11842
11968
|
#
|
11843
11969
|
# SUM\_CONTACT\_FLOW\_TIME
|
11844
11970
|
#
|
@@ -11847,7 +11973,7 @@ module Aws::Connect
|
|
11847
11973
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11848
11974
|
# Agent, Agent Hierarchy, Q in Connect
|
11849
11975
|
#
|
11850
|
-
# UI name: [Contact flow time][
|
11976
|
+
# UI name: [Contact flow time][92]
|
11851
11977
|
#
|
11852
11978
|
# SUM\_CONTACT\_TIME\_AGENT
|
11853
11979
|
#
|
@@ -11856,7 +11982,7 @@ module Aws::Connect
|
|
11856
11982
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11857
11983
|
# Hierarchy
|
11858
11984
|
#
|
11859
|
-
# UI name: [Agent on contact time][
|
11985
|
+
# UI name: [Agent on contact time][93]
|
11860
11986
|
#
|
11861
11987
|
# SUM\_CONTACTS\_DISCONNECTED
|
11862
11988
|
#
|
@@ -11868,7 +11994,7 @@ module Aws::Connect
|
|
11868
11994
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11869
11995
|
# Q in Connect
|
11870
11996
|
#
|
11871
|
-
# UI name: [Contact disconnected][
|
11997
|
+
# UI name: [Contact disconnected][94]
|
11872
11998
|
#
|
11873
11999
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
11874
12000
|
#
|
@@ -11877,7 +12003,7 @@ module Aws::Connect
|
|
11877
12003
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11878
12004
|
# Hierarchy
|
11879
12005
|
#
|
11880
|
-
# UI name: [Error status time][
|
12006
|
+
# UI name: [Error status time][95]
|
11881
12007
|
#
|
11882
12008
|
# SUM\_HANDLE\_TIME
|
11883
12009
|
#
|
@@ -11886,7 +12012,7 @@ module Aws::Connect
|
|
11886
12012
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11887
12013
|
# Agent, Agent Hierarchy, Q in Connect
|
11888
12014
|
#
|
11889
|
-
# UI name: [Contact handle time][
|
12015
|
+
# UI name: [Contact handle time][96]
|
11890
12016
|
#
|
11891
12017
|
# SUM\_HOLD\_TIME
|
11892
12018
|
#
|
@@ -11895,7 +12021,7 @@ module Aws::Connect
|
|
11895
12021
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11896
12022
|
# Agent, Agent Hierarchy, Q in Connect
|
11897
12023
|
#
|
11898
|
-
# UI name: [Customer hold time][
|
12024
|
+
# UI name: [Customer hold time][97]
|
11899
12025
|
#
|
11900
12026
|
# SUM\_IDLE\_TIME\_AGENT
|
11901
12027
|
#
|
@@ -11904,7 +12030,7 @@ module Aws::Connect
|
|
11904
12030
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11905
12031
|
# Hierarchy
|
11906
12032
|
#
|
11907
|
-
# UI name: [Agent idle time][
|
12033
|
+
# UI name: [Agent idle time][98]
|
11908
12034
|
#
|
11909
12035
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
11910
12036
|
#
|
@@ -11913,7 +12039,7 @@ module Aws::Connect
|
|
11913
12039
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11914
12040
|
# Agent, Agent Hierarchy, Q in Connect
|
11915
12041
|
#
|
11916
|
-
# UI name: [Agent interaction and hold time][
|
12042
|
+
# UI name: [Agent interaction and hold time][99]
|
11917
12043
|
#
|
11918
12044
|
# SUM\_INTERACTION\_TIME
|
11919
12045
|
#
|
@@ -11922,7 +12048,7 @@ module Aws::Connect
|
|
11922
12048
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11923
12049
|
# Agent, Agent Hierarchy
|
11924
12050
|
#
|
11925
|
-
# UI name: [Agent interaction time][
|
12051
|
+
# UI name: [Agent interaction time][100]
|
11926
12052
|
#
|
11927
12053
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
11928
12054
|
#
|
@@ -11931,7 +12057,7 @@ module Aws::Connect
|
|
11931
12057
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11932
12058
|
# Hierarchy
|
11933
12059
|
#
|
11934
|
-
# UI name: [
|
12060
|
+
# UI name: [Agent non-productive time][101]
|
11935
12061
|
#
|
11936
12062
|
# SUM\_ONLINE\_TIME\_AGENT
|
11937
12063
|
#
|
@@ -11940,7 +12066,7 @@ module Aws::Connect
|
|
11940
12066
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
11941
12067
|
# Hierarchy
|
11942
12068
|
#
|
11943
|
-
# UI name: [Online time][
|
12069
|
+
# UI name: [Online time][102]
|
11944
12070
|
#
|
11945
12071
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
11946
12072
|
#
|
@@ -11949,111 +12075,113 @@ module Aws::Connect
|
|
11949
12075
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11950
12076
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11951
12077
|
#
|
11952
|
-
# UI name: [Callback attempts][
|
12078
|
+
# UI name: [Callback attempts][103]
|
11953
12079
|
#
|
11954
12080
|
#
|
11955
12081
|
#
|
11956
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11957
|
-
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12082
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
|
12083
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#abandonment-rate
|
11958
12084
|
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/regions.html#optimization_region
|
11959
|
-
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11960
|
-
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11961
|
-
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11962
|
-
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11963
|
-
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11964
|
-
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11965
|
-
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11966
|
-
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11967
|
-
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11968
|
-
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11969
|
-
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11970
|
-
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11971
|
-
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11972
|
-
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-time
|
11973
|
-
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-turns
|
11974
|
-
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11975
|
-
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11976
|
-
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11977
|
-
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11978
|
-
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11979
|
-
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11980
|
-
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11981
|
-
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11982
|
-
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11983
|
-
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11984
|
-
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11985
|
-
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11986
|
-
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11987
|
-
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11988
|
-
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11989
|
-
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11990
|
-
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11991
|
-
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11992
|
-
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11993
|
-
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11994
|
-
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11995
|
-
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11996
|
-
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11997
|
-
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
11998
|
-
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed
|
11999
|
-
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed
|
12000
|
-
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12001
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12002
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12003
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12004
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12005
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12006
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12007
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12008
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12009
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12010
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12011
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12012
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12013
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12014
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12015
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12016
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12017
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12018
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12019
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12020
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12021
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12022
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12023
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12024
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12025
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12026
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12027
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12028
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12029
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12030
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12031
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12032
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12033
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12034
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12035
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12036
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12037
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12038
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12039
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12040
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12041
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12042
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12043
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12044
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12045
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12046
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12047
|
-
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12048
|
-
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12049
|
-
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12050
|
-
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12051
|
-
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12052
|
-
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12053
|
-
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12054
|
-
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12055
|
-
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12056
|
-
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12085
|
+
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#adherent-time
|
12086
|
+
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-answer-rate
|
12087
|
+
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-adherent-time
|
12088
|
+
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-response
|
12089
|
+
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-response-without-customer-abandons
|
12090
|
+
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#occupancy
|
12091
|
+
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#adherence
|
12092
|
+
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#scheduled-time
|
12093
|
+
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-abandon-time
|
12094
|
+
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-active-time
|
12095
|
+
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#after-contact-work-time
|
12096
|
+
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-api-connecting-time
|
12097
|
+
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-pause-time
|
12098
|
+
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-time
|
12099
|
+
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-turns
|
12100
|
+
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-contacts-per-case
|
12101
|
+
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-case-resolution-time
|
12102
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-contact-duration
|
12103
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-conversation-duration
|
12104
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-dials-per-minute
|
12105
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-evaluation-score
|
12106
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-flow-time
|
12107
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-greeting-time
|
12108
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-handle-time
|
12109
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-hold-time
|
12110
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-hold-time-all-contacts
|
12111
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-holds
|
12112
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interaction-and-customer-hold-time
|
12113
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interaction-time
|
12114
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interruptions
|
12115
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interruption-time
|
12116
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-non-talk-time
|
12117
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time
|
12118
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-resolution-time
|
12119
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-talk-time
|
12120
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-talk-time
|
12121
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-talk-time
|
12122
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection
|
12123
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-weighted-evaluation-score
|
12124
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed
|
12125
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed
|
12126
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x
|
12127
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x-rate
|
12128
|
+
# [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-send-attempts
|
12130
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-created
|
12131
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-created
|
12132
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#api-contacts-handled
|
12133
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-by-connected-to-agent-timestamp
|
12134
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
|
12135
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-agent-disconnect
|
12136
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-customer-disconnect
|
12137
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-put-on-hold
|
12138
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-external
|
12139
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-internal
|
12140
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
|
12141
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued-by-enqueue
|
12142
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-removed-from-queue
|
12143
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-resolved
|
12144
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
12145
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-by-agent
|
12146
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
|
12147
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#current-cases
|
12148
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempts
|
12149
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempt-disposition-rate
|
12150
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#evaluations-performed
|
12151
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
|
12152
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-started
|
12153
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#human-answered
|
12154
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-flow-time
|
12155
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-queued-time
|
12156
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
|
12157
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#automatic-fails-percent
|
12158
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome
|
12159
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome
|
12160
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved-on-first-contact
|
12161
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome-percentage
|
12162
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-talk-time-percent
|
12163
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#talk-time-percent
|
12164
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-talk-time-percent
|
12165
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-talk-time-percent
|
12166
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-reopened
|
12167
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved
|
12168
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
|
12169
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-api-connecting-time
|
12170
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
|
12171
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned-in-x-seconds
|
12172
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-answered-in-x-seconds
|
12173
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-flow-time
|
12174
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-on-contact-time
|
12175
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-disconnected
|
12176
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#error-status-time
|
12177
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-handle-time
|
12178
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-hold-time
|
12179
|
+
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-idle-time
|
12180
|
+
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-and-hold-time
|
12181
|
+
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-time
|
12182
|
+
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-productive-time
|
12183
|
+
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#online-time
|
12184
|
+
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-attempts
|
12057
12185
|
# @return [Array<Types::MetricV2>]
|
12058
12186
|
#
|
12059
12187
|
# @!attribute [rw] next_token
|
@@ -12665,12 +12793,12 @@ module Aws::Connect
|
|
12665
12793
|
end
|
12666
12794
|
|
12667
12795
|
# Contains information about a historical metric. For a description of
|
12668
|
-
# each metric, see [
|
12669
|
-
#
|
12796
|
+
# each metric, see [Metrics definitions][1] in the *Amazon Connect
|
12797
|
+
# Administrator Guide*.
|
12670
12798
|
#
|
12671
12799
|
#
|
12672
12800
|
#
|
12673
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12801
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
|
12674
12802
|
#
|
12675
12803
|
# @!attribute [rw] name
|
12676
12804
|
# The name of the metric.
|
@@ -16626,7 +16754,7 @@ module Aws::Connect
|
|
16626
16754
|
#
|
16627
16755
|
#
|
16628
16756
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/ctr-data-model.html#ctr-ContactTraceRecord
|
16629
|
-
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
16757
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
|
16630
16758
|
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed-metric
|
16631
16759
|
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed-metric
|
16632
16760
|
# @return [Array<String>]
|
@@ -18712,6 +18840,84 @@ module Aws::Connect
|
|
18712
18840
|
class Unknown < RealtimeContactAnalysisSegment; end
|
18713
18841
|
end
|
18714
18842
|
|
18843
|
+
# Information about a voice recording, chat transcript, or screen
|
18844
|
+
# recording.
|
18845
|
+
#
|
18846
|
+
# @!attribute [rw] storage_type
|
18847
|
+
# Where the recording/transcript is stored.
|
18848
|
+
# @return [String]
|
18849
|
+
#
|
18850
|
+
# @!attribute [rw] location
|
18851
|
+
# The location, in Amazon S3, for the recording/transcript.
|
18852
|
+
# @return [String]
|
18853
|
+
#
|
18854
|
+
# @!attribute [rw] media_stream_type
|
18855
|
+
# Information about the media stream used during the conversation.
|
18856
|
+
# @return [String]
|
18857
|
+
#
|
18858
|
+
# @!attribute [rw] participant_type
|
18859
|
+
# Information about the conversation participant, whether they are an
|
18860
|
+
# agent or contact. The participant types are as follows:
|
18861
|
+
#
|
18862
|
+
# * All
|
18863
|
+
#
|
18864
|
+
# * Manager
|
18865
|
+
#
|
18866
|
+
# * Agent
|
18867
|
+
#
|
18868
|
+
# * Customer
|
18869
|
+
#
|
18870
|
+
# * Thirdparty
|
18871
|
+
#
|
18872
|
+
# * Supervisor
|
18873
|
+
# @return [String]
|
18874
|
+
#
|
18875
|
+
# @!attribute [rw] fragment_start_number
|
18876
|
+
# The number that identifies the Kinesis Video Streams fragment where
|
18877
|
+
# the customer audio stream started.
|
18878
|
+
# @return [String]
|
18879
|
+
#
|
18880
|
+
# @!attribute [rw] fragment_stop_number
|
18881
|
+
# The number that identifies the Kinesis Video Streams fragment where
|
18882
|
+
# the customer audio stream stopped.
|
18883
|
+
# @return [String]
|
18884
|
+
#
|
18885
|
+
# @!attribute [rw] start_timestamp
|
18886
|
+
# When the conversation of the last leg of the recording started in
|
18887
|
+
# UTC time.
|
18888
|
+
# @return [Time]
|
18889
|
+
#
|
18890
|
+
# @!attribute [rw] stop_timestamp
|
18891
|
+
# When the conversation of the last leg of recording stopped in UTC
|
18892
|
+
# time.
|
18893
|
+
# @return [Time]
|
18894
|
+
#
|
18895
|
+
# @!attribute [rw] status
|
18896
|
+
# The status of the recording/transcript.
|
18897
|
+
# @return [String]
|
18898
|
+
#
|
18899
|
+
# @!attribute [rw] deletion_reason
|
18900
|
+
# If the recording/transcript was deleted, this is the reason entered
|
18901
|
+
# for the deletion.
|
18902
|
+
# @return [String]
|
18903
|
+
#
|
18904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RecordingInfo AWS API Documentation
|
18905
|
+
#
|
18906
|
+
class RecordingInfo < Struct.new(
|
18907
|
+
:storage_type,
|
18908
|
+
:location,
|
18909
|
+
:media_stream_type,
|
18910
|
+
:participant_type,
|
18911
|
+
:fragment_start_number,
|
18912
|
+
:fragment_stop_number,
|
18913
|
+
:start_timestamp,
|
18914
|
+
:stop_timestamp,
|
18915
|
+
:status,
|
18916
|
+
:deletion_reason)
|
18917
|
+
SENSITIVE = []
|
18918
|
+
include Aws::Structure
|
18919
|
+
end
|
18920
|
+
|
18715
18921
|
# Well-formed data on a contact, used by agents to complete a contact
|
18716
18922
|
# request. You can have up to 4,096 UTF-8 bytes across all references
|
18717
18923
|
# for a contact.
|
@@ -23010,6 +23216,30 @@ module Aws::Connect
|
|
23010
23216
|
include Aws::Structure
|
23011
23217
|
end
|
23012
23218
|
|
23219
|
+
# Information about the state transition of a supervisor.
|
23220
|
+
#
|
23221
|
+
# @!attribute [rw] state
|
23222
|
+
# The state of the transition.
|
23223
|
+
# @return [String]
|
23224
|
+
#
|
23225
|
+
# @!attribute [rw] state_start_timestamp
|
23226
|
+
# The date and time when the state started in UTC time.
|
23227
|
+
# @return [Time]
|
23228
|
+
#
|
23229
|
+
# @!attribute [rw] state_end_timestamp
|
23230
|
+
# The date and time when the state ended in UTC time.
|
23231
|
+
# @return [Time]
|
23232
|
+
#
|
23233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StateTransition AWS API Documentation
|
23234
|
+
#
|
23235
|
+
class StateTransition < Struct.new(
|
23236
|
+
:state,
|
23237
|
+
:state_start_timestamp,
|
23238
|
+
:state_end_timestamp)
|
23239
|
+
SENSITIVE = []
|
23240
|
+
include Aws::Structure
|
23241
|
+
end
|
23242
|
+
|
23013
23243
|
# Step signifies the criteria to be used for routing to an agent
|
23014
23244
|
#
|
23015
23245
|
# @!attribute [rw] expiry
|