aws-sdk-connect 1.199.0 → 1.201.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.
@@ -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
@@ -634,6 +665,25 @@ module Aws::Connect
634
665
  #
635
666
  class AssignContactCategoryActionDefinition < Aws::EmptyStructure; end
636
667
 
668
+ # The AssignSla action definition.
669
+ #
670
+ # @!attribute [rw] sla_assignment_type
671
+ # Type of SLA assignment.
672
+ # @return [String]
673
+ #
674
+ # @!attribute [rw] case_sla_configuration
675
+ # The SLA configuration for Case SLA Assignment.
676
+ # @return [Types::CaseSlaConfiguration]
677
+ #
678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssignSlaActionDefinition AWS API Documentation
679
+ #
680
+ class AssignSlaActionDefinition < Struct.new(
681
+ :sla_assignment_type,
682
+ :case_sla_configuration)
683
+ SENSITIVE = []
684
+ include Aws::Structure
685
+ end
686
+
637
687
  # @!attribute [rw] instance_id
638
688
  # The identifier of the Amazon Connect instance. You can [find the
639
689
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -1204,8 +1254,10 @@ module Aws::Connect
1204
1254
  # @return [Time]
1205
1255
  #
1206
1256
  # @!attribute [rw] disconnect_timestamp
1207
- # The timestamp when the customer endpoint disconnected from Amazon
1208
- # Connect.
1257
+ # The date and time that the customer endpoint disconnected from the
1258
+ # current contact, in UTC time. In transfer scenarios, the
1259
+ # DisconnectTimestamp of the previous contact indicates the date and
1260
+ # time when that contact ended.
1209
1261
  # @return [Time]
1210
1262
  #
1211
1263
  # @!attribute [rw] initial_contact_id
@@ -1958,6 +2010,42 @@ module Aws::Connect
1958
2010
  include Aws::Structure
1959
2011
  end
1960
2012
 
2013
+ # The SLA configuration for Case SlaAssignmentType.
2014
+ #
2015
+ # @!attribute [rw] name
2016
+ # Name of an SLA.
2017
+ # @return [String]
2018
+ #
2019
+ # @!attribute [rw] type
2020
+ # Type of SLA for Case SlaAssignmentType.
2021
+ # @return [String]
2022
+ #
2023
+ # @!attribute [rw] field_id
2024
+ # Unique identifier of a Case field.
2025
+ # @return [String]
2026
+ #
2027
+ # @!attribute [rw] target_field_values
2028
+ # Represents a list of target field values for the fieldId specified
2029
+ # in CaseSlaConfiguration. The SLA is considered met if any one of
2030
+ # these target field values matches the actual field value.
2031
+ # @return [Array<Types::FieldValueUnion>]
2032
+ #
2033
+ # @!attribute [rw] target_sla_minutes
2034
+ # Target duration in minutes within which an SLA should be completed.
2035
+ # @return [Integer]
2036
+ #
2037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CaseSlaConfiguration AWS API Documentation
2038
+ #
2039
+ class CaseSlaConfiguration < Struct.new(
2040
+ :name,
2041
+ :type,
2042
+ :field_id,
2043
+ :target_field_values,
2044
+ :target_sla_minutes)
2045
+ SENSITIVE = []
2046
+ include Aws::Structure
2047
+ end
2048
+
1961
2049
  # Chat integration event containing payload to perform different chat
1962
2050
  # actions such as:
1963
2051
  #
@@ -2596,6 +2684,29 @@ module Aws::Connect
2596
2684
  # `connect:SMS`.
2597
2685
  # @return [Hash<String,Types::SegmentAttributeValue>]
2598
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
+ #
2599
2710
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Contact AWS API Documentation
2600
2711
  #
2601
2712
  class Contact < Struct.new(
@@ -2635,7 +2746,12 @@ module Aws::Connect
2635
2746
  :quality_metrics,
2636
2747
  :disconnect_details,
2637
2748
  :additional_email_recipients,
2638
- :segment_attributes)
2749
+ :segment_attributes,
2750
+ :recordings,
2751
+ :disconnect_reason,
2752
+ :contact_evaluations,
2753
+ :contact_details,
2754
+ :attributes)
2639
2755
  SENSITIVE = [:name, :description]
2640
2756
  include Aws::Structure
2641
2757
  end
@@ -2727,6 +2843,73 @@ module Aws::Connect
2727
2843
  include Aws::Structure
2728
2844
  end
2729
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
+
2730
2913
  # Filters user data based on the contact information that is associated
2731
2914
  # to the users. It contains a list of [contact states][1].
2732
2915
  #
@@ -3724,8 +3907,7 @@ module Aws::Connect
3724
3907
  # @return [String]
3725
3908
  #
3726
3909
  # @!attribute [rw] related_contact_id
3727
- # The unique identifier for an Amazon Connect contact. This identifier
3728
- # is related to the contact starting.
3910
+ # The identifier of the contact in this instance of Amazon Connect.
3729
3911
  # @return [String]
3730
3912
  #
