aws-sdk-connect 1.187.0 → 1.189.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +483 -189
- data/lib/aws-sdk-connect/client_api.rb +75 -0
- data/lib/aws-sdk-connect/types.rb +519 -182
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +61 -13
- data/sig/types.rbs +55 -10
- metadata +2 -2
@@ -683,6 +683,12 @@ module Aws::Connect
|
|
683
683
|
# @option params [required, String] :resource_id
|
684
684
|
# The identifier of the resource.
|
685
685
|
#
|
686
|
+
# * Amazon Web Services End User Messaging SMS phone number ARN when
|
687
|
+
# using `SMS_PHONE_NUMBER`
|
688
|
+
#
|
689
|
+
# * Amazon Web Services End User Messaging Social phone number ARN when
|
690
|
+
# using `WHATSAPP_MESSAGING_PHONE_NUMBER`
|
691
|
+
#
|
686
692
|
# @option params [required, String] :flow_id
|
687
693
|
# The identifier of the flow.
|
688
694
|
#
|
@@ -697,7 +703,7 @@ module Aws::Connect
|
|
697
703
|
# instance_id: "InstanceId", # required
|
698
704
|
# resource_id: "ARN", # required
|
699
705
|
# flow_id: "ARN", # required
|
700
|
-
# resource_type: "SMS_PHONE_NUMBER", # required, accepts SMS_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL
|
706
|
+
# resource_type: "SMS_PHONE_NUMBER", # required, accepts SMS_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL, ANALYTICS_CONNECTOR, WHATSAPP_MESSAGING_PHONE_NUMBER
|
701
707
|
# })
|
702
708
|
#
|
703
709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateFlow AWS API Documentation
|
@@ -1309,6 +1315,12 @@ module Aws::Connect
|
|
1309
1315
|
# @option params [required, Array<String>] :resource_ids
|
1310
1316
|
# A list of resource identifiers to retrieve flow associations.
|
1311
1317
|
#
|
1318
|
+
# * Amazon Web Services End User Messaging SMS phone number ARN when
|
1319
|
+
# using `SMS_PHONE_NUMBER`
|
1320
|
+
#
|
1321
|
+
# * Amazon Web Services End User Messaging Social phone number ARN when
|
1322
|
+
# using `WHATSAPP_MESSAGING_PHONE_NUMBER`
|
1323
|
+
#
|
1312
1324
|
# @option params [String] :resource_type
|
1313
1325
|
# The type of resource association.
|
1314
1326
|
#
|
@@ -1321,7 +1333,7 @@ module Aws::Connect
|
|
1321
1333
|
# resp = client.batch_get_flow_association({
|
1322
1334
|
# instance_id: "InstanceId", # required
|
1323
1335
|
# resource_ids: ["ARN"], # required
|
1324
|
-
# resource_type: "
|
1336
|
+
# resource_type: "WHATSAPP_MESSAGING_PHONE_NUMBER", # accepts WHATSAPP_MESSAGING_PHONE_NUMBER, VOICE_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL, ANALYTICS_CONNECTOR
|
1325
1337
|
# })
|
1326
1338
|
#
|
1327
1339
|
# @example Response structure
|
@@ -1329,7 +1341,7 @@ module Aws::Connect
|
|
1329
1341
|
# resp.flow_association_summary_list #=> Array
|
1330
1342
|
# resp.flow_association_summary_list[0].resource_id #=> String
|
1331
1343
|
# resp.flow_association_summary_list[0].flow_id #=> String
|
1332
|
-
# resp.flow_association_summary_list[0].resource_type #=> String, one of "VOICE_PHONE_NUMBER", "INBOUND_EMAIL", "OUTBOUND_EMAIL"
|
1344
|
+
# resp.flow_association_summary_list[0].resource_type #=> String, one of "WHATSAPP_MESSAGING_PHONE_NUMBER", "VOICE_PHONE_NUMBER", "INBOUND_EMAIL", "OUTBOUND_EMAIL", "ANALYTICS_CONNECTOR"
|
1333
1345
|
#
|
1334
1346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/BatchGetFlowAssociation AWS API Documentation
|
1335
1347
|
#
|
@@ -2376,8 +2388,9 @@ module Aws::Connect
|
|
2376
2388
|
# @option params [required, String] :integration_arn
|
2377
2389
|
# The Amazon Resource Name (ARN) of the integration.
|
2378
2390
|
#
|
2379
|
-
# <note markdown="1"> When integrating with Amazon
|
2380
|
-
#
|
2391
|
+
# <note markdown="1"> When integrating with Amazon Web Services End User Messaging, the
|
2392
|
+
# Amazon Connect and Amazon Web Services End User Messaging instances
|
2393
|
+
# must be in the same account.
|
2381
2394
|
#
|
2382
2395
|
# </note>
|
2383
2396
|
#
|
@@ -2407,7 +2420,7 @@ module Aws::Connect
|
|
2407
2420
|
#
|
2408
2421
|
# resp = client.create_integration_association({
|
2409
2422
|
# instance_id: "InstanceId", # required
|
2410
|
-
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY
|
2423
|
+
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY, ANALYTICS_CONNECTOR, CALL_TRANSFER_CONNECTOR
|
2411
2424
|
# integration_arn: "ARN", # required
|
2412
2425
|
# source_application_url: "URI",
|
2413
2426
|
# source_application_name: "SourceApplicationName",
|
@@ -2733,6 +2746,80 @@ module Aws::Connect
|
|
2733
2746
|
req.send_request(options)
|
2734
2747
|
end
|
2735
2748
|
|
2749
|
+
# Creates registration for a device token and a chat contact to receive
|
2750
|
+
# real-time push notifications. For more information about push
|
2751
|
+
# notifications, see [Set up push notifications in Amazon Connect for
|
2752
|
+
# mobile chat][1] in the *Amazon Connect Administrator Guide*.
|
2753
|
+
#
|
2754
|
+
#
|
2755
|
+
#
|
2756
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/set-up-push-notifications-for-mobile-chat.html
|
2757
|
+
#
|
2758
|
+
# @option params [required, String] :instance_id
|
2759
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2760
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2761
|
+
#
|
2762
|
+
#
|
2763
|
+
#
|
2764
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2765
|
+
#
|
2766
|
+
# @option params [String] :client_token
|
2767
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
2768
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
2769
|
+
# SDK populates this field. For more information about idempotency, see
|
2770
|
+
# [Making retries safe with idempotent APIs][1].
|
2771
|
+
#
|
2772
|
+
# **A suitable default value is auto-generated.** You should normally
|
2773
|
+
# not need to pass this option.**
|
2774
|
+
#
|
2775
|
+
#
|
2776
|
+
#
|
2777
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
2778
|
+
#
|
2779
|
+
# @option params [required, String] :pinpoint_app_arn
|
2780
|
+
# The Amazon Resource Name (ARN) of the Pinpoint application.
|
2781
|
+
#
|
2782
|
+
# @option params [required, String] :device_token
|
2783
|
+
# The push notification token issued by the Apple or Google gateways.
|
2784
|
+
#
|
2785
|
+
# @option params [required, String] :device_type
|
2786
|
+
# The device type to use when sending the message.
|
2787
|
+
#
|
2788
|
+
# @option params [required, Types::ContactConfiguration] :contact_configuration
|
2789
|
+
# The contact configuration for push notification registration.
|
2790
|
+
#
|
2791
|
+
# @return [Types::CreatePushNotificationRegistrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2792
|
+
#
|
2793
|
+
# * {Types::CreatePushNotificationRegistrationResponse#registration_id #registration_id} => String
|
2794
|
+
#
|
2795
|
+
# @example Request syntax with placeholder values
|
2796
|
+
#
|
2797
|
+
# resp = client.create_push_notification_registration({
|
2798
|
+
# instance_id: "InstanceId", # required
|
2799
|
+
# client_token: "ClientToken",
|
2800
|
+
# pinpoint_app_arn: "ARN", # required
|
2801
|
+
# device_token: "DeviceToken", # required
|
2802
|
+
# device_type: "GCM", # required, accepts GCM, APNS, APNS_SANDBOX
|
2803
|
+
# contact_configuration: { # required
|
2804
|
+
# contact_id: "ContactId", # required
|
2805
|
+
# participant_role: "AGENT", # accepts AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR
|
2806
|
+
# include_raw_message: false,
|
2807
|
+
# },
|
2808
|
+
# })
|
2809
|
+
#
|
2810
|
+
# @example Response structure
|
2811
|
+
#
|
2812
|
+
# resp.registration_id #=> String
|
2813
|
+
#
|
2814
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreatePushNotificationRegistration AWS API Documentation
|
2815
|
+
#
|
2816
|
+
# @overload create_push_notification_registration(params = {})
|
2817
|
+
# @param [Hash] params ({})
|
2818
|
+
def create_push_notification_registration(params = {}, options = {})
|
2819
|
+
req = build_request(:create_push_notification_registration, params)
|
2820
|
+
req.send_request(options)
|
2821
|
+
end
|
2822
|
+
|
2736
2823
|
# This API is in preview release for Amazon Connect and is subject to
|
2737
2824
|
# change.
|
2738
2825
|
#
|
@@ -4364,6 +4451,41 @@ module Aws::Connect
|
|
4364
4451
|
req.send_request(options)
|
4365
4452
|
end
|
4366
4453
|
|
4454
|
+
# Deletes registration for a device token and a chat contact.
|
4455
|
+
#
|
4456
|
+
# @option params [required, String] :instance_id
|
4457
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4458
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4459
|
+
#
|
4460
|
+
#
|
4461
|
+
#
|
4462
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4463
|
+
#
|
4464
|
+
# @option params [required, String] :registration_id
|
4465
|
+
# The identifier for the registration.
|
4466
|
+
#
|
4467
|
+
# @option params [required, String] :contact_id
|
4468
|
+
# The identifier of the contact within the Amazon Connect instance.
|
4469
|
+
#
|
4470
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4471
|
+
#
|
4472
|
+
# @example Request syntax with placeholder values
|
4473
|
+
#
|
4474
|
+
# resp = client.delete_push_notification_registration({
|
4475
|
+
# instance_id: "InstanceId", # required
|
4476
|
+
# registration_id: "RegistrationId", # required
|
4477
|
+
# contact_id: "ContactId", # required
|
4478
|
+
# })
|
4479
|
+
#
|
4480
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeletePushNotificationRegistration AWS API Documentation
|
4481
|
+
#
|
4482
|
+
# @overload delete_push_notification_registration(params = {})
|
4483
|
+
# @param [Hash] params ({})
|
4484
|
+
def delete_push_notification_registration(params = {}, options = {})
|
4485
|
+
req = build_request(:delete_push_notification_registration, params)
|
4486
|
+
req.send_request(options)
|
4487
|
+
end
|
4488
|
+
|
4367
4489
|
# Deletes a queue. It isn't possible to delete a queue by using the
|
4368
4490
|
# Amazon Connect admin website.
|
4369
4491
|
#
|
@@ -5637,7 +5759,7 @@ module Aws::Connect
|
|
5637
5759
|
# calling this API in the alternate Amazon Web Services Region
|
5638
5760
|
# associated with the traffic distribution group, you must provide a
|
5639
5761
|
# full phone number ARN. If a UUID is provided in this scenario, you
|
5640
|
-
#
|
5762
|
+
# receive a `ResourceNotFoundException`.
|
5641
5763
|
#
|
5642
5764
|
# @option params [required, String] :phone_number_id
|
5643
5765
|
# A unique identifier for the phone number.
|
@@ -6536,6 +6658,12 @@ module Aws::Connect
|
|
6536
6658
|
# @option params [required, String] :resource_id
|
6537
6659
|
# The identifier of the resource.
|
6538
6660
|
#
|
6661
|
+
# * Amazon Web Services End User Messaging SMS phone number ARN when
|
6662
|
+
# using `SMS_PHONE_NUMBER`
|
6663
|
+
#
|
6664
|
+
# * Amazon Web Services End User Messaging Social phone number ARN when
|
6665
|
+
# using `WHATSAPP_MESSAGING_PHONE_NUMBER`
|
6666
|
+
#
|
6539
6667
|
# @option params [required, String] :resource_type
|
6540
6668
|
# A valid resource type.
|
6541
6669
|
#
|
@@ -6546,7 +6674,7 @@ module Aws::Connect
|
|
6546
6674
|
# resp = client.disassociate_flow({
|
6547
6675
|
# instance_id: "InstanceId", # required
|
6548
6676
|
# resource_id: "ARN", # required
|
6549
|
-
# resource_type: "SMS_PHONE_NUMBER", # required, accepts SMS_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL
|
6677
|
+
# resource_type: "SMS_PHONE_NUMBER", # required, accepts SMS_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL, ANALYTICS_CONNECTOR, WHATSAPP_MESSAGING_PHONE_NUMBER
|
6550
6678
|
# })
|
6551
6679
|
#
|
6552
6680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateFlow AWS API Documentation
|
@@ -7505,6 +7633,12 @@ module Aws::Connect
|
|
7505
7633
|
# @option params [required, String] :resource_id
|
7506
7634
|
# The identifier of the resource.
|
7507
7635
|
#
|
7636
|
+
# * Amazon Web Services End User Messaging SMS phone number ARN when
|
7637
|
+
# using `SMS_PHONE_NUMBER`
|
7638
|
+
#
|
7639
|
+
# * Amazon Web Services End User Messaging Social phone number ARN when
|
7640
|
+
# using `WHATSAPP_MESSAGING_PHONE_NUMBER`
|
7641
|
+
#
|
7508
7642
|
# @option params [required, String] :resource_type
|
7509
7643
|
# A valid resource type.
|
7510
7644
|
#
|
@@ -7519,14 +7653,14 @@ module Aws::Connect
|
|
7519
7653
|
# resp = client.get_flow_association({
|
7520
7654
|
# instance_id: "InstanceId", # required
|
7521
7655
|
# resource_id: "ARN", # required
|
7522
|
-
# resource_type: "SMS_PHONE_NUMBER", # required, accepts SMS_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL
|
7656
|
+
# resource_type: "SMS_PHONE_NUMBER", # required, accepts SMS_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL, ANALYTICS_CONNECTOR, WHATSAPP_MESSAGING_PHONE_NUMBER
|
7523
7657
|
# })
|
7524
7658
|
#
|
7525
7659
|
# @example Response structure
|
7526
7660
|
#
|
7527
7661
|
# resp.resource_id #=> String
|
7528
7662
|
# resp.flow_id #=> String
|
7529
|
-
# resp.resource_type #=> String, one of "SMS_PHONE_NUMBER", "INBOUND_EMAIL", "OUTBOUND_EMAIL"
|
7663
|
+
# resp.resource_type #=> String, one of "SMS_PHONE_NUMBER", "INBOUND_EMAIL", "OUTBOUND_EMAIL", "ANALYTICS_CONNECTOR", "WHATSAPP_MESSAGING_PHONE_NUMBER"
|
7530
7664
|
#
|
7531
7665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetFlowAssociation AWS API Documentation
|
7532
7666
|
#
|
@@ -7960,14 +8094,18 @@ module Aws::Connect
|
|
7960
8094
|
# `AGENT_HIERARCHY_LEVEL_ONE` \| `AGENT_HIERARCHY_LEVEL_TWO` \|
|
7961
8095
|
# `AGENT_HIERARCHY_LEVEL_THREE` \| `AGENT_HIERARCHY_LEVEL_FOUR` \|
|
7962
8096
|
# `AGENT_HIERARCHY_LEVEL_FIVE` \| `ANSWERING_MACHINE_DETECTION_STATUS`
|
7963
|
-
# \| `
|
8097
|
+
# \| ` BOT_ID` \| `BOT_ALIAS` \| `BOT_VERSION` \| `BOT_LOCALE` \|
|
8098
|
+
# `BOT_INTENT_NAME` \| `CAMPAIGN` \| `CAMPAIGN_DELIVERY_EVENT_TYPE`
|
7964
8099
|
# \|`CASE_TEMPLATE_ARN` \| `CASE_STATUS` \| `CHANNEL` \|
|
7965
8100
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
7966
|
-
# \| `FEATURE` \| `
|
8101
|
+
# \| `FEATURE` \| `FLOW_ACTION_ID` \| `FLOW_TYPE` \|
|
8102
|
+
# `FLOWS_MODULE_RESOURCE_ID` \| `FLOWS_NEXT_RESOURCE_ID` \|
|
7967
8103
|
# `FLOWS_NEXT_RESOURCE_QUEUE_ID` \| `FLOWS_OUTCOME_TYPE` \|
|
7968
8104
|
# `FLOWS_RESOURCE_ID` \| `INITIATION_METHOD` \|
|
7969
|
-
# `
|
7970
|
-
#
|
8105
|
+
# `INVOKING_RESOURCE_PUBLISHED_TIMESTAMP` \| `INVOKING_RESOURCE_TYPE`
|
8106
|
+
# \| `PARENT_FLOWS_RESOURCE_ID` \| `RESOURCE_PUBLISHED_TIMESTAMP` \|
|
8107
|
+
# `ROUTING_PROFILE` \| `ROUTING_STEP_EXPRESSION` \| `QUEUE` \|
|
8108
|
+
# `Q_CONNECT_ENABLED` \|
|
7971
8109
|
#
|
7972
8110
|
# * **Filter values**: A maximum of 100 filter values are supported in a
|
7973
8111
|
# single request. VOICE, CHAT, and TASK are valid `filterValue` for
|
@@ -8018,12 +8156,15 @@ module Aws::Connect
|
|
8018
8156
|
# Valid grouping keys: `AGENT` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
|
8019
8157
|
# `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
|
8020
8158
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
8021
|
-
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `
|
8159
|
+
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `BOT_ID` \| `BOT_ALIAS` \|
|
8160
|
+
# `BOT_VERSION` \| `BOT_LOCALE` \| `BOT_INTENT_NAME` \| `CAMPAIGN` \|
|
8022
8161
|
# `CAMPAIGN_DELIVERY_EVENT_TYPE` \| `CASE_TEMPLATE_ARN` \| `CASE_STATUS`
|
8023
8162
|
# \| `CHANNEL` \| `contact/segmentAttributes/connect:Subtype` \|
|
8024
8163
|
# `DISCONNECT_REASON` \| `FLOWS_RESOURCE_ID` \|
|
8025
|
-
# `FLOWS_MODULE_RESOURCE_ID` \| `
|
8026
|
-
# `
|
8164
|
+
# `FLOWS_MODULE_RESOURCE_ID` \| `FLOW_ACTION_ID` \| `FLOW_TYPE` \|
|
8165
|
+
# `FLOWS_OUTCOME_TYPE` \| `INITIATION_METHOD` \|
|
8166
|
+
# `INVOKING_RESOURCE_PUBLISHED_TIMESTAMP` \| `INVOKING_RESOURCE_TYPE` \|
|
8167
|
+
# `PARENT_FLOWS_RESOURCE_ID` \| `Q_CONNECT_ENABLED` \| `QUEUE` \|
|
8027
8168
|
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
8028
8169
|
# `ROUTING_STEP_EXPRESSION`
|
8029
8170
|
#
|
@@ -8188,6 +8329,30 @@ module Aws::Connect
|
|
8188
8329
|
#
|
8189
8330
|
# UI name: [Average agent pause time][16]
|
8190
8331
|
#
|
8332
|
+
# AVG\_BOT\_CONVERSATION\_TIME
|
8333
|
+
#
|
8334
|
+
# : Unit: Seconds
|
8335
|
+
#
|
8336
|
+
# Valid groupings and filters: Channel,
|
8337
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
8338
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
8339
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
8340
|
+
# Initiation method, Invoking resource type, Parent flows resource ID
|
8341
|
+
#
|
8342
|
+
# UI name: [Average bot conversation time][17]
|
8343
|
+
#
|
8344
|
+
# AVG\_BOT\_CONVERSATION\_TURNS
|
8345
|
+
#
|
8346
|
+
# : Unit: Count
|
8347
|
+
#
|
8348
|
+
# Valid groupings and filters: Channel,
|
8349
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
8350
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
8351
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
8352
|
+
# Initiation method, Invoking resource type, Parent flows resource ID
|
8353
|
+
#
|
8354
|
+
# UI name: [Average bot conversation turns][18]
|
8355
|
+
#
|
8191
8356
|
# AVG\_CASE\_RELATED\_CONTACTS
|
8192
8357
|
#
|
8193
8358
|
# : Unit: Count
|
@@ -8196,7 +8361,7 @@ module Aws::Connect
|
|
8196
8361
|
#
|
8197
8362
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8198
8363
|
#
|
8199
|
-
# UI name: [Average contacts per case][
|
8364
|
+
# UI name: [Average contacts per case][19]
|
8200
8365
|
#
|
8201
8366
|
# AVG\_CASE\_RESOLUTION\_TIME
|
8202
8367
|
#
|
@@ -8206,7 +8371,7 @@ module Aws::Connect
|
|
8206
8371
|
#
|
8207
8372
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8208
8373
|
#
|
8209
|
-
# UI name: [Average case resolution time][
|
8374
|
+
# UI name: [Average case resolution time][20]
|
8210
8375
|
#
|
8211
8376
|
# AVG\_CONTACT\_DURATION
|
8212
8377
|
#
|
@@ -8216,7 +8381,7 @@ module Aws::Connect
|
|
8216
8381
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8217
8382
|
# Q in Connect
|
8218
8383
|
#
|
8219
|
-
# UI name: [Average contact duration][
|
8384
|
+
# UI name: [Average contact duration][21]
|
8220
8385
|
#
|
8221
8386
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8222
8387
|
#
|
@@ -8230,7 +8395,7 @@ module Aws::Connect
|
|
8230
8395
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8231
8396
|
# Q in Connect
|
8232
8397
|
#
|
8233
|
-
# UI name: [Average conversation duration][
|
8398
|
+
# UI name: [Average conversation duration][22]
|
8234
8399
|
#
|
8235
8400
|
# AVG\_DIALS\_PER\_MINUTE
|
8236
8401
|
#
|
@@ -8241,7 +8406,7 @@ module Aws::Connect
|
|
8241
8406
|
#
|
8242
8407
|
# Valid groupings and filters: Agent, Campaign, Queue, Routing Profile
|
8243
8408
|
#
|
8244
|
-
# UI name: [Average dials per minute][
|
8409
|
+
# UI name: [Average dials per minute][23]
|
8245
8410
|
#
|
8246
8411
|
# AVG\_FLOW\_TIME
|
8247
8412
|
#
|
@@ -8253,7 +8418,7 @@ module Aws::Connect
|
|
8253
8418
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8254
8419
|
# published timestamp
|
8255
8420
|
#
|
8256
|
-
# UI name: [Average flow time][
|
8421
|
+
# UI name: [Average flow time][24]
|
8257
8422
|
#
|
8258
8423
|
# AVG\_GREETING\_TIME\_AGENT
|
8259
8424
|
#
|
@@ -8266,7 +8431,7 @@ module Aws::Connect
|
|
8266
8431
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8267
8432
|
# Connect
|
8268
8433
|
#
|
8269
|
-
# UI name: [Average agent greeting time][
|
8434
|
+
# UI name: [Average agent greeting time][25]
|
8270
8435
|
#
|
8271
8436
|
# AVG\_HANDLE\_TIME
|
8272
8437
|
#
|
@@ -8276,7 +8441,7 @@ module Aws::Connect
|
|
8276
8441
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8277
8442
|
# RoutingStepExpression
|
8278
8443
|
#
|
8279
|
-
# UI name: [Average handle time][
|
8444
|
+
# UI name: [Average handle time][26]
|
8280
8445
|
#
|
8281
8446
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8282
8447
|
#
|
@@ -8290,7 +8455,7 @@ module Aws::Connect
|
|
8290
8455
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8291
8456
|
# Q in Connect
|
8292
8457
|
#
|
8293
|
-
# UI name: [Average customer hold time][
|
8458
|
+
# UI name: [Average customer hold time][27]
|
8294
8459
|
#
|
8295
8460
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8296
8461
|
#
|
@@ -8304,7 +8469,7 @@ module Aws::Connect
|
|
8304
8469
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8305
8470
|
# Connect
|
8306
8471
|
#
|
8307
|
-
# UI name: [Average customer hold time all contacts][
|
8472
|
+
# UI name: [Average customer hold time all contacts][28]
|
8308
8473
|
#
|
8309
8474
|
# AVG\_HOLDS
|
8310
8475
|
#
|
@@ -8314,7 +8479,7 @@ module Aws::Connect
|
|
8314
8479
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8315
8480
|
# Q in Connect
|
8316
8481
|
#
|
8317
|
-
# UI name: [Average holds][
|
8482
|
+
# UI name: [Average holds][29]
|
8318
8483
|
#
|
8319
8484
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8320
8485
|
#
|
@@ -8328,7 +8493,7 @@ module Aws::Connect
|
|
8328
8493
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8329
8494
|
# Connect
|
8330
8495
|
#
|
8331
|
-
# UI name: [Average agent interaction and customer hold time][
|
8496
|
+
# UI name: [Average agent interaction and customer hold time][30]
|
8332
8497
|
#
|
8333
8498
|
# AVG\_INTERACTION\_TIME
|
8334
8499
|
#
|
@@ -8339,7 +8504,7 @@ module Aws::Connect
|
|
8339
8504
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8340
8505
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8341
8506
|
#
|
8342
|
-
# UI name: [Average agent interaction time][
|
8507
|
+
# UI name: [Average agent interaction time][31]
|
8343
8508
|
#
|
8344
8509
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8345
8510
|
#
|
@@ -8356,7 +8521,7 @@ module Aws::Connect
|
|
8356
8521
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8357
8522
|
# Connect
|
8358
8523
|
#
|
8359
|
-
# UI name: [Average agent interruptions][
|
8524
|
+
# UI name: [Average agent interruptions][32]
|
8360
8525
|
#
|
8361
8526
|
# AVG\_INTERRUPTION\_TIME\_AGENT
|
8362
8527
|
#
|
@@ -8369,7 +8534,7 @@ module Aws::Connect
|
|
8369
8534
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8370
8535
|
# Connect
|
8371
8536
|
#
|
8372
|
-
# UI name: [Average agent interruption time][
|
8537
|
+
# UI name: [Average agent interruption time][33]
|
8373
8538
|
#
|
8374
8539
|
# AVG\_NON\_TALK\_TIME
|
8375
8540
|
#
|
@@ -8382,7 +8547,7 @@ module Aws::Connect
|
|
8382
8547
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8383
8548
|
# Connect
|
8384
8549
|
#
|
8385
|
-
# UI name: [Average non-talk time][
|
8550
|
+
# UI name: [Average non-talk time][34]
|
8386
8551
|
#
|
8387
8552
|
# AVG\_QUEUE\_ANSWER\_TIME
|
8388
8553
|
#
|
@@ -8391,7 +8556,7 @@ module Aws::Connect
|
|
8391
8556
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8392
8557
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8393
8558
|
#
|
8394
|
-
# UI name: [Average queue answer time][
|
8559
|
+
# UI name: [Average queue answer time][35]
|
8395
8560
|
#
|
8396
8561
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8397
8562
|
#
|
@@ -8404,7 +8569,7 @@ module Aws::Connect
|
|
8404
8569
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8405
8570
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
8406
8571
|
#
|
8407
|
-
# UI name: [Average resolution time][
|
8572
|
+
# UI name: [Average resolution time][36]
|
8408
8573
|
#
|
8409
8574
|
# AVG\_TALK\_TIME
|
8410
8575
|
#
|
@@ -8417,7 +8582,7 @@ module Aws::Connect
|
|
8417
8582
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8418
8583
|
# Connect
|
8419
8584
|
#
|
8420
|
-
# UI name: [Average talk time][
|
8585
|
+
# UI name: [Average talk time][37]
|
8421
8586
|
#
|
8422
8587
|
# AVG\_TALK\_TIME\_AGENT
|
8423
8588
|
#
|
@@ -8430,7 +8595,7 @@ module Aws::Connect
|
|
8430
8595
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8431
8596
|
# Connect
|
8432
8597
|
#
|
8433
|
-
# UI name: [Average agent talk time][
|
8598
|
+
# UI name: [Average agent talk time][38]
|
8434
8599
|
#
|
8435
8600
|
# AVG\_TALK\_TIME\_CUSTOMER
|
8436
8601
|
#
|
@@ -8443,7 +8608,7 @@ module Aws::Connect
|
|
8443
8608
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8444
8609
|
# Connect
|
8445
8610
|
#
|
8446
|
-
# UI name: [Average customer talk time][
|
8611
|
+
# UI name: [Average customer talk time][39]
|
8447
8612
|
#
|
8448
8613
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
8449
8614
|
#
|
@@ -8454,7 +8619,32 @@ module Aws::Connect
|
|
8454
8619
|
#
|
8455
8620
|
# Valid groupings and filters: Campaign
|
8456
8621
|
#
|
8457
|
-
# UI name: [Average wait time after customer connection][
|
8622
|
+
# UI name: [Average wait time after customer connection][40]
|
8623
|
+
#
|
8624
|
+
# BOT\_CONVERSATIONS\_COMPLETED
|
8625
|
+
#
|
8626
|
+
# : Unit: Count
|
8627
|
+
#
|
8628
|
+
# Valid groupings and filters: Channel,
|
8629
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
8630
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
8631
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
8632
|
+
# Initiation method, Invoking resource type, Parent flows resource ID
|
8633
|
+
#
|
8634
|
+
# UI name: [Bot conversations][41]
|
8635
|
+
#
|
8636
|
+
# BOT\_INTENTS\_COMPLETED
|
8637
|
+
#
|
8638
|
+
# : Unit: Count
|
8639
|
+
#
|
8640
|
+
# Valid groupings and filters: Channel,
|
8641
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
8642
|
+
# version, Bot locale, Bot intent name, Flows resource ID, Flows
|
8643
|
+
# module resource ID, Flow type, Flow action ID, Invoking resource
|
8644
|
+
# published timestamp, Initiation method, Invoking resource type,
|
8645
|
+
# Parent flows resource ID
|
8646
|
+
#
|
8647
|
+
# UI name: [Bot intents completed][42]
|
8458
8648
|
#
|
8459
8649
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
8460
8650
|
#
|
@@ -8469,7 +8659,7 @@ module Aws::Connect
|
|
8469
8659
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
8470
8660
|
# `GT` (for *Greater than*).
|
8471
8661
|
#
|
8472
|
-
# UI name: [Campaign contacts abandoned after X][
|
8662
|
+
# UI name: [Campaign contacts abandoned after X][43]
|
8473
8663
|
#
|
8474
8664
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
8475
8665
|
#
|
@@ -8484,7 +8674,7 @@ module Aws::Connect
|
|
8484
8674
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
8485
8675
|
# `GT` (for *Greater than*).
|
8486
8676
|
#
|
8487
|
-
# UI name: [Campaign contacts abandoned after X rate][
|
8677
|
+
# UI name: [Campaign contacts abandoned after X rate][44]
|
8488
8678
|
#
|
8489
8679
|
# CAMPAIGN\_INTERACTIONS
|
8490
8680
|
#
|
@@ -8497,7 +8687,7 @@ module Aws::Connect
|
|
8497
8687
|
#
|
8498
8688
|
# Valid groupings and filters: Campaign
|
8499
8689
|
#
|
8500
|
-
# UI name: [Campaign interactions][
|
8690
|
+
# UI name: [Campaign interactions][45]
|
8501
8691
|
#
|
8502
8692
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
8503
8693
|
#
|
@@ -8508,7 +8698,7 @@ module Aws::Connect
|
|
8508
8698
|
# Valid groupings and filters: Campaign, Channel,
|
8509
8699
|
# contact/segmentAttributes/connect:Subtype
|
8510
8700
|
#
|
8511
|
-
# UI name: [Campaign send attempts][
|
8701
|
+
# UI name: [Campaign send attempts][46]
|
8512
8702
|
#
|
8513
8703
|
# CASES\_CREATED
|
8514
8704
|
#
|
@@ -8518,7 +8708,7 @@ module Aws::Connect
|
|
8518
8708
|
#
|
8519
8709
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8520
8710
|
#
|
8521
|
-
# UI name: [Cases created][
|
8711
|
+
# UI name: [Cases created][47]
|
8522
8712
|
#
|
8523
8713
|
# CONTACTS\_CREATED
|
8524
8714
|
#
|
@@ -8529,7 +8719,7 @@ module Aws::Connect
|
|
8529
8719
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8530
8720
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8531
8721
|
#
|
8532
|
-
# UI name: [Contacts created][
|
8722
|
+
# UI name: [Contacts created][48]
|
8533
8723
|
#
|
8534
8724
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8535
8725
|
#
|
@@ -8545,7 +8735,7 @@ module Aws::Connect
|
|
8545
8735
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8546
8736
|
# RoutingStepExpression, Q in Connect
|
8547
8737
|
#
|
8548
|
-
# UI name: [API contacts handled][
|
8738
|
+
# UI name: [API contacts handled][49]
|
8549
8739
|
#
|
8550
8740
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8551
8741
|
#
|
@@ -8560,7 +8750,7 @@ module Aws::Connect
|
|
8560
8750
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
8561
8751
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
8562
8752
|
#
|
8563
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
8753
|
+
# UI name: [Contacts handled (connected to agent timestamp)][50]
|
8564
8754
|
#
|
8565
8755
|
# CONTACTS\_HOLD\_ABANDONS
|
8566
8756
|
#
|
@@ -8570,7 +8760,7 @@ module Aws::Connect
|
|
8570
8760
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8571
8761
|
# Connect
|
8572
8762
|
#
|
8573
|
-
# UI name: [Contacts hold disconnect][
|
8763
|
+
# UI name: [Contacts hold disconnect][50]
|
8574
8764
|
#
|
8575
8765
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
8576
8766
|
#
|
@@ -8579,7 +8769,7 @@ module Aws::Connect
|
|
8579
8769
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8580
8770
|
# Agent Hierarchy, Q in Connect
|
8581
8771
|
#
|
8582
|
-
# UI name: [Contacts hold agent disconnect][
|
8772
|
+
# UI name: [Contacts hold agent disconnect][51]
|
8583
8773
|
#
|
8584
8774
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
8585
8775
|
#
|
@@ -8588,7 +8778,7 @@ module Aws::Connect
|
|
8588
8778
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8589
8779
|
# Agent Hierarchy, Q in Connect
|
8590
8780
|
#
|
8591
|
-
# UI name: [Contacts hold customer disconnect][
|
8781
|
+
# UI name: [Contacts hold customer disconnect][52]
|
8592
8782
|
#
|
8593
8783
|
# CONTACTS\_PUT\_ON\_HOLD
|
8594
8784
|
#
|
@@ -8597,7 +8787,7 @@ module Aws::Connect
|
|
8597
8787
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8598
8788
|
# Agent Hierarchy, Q in Connect
|
8599
8789
|
#
|
8600
|
-
# UI name: [Contacts put on hold][
|
8790
|
+
# UI name: [Contacts put on hold][52]
|
8601
8791
|
#
|
8602
8792
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
8603
8793
|
#
|
@@ -8606,7 +8796,7 @@ module Aws::Connect
|
|
8606
8796
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8607
8797
|
# Agent Hierarchy, Q in Connect
|
8608
8798
|
#
|
8609
|
-
# UI name: [Contacts transferred out external][
|
8799
|
+
# UI name: [Contacts transferred out external][53]
|
8610
8800
|
#
|
8611
8801
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
8612
8802
|
#
|
@@ -8615,7 +8805,7 @@ module Aws::Connect
|
|
8615
8805
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8616
8806
|
# Agent Hierarchy, Q in Connect
|
8617
8807
|
#
|
8618
|
-
# UI name: [Contacts transferred out internal][
|
8808
|
+
# UI name: [Contacts transferred out internal][54]
|
8619
8809
|
#
|
8620
8810
|
# CONTACTS\_QUEUED
|
8621
8811
|
#
|
@@ -8625,7 +8815,7 @@ module Aws::Connect
|
|
8625
8815
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8626
8816
|
# Connect
|
8627
8817
|
#
|
8628
|
-
# UI name: [Contacts queued][
|
8818
|
+
# UI name: [Contacts queued][55]
|
8629
8819
|
#
|
8630
8820
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
8631
8821
|
#
|
@@ -8634,7 +8824,7 @@ module Aws::Connect
|
|
8634
8824
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
8635
8825
|
# contact/segmentAttributes/connect:Subtype
|
8636
8826
|
#
|
8637
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
8827
|
+
# UI name: [Contacts queued (enqueue timestamp)][56]
|
8638
8828
|
#
|
8639
8829
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
8640
8830
|
#
|
@@ -8647,7 +8837,7 @@ module Aws::Connect
|
|
8647
8837
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8648
8838
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8649
8839
|
#
|
8650
|
-
# UI name: [Contacts removed from queue in X seconds][
|
8840
|
+
# UI name: [Contacts removed from queue in X seconds][57]
|
8651
8841
|
#
|
8652
8842
|
# CONTACTS\_RESOLVED\_IN\_X
|
8653
8843
|
#
|
@@ -8660,7 +8850,7 @@ module Aws::Connect
|
|
8660
8850
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8661
8851
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8662
8852
|
#
|
8663
|
-
# UI name: [Contacts resolved in X][
|
8853
|
+
# UI name: [Contacts resolved in X][58]
|
8664
8854
|
#
|
8665
8855
|
# CONTACTS\_TRANSFERRED\_OUT
|
8666
8856
|
#
|
@@ -8670,7 +8860,7 @@ module Aws::Connect
|
|
8670
8860
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8671
8861
|
# Q in Connect
|
8672
8862
|
#
|
8673
|
-
# UI name: [Contacts transferred out][
|
8863
|
+
# UI name: [Contacts transferred out][59]
|
8674
8864
|
#
|
8675
8865
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8676
8866
|
#
|
@@ -8684,7 +8874,7 @@ module Aws::Connect
|
|
8684
8874
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8685
8875
|
# Connect
|
8686
8876
|
#
|
8687
|
-
# UI name: [Contacts transferred out by agent][
|
8877
|
+
# UI name: [Contacts transferred out by agent][60]
|
8688
8878
|
#
|
8689
8879
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
8690
8880
|
#
|
@@ -8694,7 +8884,7 @@ module Aws::Connect
|
|
8694
8884
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8695
8885
|
# Connect
|
8696
8886
|
#
|
8697
|
-
# UI name: [Contacts transferred out queue][
|
8887
|
+
# UI name: [Contacts transferred out queue][60]
|
8698
8888
|
#
|
8699
8889
|
# CURRENT\_CASES
|
8700
8890
|
#
|
@@ -8704,7 +8894,7 @@ module Aws::Connect
|
|
8704
8894
|
#
|
8705
8895
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8706
8896
|
#
|
8707
|
-
# UI name: [Current cases][
|
8897
|
+
# UI name: [Current cases][61]
|
8708
8898
|
#
|
8709
8899
|
# DELIVERY\_ATTEMPTS
|
8710
8900
|
#
|
@@ -8720,7 +8910,7 @@ module Aws::Connect
|
|
8720
8910
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
|
8721
8911
|
# Routing Profile
|
8722
8912
|
#
|
8723
|
-
# UI name: [Delivery attempts][
|
8913
|
+
# UI name: [Delivery attempts][62]
|
8724
8914
|
#
|
8725
8915
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
8726
8916
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -8746,7 +8936,7 @@ module Aws::Connect
|
|
8746
8936
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
|
8747
8937
|
# Routing Profile
|
8748
8938
|
#
|
8749
|
-
# UI name: [Delivery attempt disposition rate][
|
8939
|
+
# UI name: [Delivery attempt disposition rate][63]
|
8750
8940
|
#
|
8751
8941
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only available
|
8752
8942
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -8766,7 +8956,7 @@ module Aws::Connect
|
|
8766
8956
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8767
8957
|
# published timestamp
|
8768
8958
|
#
|
8769
|
-
# UI name: [Flows outcome][
|
8959
|
+
# UI name: [Flows outcome][64]
|
8770
8960
|
#
|
8771
8961
|
# FLOWS\_STARTED
|
8772
8962
|
#
|
@@ -8777,7 +8967,7 @@ module Aws::Connect
|
|
8777
8967
|
# resource ID, Flows resource ID, Initiation method, Resource
|
8778
8968
|
# published timestamp
|
8779
8969
|
#
|
8780
|
-
# UI name: [Flows started][
|
8970
|
+
# UI name: [Flows started][65]
|
8781
8971
|
#
|
8782
8972
|
# HUMAN\_ANSWERED\_CALLS
|
8783
8973
|
#
|
@@ -8789,7 +8979,7 @@ module Aws::Connect
|
|
8789
8979
|
#
|
8790
8980
|
# Valid groupings and filters: Agent, Campaign
|
8791
8981
|
#
|
8792
|
-
# UI name: [Human answered][
|
8982
|
+
# UI name: [Human answered][66]
|
8793
8983
|
#
|
8794
8984
|
# MAX\_FLOW\_TIME
|
8795
8985
|
#
|
@@ -8801,7 +8991,7 @@ module Aws::Connect
|
|
8801
8991
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8802
8992
|
# published timestamp
|
8803
8993
|
#
|
8804
|
-
# UI name: [Maximum flow time][
|
8994
|
+
# UI name: [Maximum flow time][67]
|
8805
8995
|
#
|
8806
8996
|
# MAX\_QUEUED\_TIME
|
8807
8997
|
#
|
@@ -8811,7 +9001,7 @@ module Aws::Connect
|
|
8811
9001
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8812
9002
|
# Connect
|
8813
9003
|
#
|
8814
|
-
# UI name: [Maximum queued time][
|
9004
|
+
# UI name: [Maximum queued time][68]
|
8815
9005
|
#
|
8816
9006
|
# MIN\_FLOW\_TIME
|
8817
9007
|
#
|
@@ -8823,7 +9013,32 @@ module Aws::Connect
|
|
8823
9013
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8824
9014
|
# published timestamp
|
8825
9015
|
#
|
8826
|
-
# UI name: [Minimum flow time][
|
9016
|
+
# UI name: [Minimum flow time][69]
|
9017
|
+
#
|
9018
|
+
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
9019
|
+
#
|
9020
|
+
# : Unit: Percent
|
9021
|
+
#
|
9022
|
+
# Valid groupings and filters: Channel,
|
9023
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
9024
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
9025
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
9026
|
+
# Initiation method, Invoking resource type, Parent flows resource ID
|
9027
|
+
#
|
9028
|
+
# UI name: [Percent bot conversations outcome][70]
|
9029
|
+
#
|
9030
|
+
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
9031
|
+
#
|
9032
|
+
# : Unit: Percent
|
9033
|
+
#
|
9034
|
+
# Valid groupings and filters: Channel,
|
9035
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
9036
|
+
# version, Bot locale, Bot intent name, Flows resource ID, Flows
|
9037
|
+
# module resource ID, Flow type, Flow action ID, Invoking resource
|
9038
|
+
# published timestamp, Initiation method, Invoking resource type,
|
9039
|
+
# Parent flows resource ID
|
9040
|
+
#
|
9041
|
+
# UI name: [Percent bot intents outcome][71]
|
8827
9042
|
#
|
8828
9043
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
8829
9044
|
#
|
@@ -8833,7 +9048,7 @@ module Aws::Connect
|
|
8833
9048
|
#
|
8834
9049
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8835
9050
|
#
|
8836
|
-
# UI name: [Cases resolved on first contact][
|
9051
|
+
# UI name: [Cases resolved on first contact][72]
|
8837
9052
|
#
|
8838
9053
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
8839
9054
|
#
|
@@ -8865,7 +9080,7 @@ module Aws::Connect
|
|
8865
9080
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8866
9081
|
# published timestamp
|
8867
9082
|
#
|
8868
|
-
# UI name: [Flows outcome percentage][
|
9083
|
+
# UI name: [Flows outcome percentage][73].
|
8869
9084
|
#
|
8870
9085
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
8871
9086
|
#
|
@@ -8882,7 +9097,7 @@ module Aws::Connect
|
|
8882
9097
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8883
9098
|
# Connect
|
8884
9099
|
#
|
8885
|
-
# UI name: [Non-talk time percent][
|
9100
|
+
# UI name: [Non-talk time percent][74]
|
8886
9101
|
#
|
8887
9102
|
# PERCENT\_TALK\_TIME
|
8888
9103
|
#
|
@@ -8895,7 +9110,7 @@ module Aws::Connect
|
|
8895
9110
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8896
9111
|
# Connect
|
8897
9112
|
#
|
8898
|
-
# UI name: [Talk time percent][
|
9113
|
+
# UI name: [Talk time percent][75]
|
8899
9114
|
#
|
8900
9115
|
# PERCENT\_TALK\_TIME\_AGENT
|
8901
9116
|
#
|
@@ -8908,7 +9123,7 @@ module Aws::Connect
|
|
8908
9123
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8909
9124
|
# Connect
|
8910
9125
|
#
|
8911
|
-
# UI name: [Agent talk time percent][
|
9126
|
+
# UI name: [Agent talk time percent][76]
|
8912
9127
|
#
|
8913
9128
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
8914
9129
|
#
|
@@ -8921,7 +9136,7 @@ module Aws::Connect
|
|
8921
9136
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8922
9137
|
# Connect
|
8923
9138
|
#
|
8924
|
-
# UI name: [Customer talk time percent][
|
9139
|
+
# UI name: [Customer talk time percent][77]
|
8925
9140
|
#
|
8926
9141
|
# REOPENED\_CASE\_ACTIONS
|
8927
9142
|
#
|
@@ -8931,7 +9146,7 @@ module Aws::Connect
|
|
8931
9146
|
#
|
8932
9147
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8933
9148
|
#
|
8934
|
-
# UI name: [Cases reopened][
|
9149
|
+
# UI name: [Cases reopened][78]
|
8935
9150
|
#
|
8936
9151
|
# RESOLVED\_CASE\_ACTIONS
|
8937
9152
|
#
|
@@ -8941,7 +9156,7 @@ module Aws::Connect
|
|
8941
9156
|
#
|
8942
9157
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8943
9158
|
#
|
8944
|
-
# UI name: [Cases resolved][
|
9159
|
+
# UI name: [Cases resolved][79]
|
8945
9160
|
#
|
8946
9161
|
# SERVICE\_LEVEL
|
8947
9162
|
#
|
@@ -8956,7 +9171,7 @@ module Aws::Connect
|
|
8956
9171
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8957
9172
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8958
9173
|
#
|
8959
|
-
# UI name: [Service level X][
|
9174
|
+
# UI name: [Service level X][80]
|
8960
9175
|
#
|
8961
9176
|
# STEP\_CONTACTS\_QUEUED
|
8962
9177
|
#
|
@@ -8974,7 +9189,7 @@ module Aws::Connect
|
|
8974
9189
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8975
9190
|
# Agent Hierarchy, Q in Connect
|
8976
9191
|
#
|
8977
|
-
# UI name: [After contact work time][
|
9192
|
+
# UI name: [After contact work time][81]
|
8978
9193
|
#
|
8979
9194
|
# SUM\_CONNECTING\_TIME\_AGENT
|
8980
9195
|
#
|
@@ -8987,7 +9202,7 @@ module Aws::Connect
|
|
8987
9202
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8988
9203
|
# Agent Hierarchy
|
8989
9204
|
#
|
8990
|
-
# UI name: [Agent API connecting time][
|
9205
|
+
# UI name: [Agent API connecting time][82]
|
8991
9206
|
#
|
8992
9207
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for this
|
8993
9208
|
# metric.
|
@@ -9009,7 +9224,7 @@ module Aws::Connect
|
|
9009
9224
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
9010
9225
|
# RoutingStepExpression, Q in Connect
|
9011
9226
|
#
|
9012
|
-
# UI name: [Contact abandoned][
|
9227
|
+
# UI name: [Contact abandoned][83]
|
9013
9228
|
#
|
9014
9229
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
9015
9230
|
#
|
@@ -9022,7 +9237,7 @@ module Aws::Connect
|
|
9022
9237
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9023
9238
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9024
9239
|
#
|
9025
|
-
# UI name: [Contacts abandoned in X seconds][
|
9240
|
+
# UI name: [Contacts abandoned in X seconds][84]
|
9026
9241
|
#
|
9027
9242
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
9028
9243
|
#
|
@@ -9035,7 +9250,7 @@ module Aws::Connect
|
|
9035
9250
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
9036
9251
|
# (for "Less than") or `LTE` (for "Less than equal").
|
9037
9252
|
#
|
9038
|
-
# UI name: [Contacts answered in X seconds][
|
9253
|
+
# UI name: [Contacts answered in X seconds][85]
|
9039
9254
|
#
|
9040
9255
|
# SUM\_CONTACT\_FLOW\_TIME
|
9041
9256
|
#
|
@@ -9044,7 +9259,7 @@ module Aws::Connect
|
|
9044
9259
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9045
9260
|
# Agent Hierarchy, Q in Connect
|
9046
9261
|
#
|
9047
|
-
# UI name: [Contact flow time][
|
9262
|
+
# UI name: [Contact flow time][86]
|
9048
9263
|
#
|
9049
9264
|
# SUM\_CONTACT\_TIME\_AGENT
|
9050
9265
|
#
|
@@ -9052,7 +9267,7 @@ module Aws::Connect
|
|
9052
9267
|
#
|
9053
9268
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9054
9269
|
#
|
9055
|
-
# UI name: [Agent on contact time][
|
9270
|
+
# UI name: [Agent on contact time][87]
|
9056
9271
|
#
|
9057
9272
|
# SUM\_CONTACTS\_DISCONNECTED
|
9058
9273
|
#
|
@@ -9064,7 +9279,7 @@ module Aws::Connect
|
|
9064
9279
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
9065
9280
|
# Connect
|
9066
9281
|
#
|
9067
|
-
# UI name: [Contact disconnected][
|
9282
|
+
# UI name: [Contact disconnected][88]
|
9068
9283
|
#
|
9069
9284
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
9070
9285
|
#
|
@@ -9072,7 +9287,7 @@ module Aws::Connect
|
|
9072
9287
|
#
|
9073
9288
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9074
9289
|
#
|
9075
|
-
# UI name: [Error status time][
|
9290
|
+
# UI name: [Error status time][89]
|
9076
9291
|
#
|
9077
9292
|
# SUM\_HANDLE\_TIME
|
9078
9293
|
#
|
@@ -9081,7 +9296,7 @@ module Aws::Connect
|
|
9081
9296
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9082
9297
|
# Agent Hierarchy, Q in Connect
|
9083
9298
|
#
|
9084
|
-
# UI name: [Contact handle time][
|
9299
|
+
# UI name: [Contact handle time][90]
|
9085
9300
|
#
|
9086
9301
|
# SUM\_HOLD\_TIME
|
9087
9302
|
#
|
@@ -9090,7 +9305,7 @@ module Aws::Connect
|
|
9090
9305
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9091
9306
|
# Agent Hierarchy, Q in Connect
|
9092
9307
|
#
|
9093
|
-
# UI name: [Customer hold time][
|
9308
|
+
# UI name: [Customer hold time][91]
|
9094
9309
|
#
|
9095
9310
|
# SUM\_IDLE\_TIME\_AGENT
|
9096
9311
|
#
|
@@ -9098,7 +9313,7 @@ module Aws::Connect
|
|
9098
9313
|
#
|
9099
9314
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9100
9315
|
#
|
9101
|
-
# UI name: [Agent idle time][
|
9316
|
+
# UI name: [Agent idle time][92]
|
9102
9317
|
#
|
9103
9318
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
9104
9319
|
#
|
@@ -9107,7 +9322,7 @@ module Aws::Connect
|
|
9107
9322
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9108
9323
|
# Agent Hierarchy, Q in Connect
|
9109
9324
|
#
|
9110
|
-
# UI name: [Agent interaction and hold time][
|
9325
|
+
# UI name: [Agent interaction and hold time][93]
|
9111
9326
|
#
|
9112
9327
|
# SUM\_INTERACTION\_TIME
|
9113
9328
|
#
|
@@ -9116,7 +9331,7 @@ module Aws::Connect
|
|
9116
9331
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9117
9332
|
# Agent Hierarchy
|
9118
9333
|
#
|
9119
|
-
# UI name: [Agent interaction time][
|
9334
|
+
# UI name: [Agent interaction time][94]
|
9120
9335
|
#
|
9121
9336
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
9122
9337
|
#
|
@@ -9124,7 +9339,7 @@ module Aws::Connect
|
|
9124
9339
|
#
|
9125
9340
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9126
9341
|
#
|
9127
|
-
# UI name: [Non-Productive Time][
|
9342
|
+
# UI name: [Non-Productive Time][95]
|
9128
9343
|
#
|
9129
9344
|
# SUM\_ONLINE\_TIME\_AGENT
|
9130
9345
|
#
|
@@ -9132,7 +9347,7 @@ module Aws::Connect
|
|
9132
9347
|
#
|
9133
9348
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9134
9349
|
#
|
9135
|
-
# UI name: [Online time][
|
9350
|
+
# UI name: [Online time][96]
|
9136
9351
|
#
|
9137
9352
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
9138
9353
|
#
|
@@ -9141,7 +9356,7 @@ module Aws::Connect
|
|
9141
9356
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9142
9357
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9143
9358
|
#
|
9144
|
-
# UI name: [Callback attempts][
|
9359
|
+
# UI name: [Callback attempts][97]
|
9145
9360
|
#
|
9146
9361
|
#
|
9147
9362
|
#
|
@@ -9161,81 +9376,87 @@ module Aws::Connect
|
|
9161
9376
|
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-acw-time-historical
|
9162
9377
|
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-avg-agent-api-connecting-time
|
9163
9378
|
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-pause-time-historical
|
9164
|
-
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9165
|
-
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9166
|
-
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9167
|
-
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9168
|
-
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9169
|
-
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9170
|
-
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9171
|
-
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9172
|
-
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9173
|
-
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9174
|
-
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9175
|
-
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9176
|
-
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9177
|
-
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9178
|
-
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9179
|
-
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
9180
|
-
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9181
|
-
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
9182
|
-
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9183
|
-
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9184
|
-
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-
|
9185
|
-
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9186
|
-
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9187
|
-
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9188
|
-
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9189
|
-
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9190
|
-
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9191
|
-
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9192
|
-
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9193
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9194
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9195
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9196
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9197
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9198
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9199
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9200
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9201
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9202
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9203
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9204
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9205
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9206
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9207
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9208
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9209
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9210
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9211
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9212
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9213
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9214
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9215
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9216
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9217
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9218
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9219
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-
|
9220
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9221
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9222
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9223
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9224
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9225
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9226
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9227
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9228
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9229
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9230
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9231
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9232
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9233
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9234
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-
|
9235
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9236
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9237
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9238
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9379
|
+
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-time-metric
|
9380
|
+
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-turns-metric
|
9381
|
+
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contacts-case-historical
|
9382
|
+
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-case-resolution-time-historical
|
9383
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contact-duration-historical
|
9384
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-conversation-duration-historical
|
9385
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-dials-historical
|
9386
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-flow-time-historical
|
9387
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-greeting-time-agent-historical
|
9388
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-handle-time-historical
|
9389
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-customer-hold-time-historical
|
9390
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#avg-customer-hold-time-all-contacts-historical
|
9391
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-holds-historical
|
9392
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-customer-hold-time-historical
|
9393
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
9394
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-agent-historical
|
9395
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-time-agent-historical
|
9396
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##average-non-talk-time-historical
|
9397
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-answer-time-historical
|
9398
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-resolution-time-historical
|
9399
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-historical
|
9400
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-agent-historical
|
9401
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-customer-historical
|
9402
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-wait-time-historical
|
9403
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed-metric
|
9404
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed-metric
|
9405
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-historical
|
9406
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-rate-historical
|
9407
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-interactions-historical
|
9408
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-send-attempts-historical
|
9409
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-created-historical
|
9410
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
|
9411
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
|
9412
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
|
9413
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
|
9414
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
|
9415
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
|
9416
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
9417
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
9418
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
9419
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical
|
9420
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
9421
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
9422
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
9423
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
9424
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempts-historical
|
9425
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempt-disposition-rate-historical
|
9426
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
|
9427
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-started-historical
|
9428
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#human-answered-historical
|
9429
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-flow-time-historical
|
9430
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
9431
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#minimum-flow-time-historical
|
9432
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome-metric
|
9433
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome-metric
|
9434
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
9435
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-percentage-historical
|
9436
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
9437
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
9438
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
9439
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
9440
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
9441
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historical
|
9442
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
9443
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
9444
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
9445
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
9446
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
9447
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
9448
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
9449
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
9450
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
9451
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
9452
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
9453
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
9454
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
9455
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
9456
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
9457
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
9458
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
9459
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
9239
9460
|
#
|
9240
9461
|
# @option params [String] :next_token
|
9241
9462
|
# The token for the next set of results. Use the value returned in the
|
@@ -9491,9 +9712,9 @@ module Aws::Connect
|
|
9491
9712
|
end
|
9492
9713
|
|
9493
9714
|
# Imports a claimed phone number from an external service, such as
|
9494
|
-
# Amazon
|
9495
|
-
# API only in the same Amazon Web Services
|
9496
|
-
# Connect instance was created.
|
9715
|
+
# Amazon Web Services End User Messaging, into an Amazon Connect
|
9716
|
+
# instance. You can call this API only in the same Amazon Web Services
|
9717
|
+
# Region where the Amazon Connect instance was created.
|
9497
9718
|
#
|
9498
9719
|
# Call the [DescribePhoneNumber][1] API to verify the status of a
|
9499
9720
|
# previous `ImportPhoneNumber` operation.
|
@@ -9531,8 +9752,9 @@ module Aws::Connect
|
|
9531
9752
|
#
|
9532
9753
|
# @option params [required, String] :source_phone_number_arn
|
9533
9754
|
# The claimed phone number ARN being imported from the external service,
|
9534
|
-
# such as Amazon
|
9535
|
-
#
|
9755
|
+
# such as Amazon Web Services End User Messaging. If it is from Amazon
|
9756
|
+
# Web Services End User Messaging, it looks like the ARN of the phone
|
9757
|
+
# number to import from Amazon Web Services End User Messaging.
|
9536
9758
|
#
|
9537
9759
|
# @option params [String] :phone_number_description
|
9538
9760
|
# The description of the phone number.
|
@@ -10459,7 +10681,7 @@ module Aws::Connect
|
|
10459
10681
|
#
|
10460
10682
|
# resp = client.list_flow_associations({
|
10461
10683
|
# instance_id: "InstanceId", # required
|
10462
|
-
# resource_type: "
|
10684
|
+
# resource_type: "WHATSAPP_MESSAGING_PHONE_NUMBER", # accepts WHATSAPP_MESSAGING_PHONE_NUMBER, VOICE_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL, ANALYTICS_CONNECTOR
|
10463
10685
|
# next_token: "NextToken",
|
10464
10686
|
# max_results: 1,
|
10465
10687
|
# })
|
@@ -10469,7 +10691,7 @@ module Aws::Connect
|
|
10469
10691
|
# resp.flow_association_summary_list #=> Array
|
10470
10692
|
# resp.flow_association_summary_list[0].resource_id #=> String
|
10471
10693
|
# resp.flow_association_summary_list[0].flow_id #=> String
|
10472
|
-
# resp.flow_association_summary_list[0].resource_type #=> String, one of "VOICE_PHONE_NUMBER", "INBOUND_EMAIL", "OUTBOUND_EMAIL"
|
10694
|
+
# resp.flow_association_summary_list[0].resource_type #=> String, one of "WHATSAPP_MESSAGING_PHONE_NUMBER", "VOICE_PHONE_NUMBER", "INBOUND_EMAIL", "OUTBOUND_EMAIL", "ANALYTICS_CONNECTOR"
|
10473
10695
|
# resp.next_token #=> String
|
10474
10696
|
#
|
10475
10697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListFlowAssociations AWS API Documentation
|
@@ -10752,7 +10974,7 @@ module Aws::Connect
|
|
10752
10974
|
#
|
10753
10975
|
# resp = client.list_integration_associations({
|
10754
10976
|
# instance_id: "InstanceId", # required
|
10755
|
-
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY
|
10977
|
+
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY, ANALYTICS_CONNECTOR, CALL_TRANSFER_CONNECTOR
|
10756
10978
|
# next_token: "NextToken",
|
10757
10979
|
# max_results: 1,
|
10758
10980
|
# integration_arn: "ARN",
|
@@ -10764,7 +10986,7 @@ module Aws::Connect
|
|
10764
10986
|
# resp.integration_association_summary_list[0].integration_association_id #=> String
|
10765
10987
|
# resp.integration_association_summary_list[0].integration_association_arn #=> String
|
10766
10988
|
# resp.integration_association_summary_list[0].instance_id #=> String
|
10767
|
-
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "WISDOM_QUICK_RESPONSES", "Q_MESSAGE_TEMPLATES", "CASES_DOMAIN", "APPLICATION", "FILE_SCANNER", "SES_IDENTITY"
|
10989
|
+
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "WISDOM_QUICK_RESPONSES", "Q_MESSAGE_TEMPLATES", "CASES_DOMAIN", "APPLICATION", "FILE_SCANNER", "SES_IDENTITY", "ANALYTICS_CONNECTOR", "CALL_TRANSFER_CONNECTOR"
|
10768
10990
|
# resp.integration_association_summary_list[0].integration_arn #=> String
|
10769
10991
|
# resp.integration_association_summary_list[0].source_application_url #=> String
|
10770
10992
|
# resp.integration_association_summary_list[0].source_application_name #=> String
|
@@ -12804,6 +13026,9 @@ module Aws::Connect
|
|
12804
13026
|
# The identifier of the contact. This is the identifier of the contact
|
12805
13027
|
# associated with the first interaction with the contact center.
|
12806
13028
|
#
|
13029
|
+
# @option params [String] :contact_recording_type
|
13030
|
+
# The type of recording being operated on.
|
13031
|
+
#
|
12807
13032
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
12808
13033
|
#
|
12809
13034
|
# @example Request syntax with placeholder values
|
@@ -12812,6 +13037,7 @@ module Aws::Connect
|
|
12812
13037
|
# instance_id: "InstanceId", # required
|
12813
13038
|
# contact_id: "ContactId", # required
|
12814
13039
|
# initial_contact_id: "ContactId", # required
|
13040
|
+
# contact_recording_type: "AGENT", # accepts AGENT, IVR, SCREEN
|
12815
13041
|
# })
|
12816
13042
|
#
|
12817
13043
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ResumeContactRecording AWS API Documentation
|
@@ -14690,8 +14916,8 @@ module Aws::Connect
|
|
14690
14916
|
# not map to an active chat contact, a new chat contact is also created
|
14691
14917
|
# before handling chat action.
|
14692
14918
|
#
|
14693
|
-
# Access to this API is currently restricted to Amazon
|
14694
|
-
# supporting SMS integration.
|
14919
|
+
# Access to this API is currently restricted to Amazon Web Services End
|
14920
|
+
# User Messaging for supporting SMS integration.
|
14695
14921
|
#
|
14696
14922
|
# @option params [required, String] :source_id
|
14697
14923
|
# External identifier of chat customer participant, used in part to
|
@@ -14701,14 +14927,15 @@ module Aws::Connect
|
|
14701
14927
|
# @option params [required, String] :destination_id
|
14702
14928
|
# Chat system identifier, used in part to uniquely identify chat. This
|
14703
14929
|
# is associated with the Amazon Connect instance and flow to be used to
|
14704
|
-
# start chats. For
|
14705
|
-
#
|
14930
|
+
# start chats. For Server Migration Service, this is the phone number
|
14931
|
+
# destination of inbound Server Migration Service messages represented
|
14932
|
+
# by an Amazon Web Services End User Messaging phone number ARN.
|
14706
14933
|
#
|
14707
14934
|
# @option params [String] :subtype
|
14708
14935
|
# Classification of a channel. This is used in part to uniquely identify
|
14709
14936
|
# chat.
|
14710
14937
|
#
|
14711
|
-
# Valid value: `["connect:sms"]`
|
14938
|
+
# Valid value: `["connect:sms", connect:"WhatsApp"]`
|
14712
14939
|
#
|
14713
14940
|
# @option params [required, Types::ChatEvent] :event
|
14714
14941
|
# Chat integration event payload
|
@@ -15308,6 +15535,7 @@ module Aws::Connect
|
|
15308
15535
|
# initial_contact_id: "ContactId", # required
|
15309
15536
|
# voice_recording_configuration: { # required
|
15310
15537
|
# voice_recording_track: "FROM_AGENT", # accepts FROM_AGENT, TO_AGENT, ALL
|
15538
|
+
# ivr_recording_track: "ALL", # accepts ALL
|
15311
15539
|
# },
|
15312
15540
|
# })
|
15313
15541
|
#
|
@@ -15583,16 +15811,16 @@ module Aws::Connect
|
|
15583
15811
|
end
|
15584
15812
|
|
15585
15813
|
# Initiates a new outbound SMS contact to a customer. Response of this
|
15586
|
-
# API provides the ContactId of the outbound SMS contact created.
|
15814
|
+
# API provides the `ContactId` of the outbound SMS contact created.
|
15587
15815
|
#
|
15588
15816
|
# **SourceEndpoint** only supports Endpoints with
|
15589
15817
|
# `CONNECT_PHONENUMBER_ARN` as Type and **DestinationEndpoint** only
|
15590
15818
|
# supports Endpoints with `TELEPHONE_NUMBER` as Type. **ContactFlowId**
|
15591
15819
|
# initiates the flow to manage the new SMS contact created.
|
15592
15820
|
#
|
15593
|
-
# This API can be used to initiate outbound SMS contacts for an agent
|
15594
|
-
# it can also deflect an ongoing contact to an outbound SMS contact
|
15595
|
-
# using the [StartOutboundChatContact][1] Flow Action.
|
15821
|
+
# This API can be used to initiate outbound SMS contacts for an agent,
|
15822
|
+
# or it can also deflect an ongoing contact to an outbound SMS contact
|
15823
|
+
# by using the [StartOutboundChatContact][1] Flow Action.
|
15596
15824
|
#
|
15597
15825
|
# For more information about using SMS in Amazon Connect, see the
|
15598
15826
|
# following topics in the *Amazon Connect Administrator Guide*:
|
@@ -16509,6 +16737,9 @@ module Aws::Connect
|
|
16509
16737
|
# The identifier of the contact. This is the identifier of the contact
|
16510
16738
|
# associated with the first interaction with the contact center.
|
16511
16739
|
#
|
16740
|
+
# @option params [String] :contact_recording_type
|
16741
|
+
# The type of recording being operated on.
|
16742
|
+
#
|
16512
16743
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
16513
16744
|
#
|
16514
16745
|
# @example Request syntax with placeholder values
|
@@ -16517,6 +16748,7 @@ module Aws::Connect
|
|
16517
16748
|
# instance_id: "InstanceId", # required
|
16518
16749
|
# contact_id: "ContactId", # required
|
16519
16750
|
# initial_contact_id: "ContactId", # required
|
16751
|
+
# contact_recording_type: "AGENT", # accepts AGENT, IVR, SCREEN
|
16520
16752
|
# })
|
16521
16753
|
#
|
16522
16754
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContactRecording AWS API Documentation
|
@@ -16663,6 +16895,9 @@ module Aws::Connect
|
|
16663
16895
|
# The identifier of the contact. This is the identifier of the contact
|
16664
16896
|
# associated with the first interaction with the contact center.
|
16665
16897
|
#
|
16898
|
+
# @option params [String] :contact_recording_type
|
16899
|
+
# The type of recording being operated on.
|
16900
|
+
#
|
16666
16901
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
16667
16902
|
#
|
16668
16903
|
# @example Request syntax with placeholder values
|
@@ -16671,6 +16906,7 @@ module Aws::Connect
|
|
16671
16906
|
# instance_id: "InstanceId", # required
|
16672
16907
|
# contact_id: "ContactId", # required
|
16673
16908
|
# initial_contact_id: "ContactId", # required
|
16909
|
+
# contact_recording_type: "AGENT", # accepts AGENT, IVR, SCREEN
|
16674
16910
|
# })
|
16675
16911
|
#
|
16676
16912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SuspendContactRecording AWS API Documentation
|
@@ -17102,6 +17338,50 @@ module Aws::Connect
|
|
17102
17338
|
# Currently Contact Expiry is the only segment attribute which can be
|
17103
17339
|
# updated by using the UpdateContact API.
|
17104
17340
|
#
|
17341
|
+
# @option params [Types::QueueInfoInput] :queue_info
|
17342
|
+
# Information about the queue associated with a contact. This parameter
|
17343
|
+
# can only be updated for external audio contacts. It is used when you
|
17344
|
+
# integrate third-party systems with Contact Lens for analytics. For
|
17345
|
+
# more information, see [Amazon Connect Contact Lens integration][1] in
|
17346
|
+
# the <i> Amazon Connect Administrator Guide</i>.
|
17347
|
+
#
|
17348
|
+
#
|
17349
|
+
#
|
17350
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
17351
|
+
#
|
17352
|
+
# @option params [Types::UserInfo] :user_info
|
17353
|
+
# Information about the agent associated with a contact. This parameter
|
17354
|
+
# can only be updated for external audio contacts. It is used when you
|
17355
|
+
# integrate third-party systems with Contact Lens for analytics. For
|
17356
|
+
# more information, see [Amazon Connect Contact Lens integration][1] in
|
17357
|
+
# the <i> Amazon Connect Administrator Guide</i>.
|
17358
|
+
#
|
17359
|
+
#
|
17360
|
+
#
|
17361
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
17362
|
+
#
|
17363
|
+
# @option params [Types::Endpoint] :customer_endpoint
|
17364
|
+
# The endpoint of the customer for which the contact was initiated. For
|
17365
|
+
# external audio contacts, this is usually the end customer's phone
|
17366
|
+
# number. This value can only be updated for external audio contacts.
|
17367
|
+
# For more information, see [Amazon Connect Contact Lens integration][1]
|
17368
|
+
# in the *Amazon Connect Administrator Guide*.
|
17369
|
+
#
|
17370
|
+
#
|
17371
|
+
#
|
17372
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
17373
|
+
#
|
17374
|
+
# @option params [Types::Endpoint] :system_endpoint
|
17375
|
+
# External system endpoint for the contact was initiated. For external
|
17376
|
+
# audio contacts, this is the phone number of the external system such
|
17377
|
+
# as the contact center. This value can only be updated for external
|
17378
|
+
# audio contacts. For more information, see [Amazon Connect Contact Lens
|
17379
|
+
# integration][1] in the *Amazon Connect Administrator Guide*.
|
17380
|
+
#
|
17381
|
+
#
|
17382
|
+
#
|
17383
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
17384
|
+
#
|
17105
17385
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
17106
17386
|
#
|
17107
17387
|
# @example Request syntax with placeholder values
|
@@ -17131,6 +17411,20 @@ module Aws::Connect
|
|
17131
17411
|
# value_integer: 1,
|
17132
17412
|
# },
|
17133
17413
|
# },
|
17414
|
+
# queue_info: {
|
17415
|
+
# id: "QueueId",
|
17416
|
+
# },
|
17417
|
+
# user_info: {
|
17418
|
+
# user_id: "AgentResourceId",
|
17419
|
+
# },
|
17420
|
+
# customer_endpoint: {
|
17421
|
+
# type: "TELEPHONE_NUMBER", # accepts TELEPHONE_NUMBER, VOIP, CONTACT_FLOW, CONNECT_PHONENUMBER_ARN, EMAIL_ADDRESS
|
17422
|
+
# address: "EndpointAddress",
|
17423
|
+
# },
|
17424
|
+
# system_endpoint: {
|
17425
|
+
# type: "TELEPHONE_NUMBER", # accepts TELEPHONE_NUMBER, VOIP, CONTACT_FLOW, CONNECT_PHONENUMBER_ARN, EMAIL_ADDRESS
|
17426
|
+
# address: "EndpointAddress",
|
17427
|
+
# },
|
17134
17428
|
# })
|
17135
17429
|
#
|
17136
17430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContact AWS API Documentation
|
@@ -19775,7 +20069,7 @@ module Aws::Connect
|
|
19775
20069
|
tracer: tracer
|
19776
20070
|
)
|
19777
20071
|
context[:gem_name] = 'aws-sdk-connect'
|
19778
|
-
context[:gem_version] = '1.
|
20072
|
+
context[:gem_version] = '1.189.0'
|
19779
20073
|
Seahorse::Client::Request.new(handlers, context)
|
19780
20074
|
end
|
19781
20075
|
|