aws-sdk-connect 1.215.0 → 1.217.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 +404 -189
- data/lib/aws-sdk-connect/client_api.rb +29 -1
- data/lib/aws-sdk-connect/types.rb +300 -164
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +43 -9
- data/sig/types.rbs +21 -1
- metadata +1 -1
@@ -1938,6 +1938,12 @@ module Aws::Connect
|
|
1938
1938
|
# },
|
1939
1939
|
# },
|
1940
1940
|
# value_integer: 1,
|
1941
|
+
# value_list: [
|
1942
|
+
# {
|
1943
|
+
# # recursive SegmentAttributeValue
|
1944
|
+
# },
|
1945
|
+
# ],
|
1946
|
+
# value_arn: "SegmentAttributeValueString",
|
1941
1947
|
# },
|
1942
1948
|
# },
|
1943
1949
|
# previous_contact_id: "ContactId",
|
@@ -2872,14 +2878,34 @@ module Aws::Connect
|
|
2872
2878
|
end
|
2873
2879
|
|
2874
2880
|
# Creates a new predefined attribute for the specified Amazon Connect
|
2875
|
-
# instance. *
|
2876
|
-
# instance that can be used to route contacts to an agent or pools of
|
2877
|
-
# agents within a queue. For more information, see [Create predefined
|
2878
|
-
# attributes for routing contacts to agents][1].
|
2881
|
+
# instance. A *predefined attribute* is made up of a name and a value.
|
2879
2882
|
#
|
2883
|
+
# For the predefined attributes per instance quota, see [Amazon Connect
|
2884
|
+
# quotas][1].
|
2885
|
+
#
|
2886
|
+
# **Use cases**
|
2887
|
+
#
|
2888
|
+
# Following are common uses cases for this API:
|
2889
|
+
#
|
2890
|
+
# * Create an attribute for routing proficiency (for example, agent
|
2891
|
+
# certification) that has predefined values (for example, a list of
|
2892
|
+
# possible certifications). For more information, see [Create
|
2893
|
+
# predefined attributes for routing contacts to agents][2].
|
2894
|
+
#
|
2895
|
+
# * Create an attribute for business unit name that has a list of
|
2896
|
+
# predefined business unit names used in your organization. This is a
|
2897
|
+
# use case where information for a contact varies between transfers or
|
2898
|
+
# conferences. For more information, see [Use contact segment
|
2899
|
+
# attributes][3].
|
2900
|
+
#
|
2901
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][4].
|
2880
2902
|
#
|
2881
2903
|
#
|
2882
|
-
#
|
2904
|
+
#
|
2905
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
2906
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
|
2907
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html
|
2908
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
2883
2909
|
#
|
2884
2910
|
# @option params [required, String] :instance_id
|
2885
2911
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -2888,9 +2914,19 @@ module Aws::Connect
|
|
2888
2914
|
# @option params [required, String] :name
|
2889
2915
|
# The name of the predefined attribute.
|
2890
2916
|
#
|
2891
|
-
# @option params [
|
2917
|
+
# @option params [Types::PredefinedAttributeValues] :values
|
2892
2918
|
# The values of the predefined attribute.
|
2893
2919
|
#
|
2920
|
+
# @option params [Array<String>] :purposes
|
2921
|
+
# Values that enable you to categorize your predefined attributes. You
|
2922
|
+
# can use them in custom UI elements across the Amazon Connect admin
|
2923
|
+
# website.
|
2924
|
+
#
|
2925
|
+
# @option params [Types::InputPredefinedAttributeConfiguration] :attribute_configuration
|
2926
|
+
# Custom metadata that is associated to predefined attributes to control
|
2927
|
+
# behavior in upstream services, such as controlling how a predefined
|
2928
|
+
# attribute should be displayed in the Amazon Connect admin website.
|
2929
|
+
#
|
2894
2930
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2895
2931
|
#
|
2896
2932
|
# @example Request syntax with placeholder values
|
@@ -2898,9 +2934,13 @@ module Aws::Connect
|
|
2898
2934
|
# resp = client.create_predefined_attribute({
|
2899
2935
|
# instance_id: "InstanceId", # required
|
2900
2936
|
# name: "PredefinedAttributeName", # required
|
2901
|
-
# values: {
|
2937
|
+
# values: {
|
2902
2938
|
# string_list: ["PredefinedAttributeStringValue"],
|
2903
2939
|
# },
|
2940
|
+
# purposes: ["PredefinedAttributePurposeName"],
|
2941
|
+
# attribute_configuration: {
|
2942
|
+
# enable_value_validation_on_association: false,
|
2943
|
+
# },
|
2904
2944
|
# })
|
2905
2945
|
#
|
2906
2946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreatePredefinedAttribute AWS API Documentation
|
@@ -3956,6 +3996,7 @@ module Aws::Connect
|
|
3956
3996
|
# auto_accept: false,
|
3957
3997
|
# after_contact_work_time_limit: 1,
|
3958
3998
|
# desk_phone_number: "PhoneNumber",
|
3999
|
+
# persistent_connection: false,
|
3959
4000
|
# },
|
3960
4001
|
# directory_user_id: "DirectoryUserId",
|
3961
4002
|
# security_profile_ids: ["SecurityProfileId"], # required
|
@@ -5543,6 +5584,9 @@ module Aws::Connect
|
|
5543
5584
|
# resp.contact.segment_attributes["SegmentAttributeName"].value_map #=> Hash
|
5544
5585
|
# resp.contact.segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"] #=> Types::SegmentAttributeValue
|
5545
5586
|
# resp.contact.segment_attributes["SegmentAttributeName"].value_integer #=> Integer
|
5587
|
+
# resp.contact.segment_attributes["SegmentAttributeName"].value_list #=> Array
|
5588
|
+
# resp.contact.segment_attributes["SegmentAttributeName"].value_list[0] #=> Types::SegmentAttributeValue
|
5589
|
+
# resp.contact.segment_attributes["SegmentAttributeName"].value_arn #=> String
|
5546
5590
|
# resp.contact.recordings #=> Array
|
5547
5591
|
# resp.contact.recordings[0].storage_type #=> String, one of "S3", "KINESIS_VIDEO_STREAM", "KINESIS_STREAM", "KINESIS_FIREHOSE"
|
5548
5592
|
# resp.contact.recordings[0].location #=> String
|
@@ -6246,14 +6290,29 @@ module Aws::Connect
|
|
6246
6290
|
end
|
6247
6291
|
|
6248
6292
|
# Describes a predefined attribute for the specified Amazon Connect
|
6249
|
-
# instance. *
|
6250
|
-
#
|
6251
|
-
#
|
6252
|
-
#
|
6293
|
+
# instance. A *predefined attribute* is made up of a name and a value.
|
6294
|
+
# You can use predefined attributes for:
|
6295
|
+
#
|
6296
|
+
# * Routing proficiency (for example, agent certification) that has
|
6297
|
+
# predefined values (for example, a list of possible certifications).
|
6298
|
+
# For more information, see [Create predefined attributes for routing
|
6299
|
+
# contacts to agents][1].
|
6300
|
+
#
|
6301
|
+
# * Contact information that varies between transfers or conferences,
|
6302
|
+
# such as the name of the business unit handling the contact. For more
|
6303
|
+
# information, see [Use contact segment attributes][2].
|
6304
|
+
#
|
6305
|
+
# For the predefined attributes per instance quota, see [Amazon Connect
|
6306
|
+
# quotas][3].
|
6307
|
+
#
|
6308
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][4].
|
6253
6309
|
#
|
6254
6310
|
#
|
6255
6311
|
#
|
6256
6312
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
|
6313
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html
|
6314
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
6315
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
6257
6316
|
#
|
6258
6317
|
# @option params [required, String] :instance_id
|
6259
6318
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -6278,6 +6337,10 @@ module Aws::Connect
|
|
6278
6337
|
# resp.predefined_attribute.name #=> String
|
6279
6338
|
# resp.predefined_attribute.values.string_list #=> Array
|
6280
6339
|
# resp.predefined_attribute.values.string_list[0] #=> String
|
6340
|
+
# resp.predefined_attribute.purposes #=> Array
|
6341
|
+
# resp.predefined_attribute.purposes[0] #=> String
|
6342
|
+
# resp.predefined_attribute.attribute_configuration.enable_value_validation_on_association #=> Boolean
|
6343
|
+
# resp.predefined_attribute.attribute_configuration.is_read_only #=> Boolean
|
6281
6344
|
# resp.predefined_attribute.last_modified_time #=> Time
|
6282
6345
|
# resp.predefined_attribute.last_modified_region #=> String
|
6283
6346
|
#
|
@@ -6737,6 +6800,7 @@ module Aws::Connect
|
|
6737
6800
|
# resp.user.phone_config.auto_accept #=> Boolean
|
6738
6801
|
# resp.user.phone_config.after_contact_work_time_limit #=> Integer
|
6739
6802
|
# resp.user.phone_config.desk_phone_number #=> String
|
6803
|
+
# resp.user.phone_config.persistent_connection #=> Boolean
|
6740
6804
|
# resp.user.directory_user_id #=> String
|
6741
6805
|
# resp.user.security_profile_ids #=> Array
|
6742
6806
|
# resp.user.security_profile_ids[0] #=> String
|
@@ -7415,6 +7479,10 @@ module Aws::Connect
|
|
7415
7479
|
|
7416
7480
|
# Disassociates a set of queues from a routing profile.
|
7417
7481
|
#
|
7482
|
+
# Up to 10 queue references can be disassociated in a single API call.
|
7483
|
+
# More than 10 queue references results in a single call results in an
|
7484
|
+
# InvalidParameterException.
|
7485
|
+
#
|
7418
7486
|
# @option params [required, String] :instance_id
|
7419
7487
|
# The identifier of the Amazon Connect instance. You can [find the
|
7420
7488
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -7724,22 +7792,38 @@ module Aws::Connect
|
|
7724
7792
|
req.send_request(options)
|
7725
7793
|
end
|
7726
7794
|
|
7727
|
-
#
|
7795
|
+
# Retrieves the position of the contact in the queue.
|
7728
7796
|
#
|
7729
7797
|
# **Use cases**
|
7730
7798
|
#
|
7731
|
-
# Following are common uses cases for
|
7799
|
+
# Following are common uses cases for position in queue:
|
7732
7800
|
#
|
7733
|
-
# *
|
7734
|
-
#
|
7801
|
+
# * Understand the expected wait experience of a contact.
|
7802
|
+
#
|
7803
|
+
# * Inform customers of their position in queue and potentially offer a
|
7804
|
+
# callback.
|
7735
7805
|
#
|
7736
|
-
#
|
7806
|
+
# * Make data-driven routing decisions between primary and alternative
|
7807
|
+
# queues.
|
7737
7808
|
#
|
7738
|
-
#
|
7809
|
+
# * Enhance queue visibility and leverage agent proficiencies to
|
7810
|
+
# streamline contact routing.
|
7739
7811
|
#
|
7812
|
+
# **Important things to know**
|
7813
|
+
#
|
7814
|
+
# * The only way to retrieve the position of the contact in queue is by
|
7815
|
+
# using this API. You can't retrieve the position by using flows and
|
7816
|
+
# attributes.
|
7817
|
+
#
|
7818
|
+
# * For more information, see the [Position in queue][1] metric in the
|
7819
|
+
# *Amazon Connect Administrator Guide*.
|
7740
7820
|
#
|
7821
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][2].
|
7741
7822
|
#
|
7742
|
-
#
|
7823
|
+
#
|
7824
|
+
#
|
7825
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
|
7826
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
7743
7827
|
#
|
7744
7828
|
# @option params [required, String] :instance_id
|
7745
7829
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -9089,6 +9173,8 @@ module Aws::Connect
|
|
9089
9173
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
9090
9174
|
# Q in Connect
|
9091
9175
|
#
|
9176
|
+
# Valid metric filter key: `INITIATION_METHOD`
|
9177
|
+
#
|
9092
9178
|
# UI name: [Average queue abandon time][12]
|
9093
9179
|
#
|
9094
9180
|
# AVG\_ACTIVE\_TIME
|
@@ -9481,10 +9567,23 @@ module Aws::Connect
|
|
9481
9567
|
#
|
9482
9568
|
# UI name: [Average queue answer time][45]
|
9483
9569
|
#
|
9570
|
+
# Valid metric level filters: `INITIATION_METHOD`, `FEATURE`,
|
9571
|
+
# `DISCONNECT_REASON`
|
9572
|
+
#
|
9484
9573
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9485
9574
|
#
|
9486
9575
|
# </note>
|
9487
9576
|
#
|
9577
|
+
# AVG\_QUEUE\_ANSWER\_TIME\_CUSTOMER\_FIRST\_CALLBACK
|
9578
|
+
#
|
9579
|
+
# : Unit: Seconds
|
9580
|
+
#
|
9581
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9582
|
+
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect,
|
9583
|
+
# Agent Hierarchy
|
9584
|
+
#
|
9585
|
+
# UI name: [Avg. queue answer time - customer first callback][46]
|
9586
|
+
#
|
9488
9587
|
# AVG\_RESPONSE\_TIME\_AGENT
|
9489
9588
|
#
|
9490
9589
|
# : Unit: Seconds
|
@@ -9494,7 +9593,7 @@ module Aws::Connect
|
|
9494
9593
|
# Feature, RoutingStepExpression, Initiation method, Routing Profile,
|
9495
9594
|
# Queue, Q in Connect
|
9496
9595
|
#
|
9497
|
-
# UI name: [Average agent response time][
|
9596
|
+
# UI name: [Average agent response time][47]
|
9498
9597
|
#
|
9499
9598
|
# AVG\_RESPONSE\_TIME\_CUSTOMER
|
9500
9599
|
#
|
@@ -9505,7 +9604,7 @@ module Aws::Connect
|
|
9505
9604
|
# Feature, RoutingStepExpression, Initiation method, Routing Profile,
|
9506
9605
|
# Queue, Q in Connect
|
9507
9606
|
#
|
9508
|
-
# UI name: [Average customer response time][
|
9607
|
+
# UI name: [Average customer response time][48]
|
9509
9608
|
#
|
9510
9609
|
# AVG\_RESOLUTION\_TIME
|
9511
9610
|
#
|
@@ -9514,7 +9613,7 @@ module Aws::Connect
|
|
9514
9613
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9515
9614
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9516
9615
|
#
|
9517
|
-
# UI name: [Average resolution time][
|
9616
|
+
# UI name: [Average resolution time][49]
|
9518
9617
|
#
|
9519
9618
|
# AVG\_TALK\_TIME
|
9520
9619
|
#
|
@@ -9527,7 +9626,7 @@ module Aws::Connect
|
|
9527
9626
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9528
9627
|
# Connect
|
9529
9628
|
#
|
9530
|
-
# UI name: [Average talk time][
|
9629
|
+
# UI name: [Average talk time][50]
|
9531
9630
|
#
|
9532
9631
|
# AVG\_TALK\_TIME\_AGENT
|
9533
9632
|
#
|
@@ -9540,7 +9639,7 @@ module Aws::Connect
|
|
9540
9639
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9541
9640
|
# Connect
|
9542
9641
|
#
|
9543
|
-
# UI name: [Average agent talk time][
|
9642
|
+
# UI name: [Average agent talk time][51]
|
9544
9643
|
#
|
9545
9644
|
# AVG\_TALK\_TIME\_CUSTOMER
|
9546
9645
|
#
|
@@ -9553,7 +9652,7 @@ module Aws::Connect
|
|
9553
9652
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9554
9653
|
# Connect
|
9555
9654
|
#
|
9556
|
-
# UI name: [Average customer talk time][
|
9655
|
+
# UI name: [Average customer talk time][52]
|
9557
9656
|
#
|
9558
9657
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
9559
9658
|
#
|
@@ -9564,7 +9663,18 @@ module Aws::Connect
|
|
9564
9663
|
#
|
9565
9664
|
# Valid groupings and filters: Campaign
|
9566
9665
|
#
|
9567
|
-
# UI name: [Average wait time after customer connection][
|
9666
|
+
# UI name: [Average wait time after customer connection][53]
|
9667
|
+
#
|
9668
|
+
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_FIRST\_CALLBACK\_CONNECTION
|
9669
|
+
#
|
9670
|
+
# : Unit: Seconds
|
9671
|
+
#
|
9672
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9673
|
+
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect,
|
9674
|
+
# Agent Hierarchy
|
9675
|
+
#
|
9676
|
+
# UI name: [Avg. wait time after customer connection - customer first
|
9677
|
+
# callback][54]
|
9568
9678
|
#
|
9569
9679
|
# AVG\_WEIGHTED\_EVALUATION\_SCORE
|
9570
9680
|
#
|
@@ -9574,7 +9684,7 @@ module Aws::Connect
|
|
9574
9684
|
# Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
|
9575
9685
|
# Evaluation Source, Form Version, Queue, Routing Profile
|
9576
9686
|
#
|
9577
|
-
# UI name: [Average weighted evaluation score][
|
9687
|
+
# UI name: [Average weighted evaluation score][55]
|
9578
9688
|
#
|
9579
9689
|
# BOT\_CONVERSATIONS\_COMPLETED
|
9580
9690
|
#
|
@@ -9586,7 +9696,7 @@ module Aws::Connect
|
|
9586
9696
|
# Flow type, Flow action ID, Invoking resource published timestamp,
|
9587
9697
|
# Initiation method, Invoking resource type, Parent flows resource ID
|
9588
9698
|
#
|
9589
|
-
# UI name: [Bot conversations completed][
|
9699
|
+
# UI name: [Bot conversations completed][56]
|
9590
9700
|
#
|
9591
9701
|
# BOT\_INTENTS\_COMPLETED
|
9592
9702
|
#
|
@@ -9599,7 +9709,7 @@ module Aws::Connect
|
|
9599
9709
|
# published timestamp, Initiation method, Invoking resource type,
|
9600
9710
|
# Parent flows resource ID
|
9601
9711
|
#
|
9602
|
-
# UI name: [Bot intents completed][
|
9712
|
+
# UI name: [Bot intents completed][57]
|
9603
9713
|
#
|
9604
9714
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
9605
9715
|
#
|
@@ -9614,7 +9724,7 @@ module Aws::Connect
|
|
9614
9724
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9615
9725
|
# `GT` (for *Greater than*).
|
9616
9726
|
#
|
9617
|
-
# UI name: [Campaign contacts abandoned after X][
|
9727
|
+
# UI name: [Campaign contacts abandoned after X][58]
|
9618
9728
|
#
|
9619
9729
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
9620
9730
|
#
|
@@ -9629,7 +9739,7 @@ module Aws::Connect
|
|
9629
9739
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
9630
9740
|
# `GT` (for *Greater than*).
|
9631
9741
|
#
|
9632
|
-
# UI name: [Campaign contacts abandoned after X rate][
|
9742
|
+
# UI name: [Campaign contacts abandoned after X rate][59]
|
9633
9743
|
#
|
9634
9744
|
# CAMPAIGN\_INTERACTIONS
|
9635
9745
|
#
|
@@ -9642,7 +9752,7 @@ module Aws::Connect
|
|
9642
9752
|
#
|
9643
9753
|
# Valid groupings and filters: Campaign
|
9644
9754
|
#
|
9645
|
-
# UI name: [Campaign interactions][
|
9755
|
+
# UI name: [Campaign interactions][60]
|
9646
9756
|
#
|
9647
9757
|
# CAMPAIGN\_PROGRESS\_RATE
|
9648
9758
|
#
|
@@ -9654,7 +9764,7 @@ module Aws::Connect
|
|
9654
9764
|
#
|
9655
9765
|
# Valid groupings and filters: Campaign, Campaign Execution Timestamp
|
9656
9766
|
#
|
9657
|
-
# UI name: [Campaign progress rate][
|
9767
|
+
# UI name: [Campaign progress rate][61]
|
9658
9768
|
#
|
9659
9769
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
9660
9770
|
#
|
@@ -9665,7 +9775,7 @@ module Aws::Connect
|
|
9665
9775
|
# Valid groupings and filters: Campaign, Channel,
|
9666
9776
|
# contact/segmentAttributes/connect:Subtype
|
9667
9777
|
#
|
9668
|
-
# UI name: [Campaign send attempts][
|
9778
|
+
# UI name: [Campaign send attempts][62]
|
9669
9779
|
#
|
9670
9780
|
# CAMPAIGN\_SEND\_EXCLUSIONS
|
9671
9781
|
#
|
@@ -9678,7 +9788,7 @@ module Aws::Connect
|
|
9678
9788
|
# Valid groupings and filters: Campaign, Campaign Excluded Event Type,
|
9679
9789
|
# Campaign Execution Timestamp
|
9680
9790
|
#
|
9681
|
-
# UI name: [Campaign send exclusions][
|
9791
|
+
# UI name: [Campaign send exclusions][63]
|
9682
9792
|
#
|
9683
9793
|
# CASES\_CREATED
|
9684
9794
|
#
|
@@ -9688,7 +9798,7 @@ module Aws::Connect
|
|
9688
9798
|
#
|
9689
9799
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9690
9800
|
#
|
9691
|
-
# UI name: [Cases created][
|
9801
|
+
# UI name: [Cases created][64]
|
9692
9802
|
#
|
9693
9803
|
# CONTACTS\_CREATED
|
9694
9804
|
#
|
@@ -9699,7 +9809,7 @@ module Aws::Connect
|
|
9699
9809
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9700
9810
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
9701
9811
|
#
|
9702
|
-
# UI name: [Contacts created][
|
9812
|
+
# UI name: [Contacts created][65]
|
9703
9813
|
#
|
9704
9814
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9705
9815
|
#
|
@@ -9715,7 +9825,7 @@ module Aws::Connect
|
|
9715
9825
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
9716
9826
|
# RoutingStepExpression, Q in Connect
|
9717
9827
|
#
|
9718
|
-
# UI name: [
|
9828
|
+
# UI name: [Contacts handled][66]
|
9719
9829
|
#
|
9720
9830
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9721
9831
|
#
|
@@ -9730,7 +9840,7 @@ module Aws::Connect
|
|
9730
9840
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
9731
9841
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9732
9842
|
#
|
9733
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
9843
|
+
# UI name: [Contacts handled (connected to agent timestamp)][67]
|
9734
9844
|
#
|
9735
9845
|
# CONTACTS\_HOLD\_ABANDONS
|
9736
9846
|
#
|
@@ -9740,7 +9850,7 @@ module Aws::Connect
|
|
9740
9850
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9741
9851
|
# Connect
|
9742
9852
|
#
|
9743
|
-
# UI name: [Contacts hold disconnect][
|
9853
|
+
# UI name: [Contacts hold disconnect][68]
|
9744
9854
|
#
|
9745
9855
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
9746
9856
|
#
|
@@ -9749,7 +9859,7 @@ module Aws::Connect
|
|
9749
9859
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9750
9860
|
# Agent Hierarchy, Q in Connect
|
9751
9861
|
#
|
9752
|
-
# UI name: [Contacts hold agent disconnect][
|
9862
|
+
# UI name: [Contacts hold agent disconnect][69]
|
9753
9863
|
#
|
9754
9864
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
9755
9865
|
#
|
@@ -9758,7 +9868,7 @@ module Aws::Connect
|
|
9758
9868
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9759
9869
|
# Agent Hierarchy, Q in Connect
|
9760
9870
|
#
|
9761
|
-
# UI name: [Contacts hold customer disconnect][
|
9871
|
+
# UI name: [Contacts hold customer disconnect][70]
|
9762
9872
|
#
|
9763
9873
|
# CONTACTS\_PUT\_ON\_HOLD
|
9764
9874
|
#
|
@@ -9767,7 +9877,7 @@ module Aws::Connect
|
|
9767
9877
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9768
9878
|
# Agent Hierarchy, Q in Connect
|
9769
9879
|
#
|
9770
|
-
# UI name: [Contacts put on hold][
|
9880
|
+
# UI name: [Contacts put on hold][71]
|
9771
9881
|
#
|
9772
9882
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
9773
9883
|
#
|
@@ -9776,7 +9886,7 @@ module Aws::Connect
|
|
9776
9886
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9777
9887
|
# Agent Hierarchy, Q in Connect
|
9778
9888
|
#
|
9779
|
-
# UI name: [Contacts transferred out external][
|
9889
|
+
# UI name: [Contacts transferred out external][72]
|
9780
9890
|
#
|
9781
9891
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
9782
9892
|
#
|
@@ -9785,7 +9895,7 @@ module Aws::Connect
|
|
9785
9895
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9786
9896
|
# Agent Hierarchy, Q in Connect
|
9787
9897
|
#
|
9788
|
-
# UI name: [Contacts transferred out internal][
|
9898
|
+
# UI name: [Contacts transferred out internal][73]
|
9789
9899
|
#
|
9790
9900
|
# CONTACTS\_QUEUED
|
9791
9901
|
#
|
@@ -9795,7 +9905,7 @@ module Aws::Connect
|
|
9795
9905
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9796
9906
|
# Connect
|
9797
9907
|
#
|
9798
|
-
# UI name: [Contacts queued][
|
9908
|
+
# UI name: [Contacts queued][74]
|
9799
9909
|
#
|
9800
9910
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
9801
9911
|
#
|
@@ -9804,7 +9914,7 @@ module Aws::Connect
|
|
9804
9914
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
9805
9915
|
# contact/segmentAttributes/connect:Subtype
|
9806
9916
|
#
|
9807
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
9917
|
+
# UI name: [Contacts queued (enqueue timestamp)][75]
|
9808
9918
|
#
|
9809
9919
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
9810
9920
|
#
|
@@ -9817,7 +9927,7 @@ module Aws::Connect
|
|
9817
9927
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9818
9928
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9819
9929
|
#
|
9820
|
-
# UI name: [Contacts removed from queue in X seconds][
|
9930
|
+
# UI name: [Contacts removed from queue in X seconds][76]
|
9821
9931
|
#
|
9822
9932
|
# CONTACTS\_RESOLVED\_IN\_X
|
9823
9933
|
#
|
@@ -9830,7 +9940,7 @@ module Aws::Connect
|
|
9830
9940
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9831
9941
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9832
9942
|
#
|
9833
|
-
# UI name: [Contacts resolved in X][
|
9943
|
+
# UI name: [Contacts resolved in X][77]
|
9834
9944
|
#
|
9835
9945
|
# CONTACTS\_TRANSFERRED\_OUT
|
9836
9946
|
#
|
@@ -9840,7 +9950,7 @@ module Aws::Connect
|
|
9840
9950
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
9841
9951
|
# Q in Connect
|
9842
9952
|
#
|
9843
|
-
# UI name: [Contacts transferred out][
|
9953
|
+
# UI name: [Contacts transferred out][78]
|
9844
9954
|
#
|
9845
9955
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9846
9956
|
#
|
@@ -9854,7 +9964,7 @@ module Aws::Connect
|
|
9854
9964
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9855
9965
|
# Connect
|
9856
9966
|
#
|
9857
|
-
# UI name: [Contacts transferred out by agent][
|
9967
|
+
# UI name: [Contacts transferred out by agent][79]
|
9858
9968
|
#
|
9859
9969
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
9860
9970
|
#
|
@@ -9864,7 +9974,7 @@ module Aws::Connect
|
|
9864
9974
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9865
9975
|
# Connect
|
9866
9976
|
#
|
9867
|
-
# UI name: [Contacts transferred out queue][
|
9977
|
+
# UI name: [Contacts transferred out queue][80]
|
9868
9978
|
#
|
9869
9979
|
# CURRENT\_CASES
|
9870
9980
|
#
|
@@ -9874,7 +9984,7 @@ module Aws::Connect
|
|
9874
9984
|
#
|
9875
9985
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9876
9986
|
#
|
9877
|
-
# UI name: [Current cases][
|
9987
|
+
# UI name: [Current cases][81]
|
9878
9988
|
#
|
9879
9989
|
# CONVERSATIONS\_ABANDONED
|
9880
9990
|
#
|
@@ -9885,7 +9995,7 @@ module Aws::Connect
|
|
9885
9995
|
# Feature, RoutingStepExpression, Initiation method, Routing Profile,
|
9886
9996
|
# Queue, Q in Connect
|
9887
9997
|
#
|
9888
|
-
# UI name: [Conversations abandoned][
|
9998
|
+
# UI name: [Conversations abandoned][82]
|
9889
9999
|
#
|
9890
10000
|
# DELIVERY\_ATTEMPTS
|
9891
10001
|
#
|
@@ -9901,7 +10011,7 @@ module Aws::Connect
|
|
9901
10011
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
|
9902
10012
|
# Routing Profile
|
9903
10013
|
#
|
9904
|
-
# UI name: [Delivery attempts][
|
10014
|
+
# UI name: [Delivery attempts][83]
|
9905
10015
|
#
|
9906
10016
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
9907
10017
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -9927,7 +10037,7 @@ module Aws::Connect
|
|
9927
10037
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
|
9928
10038
|
# Routing Profile
|
9929
10039
|
#
|
9930
|
-
# UI name: [Delivery attempt disposition rate][
|
10040
|
+
# UI name: [Delivery attempt disposition rate][84]
|
9931
10041
|
#
|
9932
10042
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only available
|
9933
10043
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -9945,7 +10055,7 @@ module Aws::Connect
|
|
9945
10055
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue, Routing
|
9946
10056
|
# Profile
|
9947
10057
|
#
|
9948
|
-
# UI name: [Evaluations performed][
|
10058
|
+
# UI name: [Evaluations performed][85]
|
9949
10059
|
#
|
9950
10060
|
# FLOWS\_OUTCOME
|
9951
10061
|
#
|
@@ -9957,7 +10067,7 @@ module Aws::Connect
|
|
9957
10067
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9958
10068
|
# published timestamp
|
9959
10069
|
#
|
9960
|
-
# UI name: [Flows outcome][
|
10070
|
+
# UI name: [Flows outcome][86]
|
9961
10071
|
#
|
9962
10072
|
# FLOWS\_STARTED
|
9963
10073
|
#
|
@@ -9968,7 +10078,7 @@ module Aws::Connect
|
|
9968
10078
|
# resource ID, Flows resource ID, Initiation method, Resource
|
9969
10079
|
# published timestamp
|
9970
10080
|
#
|
9971
|
-
# UI name: [Flows started][
|
10081
|
+
# UI name: [Flows started][87]
|
9972
10082
|
#
|
9973
10083
|
# HUMAN\_ANSWERED\_CALLS
|
9974
10084
|
#
|
@@ -9980,7 +10090,7 @@ module Aws::Connect
|
|
9980
10090
|
#
|
9981
10091
|
# Valid groupings and filters: Agent, Campaign
|
9982
10092
|
#
|
9983
|
-
# UI name: [Human answered][
|
10093
|
+
# UI name: [Human answered][88]
|
9984
10094
|
#
|
9985
10095
|
# MAX\_FLOW\_TIME
|
9986
10096
|
#
|
@@ -9992,7 +10102,7 @@ module Aws::Connect
|
|
9992
10102
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
9993
10103
|
# published timestamp
|
9994
10104
|
#
|
9995
|
-
# UI name: [Maximum flow time][
|
10105
|
+
# UI name: [Maximum flow time][89]
|
9996
10106
|
#
|
9997
10107
|
# MAX\_QUEUED\_TIME
|
9998
10108
|
#
|
@@ -10002,7 +10112,7 @@ module Aws::Connect
|
|
10002
10112
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
10003
10113
|
# Connect
|
10004
10114
|
#
|
10005
|
-
# UI name: [Maximum queued time][
|
10115
|
+
# UI name: [Maximum queued time][90]
|
10006
10116
|
#
|
10007
10117
|
# MIN\_FLOW\_TIME
|
10008
10118
|
#
|
@@ -10014,7 +10124,7 @@ module Aws::Connect
|
|
10014
10124
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
10015
10125
|
# published timestamp
|
10016
10126
|
#
|
10017
|
-
# UI name: [Minimum flow time][
|
10127
|
+
# UI name: [Minimum flow time][91]
|
10018
10128
|
#
|
10019
10129
|
# PERCENT\_AUTOMATIC\_FAILS
|
10020
10130
|
#
|
@@ -10024,7 +10134,7 @@ module Aws::Connect
|
|
10024
10134
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue, Routing
|
10025
10135
|
# Profile
|
10026
10136
|
#
|
10027
|
-
# UI name: [Automatic fails percent][
|
10137
|
+
# UI name: [Automatic fails percent][92]
|
10028
10138
|
#
|
10029
10139
|
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
10030
10140
|
#
|
@@ -10036,7 +10146,7 @@ module Aws::Connect
|
|
10036
10146
|
# Flow type, Flow action ID, Invoking resource published timestamp,
|
10037
10147
|
# Initiation method, Invoking resource type, Parent flows resource ID
|
10038
10148
|
#
|
10039
|
-
# UI name: [Percent bot conversations outcome][
|
10149
|
+
# UI name: [Percent bot conversations outcome][93]
|
10040
10150
|
#
|
10041
10151
|
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
10042
10152
|
#
|
@@ -10049,7 +10159,7 @@ module Aws::Connect
|
|
10049
10159
|
# published timestamp, Initiation method, Invoking resource type,
|
10050
10160
|
# Parent flows resource ID
|
10051
10161
|
#
|
10052
|
-
# UI name: [Percent bot intents outcome][
|
10162
|
+
# UI name: [Percent bot intents outcome][94]
|
10053
10163
|
#
|
10054
10164
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
10055
10165
|
#
|
@@ -10059,7 +10169,7 @@ module Aws::Connect
|
|
10059
10169
|
#
|
10060
10170
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10061
10171
|
#
|
10062
|
-
# UI name: [Cases resolved on first contact][
|
10172
|
+
# UI name: [Cases resolved on first contact][95]
|
10063
10173
|
#
|
10064
10174
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
10065
10175
|
#
|
@@ -10091,7 +10201,7 @@ module Aws::Connect
|
|
10091
10201
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
10092
10202
|
# published timestamp
|
10093
10203
|
#
|
10094
|
-
# UI name: [Flows outcome percentage][
|
10204
|
+
# UI name: [Flows outcome percentage][96].
|
10095
10205
|
#
|
10096
10206
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
10097
10207
|
#
|
@@ -10108,7 +10218,7 @@ module Aws::Connect
|
|
10108
10218
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
10109
10219
|
# Connect
|
10110
10220
|
#
|
10111
|
-
# UI name: [Non-talk time percent][
|
10221
|
+
# UI name: [Non-talk time percent][97]
|
10112
10222
|
#
|
10113
10223
|
# PERCENT\_TALK\_TIME
|
10114
10224
|
#
|
@@ -10121,7 +10231,7 @@ module Aws::Connect
|
|
10121
10231
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
10122
10232
|
# Connect
|
10123
10233
|
#
|
10124
|
-
# UI name: [Talk time percent][
|
10234
|
+
# UI name: [Talk time percent][98]
|
10125
10235
|
#
|
10126
10236
|
# PERCENT\_TALK\_TIME\_AGENT
|
10127
10237
|
#
|
@@ -10134,7 +10244,7 @@ module Aws::Connect
|
|
10134
10244
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
10135
10245
|
# Connect
|
10136
10246
|
#
|
10137
|
-
# UI name: [Agent talk time percent][
|
10247
|
+
# UI name: [Agent talk time percent][99]
|
10138
10248
|
#
|
10139
10249
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
10140
10250
|
#
|
@@ -10147,7 +10257,7 @@ module Aws::Connect
|
|
10147
10257
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
10148
10258
|
# Connect
|
10149
10259
|
#
|
10150
|
-
# UI name: [Customer talk time percent][
|
10260
|
+
# UI name: [Customer talk time percent][100]
|
10151
10261
|
#
|
10152
10262
|
# RECIPIENTS\_ATTEMPTED
|
10153
10263
|
#
|
@@ -10159,7 +10269,7 @@ module Aws::Connect
|
|
10159
10269
|
#
|
10160
10270
|
# Valid groupings and filters: Campaign, Campaign Execution Timestamp
|
10161
10271
|
#
|
10162
|
-
# UI name: [Recipients attempted][
|
10272
|
+
# UI name: [Recipients attempted][101]
|
10163
10273
|
#
|
10164
10274
|
# RECIPIENTS\_INTERACTED
|
10165
10275
|
#
|
@@ -10175,7 +10285,7 @@ module Aws::Connect
|
|
10175
10285
|
# contact/segmentAttributes/connect:Subtype, Campaign Execution
|
10176
10286
|
# Timestamp
|
10177
10287
|
#
|
10178
|
-
# UI name: [Recipients interacted][
|
10288
|
+
# UI name: [Recipients interacted][102]
|
10179
10289
|
#
|
10180
10290
|
# RECIPIENTS\_TARGETED
|
10181
10291
|
#
|
@@ -10187,7 +10297,7 @@ module Aws::Connect
|
|
10187
10297
|
#
|
10188
10298
|
# Valid groupings and filters: Campaign, Campaign Execution Timestamp
|
10189
10299
|
#
|
10190
|
-
# UI name: [Recipients targeted][
|
10300
|
+
# UI name: [Recipients targeted][103]
|
10191
10301
|
#
|
10192
10302
|
# REOPENED\_CASE\_ACTIONS
|
10193
10303
|
#
|
@@ -10197,7 +10307,7 @@ module Aws::Connect
|
|
10197
10307
|
#
|
10198
10308
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10199
10309
|
#
|
10200
|
-
# UI name: [Cases reopened][
|
10310
|
+
# UI name: [Cases reopened][104]
|
10201
10311
|
#
|
10202
10312
|
# RESOLVED\_CASE\_ACTIONS
|
10203
10313
|
#
|
@@ -10207,7 +10317,7 @@ module Aws::Connect
|
|
10207
10317
|
#
|
10208
10318
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10209
10319
|
#
|
10210
|
-
# UI name: [Cases resolved][
|
10320
|
+
# UI name: [Cases resolved][105]
|
10211
10321
|
#
|
10212
10322
|
# SERVICE\_LEVEL
|
10213
10323
|
#
|
@@ -10222,7 +10332,7 @@ module Aws::Connect
|
|
10222
10332
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10223
10333
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10224
10334
|
#
|
10225
|
-
# UI name: [Service level X][
|
10335
|
+
# UI name: [Service level X][106]
|
10226
10336
|
#
|
10227
10337
|
# STEP\_CONTACTS\_QUEUED
|
10228
10338
|
#
|
@@ -10248,12 +10358,13 @@ module Aws::Connect
|
|
10248
10358
|
#
|
10249
10359
|
# Valid metric filter key: `INITIATION_METHOD`. This metric only
|
10250
10360
|
# supports the following filter keys as `INITIATION_METHOD`: `INBOUND`
|
10251
|
-
# \| `OUTBOUND` \| `CALLBACK` \| `API`
|
10361
|
+
# \| `OUTBOUND` \| `CALLBACK` \| `API` \|
|
10362
|
+
# `CALLBACK_CUSTOMER_FIRST_DIALED`
|
10252
10363
|
#
|
10253
10364
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
10254
10365
|
# Agent Hierarchy
|
10255
10366
|
#
|
10256
|
-
# UI name: [Agent API connecting time][
|
10367
|
+
# UI name: [Agent API connecting time][107]
|
10257
10368
|
#
|
10258
10369
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for this
|
10259
10370
|
# metric.
|
@@ -10266,8 +10377,9 @@ module Aws::Connect
|
|
10266
10377
|
#
|
10267
10378
|
# Metric filter:
|
10268
10379
|
#
|
10269
|
-
# * Valid values: `API`\| `
|
10270
|
-
# `
|
10380
|
+
# * Valid values: `API`\| `INCOMING` \| `OUTBOUND` \| `TRANSFER` \|
|
10381
|
+
# `CALLBACK` \| `QUEUE_TRANSFER`\| `Disconnect` \|
|
10382
|
+
# `CALLBACK_CUSTOMER_FIRST_DIALED`
|
10271
10383
|
#
|
10272
10384
|
# ^
|
10273
10385
|
#
|
@@ -10275,7 +10387,7 @@ module Aws::Connect
|
|
10275
10387
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10276
10388
|
# RoutingStepExpression, Q in Connect
|
10277
10389
|
#
|
10278
|
-
# UI name: [Contact abandoned][
|
10390
|
+
# UI name: [Contact abandoned][108]
|
10279
10391
|
#
|
10280
10392
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
10281
10393
|
#
|
@@ -10288,7 +10400,7 @@ module Aws::Connect
|
|
10288
10400
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10289
10401
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10290
10402
|
#
|
10291
|
-
# UI name: [Contacts abandoned in X seconds][
|
10403
|
+
# UI name: [Contacts abandoned in X seconds][109]
|
10292
10404
|
#
|
10293
10405
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
10294
10406
|
#
|
@@ -10301,7 +10413,7 @@ module Aws::Connect
|
|
10301
10413
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10302
10414
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10303
10415
|
#
|
10304
|
-
# UI name: [Contacts answered in X seconds][
|
10416
|
+
# UI name: [Contacts answered in X seconds][110]
|
10305
10417
|
#
|
10306
10418
|
# SUM\_CONTACT\_FLOW\_TIME
|
10307
10419
|
#
|
@@ -10310,7 +10422,7 @@ module Aws::Connect
|
|
10310
10422
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
10311
10423
|
# Agent Hierarchy, Q in Connect
|
10312
10424
|
#
|
10313
|
-
# UI name: [Contact flow time][
|
10425
|
+
# UI name: [Contact flow time][111]
|
10314
10426
|
#
|
10315
10427
|
# SUM\_CONTACT\_TIME\_AGENT
|
10316
10428
|
#
|
@@ -10318,7 +10430,7 @@ module Aws::Connect
|
|
10318
10430
|
#
|
10319
10431
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
10320
10432
|
#
|
10321
|
-
# UI name: [Agent on contact time][
|
10433
|
+
# UI name: [Agent on contact time][112]
|
10322
10434
|
#
|
10323
10435
|
# SUM\_CONTACTS\_DISCONNECTED
|
10324
10436
|
#
|
@@ -10330,7 +10442,7 @@ module Aws::Connect
|
|
10330
10442
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
10331
10443
|
# Connect
|
10332
10444
|
#
|
10333
|
-
# UI name: [Contact disconnected][
|
10445
|
+
# UI name: [Contact disconnected][113]
|
10334
10446
|
#
|
10335
10447
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
10336
10448
|
#
|
@@ -10338,7 +10450,7 @@ module Aws::Connect
|
|
10338
10450
|
#
|
10339
10451
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
10340
10452
|
#
|
10341
|
-
# UI name: [Error status time][
|
10453
|
+
# UI name: [Error status time][114]
|
10342
10454
|
#
|
10343
10455
|
# SUM\_HANDLE\_TIME
|
10344
10456
|
#
|
@@ -10347,7 +10459,7 @@ module Aws::Connect
|
|
10347
10459
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
10348
10460
|
# Agent Hierarchy, Q in Connect
|
10349
10461
|
#
|
10350
|
-
# UI name: [Contact handle time][
|
10462
|
+
# UI name: [Contact handle time][115]
|
10351
10463
|
#
|
10352
10464
|
# SUM\_HOLD\_TIME
|
10353
10465
|
#
|
@@ -10356,7 +10468,7 @@ module Aws::Connect
|
|
10356
10468
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
10357
10469
|
# Agent Hierarchy, Q in Connect
|
10358
10470
|
#
|
10359
|
-
# UI name: [Customer hold time][
|
10471
|
+
# UI name: [Customer hold time][116]
|
10360
10472
|
#
|
10361
10473
|
# SUM\_IDLE\_TIME\_AGENT
|
10362
10474
|
#
|
@@ -10364,7 +10476,7 @@ module Aws::Connect
|
|
10364
10476
|
#
|
10365
10477
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
10366
10478
|
#
|
10367
|
-
# UI name: [Agent idle time][
|
10479
|
+
# UI name: [Agent idle time][117]
|
10368
10480
|
#
|
10369
10481
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
10370
10482
|
#
|
@@ -10373,7 +10485,7 @@ module Aws::Connect
|
|
10373
10485
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
10374
10486
|
# Agent Hierarchy, Q in Connect
|
10375
10487
|
#
|
10376
|
-
# UI name: [Agent interaction and hold time][
|
10488
|
+
# UI name: [Agent interaction and hold time][118]
|
10377
10489
|
#
|
10378
10490
|
# SUM\_INTERACTION\_TIME
|
10379
10491
|
#
|
@@ -10382,7 +10494,7 @@ module Aws::Connect
|
|
10382
10494
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
10383
10495
|
# Agent Hierarchy
|
10384
10496
|
#
|
10385
|
-
# UI name: [Agent interaction time][
|
10497
|
+
# UI name: [Agent interaction time][119]
|
10386
10498
|
#
|
10387
10499
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
10388
10500
|
#
|
@@ -10390,7 +10502,7 @@ module Aws::Connect
|
|
10390
10502
|
#
|
10391
10503
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
10392
10504
|
#
|
10393
|
-
# UI name: [Agent non-productive time][
|
10505
|
+
# UI name: [Agent non-productive time][120]
|
10394
10506
|
#
|
10395
10507
|
# SUM\_ONLINE\_TIME\_AGENT
|
10396
10508
|
#
|
@@ -10398,7 +10510,7 @@ module Aws::Connect
|
|
10398
10510
|
#
|
10399
10511
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
10400
10512
|
#
|
10401
|
-
# UI name: [Online time][
|
10513
|
+
# UI name: [Online time][121]
|
10402
10514
|
#
|
10403
10515
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
10404
10516
|
#
|
@@ -10407,7 +10519,7 @@ module Aws::Connect
|
|
10407
10519
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10408
10520
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10409
10521
|
#
|
10410
|
-
# UI name: [Callback attempts][
|
10522
|
+
# UI name: [Callback attempts][122]
|
10411
10523
|
#
|
10412
10524
|
#
|
10413
10525
|
#
|
@@ -10456,81 +10568,83 @@ module Aws::Connect
|
|
10456
10568
|
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-messages
|
10457
10569
|
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-non-talk-time
|
10458
10570
|
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time
|
10459
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
10460
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
10461
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
10462
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
10463
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
10464
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
10465
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
10466
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
10467
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10468
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10469
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
10470
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
10471
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
10472
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
10473
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
10474
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
10475
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10476
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10477
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10478
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10479
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10480
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10481
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-
|
10482
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10483
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10484
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10485
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10486
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10487
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10488
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10489
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10490
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10491
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
10492
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10493
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10494
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10495
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10496
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10497
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10498
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10499
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10500
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10501
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10502
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10503
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10504
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10505
|
-
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10506
|
-
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
10507
|
-
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
10508
|
-
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10509
|
-
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10510
|
-
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10511
|
-
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10512
|
-
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10513
|
-
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10514
|
-
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-
|
10515
|
-
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10516
|
-
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10517
|
-
# [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10518
|
-
# [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10519
|
-
# [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10520
|
-
# [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10521
|
-
# [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
10522
|
-
# [109]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10523
|
-
# [110]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10524
|
-
# [111]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-
|
10525
|
-
# [112]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10526
|
-
# [113]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-
|
10527
|
-
# [114]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10528
|
-
# [115]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10529
|
-
# [116]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10530
|
-
# [117]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-
|
10531
|
-
# [118]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-
|
10532
|
-
# [119]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10533
|
-
# [120]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
10571
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time-customer-first-callback
|
10572
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-response-time-agent
|
10573
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-time-agent
|
10574
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-resolution-time
|
10575
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-talk-time
|
10576
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-talk-time
|
10577
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-talk-time
|
10578
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection
|
10579
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection-customer-first-callback
|
10580
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-weighted-evaluation-score
|
10581
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed
|
10582
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed
|
10583
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x
|
10584
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x-rate
|
10585
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-interactions
|
10586
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-progress-rate
|
10587
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-attempts
|
10588
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-exclusions
|
10589
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-created
|
10590
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-created
|
10591
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled
|
10592
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-by-connected-to-agent-timestamp
|
10593
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
|
10594
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-agent-disconnect
|
10595
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-customer-disconnect
|
10596
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-put-on-hold
|
10597
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-external
|
10598
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-internal
|
10599
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
|
10600
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued-by-enqueue
|
10601
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-removed-from-queue
|
10602
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-resolved
|
10603
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
10604
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-by-agent
|
10605
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
|
10606
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#current-cases
|
10607
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#conversations-abandoned
|
10608
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempts
|
10609
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempt-disposition-rate
|
10610
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#evaluations-performed
|
10611
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
|
10612
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-started
|
10613
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#human-answered
|
10614
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-flow-time
|
10615
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-queued-time
|
10616
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
|
10617
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#automatic-fails-percent
|
10618
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome
|
10619
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome
|
10620
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved-on-first-contact
|
10621
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome-percentage
|
10622
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-talk-time-percent
|
10623
|
+
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#talk-time-percent
|
10624
|
+
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-talk-time-percent
|
10625
|
+
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-talk-time-percent
|
10626
|
+
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-attempted
|
10627
|
+
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-interacted
|
10628
|
+
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-targeted
|
10629
|
+
# [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-reopened
|
10630
|
+
# [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved
|
10631
|
+
# [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
|
10632
|
+
# [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-api-connecting-time
|
10633
|
+
# [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
|
10634
|
+
# [109]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned-in-x-seconds
|
10635
|
+
# [110]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-answered-in-x-seconds
|
10636
|
+
# [111]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-flow-time
|
10637
|
+
# [112]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-on-contact-time
|
10638
|
+
# [113]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-disconnected
|
10639
|
+
# [114]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#error-status-time
|
10640
|
+
# [115]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-handle-time
|
10641
|
+
# [116]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-hold-time
|
10642
|
+
# [117]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-idle-time
|
10643
|
+
# [118]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-and-hold-time
|
10644
|
+
# [119]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-time
|
10645
|
+
# [120]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-productive-time
|
10646
|
+
# [121]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#online-time
|
10647
|
+
# [122]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-attempts
|
10534
10648
|
#
|
10535
10649
|
# @option params [String] :next_token
|
10536
10650
|
# The token for the next set of results. Use the value returned in the
|
@@ -12489,14 +12603,29 @@ module Aws::Connect
|
|
12489
12603
|
end
|
12490
12604
|
|
12491
12605
|
# Lists predefined attributes for the specified Amazon Connect instance.
|
12492
|
-
# *
|
12493
|
-
#
|
12494
|
-
#
|
12495
|
-
#
|
12606
|
+
# A *predefined attribute* is made up of a name and a value. You can use
|
12607
|
+
# predefined attributes for:
|
12608
|
+
#
|
12609
|
+
# * Routing proficiency (for example, agent certification) that has
|
12610
|
+
# predefined values (for example, a list of possible certifications).
|
12611
|
+
# For more information, see [Create predefined attributes for routing
|
12612
|
+
# contacts to agents][1].
|
12613
|
+
#
|
12614
|
+
# * Contact information that varies between transfers or conferences,
|
12615
|
+
# such as the name of the business unit handling the contact. For more
|
12616
|
+
# information, see [Use contact segment attributes][2].
|
12617
|
+
#
|
12618
|
+
# For the predefined attributes per instance quota, see [Amazon Connect
|
12619
|
+
# quotas][3].
|
12620
|
+
#
|
12621
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][4].
|
12496
12622
|
#
|
12497
12623
|
#
|
12498
12624
|
#
|
12499
12625
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
|
12626
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html
|
12627
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
12628
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
12500
12629
|
#
|
12501
12630
|
# @option params [required, String] :instance_id
|
12502
12631
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -15070,15 +15199,30 @@ module Aws::Connect
|
|
15070
15199
|
req.send_request(options)
|
15071
15200
|
end
|
15072
15201
|
|
15073
|
-
# Searches predefined attributes that meet certain criteria.
|
15074
|
-
#
|
15075
|
-
#
|
15076
|
-
#
|
15077
|
-
#
|
15202
|
+
# Searches predefined attributes that meet certain criteria. A
|
15203
|
+
# *predefined attribute* is made up of a name and a value. You can use
|
15204
|
+
# predefined attributes for:
|
15205
|
+
#
|
15206
|
+
# * Routing proficiency (for example, agent certification) that has
|
15207
|
+
# predefined values (for example, a list of possible certifications).
|
15208
|
+
# For more information, see [Create predefined attributes for routing
|
15209
|
+
# contacts to agents][1].
|
15210
|
+
#
|
15211
|
+
# * Contact information that varies between transfers or conferences,
|
15212
|
+
# such as the name of the business unit handling the contact. For more
|
15213
|
+
# information, see [Use contact segment attributes][2].
|
15214
|
+
#
|
15215
|
+
# For the predefined attributes per instance quota, see [Amazon Connect
|
15216
|
+
# quotas][3].
|
15217
|
+
#
|
15218
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][4].
|
15078
15219
|
#
|
15079
15220
|
#
|
15080
15221
|
#
|
15081
15222
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
|
15223
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html
|
15224
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
15225
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
15082
15226
|
#
|
15083
15227
|
# @option params [required, String] :instance_id
|
15084
15228
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -15134,6 +15278,10 @@ module Aws::Connect
|
|
15134
15278
|
# resp.predefined_attributes[0].name #=> String
|
15135
15279
|
# resp.predefined_attributes[0].values.string_list #=> Array
|
15136
15280
|
# resp.predefined_attributes[0].values.string_list[0] #=> String
|
15281
|
+
# resp.predefined_attributes[0].purposes #=> Array
|
15282
|
+
# resp.predefined_attributes[0].purposes[0] #=> String
|
15283
|
+
# resp.predefined_attributes[0].attribute_configuration.enable_value_validation_on_association #=> Boolean
|
15284
|
+
# resp.predefined_attributes[0].attribute_configuration.is_read_only #=> Boolean
|
15137
15285
|
# resp.predefined_attributes[0].last_modified_time #=> Time
|
15138
15286
|
# resp.predefined_attributes[0].last_modified_region #=> String
|
15139
15287
|
# resp.next_token #=> String
|
@@ -16111,6 +16259,7 @@ module Aws::Connect
|
|
16111
16259
|
# resp.users[0].phone_config.auto_accept #=> Boolean
|
16112
16260
|
# resp.users[0].phone_config.after_contact_work_time_limit #=> Integer
|
16113
16261
|
# resp.users[0].phone_config.desk_phone_number #=> String
|
16262
|
+
# resp.users[0].phone_config.persistent_connection #=> Boolean
|
16114
16263
|
# resp.users[0].routing_profile_id #=> String
|
16115
16264
|
# resp.users[0].security_profile_ids #=> Array
|
16116
16265
|
# resp.users[0].security_profile_ids[0] #=> String
|
@@ -16702,6 +16851,12 @@ module Aws::Connect
|
|
16702
16851
|
# },
|
16703
16852
|
# },
|
16704
16853
|
# value_integer: 1,
|
16854
|
+
# value_list: [
|
16855
|
+
# {
|
16856
|
+
# # recursive SegmentAttributeValue
|
16857
|
+
# },
|
16858
|
+
# ],
|
16859
|
+
# value_arn: "SegmentAttributeValueString",
|
16705
16860
|
# },
|
16706
16861
|
# },
|
16707
16862
|
# customer_id: "CustomerIdNonEmpty",
|
@@ -17098,6 +17253,12 @@ module Aws::Connect
|
|
17098
17253
|
# },
|
17099
17254
|
# },
|
17100
17255
|
# value_integer: 1,
|
17256
|
+
# value_list: [
|
17257
|
+
# {
|
17258
|
+
# # recursive SegmentAttributeValue
|
17259
|
+
# },
|
17260
|
+
# ],
|
17261
|
+
# value_arn: "SegmentAttributeValueString",
|
17101
17262
|
# },
|
17102
17263
|
# },
|
17103
17264
|
# client_token: "ClientToken",
|
@@ -17258,6 +17419,12 @@ module Aws::Connect
|
|
17258
17419
|
# },
|
17259
17420
|
# },
|
17260
17421
|
# value_integer: 1,
|
17422
|
+
# value_list: [
|
17423
|
+
# {
|
17424
|
+
# # recursive SegmentAttributeValue
|
17425
|
+
# },
|
17426
|
+
# ],
|
17427
|
+
# value_arn: "SegmentAttributeValueString",
|
17261
17428
|
# },
|
17262
17429
|
# },
|
17263
17430
|
# attributes: {
|
@@ -17819,6 +17986,12 @@ module Aws::Connect
|
|
17819
17986
|
# },
|
17820
17987
|
# },
|
17821
17988
|
# value_integer: 1,
|
17989
|
+
# value_list: [
|
17990
|
+
# {
|
17991
|
+
# # recursive SegmentAttributeValue
|
17992
|
+
# },
|
17993
|
+
# ],
|
17994
|
+
# value_arn: "SegmentAttributeValueString",
|
17822
17995
|
# },
|
17823
17996
|
# },
|
17824
17997
|
# })
|
@@ -18649,8 +18822,9 @@ module Aws::Connect
|
|
18649
18822
|
# This field can be used to show channel subtype, such as
|
18650
18823
|
# `connect:Guide`.
|
18651
18824
|
#
|
18652
|
-
#
|
18653
|
-
# updated by using the
|
18825
|
+
# Contact Expiry, and user-defined attributes (String - String) that are
|
18826
|
+
# defined in predefined attributes, can be updated by using the
|
18827
|
+
# UpdateContact API.
|
18654
18828
|
#
|
18655
18829
|
# @option params [Types::QueueInfoInput] :queue_info
|
18656
18830
|
# Information about the queue associated with a contact. This parameter
|
@@ -18723,6 +18897,12 @@ module Aws::Connect
|
|
18723
18897
|
# },
|
18724
18898
|
# },
|
18725
18899
|
# value_integer: 1,
|
18900
|
+
# value_list: [
|
18901
|
+
# {
|
18902
|
+
# # recursive SegmentAttributeValue
|
18903
|
+
# },
|
18904
|
+
# ],
|
18905
|
+
# value_arn: "SegmentAttributeValueString",
|
18726
18906
|
# },
|
18727
18907
|
# },
|
18728
18908
|
# queue_info: {
|
@@ -19572,7 +19752,7 @@ module Aws::Connect
|
|
19572
19752
|
# The date from when the hours of operation override would be effective.
|
19573
19753
|
#
|
19574
19754
|
# @option params [String] :effective_till
|
19575
|
-
# The date
|
19755
|
+
# The date until the hours of operation override is effective.
|
19576
19756
|
#
|
19577
19757
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
19578
19758
|
#
|
@@ -20006,14 +20186,34 @@ module Aws::Connect
|
|
20006
20186
|
end
|
20007
20187
|
|
20008
20188
|
# Updates a predefined attribute for the specified Amazon Connect
|
20009
|
-
# instance. *
|
20010
|
-
#
|
20011
|
-
#
|
20012
|
-
#
|
20189
|
+
# instance. A *predefined attribute* is made up of a name and a value.
|
20190
|
+
#
|
20191
|
+
# For the predefined attributes per instance quota, see [Amazon Connect
|
20192
|
+
# quotas][1].
|
20013
20193
|
#
|
20194
|
+
# **Use cases**
|
20014
20195
|
#
|
20196
|
+
# Following are common uses cases for this API:
|
20197
|
+
#
|
20198
|
+
# * Update routing proficiency (for example, agent certification) that
|
20199
|
+
# has predefined values (for example, a list of possible
|
20200
|
+
# certifications). For more information, see [Create predefined
|
20201
|
+
# attributes for routing contacts to agents][2].
|
20202
|
+
#
|
20203
|
+
# * Update an attribute for business unit name that has a list of
|
20204
|
+
# predefined business unit names used in your organization. This is a
|
20205
|
+
# use case where information for a contact varies between transfers or
|
20206
|
+
# conferences. For more information, see [Use contact segment
|
20207
|
+
# attributes][3].
|
20208
|
+
#
|
20209
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][4].
|
20015
20210
|
#
|
20016
|
-
#
|
20211
|
+
#
|
20212
|
+
#
|
20213
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
20214
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
|
20215
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html
|
20216
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
20017
20217
|
#
|
20018
20218
|
# @option params [required, String] :instance_id
|
20019
20219
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -20025,6 +20225,16 @@ module Aws::Connect
|
|
20025
20225
|
# @option params [Types::PredefinedAttributeValues] :values
|
20026
20226
|
# The values of the predefined attribute.
|
20027
20227
|
#
|
20228
|
+
# @option params [Array<String>] :purposes
|
20229
|
+
# Values that enable you to categorize your predefined attributes. You
|
20230
|
+
# can use them in custom UI elements across the Amazon Connect admin
|
20231
|
+
# website.
|
20232
|
+
#
|
20233
|
+
# @option params [Types::InputPredefinedAttributeConfiguration] :attribute_configuration
|
20234
|
+
# Custom metadata that is associated to predefined attributes to control
|
20235
|
+
# behavior in upstream services, such as controlling how a predefined
|
20236
|
+
# attribute should be displayed in the Amazon Connect admin website.
|
20237
|
+
#
|
20028
20238
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
20029
20239
|
#
|
20030
20240
|
# @example Request syntax with placeholder values
|
@@ -20035,6 +20245,10 @@ module Aws::Connect
|
|
20035
20245
|
# values: {
|
20036
20246
|
# string_list: ["PredefinedAttributeStringValue"],
|
20037
20247
|
# },
|
20248
|
+
# purposes: ["PredefinedAttributePurposeName"],
|
20249
|
+
# attribute_configuration: {
|
20250
|
+
# enable_value_validation_on_association: false,
|
20251
|
+
# },
|
20038
20252
|
# })
|
20039
20253
|
#
|
20040
20254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdatePredefinedAttribute AWS API Documentation
|
@@ -21314,6 +21528,7 @@ module Aws::Connect
|
|
21314
21528
|
# auto_accept: false,
|
21315
21529
|
# after_contact_work_time_limit: 1,
|
21316
21530
|
# desk_phone_number: "PhoneNumber",
|
21531
|
+
# persistent_connection: false,
|
21317
21532
|
# },
|
21318
21533
|
# user_id: "UserId", # required
|
21319
21534
|
# instance_id: "InstanceId", # required
|
@@ -21562,7 +21777,7 @@ module Aws::Connect
|
|
21562
21777
|
tracer: tracer
|
21563
21778
|
)
|
21564
21779
|
context[:gem_name] = 'aws-sdk-connect'
|
21565
|
-
context[:gem_version] = '1.
|
21780
|
+
context[:gem_version] = '1.217.0'
|
21566
21781
|
Seahorse::Client::Request.new(handlers, context)
|
21567
21782
|
end
|
21568
21783
|
|