3731
3913
  # @!attribute [rw] attributes
@@ -3748,18 +3930,22 @@ module Aws::Connect
3748
3930
  # @!attribute [rw] channel
3749
3931
  # The channel for the contact
3750
3932
  #
3751
- # CreateContact only supports the EMAIL channel. The following
3752
- # information that states other channels are supported is incorrect.
3753
- # We are working to update this topic.
3933
+ # CreateContact only supports the EMAIL and VOICE channels. The
3934
+ # following information that states other channels are supported is
3935
+ # incorrect. We are working to update this topic.
3754
3936
  # @return [String]
3755
3937
  #
3756
3938
  # @!attribute [rw] initiation_method
3757
3939
  # Indicates how the contact was initiated.
3758
3940
  #
3759
3941
  # CreateContact only supports the following initiation methods:
3760
- # OUTBOUND, AGENT\_REPLY, and FLOW. The following information that
3761
- # states other initiation methods are supported is incorrect. We are
3762
- # working to update this topic.
3942
+ #
3943
+ # * For EMAIL: OUTBOUND, AGENT\_REPLY, and FLOW.
3944
+ #
3945
+ # * For VOICE: TRANSFER and the subtype connect:ExternalAudio.
3946
+ #
3947
+ # The following information that states other initiation methods are
3948
+ # supported is incorrect. We are working to update this topic.
3763
3949
  # @return [String]
3764
3950
  #
3765
3951
  # @!attribute [rw] expiry_duration_in_minutes
@@ -5632,12 +5818,12 @@ module Aws::Connect
5632
5818
  end
5633
5819
 
5634
5820
  # Contains information about a real-time metric. For a description of
5635
- # each metric, see [Real-time Metrics Definitions][1] in the *Amazon
5636
- # Connect Administrator Guide*.
5821
+ # each metric, see [Metrics definitions][1] in the *Amazon Connect
5822
+ # Administrator Guide*.
5637
5823
  #
5638
5824
  #
5639
5825
  #
5640
- # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html
5826
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
5641
5827
  #
5642
5828
  # @!attribute [rw] name
5643
5829
  # The name of the metric.
@@ -9781,8 +9967,8 @@ module Aws::Connect
9781
9967
  # @!attribute [rw] current_metrics
9782
9968
  # The metrics to retrieve. Specify the name and unit for each metric.
9783
9969
  # The following metrics are available. For a description of all the
9784
- # metrics, see [Real-time Metrics Definitions][1] in the *Amazon
9785
- # Connect Administrator Guide*.
9970
+ # metrics, see [Metrics definitions][1] in the *Amazon Connect
9971
+ # Administrator Guide*.
9786
9972
  #
9787
9973
  # AGENTS\_AFTER\_CONTACT\_WORK
9788
9974
  #
@@ -9882,19 +10068,19 @@ module Aws::Connect
9882
10068
  #
9883
10069
  #
9884
10070
  #
9885
- # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html
9886
- # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#aftercallwork-real-time
9887
- # [3]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#available-real-time
9888
- # [4]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#error-real-time
9889
- # [5]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#non-productive-time-real-time
9890
- # [6]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#on-call-real-time
9891
- # [7]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#online-real-time
9892
- # [8]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#staffed-real-time
9893
- # [9]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#in-queue-real-time
9894
- # [10]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#scheduled-real-time
9895
- # [11]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#oldest-real-time
9896
- # [12]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#active-real-time
9897
- # [13]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#availability-real-time
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
9898
10084
  # @return [Array<Types::CurrentMetric>]
9899
10085
  #
9900
10086
  # @!attribute [rw] next_token
@@ -10252,8 +10438,8 @@ module Aws::Connect
10252
10438
  # @!attribute [rw] historical_metrics
10253
10439
  # The metrics to retrieve. Specify the name, unit, and statistic for
10254
10440
  # each metric. The following historical metrics are available. For a
10255
- # description of each metric, see [Historical Metrics Definitions][1]
10256
- # in the *Amazon Connect Administrator Guide*.
10441
+ # description of each metric, see [Metrics definition][1] in the
10442
+ # *Amazon Connect Administrator Guide*.
10257
10443
  #
10258
10444
  # <note markdown="1"> This API does not support a contacts incoming metric (there's no
10259
10445
  # CONTACTS\_INCOMING metric missing from the documented list).
@@ -10418,7 +10604,7 @@ module Aws::Connect
10418
10604
  #
10419
10605
  #
10420
10606
  #
10421
- # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
10607
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
10422
10608
  # @return [Array<Types::HistoricalMetric>]
10423
10609
  #
10424
10610
  # @!attribute [rw] next_token
@@ -10652,8 +10838,8 @@ module Aws::Connect
10652
10838
  # @!attribute [rw] metrics
10653
10839
  # The metrics to retrieve. Specify the name, groupings, and filters
10654
10840
  # for each metric. The following historical metrics are available. For
10655
- # a description of each metric, see [Historical metrics
10656
- # definitions][1] in the *Amazon Connect Administrator Guide*.
10841
+ # a description of each metric, see [Metrics definition][1] in the
10842
+ # *Amazon Connect Administrator Guide*.
10657
10843
  #
10658
10844
  # ABANDONMENT\_RATE
10659
10845
  #
@@ -10901,7 +11087,7 @@ module Aws::Connect
10901
11087
  # Evaluation Form ID, Evaluation Section ID, Evaluation Question ID,
10902
11088
  # Evaluation Source, Form Version, Queue, Routing Profile
10903
11089
  #
10904
- # UI name: [Average agent evaluation score][24]
11090
+ # UI name: [Average evaluation score][24]
10905
11091
  #
10906
11092
  # AVG\_FLOW\_TIME
10907
11093
  #
@@ -11124,7 +11310,7 @@ module Aws::Connect
11124
11310
  # Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
11125
11311
  # Evaluation Source, Form Version, Queue, Routing Profile
11126
11312
  #
11127
- # UI name: [Average weighted agent evaluation score][42]
11313
+ # UI name: [Average weighted evaluation score][42]
11128
11314
  #
11129
11315
  # BOT\_CONVERSATIONS\_COMPLETED
11130
11316
  #
@@ -11137,7 +11323,7 @@ module Aws::Connect
11137
11323
  # Initiation method, Invoking resource type, Parent flows resource
11138
11324
  # ID
11139
11325
  #
11140
- # UI name: [Bot conversations][43]
11326
+ # UI name: [Bot conversations completed][43]
11141
11327
  #
11142
11328
  # BOT\_INTENTS\_COMPLETED
11143
11329
  #
@@ -11267,7 +11453,7 @@ module Aws::Connect
11267
11453
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11268
11454
  # Q in Connect
11269
11455
  #
11270
- # UI name: [Contacts hold disconnect][52]
11456
+ # UI name: [Contacts hold disconnect][53]
11271
11457
  #
11272
11458
  # CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
11273
11459
  #
@@ -11276,7 +11462,7 @@ module Aws::Connect
11276
11462
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11277
11463
  # Agent, Agent Hierarchy, Q in Connect
11278
11464
  #
11279
- # UI name: [Contacts hold agent disconnect][53]
11465
+ # UI name: [Contacts hold agent disconnect][54]
11280
11466
  #
11281
11467
  # CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
11282
11468
  #
@@ -11285,7 +11471,7 @@ module Aws::Connect
11285
11471
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11286
11472
  # Agent, Agent Hierarchy, Q in Connect
11287
11473
  #
11288
- # UI name: [Contacts hold customer disconnect][54]
11474
+ # UI name: [Contacts hold customer disconnect][55]
11289
11475
  #
11290
11476
  # CONTACTS\_PUT\_ON\_HOLD
11291
11477
  #
@@ -11294,7 +11480,7 @@ module Aws::Connect
11294
11480
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11295
11481
  # Agent, Agent Hierarchy, Q in Connect
11296
11482
  #
11297
- # UI name: [Contacts put on hold][54]
11483
+ # UI name: [Contacts put on hold][56]
11298
11484
  #
11299
11485
  # CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
11300
11486
  #
@@ -11303,7 +11489,7 @@ module Aws::Connect
11303
11489
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11304
11490
  # Agent, Agent Hierarchy, Q in Connect
11305
11491
  #
11306
- # UI name: [Contacts transferred out external][55]
11492
+ # UI name: [Contacts transferred out external][57]
11307
11493
  #
11308
11494
  # CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
11309
11495
  #
@@ -11312,7 +11498,7 @@ module Aws::Connect
11312
11498
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11313
11499
  # Agent, Agent Hierarchy, Q in Connect
11314
11500
  #
11315
- # UI name: [Contacts transferred out internal][56]
11501
+ # UI name: [Contacts transferred out internal][58]
11316
11502
  #
11317
11503
  # CONTACTS\_QUEUED
11318
11504
  #
@@ -11322,7 +11508,7 @@ module Aws::Connect
11322
11508
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11323
11509
  # Q in Connect
11324
11510
  #
11325
- # UI name: [Contacts queued][57]
11511
+ # UI name: [Contacts queued][59]
11326
11512
  #
11327
11513
  # CONTACTS\_QUEUED\_BY\_ENQUEUE
11328
11514
  #
@@ -11331,7 +11517,7 @@ module Aws::Connect
11331
11517
  # Valid groupings and filters: Queue, Channel, Agent, Agent
11332
11518
  # Hierarchy, contact/segmentAttributes/connect:Subtype
11333
11519
  #
11334
- # UI name: [Contacts queued (enqueue timestamp)][58]
11520
+ # UI name: [Contacts queued (enqueue timestamp)][60]
11335
11521
  #
11336
11522
  # CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
11337
11523
  #
@@ -11344,7 +11530,7 @@ module Aws::Connect
11344
11530
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
11345
11531
  # (for "Less than") or `LTE` (for "Less than equal").
11346
11532
  #
11347
- # UI name: [Contacts removed from queue in X seconds][59]
11533
+ # UI name: [Contacts removed from queue in X seconds][61]
11348
11534
  #
11349
11535
  # CONTACTS\_RESOLVED\_IN\_X
11350
11536
  #
@@ -11357,7 +11543,7 @@ module Aws::Connect
11357
11543
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
11358
11544
  # (for "Less than") or `LTE` (for "Less than equal").
11359
11545
  #
11360
- # UI name: [Contacts resolved in X][60]
11546
+ # UI name: [Contacts resolved in X][62]
11361
11547
  #
11362
11548
  # CONTACTS\_TRANSFERRED\_OUT
11363
11549
  #
@@ -11367,7 +11553,7 @@ module Aws::Connect
11367
11553
  # Agent, Agent Hierarchy, Feature,
11368
11554
  # contact/segmentAttributes/connect:Subtype, Q in Connect
11369
11555
  #
11370
- # UI name: [Contacts transferred out][61]
11556
+ # UI name: [Contacts transferred out][63]
11371
11557
  #
11372
11558
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
11373
11559
  #
@@ -11381,7 +11567,7 @@ module Aws::Connect
11381
11567
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11382
11568
  # Q in Connect
11383
11569
  #
11384
- # UI name: [Contacts transferred out by agent][62]
11570
+ # UI name: [Contacts transferred out by agent][64]
11385
11571
  #
11386
11572
  # CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
11387
11573
  #
@@ -11391,7 +11577,7 @@ module Aws::Connect
11391
11577
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11392
11578
  # Q in Connect
11393
11579
  #
11394
- # UI name: [Contacts transferred out queue][62]
11580
+ # UI name: [Contacts transferred out queue][65]
11395
11581
  #
11396
11582
  # CURRENT\_CASES
11397
11583
  #
@@ -11401,7 +11587,7 @@ module Aws::Connect
11401
11587
  #
11402
11588
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
11403
11589
  #
11404
- # UI name: [Current cases][63]
11590
+ # UI name: [Current cases][66]
11405
11591
  #
11406
11592
  # DELIVERY\_ATTEMPTS
11407
11593
  #
@@ -11417,7 +11603,7 @@ module Aws::Connect
11417
11603
  # contact/segmentAttributes/connect:Subtype, Disconnect Reason,
11418
11604
  # Queue, Routing Profile
11419
11605
  #
11420
- # UI name: [Delivery attempts][64]
11606
+ # UI name: [Delivery attempts][67]
11421
11607
  #
11422
11608
  # <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
11423
11609
  # for SMS and Email campaign delivery modes. Agent, Queue, Routing
@@ -11443,7 +11629,7 @@ module Aws::Connect
11443
11629
  # contact/segmentAttributes/connect:Subtype, Disconnect Reason,
11444
11630
  # Queue, Routing Profile
11445
11631
  #
11446
- # UI name: [Delivery attempt disposition rate][65]
11632
+ # UI name: [Delivery attempt disposition rate][68]
11447
11633
  #
11448
11634
  # <note markdown="1"> Campaign Delivery Event Type filter and grouping are only
11449
11635
  # available for SMS and Email campaign delivery modes. Agent, Queue,
@@ -11461,7 +11647,7 @@ module Aws::Connect
11461
11647
  # Evaluation Form ID, Evaluation Source, Form Version, Queue,
11462
11648
  # Routing Profile
11463
11649
  #
11464
- # UI name: [Evaluations performed][66]
11650
+ # UI name: [Evaluations performed][69]
11465
11651
  #
11466
11652
  # FLOWS\_OUTCOME
11467
11653
  #
@@ -11473,7 +11659,7 @@ module Aws::Connect
11473
11659
  # Flows outcome type, Flows resource ID, Initiation method, Resource
11474
11660
  # published timestamp
11475
11661
  #
11476
- # UI name: [Flows outcome][67]
11662
+ # UI name: [Flows outcome][70]
11477
11663
  #
11478
11664
  # FLOWS\_STARTED
11479
11665
  #
@@ -11484,7 +11670,7 @@ module Aws::Connect
11484
11670
  # resource ID, Flows resource ID, Initiation method, Resource
11485
11671
  # published timestamp
11486
11672
  #
11487
- # UI name: [Flows started][68]
11673
+ # UI name: [Flows started][71]
11488
11674
  #
11489
11675
  # HUMAN\_ANSWERED\_CALLS
11490
11676
  #
@@ -11496,7 +11682,7 @@ module Aws::Connect
11496
11682
  #
11497
11683
  # Valid groupings and filters: Agent, Campaign
11498
11684
  #
11499
- # UI name: [Human answered][69]
11685
+ # UI name: [Human answered][72]
11500
11686
  #
11501
11687
  # MAX\_FLOW\_TIME
11502
11688
  #
@@ -11508,7 +11694,7 @@ module Aws::Connect
11508
11694
  # Flows outcome type, Flows resource ID, Initiation method, Resource
11509
11695
  # published timestamp
11510
11696
  #
11511
- # UI name: [Maximum flow time][70]
11697
+ # UI name: [Maximum flow time][73]
11512
11698
  #
11513
11699
  # MAX\_QUEUED\_TIME
11514
11700
  #
@@ -11518,7 +11704,7 @@ module Aws::Connect
11518
11704
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11519
11705
  # Q in Connect
11520
11706
  #
11521
- # UI name: [Maximum queued time][71]
11707
+ # UI name: [Maximum queued time][74]
11522
11708
  #
11523
11709
  # MIN\_FLOW\_TIME
11524
11710
  #
@@ -11530,7 +11716,7 @@ module Aws::Connect
11530
11716
  # Flows outcome type, Flows resource ID, Initiation method, Resource
11531
11717
  # published timestamp
11532
11718
  #
11533
- # UI name: [Minimum flow time][72]
11719
+ # UI name: [Minimum flow time][75]
11534
11720
  #
11535
11721
  # PERCENT\_AUTOMATIC\_FAILS
11536
11722
  #
@@ -11540,7 +11726,7 @@ module Aws::Connect
11540
11726
  # Evaluation Form ID, Evaluation Source, Form Version, Queue,
11541
11727
  # Routing Profile
11542
11728
  #
11543
- # UI name: [Automatic fails percent][73]
11729
+ # UI name: [Automatic fails percent][76]
11544
11730
  #
11545
11731
  # PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
11546
11732
  #
@@ -11553,7 +11739,7 @@ module Aws::Connect
11553
11739
  # Initiation method, Invoking resource type, Parent flows resource
11554
11740
  # ID
11555
11741
  #
11556
- # UI name: [Percent bot conversations outcome][74]
11742
+ # UI name: [Percent bot conversations outcome][77]
11557
11743
  #
11558
11744
  # PERCENT\_BOT\_INTENTS\_OUTCOME
11559
11745
  #
@@ -11566,7 +11752,7 @@ module Aws::Connect
11566
11752
  # published timestamp, Initiation method, Invoking resource type,
11567
11753
  # Parent flows resource ID
11568
11754
  #
11569
- # UI name: [Percent bot intents outcome][75]
11755
+ # UI name: [Percent bot intents outcome][78]
11570
11756
  #
11571
11757
  # PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
11572
11758
  #
@@ -11576,7 +11762,7 @@ module Aws::Connect
11576
11762
  #
11577
11763
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
11578
11764
  #
11579
- # UI name: [Cases resolved on first contact][76]
11765
+ # UI name: [Cases resolved on first contact][79]
11580
11766
  #
11581
11767
  # PERCENT\_CONTACTS\_STEP\_EXPIRED
11582
11768
  #
@@ -11608,7 +11794,7 @@ module Aws::Connect
11608
11794
  # Flows outcome type, Flows resource ID, Initiation method, Resource
11609
11795
  # published timestamp
11610
11796
  #
11611
- # UI name: [Flows outcome percentage][77].
11797
+ # UI name: [Flows outcome percentage][80].
11612
11798
  #
11613
11799
  # <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
11614
11800
  #
@@ -11625,7 +11811,7 @@ module Aws::Connect
11625
11811
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11626
11812
  # Q in Connect
11627
11813
  #
11628
- # UI name: [Non-talk time percent][78]
11814
+ # UI name: [Non-talk time percent][81]
11629
11815
  #
11630
11816
  # PERCENT\_TALK\_TIME
11631
11817
  #
@@ -11638,7 +11824,7 @@ module Aws::Connect
11638
11824
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11639
11825
  # Q in Connect
11640
11826
  #
11641
- # UI name: [Talk time percent][79]
11827
+ # UI name: [Talk time percent][82]
11642
11828
  #
11643
11829
  # PERCENT\_TALK\_TIME\_AGENT
11644
11830
  #
@@ -11651,7 +11837,7 @@ module Aws::Connect
11651
11837
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11652
11838
  # Q in Connect
11653
11839
  #
11654
- # UI name: [Agent talk time percent][80]
11840
+ # UI name: [Agent talk time percent][83]
11655
11841
  #
11656
11842
  # PERCENT\_TALK\_TIME\_CUSTOMER
11657
11843
  #
@@ -11664,7 +11850,7 @@ module Aws::Connect
11664
11850
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11665
11851
  # Q in Connect
11666
11852
  #
11667
- # UI name: [Customer talk time percent][81]
11853
+ # UI name: [Customer talk time percent][84]
11668
11854
  #
11669
11855
  # REOPENED\_CASE\_ACTIONS
11670
11856
  #
@@ -11674,7 +11860,7 @@ module Aws::Connect
11674
11860
  #
11675
11861
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
11676
11862
  #
11677
- # UI name: [Cases reopened][82]
11863
+ # UI name: [Cases reopened][85]
11678
11864
  #
11679
11865
  # RESOLVED\_CASE\_ACTIONS
11680
11866
  #
@@ -11684,7 +11870,7 @@ module Aws::Connect
11684
11870
  #
11685
11871
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
11686
11872
  #
11687
- # UI name: [Cases resolved][83]
11873
+ # UI name: [Cases resolved][86]
11688
11874
  #
11689
11875
  # SERVICE\_LEVEL
11690
11876
  #
@@ -11699,7 +11885,7 @@ module Aws::Connect
11699
11885
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
11700
11886
  # (for "Less than") or `LTE` (for "Less than equal").
11701
11887
  #
11702
- # UI name: [Service level X][84]
11888
+ # UI name: [Service level X][87]
11703
11889
  #
11704
11890
  # STEP\_CONTACTS\_QUEUED
11705
11891
  #
@@ -11717,7 +11903,7 @@ module Aws::Connect
11717
11903
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11718
11904
  # Agent, Agent Hierarchy, Q in Connect
11719
11905
  #
11720
- # UI name: [After contact work time][85]
11906
+ # UI name: [After contact work time][14]
11721
11907
  #
11722
11908
  # SUM\_CONNECTING\_TIME\_AGENT
11723
11909
  #
@@ -11730,7 +11916,7 @@ module Aws::Connect
11730
11916
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11731
11917
  # Agent, Agent Hierarchy
11732
11918
  #
11733
- # UI name: [Agent API connecting time][86]
11919
+ # UI name: [Agent API connecting time][88]
11734
11920
  #
11735
11921
  # <note markdown="1"> The `Negate` key in metric-level filters is not applicable for
11736
11922
  # this metric.
@@ -11752,7 +11938,7 @@ module Aws::Connect
11752
11938
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11753
11939
  # RoutingStepExpression, Q in Connect
11754
11940
  #
11755
- # UI name: [Contact abandoned][87]
11941
+ # UI name: [Contact abandoned][89]
11756
11942
  #
11757
11943
  # SUM\_CONTACTS\_ABANDONED\_IN\_X
11758
11944
  #
@@ -11765,7 +11951,7 @@ module Aws::Connect
11765
11951
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
11766
11952
  # (for "Less than") or `LTE` (for "Less than equal").
11767
11953
  #
11768
- # UI name: [Contacts abandoned in X seconds][88]
11954
+ # UI name: [Contacts abandoned in X seconds][90]
11769
11955
  #
11770
11956
  # SUM\_CONTACTS\_ANSWERED\_IN\_X
11771
11957
  #
@@ -11778,7 +11964,7 @@ module Aws::Connect
11778
11964
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
11779
11965
  # (for "Less than") or `LTE` (for "Less than equal").
11780
11966
  #
11781
- # UI name: [Contacts answered in X seconds][89]
11967
+ # UI name: [Contacts answered in X seconds][91]
11782
11968
  #
11783
11969
  # SUM\_CONTACT\_FLOW\_TIME
11784
11970
  #
@@ -11787,7 +11973,7 @@ module Aws::Connect
11787
11973
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11788
11974
  # Agent, Agent Hierarchy, Q in Connect
11789
11975
  #
11790
- # UI name: [Contact flow time][90]
11976
+ # UI name: [Contact flow time][92]
11791
11977
  #
11792
11978
  # SUM\_CONTACT\_TIME\_AGENT
11793
11979
  #
@@ -11796,7 +11982,7 @@ module Aws::Connect
11796
11982
  # Valid groupings and filters: Routing Profile, Agent, Agent
11797
11983
  # Hierarchy
11798
11984
  #
11799
- # UI name: [Agent on contact time][91]
11985
+ # UI name: [Agent on contact time][93]
11800
11986
  #
11801
11987
  # SUM\_CONTACTS\_DISCONNECTED
11802
11988
  #
@@ -11808,7 +11994,7 @@ module Aws::Connect
11808
11994
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
11809
11995
  # Q in Connect
11810
11996
  #
11811
- # UI name: [Contact disconnected][92]
11997
+ # UI name: [Contact disconnected][94]
11812
11998
  #
11813
11999
  # SUM\_ERROR\_STATUS\_TIME\_AGENT
11814
12000
  #
@@ -11817,7 +12003,7 @@ module Aws::Connect
11817
12003
  # Valid groupings and filters: Routing Profile, Agent, Agent
11818
12004
  # Hierarchy
11819
12005
  #
11820
- # UI name: [Error status time][93]
12006
+ # UI name: [Error status time][95]
11821
12007
  #
11822
12008
  # SUM\_HANDLE\_TIME
11823
12009
  #
@@ -11826,7 +12012,7 @@ module Aws::Connect
11826
12012
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11827
12013
  # Agent, Agent Hierarchy, Q in Connect
11828
12014
  #
11829
- # UI name: [Contact handle time][94]
12015
+ # UI name: [Contact handle time][96]
11830
12016
  #
11831
12017
  # SUM\_HOLD\_TIME
11832
12018
  #
@@ -11835,7 +12021,7 @@ module Aws::Connect
11835
12021
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11836
12022
  # Agent, Agent Hierarchy, Q in Connect
11837
12023
  #
11838
- # UI name: [Customer hold time][95]
12024
+ # UI name: [Customer hold time][97]
11839
12025
  #
11840
12026
  # SUM\_IDLE\_TIME\_AGENT
11841
12027
  #
@@ -11844,7 +12030,7 @@ module Aws::Connect
11844
12030
  # Valid groupings and filters: Routing Profile, Agent, Agent
11845
12031
  # Hierarchy
11846
12032
  #
11847
- # UI name: [Agent idle time][96]
12033
+ # UI name: [Agent idle time][98]
11848
12034
  #
11849
12035
  # SUM\_INTERACTION\_AND\_HOLD\_TIME
11850
12036
  #
@@ -11853,7 +12039,7 @@ module Aws::Connect
11853
12039
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11854
12040
  # Agent, Agent Hierarchy, Q in Connect
11855
12041
  #
11856
- # UI name: [Agent interaction and hold time][97]
12042
+ # UI name: [Agent interaction and hold time][99]
11857
12043
  #
11858
12044
  # SUM\_INTERACTION\_TIME
11859
12045
  #
@@ -11862,7 +12048,7 @@ module Aws::Connect
11862
12048
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11863
12049
  # Agent, Agent Hierarchy
11864
12050
  #
11865
- # UI name: [Agent interaction time][98]
12051
+ # UI name: [Agent interaction time][100]
11866
12052
  #
11867
12053
  # SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
11868
12054
  #
@@ -11871,7 +12057,7 @@ module Aws::Connect
11871
12057
  # Valid groupings and filters: Routing Profile, Agent, Agent
11872
12058
  # Hierarchy
11873
12059
  #
11874
- # UI name: [Non-Productive Time][99]
12060
+ # UI name: [Agent non-productive time][101]
11875
12061
  #
11876
12062
  # SUM\_ONLINE\_TIME\_AGENT
11877
12063
  #
@@ -11880,7 +12066,7 @@ module Aws::Connect
11880
12066
  # Valid groupings and filters: Routing Profile, Agent, Agent
11881
12067
  # Hierarchy
11882
12068
  #
11883
- # UI name: [Online time][100]
12069
+ # UI name: [Online time][102]
11884
12070
  #
11885
12071
  # SUM\_RETRY\_CALLBACK\_ATTEMPTS
11886
12072
  #
@@ -11889,111 +12075,113 @@ module Aws::Connect
11889
12075
  # Valid groupings and filters: Queue, Channel, Routing Profile,
11890
12076
  # contact/segmentAttributes/connect:Subtype, Q in Connect
11891
12077
  #
11892
- # UI name: [Callback attempts][101]
12078
+ # UI name: [Callback attempts][103]
11893
12079
  #
11894
12080
  #
11895
12081
  #
11896
- # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
11897
- # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#abandonment-rate-historical
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
11898
12084
  # [3]: https://docs.aws.amazon.com/connect/latest/adminguide/regions.html#optimization_region
11899
- # [4]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#adherent-time-historical
11900
- # [5]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-answer-rate-historical
11901
- # [6]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#non-adherent-time
11902
- # [7]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-non-response
11903
- # [8]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-nonresponse-no-abandon-historical
11904
- # [9]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#occupancy-historical
11905
- # [10]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#adherence-historical
11906
- # [11]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#scheduled-time-historical
11907
- # [12]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-abandon-time-historical
11908
- # [13]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-active-time-historical
11909
- # [14]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-acw-time-historical
11910
- # [15]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-avg-agent-api-connecting-time
11911
- # [16]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-pause-time-historical
11912
- # [17]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-time-metric
11913
- # [18]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-turns-metric
11914
- # [19]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contacts-case-historical
11915
- # [20]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-case-resolution-time-historical
11916
- # [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contact-duration-historical
11917
- # [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-conversation-duration-historical
11918
- # [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-dials-historical
11919
- # [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-evaluation-score-historical
11920
- # [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-flow-time-historical
11921
- # [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-greeting-time-agent-historical
11922
- # [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-handle-time-historical
11923
- # [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-customer-hold-time-historical
11924
- # [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#avg-customer-hold-time-all-contacts-historical
11925
- # [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-holds-historical
11926
- # [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-customer-hold-time-historical
11927
- # [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
11928
- # [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-agent-historical
11929
- # [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-time-agent-historical
11930
- # [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##average-non-talk-time-historical
11931
- # [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-answer-time-historical
11932
- # [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-resolution-time-historical
11933
- # [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-historical
11934
- # [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-agent-historical
11935
- # [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-customer-historical
11936
- # [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-wait-time-historical
11937
- # [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-weighted-agent-evaluation-score-historical
11938
- # [43]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed-metric
11939
- # [44]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed-metric
11940
- # [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-historical
11941
- # [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-rate-historical
11942
- # [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-interactions-historical
11943
- # [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-send-attempts-historical
11944
- # [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-created-historical
11945
- # [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
11946
- # [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
11947
- # [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
11948
- # [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
11949
- # [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
11950
- # [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
11951
- # [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
11952
- # [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
11953
- # [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
11954
- # [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical
11955
- # [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
11956
- # [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
11957
- # [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
11958
- # [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
11959
- # [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempts-historical
11960
- # [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempt-disposition-rate-historical
11961
- # [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#evaluations-performed-historical
11962
- # [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
11963
- # [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-started-historical
11964
- # [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#human-answered-historical
11965
- # [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-flow-time-historical
11966
- # [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
11967
- # [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#minimum-flow-time-historical
11968
- # [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#percent-evaluation-automatic-failures-historical
11969
- # [74]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome-metric
11970
- # [75]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome-metric
11971
- # [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
11972
- # [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-percentage-historical
11973
- # [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
11974
- # [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
11975
- # [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
11976
- # [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
11977
- # [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
11978
- # [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historical
11979
- # [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
11980
- # [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
11981
- # [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
11982
- # [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
11983
- # [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
11984
- # [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
11985
- # [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
11986
- # [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
11987
- # [92]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
11988
- # [93]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
11989
- # [94]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
11990
- # [95]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
11991
- # [96]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
11992
- # [97]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
11993
- # [98]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
11994
- # [99]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
11995
- # [100]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
11996
- # [101]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
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
11997
12185
  # @return [Array<Types::MetricV2>]
11998
12186
  #
11999
12187
  # @!attribute [rw] next_token
@@ -12605,12 +12793,12 @@ module Aws::Connect
12605
12793
  end
12606
12794
 
12607
12795
  # Contains information about a historical metric. For a description of
12608
- # each metric, see [Historical Metrics Definitions][1] in the *Amazon
12609
- # Connect Administrator Guide*.
12796
+ # each metric, see [Metrics definitions][1] in the *Amazon Connect
12797
+ # Administrator Guide*.
12610
12798
  #
12611
12799
  #
12612
12800
  #
12613
- # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
12801
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
12614
12802
  #
12615
12803
  # @!attribute [rw] name
12616
12804
  # The name of the metric.
@@ -16566,7 +16754,7 @@ module Aws::Connect
16566
16754
  #
16567
16755
  #
16568
16756
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/ctr-data-model.html#ctr-ContactTraceRecord
16569
- # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
16757
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
16570
16758
  # [3]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed-metric
16571
16759
  # [4]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed-metric
16572
16760
  # @return [Array<String>]
@@ -18652,6 +18840,84 @@ module Aws::Connect
18652
18840
  class Unknown < RealtimeContactAnalysisSegment; end
18653
18841
  end
18654
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
+
18655
18921
  # Well-formed data on a contact, used by agents to complete a contact
18656
18922
  # request. You can have up to 4,096 UTF-8 bytes across all references
18657
18923
  # for a contact.
@@ -19618,6 +19884,10 @@ module Aws::Connect
19618
19884
  # `OnCaseUpdate`.
19619
19885
  # @return [Types::UpdateCaseActionDefinition]
19620
19886
  #
19887
+ # @!attribute [rw] assign_sla_action
19888
+ # Information about the assign SLA action.
19889
+ # @return [Types::AssignSlaActionDefinition]
19890
+ #
19621
19891
  # @!attribute [rw] end_associated_tasks_action
19622
19892
  # Information about the end associated tasks action.
19623
19893
  #
@@ -19638,6 +19908,7 @@ module Aws::Connect
19638
19908
  :send_notification_action,
19639
19909
  :create_case_action,
19640
19910
  :update_case_action,
19911
+ :assign_sla_action,
19641
19912
  :end_associated_tasks_action,
19642
19913
  :submit_auto_evaluation_action)
19643
19914
  SENSITIVE = []
@@ -21487,6 +21758,10 @@ module Aws::Connect
21487
21758
  #
21488
21759
  # @!attribute [rw] traffic_type
21489
21760
  # Denotes the class of traffic.
21761
+ #
21762
+ # <note markdown="1"> Only the CAMPAIGN traffic type is supported.
21763
+ #
21764
+ # </note>
21490
21765
  # @return [String]
21491
21766
  #
21492
21767
  # @!attribute [rw] source_campaign
@@ -22470,8 +22745,14 @@ module Aws::Connect
22470
22745
  # @return [String]
22471
22746
  #
22472
22747
  # @!attribute [rw] description
22473
- # A description of the voice contact that is shown to an agent in the
22474
- # Contact Control Panel (CCP).
22748
+ # A description of the voice contact that appears in the agent's
22749
+ # snapshot in the CCP logs. For more information about CCP logs, see
22750
+ # [Download and review CCP logs][1] in the *Amazon Connect
22751
+ # Administrator Guide*.
22752
+ #
22753
+ #
22754
+ #
22755
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/download-ccp-logs.html
22475
22756
  # @return [String]
22476
22757
  #
22477
22758
  # @!attribute [rw] references
@@ -22935,6 +23216,30 @@ module Aws::Connect
22935
23216
  include Aws::Structure
22936
23217
  end
22937
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
+
22938
23243
  # Step signifies the criteria to be used for routing to an agent
22939
23244
  #
22940
23245
  # @!attribute [rw] expiry