aws-sdk-connect 1.186.0 → 1.188.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 +777 -223
- data/lib/aws-sdk-connect/client_api.rb +23 -1
- data/lib/aws-sdk-connect/types.rb +927 -219
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +49 -19
- data/sig/types.rbs +25 -11
- 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
|
@@ -1242,8 +1248,8 @@ module Aws::Connect
|
|
1242
1248
|
# The unique identifier of the Connect instance.
|
1243
1249
|
#
|
1244
1250
|
# @option params [required, String] :associated_resource_arn
|
1245
|
-
# The resource to which the attached file is (being) uploaded to.
|
1246
|
-
# [Cases][1]
|
1251
|
+
# The resource to which the attached file is (being) uploaded to. The
|
1252
|
+
# supported resources are [Cases][1] and [Email][2].
|
1247
1253
|
#
|
1248
1254
|
# <note markdown="1"> This value must be a valid ARN.
|
1249
1255
|
#
|
@@ -1251,7 +1257,8 @@ module Aws::Connect
|
|
1251
1257
|
#
|
1252
1258
|
#
|
1253
1259
|
#
|
1254
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/
|
1260
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/cases.html
|
1261
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html
|
1255
1262
|
#
|
1256
1263
|
# @return [Types::BatchGetAttachedFileMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1257
1264
|
#
|
@@ -1308,6 +1315,12 @@ module Aws::Connect
|
|
1308
1315
|
# @option params [required, Array<String>] :resource_ids
|
1309
1316
|
# A list of resource identifiers to retrieve flow associations.
|
1310
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
|
+
#
|
1311
1324
|
# @option params [String] :resource_type
|
1312
1325
|
# The type of resource association.
|
1313
1326
|
#
|
@@ -1320,7 +1333,7 @@ module Aws::Connect
|
|
1320
1333
|
# resp = client.batch_get_flow_association({
|
1321
1334
|
# instance_id: "InstanceId", # required
|
1322
1335
|
# resource_ids: ["ARN"], # required
|
1323
|
-
# resource_type: "
|
1336
|
+
# resource_type: "WHATSAPP_MESSAGING_PHONE_NUMBER", # accepts WHATSAPP_MESSAGING_PHONE_NUMBER, VOICE_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL, ANALYTICS_CONNECTOR
|
1324
1337
|
# })
|
1325
1338
|
#
|
1326
1339
|
# @example Response structure
|
@@ -1328,7 +1341,7 @@ module Aws::Connect
|
|
1328
1341
|
# resp.flow_association_summary_list #=> Array
|
1329
1342
|
# resp.flow_association_summary_list[0].resource_id #=> String
|
1330
1343
|
# resp.flow_association_summary_list[0].flow_id #=> String
|
1331
|
-
# 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"
|
1332
1345
|
#
|
1333
1346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/BatchGetFlowAssociation AWS API Documentation
|
1334
1347
|
#
|
@@ -1556,8 +1569,8 @@ module Aws::Connect
|
|
1556
1569
|
# The unique identifier of the attached file resource.
|
1557
1570
|
#
|
1558
1571
|
# @option params [required, String] :associated_resource_arn
|
1559
|
-
# The resource to which the attached file is (being) uploaded to.
|
1560
|
-
# [Cases][1]
|
1572
|
+
# The resource to which the attached file is (being) uploaded to. The
|
1573
|
+
# supported resources are [Cases][1] and [Email][2].
|
1561
1574
|
#
|
1562
1575
|
# <note markdown="1"> This value must be a valid ARN.
|
1563
1576
|
#
|
@@ -1565,7 +1578,8 @@ module Aws::Connect
|
|
1565
1578
|
#
|
1566
1579
|
#
|
1567
1580
|
#
|
1568
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/
|
1581
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/cases.html
|
1582
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html
|
1569
1583
|
#
|
1570
1584
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1571
1585
|
#
|
@@ -1648,33 +1662,83 @@ module Aws::Connect
|
|
1648
1662
|
req.send_request(options)
|
1649
1663
|
end
|
1650
1664
|
|
1665
|
+
# Creates a new contact.
|
1666
|
+
#
|
1651
1667
|
# @option params [required, String] :instance_id
|
1668
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
1669
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
1670
|
+
#
|
1671
|
+
#
|
1672
|
+
#
|
1673
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1652
1674
|
#
|
1653
1675
|
# @option params [String] :client_token
|
1676
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
1677
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
1678
|
+
# SDK populates this field. For more information about idempotency, see
|
1679
|
+
# [Making retries safe with idempotent APIs][1].
|
1680
|
+
#
|
1654
1681
|
# **A suitable default value is auto-generated.** You should normally
|
1655
1682
|
# not need to pass this option.**
|
1656
1683
|
#
|
1684
|
+
#
|
1685
|
+
#
|
1686
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
1687
|
+
#
|
1657
1688
|
# @option params [String] :related_contact_id
|
1689
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
1658
1690
|
#
|
1659
1691
|
# @option params [Hash<String,String>] :attributes
|
1692
|
+
# A custom key-value pair using an attribute map. The attributes are
|
1693
|
+
# standard Amazon Connect attributes, and can be accessed in flows just
|
1694
|
+
# like any other contact attributes.
|
1695
|
+
#
|
1696
|
+
# There can be up to 32,768 UTF-8 bytes across all key-value pairs per
|
1697
|
+
# contact. Attribute keys can include only alphanumeric, dash, and
|
1698
|
+
# underscore characters.
|
1660
1699
|
#
|
1661
1700
|
# @option params [Hash<String,Types::Reference>] :references
|
1701
|
+
# A formatted URL that is shown to an agent in the Contact Control Panel
|
1702
|
+
# (CCP). Tasks can have the following reference types at the time of
|
1703
|
+
# creation: URL \| NUMBER \| STRING \| DATE \| EMAIL \| ATTACHMENT.
|
1662
1704
|
#
|
1663
1705
|
# @option params [required, String] :channel
|
1706
|
+
# The channel for the contact
|
1664
1707
|
#
|
1665
1708
|
# @option params [required, String] :initiation_method
|
1709
|
+
# Indicates how the contact was initiated.
|
1666
1710
|
#
|
1667
1711
|
# @option params [Integer] :expiry_duration_in_minutes
|
1712
|
+
# Number of minutes the contact will be active for before expiring
|
1668
1713
|
#
|
1669
1714
|
# @option params [Types::UserInfo] :user_info
|
1715
|
+
# User details for the contact
|
1670
1716
|
#
|
1671
1717
|
# @option params [String] :initiate_as
|
1718
|
+
# Initial state of the contact when it's created
|
1672
1719
|
#
|
1673
1720
|
# @option params [String] :name
|
1721
|
+
# The name of a the contact.
|
1674
1722
|
#
|
1675
1723
|
# @option params [String] :description
|
1724
|
+
# A description of the contact.
|
1676
1725
|
#
|
1677
1726
|
# @option params [Hash<String,Types::SegmentAttributeValue>] :segment_attributes
|
1727
|
+
# A set of system defined key-value pairs stored on individual contact
|
1728
|
+
# segments (unique contact ID) using an attribute map. The attributes
|
1729
|
+
# are standard Amazon Connect attributes. They can be accessed in flows.
|
1730
|
+
#
|
1731
|
+
# Attribute keys can include only alphanumeric, -, and \_.
|
1732
|
+
#
|
1733
|
+
# This field can be used to set Segment Contact Expiry as a duration in
|
1734
|
+
# minutes.
|
1735
|
+
#
|
1736
|
+
# <note markdown="1"> To set contact expiry, a ValueMap must be specified containing the
|
1737
|
+
# integer number of minutes the contact will be active for before
|
1738
|
+
# expiring, with `SegmentAttributes` like \{ ` "connect:ContactExpiry":
|
1739
|
+
# {"ValueMap" : { "ExpiryDuration": { "ValueInteger": 135}}}}`.
|
1740
|
+
#
|
1741
|
+
# </note>
|
1678
1742
|
#
|
1679
1743
|
# @return [Types::CreateContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1680
1744
|
#
|
@@ -1711,6 +1775,12 @@ module Aws::Connect
|
|
1711
1775
|
# segment_attributes: {
|
1712
1776
|
# "SegmentAttributeName" => {
|
1713
1777
|
# value_string: "SegmentAttributeValueString",
|
1778
|
+
# value_map: {
|
1779
|
+
# "SegmentAttributeName" => {
|
1780
|
+
# # recursive SegmentAttributeValue
|
1781
|
+
# },
|
1782
|
+
# },
|
1783
|
+
# value_integer: 1,
|
1714
1784
|
# },
|
1715
1785
|
# },
|
1716
1786
|
# })
|
@@ -1941,17 +2011,46 @@ module Aws::Connect
|
|
1941
2011
|
req.send_request(options)
|
1942
2012
|
end
|
1943
2013
|
|
2014
|
+
# Create new email address in the specified Amazon Connect instance. For
|
2015
|
+
# more information about email addresses, see [Create email
|
2016
|
+
# addresses][1] in the Amazon Connect Administrator Guide.
|
2017
|
+
#
|
2018
|
+
#
|
2019
|
+
#
|
2020
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-email-address1.html
|
2021
|
+
#
|
1944
2022
|
# @option params [String] :description
|
2023
|
+
# The description of the email address.
|
1945
2024
|
#
|
1946
2025
|
# @option params [required, String] :instance_id
|
2026
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
2027
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
2028
|
+
#
|
2029
|
+
#
|
2030
|
+
#
|
2031
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
1947
2032
|
#
|
1948
2033
|
# @option params [required, String] :email_address
|
2034
|
+
# The email address with the instance, in
|
2035
|
+
# \[^\\s@\]+@\[^\\s@\]+\\.\[^\\s@\]+ format.
|
1949
2036
|
#
|
1950
2037
|
# @option params [String] :display_name
|
2038
|
+
# The display name of email address
|
1951
2039
|
#
|
1952
2040
|
# @option params [Hash<String,String>] :tags
|
2041
|
+
# The tags used to organize, track, or control access for this resource.
|
2042
|
+
# For example, \{ "Tags": \{"key1":"value1", "key2":"value2"}
|
2043
|
+
# }.
|
1953
2044
|
#
|
1954
2045
|
# @option params [String] :client_token
|
2046
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
2047
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
2048
|
+
# SDK populates this field. For more information about idempotency, see
|
2049
|
+
# [Making retries safe with idempotent APIs][1].
|
2050
|
+
#
|
2051
|
+
#
|
2052
|
+
#
|
2053
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
1955
2054
|
#
|
1956
2055
|
# @return [Types::CreateEmailAddressResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1957
2056
|
#
|
@@ -2289,8 +2388,9 @@ module Aws::Connect
|
|
2289
2388
|
# @option params [required, String] :integration_arn
|
2290
2389
|
# The Amazon Resource Name (ARN) of the integration.
|
2291
2390
|
#
|
2292
|
-
# <note markdown="1"> When integrating with Amazon
|
2293
|
-
#
|
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.
|
2294
2394
|
#
|
2295
2395
|
# </note>
|
2296
2396
|
#
|
@@ -2320,7 +2420,7 @@ module Aws::Connect
|
|
2320
2420
|
#
|
2321
2421
|
# resp = client.create_integration_association({
|
2322
2422
|
# instance_id: "InstanceId", # required
|
2323
|
-
# 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
|
2324
2424
|
# integration_arn: "ARN", # required
|
2325
2425
|
# source_application_url: "URI",
|
2326
2426
|
# source_application_name: "SourceApplicationName",
|
@@ -2696,6 +2796,7 @@ module Aws::Connect
|
|
2696
2796
|
# The outbound caller ID name, number, and outbound whisper flow.
|
2697
2797
|
#
|
2698
2798
|
# @option params [Types::OutboundEmailConfig] :outbound_email_config
|
2799
|
+
# The outbound email address ID for a specified queue.
|
2699
2800
|
#
|
2700
2801
|
# @option params [required, String] :hours_of_operation_id
|
2701
2802
|
# The identifier for the hours of operation.
|
@@ -3192,6 +3293,8 @@ module Aws::Connect
|
|
3192
3293
|
# by referencing this template.
|
3193
3294
|
#
|
3194
3295
|
# @option params [String] :self_assign_flow_id
|
3296
|
+
# The ContactFlowId for the flow that will be run if this template is
|
3297
|
+
# used to create a self-assigned task.
|
3195
3298
|
#
|
3196
3299
|
# @option params [Types::TaskTemplateConstraints] :constraints
|
3197
3300
|
# Constraints that are applicable to the fields listed.
|
@@ -4033,9 +4136,18 @@ module Aws::Connect
|
|
4033
4136
|
req.send_request(options)
|
4034
4137
|
end
|
4035
4138
|
|
4139
|
+
# Deletes email address from the specified Amazon Connect instance.
|
4140
|
+
#
|
4036
4141
|
# @option params [required, String] :instance_id
|
4142
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4143
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4144
|
+
#
|
4145
|
+
#
|
4146
|
+
#
|
4147
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4037
4148
|
#
|
4038
4149
|
# @option params [required, String] :email_address_id
|
4150
|
+
# The identifier of the email address.
|
4039
4151
|
#
|
4040
4152
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4041
4153
|
#
|
@@ -4945,6 +5057,9 @@ module Aws::Connect
|
|
4945
5057
|
# resp.contact.additional_email_recipients.cc_list[0].display_name #=> String
|
4946
5058
|
# resp.contact.segment_attributes #=> Hash
|
4947
5059
|
# resp.contact.segment_attributes["SegmentAttributeName"].value_string #=> String
|
5060
|
+
# resp.contact.segment_attributes["SegmentAttributeName"].value_map #=> Hash
|
5061
|
+
# resp.contact.segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"] #=> Types::SegmentAttributeValue
|
5062
|
+
# resp.contact.segment_attributes["SegmentAttributeName"].value_integer #=> Integer
|
4948
5063
|
#
|
4949
5064
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContact AWS API Documentation
|
4950
5065
|
#
|
@@ -5063,8 +5178,8 @@ module Aws::Connect
|
|
5063
5178
|
# language][1].
|
5064
5179
|
#
|
5065
5180
|
# Use the `$SAVED` alias in the request to describe the `SAVED` content
|
5066
|
-
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`.
|
5067
|
-
#
|
5181
|
+
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`. After
|
5182
|
+
# a flow is published, `$SAVED` needs to be supplied to view saved
|
5068
5183
|
# content that has not been published.
|
5069
5184
|
#
|
5070
5185
|
# In the response, **Status** indicates the flow status as either
|
@@ -5105,7 +5220,6 @@ module Aws::Connect
|
|
5105
5220
|
# resp.contact_flow.content #=> String
|
5106
5221
|
# resp.contact_flow.tags #=> Hash
|
5107
5222
|
# resp.contact_flow.tags["TagKey"] #=> String
|
5108
|
-
# resp.contact_flow.is_default #=> Boolean
|
5109
5223
|
# resp.contact_flow.flow_content_sha_256 #=> String
|
5110
5224
|
# resp.contact_flow.version #=> Integer
|
5111
5225
|
# resp.contact_flow.version_description #=> String
|
@@ -5124,8 +5238,8 @@ module Aws::Connect
|
|
5124
5238
|
# Describes the specified flow module.
|
5125
5239
|
#
|
5126
5240
|
# Use the `$SAVED` alias in the request to describe the `SAVED` content
|
5127
|
-
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`.
|
5128
|
-
#
|
5241
|
+
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`. After
|
5242
|
+
# a flow is published, `$SAVED` needs to be supplied to view saved
|
5129
5243
|
# content that has not been published.
|
5130
5244
|
#
|
5131
5245
|
# @option params [required, String] :instance_id
|
@@ -5171,9 +5285,18 @@ module Aws::Connect
|
|
5171
5285
|
req.send_request(options)
|
5172
5286
|
end
|
5173
5287
|
|
5288
|
+
# Describe email address form the specified Amazon Connect instance.
|
5289
|
+
#
|
5174
5290
|
# @option params [required, String] :instance_id
|
5291
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5292
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5293
|
+
#
|
5294
|
+
#
|
5295
|
+
#
|
5296
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5175
5297
|
#
|
5176
5298
|
# @option params [required, String] :email_address_id
|
5299
|
+
# The identifier of the email address.
|
5177
5300
|
#
|
5178
5301
|
# @return [Types::DescribeEmailAddressResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5179
5302
|
#
|
@@ -5527,7 +5650,7 @@ module Aws::Connect
|
|
5527
5650
|
# calling this API in the alternate Amazon Web Services Region
|
5528
5651
|
# associated with the traffic distribution group, you must provide a
|
5529
5652
|
# full phone number ARN. If a UUID is provided in this scenario, you
|
5530
|
-
#
|
5653
|
+
# receive a `ResourceNotFoundException`.
|
5531
5654
|
#
|
5532
5655
|
# @option params [required, String] :phone_number_id
|
5533
5656
|
# A unique identifier for the phone number.
|
@@ -6426,6 +6549,12 @@ module Aws::Connect
|
|
6426
6549
|
# @option params [required, String] :resource_id
|
6427
6550
|
# The identifier of the resource.
|
6428
6551
|
#
|
6552
|
+
# * Amazon Web Services End User Messaging SMS phone number ARN when
|
6553
|
+
# using `SMS_PHONE_NUMBER`
|
6554
|
+
#
|
6555
|
+
# * Amazon Web Services End User Messaging Social phone number ARN when
|
6556
|
+
# using `WHATSAPP_MESSAGING_PHONE_NUMBER`
|
6557
|
+
#
|
6429
6558
|
# @option params [required, String] :resource_type
|
6430
6559
|
# A valid resource type.
|
6431
6560
|
#
|
@@ -6436,7 +6565,7 @@ module Aws::Connect
|
|
6436
6565
|
# resp = client.disassociate_flow({
|
6437
6566
|
# instance_id: "InstanceId", # required
|
6438
6567
|
# resource_id: "ARN", # required
|
6439
|
-
# resource_type: "SMS_PHONE_NUMBER", # required, accepts SMS_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL
|
6568
|
+
# resource_type: "SMS_PHONE_NUMBER", # required, accepts SMS_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL, ANALYTICS_CONNECTOR, WHATSAPP_MESSAGING_PHONE_NUMBER
|
6440
6569
|
# })
|
6441
6570
|
#
|
6442
6571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateFlow AWS API Documentation
|
@@ -6838,7 +6967,7 @@ module Aws::Connect
|
|
6838
6967
|
# return a downloadURL if the status of the attached file is `APPROVED`.
|
6839
6968
|
#
|
6840
6969
|
# @option params [required, String] :instance_id
|
6841
|
-
# The unique identifier of the Connect instance.
|
6970
|
+
# The unique identifier of the Amazon Connect instance.
|
6842
6971
|
#
|
6843
6972
|
# @option params [required, String] :file_id
|
6844
6973
|
# The unique identifier of the attached file resource.
|
@@ -6848,8 +6977,8 @@ module Aws::Connect
|
|
6848
6977
|
# The default value is 300.
|
6849
6978
|
#
|
6850
6979
|
# @option params [required, String] :associated_resource_arn
|
6851
|
-
# The resource to which the attached file is (being) uploaded to.
|
6852
|
-
# [Cases][1]
|
6980
|
+
# The resource to which the attached file is (being) uploaded to. The
|
6981
|
+
# supported resources are [Cases][1] and [Email][2].
|
6853
6982
|
#
|
6854
6983
|
# <note markdown="1"> This value must be a valid ARN.
|
6855
6984
|
#
|
@@ -6857,7 +6986,8 @@ module Aws::Connect
|
|
6857
6986
|
#
|
6858
6987
|
#
|
6859
6988
|
#
|
6860
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/
|
6989
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/cases.html
|
6990
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html
|
6861
6991
|
#
|
6862
6992
|
# @return [Types::GetAttachedFileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6863
6993
|
#
|
@@ -7394,6 +7524,12 @@ module Aws::Connect
|
|
7394
7524
|
# @option params [required, String] :resource_id
|
7395
7525
|
# The identifier of the resource.
|
7396
7526
|
#
|
7527
|
+
# * Amazon Web Services End User Messaging SMS phone number ARN when
|
7528
|
+
# using `SMS_PHONE_NUMBER`
|
7529
|
+
#
|
7530
|
+
# * Amazon Web Services End User Messaging Social phone number ARN when
|
7531
|
+
# using `WHATSAPP_MESSAGING_PHONE_NUMBER`
|
7532
|
+
#
|
7397
7533
|
# @option params [required, String] :resource_type
|
7398
7534
|
# A valid resource type.
|
7399
7535
|
#
|
@@ -7408,14 +7544,14 @@ module Aws::Connect
|
|
7408
7544
|
# resp = client.get_flow_association({
|
7409
7545
|
# instance_id: "InstanceId", # required
|
7410
7546
|
# resource_id: "ARN", # required
|
7411
|
-
# resource_type: "SMS_PHONE_NUMBER", # required, accepts SMS_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL
|
7547
|
+
# resource_type: "SMS_PHONE_NUMBER", # required, accepts SMS_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL, ANALYTICS_CONNECTOR, WHATSAPP_MESSAGING_PHONE_NUMBER
|
7412
7548
|
# })
|
7413
7549
|
#
|
7414
7550
|
# @example Response structure
|
7415
7551
|
#
|
7416
7552
|
# resp.resource_id #=> String
|
7417
7553
|
# resp.flow_id #=> String
|
7418
|
-
# resp.resource_type #=> String, one of "SMS_PHONE_NUMBER", "INBOUND_EMAIL", "OUTBOUND_EMAIL"
|
7554
|
+
# resp.resource_type #=> String, one of "SMS_PHONE_NUMBER", "INBOUND_EMAIL", "OUTBOUND_EMAIL", "ANALYTICS_CONNECTOR", "WHATSAPP_MESSAGING_PHONE_NUMBER"
|
7419
7555
|
#
|
7420
7556
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetFlowAssociation AWS API Documentation
|
7421
7557
|
#
|
@@ -7849,14 +7985,18 @@ module Aws::Connect
|
|
7849
7985
|
# `AGENT_HIERARCHY_LEVEL_ONE` \| `AGENT_HIERARCHY_LEVEL_TWO` \|
|
7850
7986
|
# `AGENT_HIERARCHY_LEVEL_THREE` \| `AGENT_HIERARCHY_LEVEL_FOUR` \|
|
7851
7987
|
# `AGENT_HIERARCHY_LEVEL_FIVE` \| `ANSWERING_MACHINE_DETECTION_STATUS`
|
7852
|
-
# \| `
|
7988
|
+
# \| ` BOT_ID` \| `BOT_ALIAS` \| `BOT_VERSION` \| `BOT_LOCALE` \|
|
7989
|
+
# `BOT_INTENT_NAME` \| `CAMPAIGN` \| `CAMPAIGN_DELIVERY_EVENT_TYPE`
|
7853
7990
|
# \|`CASE_TEMPLATE_ARN` \| `CASE_STATUS` \| `CHANNEL` \|
|
7854
7991
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
7855
|
-
# \| `FEATURE` \| `
|
7992
|
+
# \| `FEATURE` \| `FLOW_ACTION_ID` \| `FLOW_TYPE` \|
|
7993
|
+
# `FLOWS_MODULE_RESOURCE_ID` \| `FLOWS_NEXT_RESOURCE_ID` \|
|
7856
7994
|
# `FLOWS_NEXT_RESOURCE_QUEUE_ID` \| `FLOWS_OUTCOME_TYPE` \|
|
7857
7995
|
# `FLOWS_RESOURCE_ID` \| `INITIATION_METHOD` \|
|
7858
|
-
# `
|
7859
|
-
#
|
7996
|
+
# `INVOKING_RESOURCE_PUBLISHED_TIMESTAMP` \| `INVOKING_RESOURCE_TYPE`
|
7997
|
+
# \| `PARENT_FLOWS_RESOURCE_ID` \| `RESOURCE_PUBLISHED_TIMESTAMP` \|
|
7998
|
+
# `ROUTING_PROFILE` \| `ROUTING_STEP_EXPRESSION` \| `QUEUE` \|
|
7999
|
+
# `Q_CONNECT_ENABLED` \|
|
7860
8000
|
#
|
7861
8001
|
# * **Filter values**: A maximum of 100 filter values are supported in a
|
7862
8002
|
# single request. VOICE, CHAT, and TASK are valid `filterValue` for
|
@@ -7907,12 +8047,15 @@ module Aws::Connect
|
|
7907
8047
|
# Valid grouping keys: `AGENT` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
|
7908
8048
|
# `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
|
7909
8049
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
7910
|
-
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `
|
8050
|
+
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `BOT_ID` \| `BOT_ALIAS` \|
|
8051
|
+
# `BOT_VERSION` \| `BOT_LOCALE` \| `BOT_INTENT_NAME` \| `CAMPAIGN` \|
|
7911
8052
|
# `CAMPAIGN_DELIVERY_EVENT_TYPE` \| `CASE_TEMPLATE_ARN` \| `CASE_STATUS`
|
7912
8053
|
# \| `CHANNEL` \| `contact/segmentAttributes/connect:Subtype` \|
|
7913
8054
|
# `DISCONNECT_REASON` \| `FLOWS_RESOURCE_ID` \|
|
7914
|
-
# `FLOWS_MODULE_RESOURCE_ID` \| `
|
7915
|
-
# `
|
8055
|
+
# `FLOWS_MODULE_RESOURCE_ID` \| `FLOW_ACTION_ID` \| `FLOW_TYPE` \|
|
8056
|
+
# `FLOWS_OUTCOME_TYPE` \| `INITIATION_METHOD` \|
|
8057
|
+
# `INVOKING_RESOURCE_PUBLISHED_TIMESTAMP` \| `INVOKING_RESOURCE_TYPE` \|
|
8058
|
+
# `PARENT_FLOWS_RESOURCE_ID` \| `Q_CONNECT_ENABLED` \| `QUEUE` \|
|
7916
8059
|
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
7917
8060
|
# `ROUTING_STEP_EXPRESSION`
|
7918
8061
|
#
|
@@ -8077,6 +8220,30 @@ module Aws::Connect
|
|
8077
8220
|
#
|
8078
8221
|
# UI name: [Average agent pause time][16]
|
8079
8222
|
#
|
8223
|
+
# AVG\_BOT\_CONVERSATION\_TIME
|
8224
|
+
#
|
8225
|
+
# : Unit: Seconds
|
8226
|
+
#
|
8227
|
+
# Valid groupings and filters: Channel,
|
8228
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
8229
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
8230
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
8231
|
+
# Initiation method, Invoking resource type, Parent flows resource ID
|
8232
|
+
#
|
8233
|
+
# UI name: [Average bot conversation time][17]
|
8234
|
+
#
|
8235
|
+
# AVG\_BOT\_CONVERSATION\_TURNS
|
8236
|
+
#
|
8237
|
+
# : Unit: Count
|
8238
|
+
#
|
8239
|
+
# Valid groupings and filters: Channel,
|
8240
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
8241
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
8242
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
8243
|
+
# Initiation method, Invoking resource type, Parent flows resource ID
|
8244
|
+
#
|
8245
|
+
# UI name: [Average bot conversation turns][18]
|
8246
|
+
#
|
8080
8247
|
# AVG\_CASE\_RELATED\_CONTACTS
|
8081
8248
|
#
|
8082
8249
|
# : Unit: Count
|
@@ -8085,7 +8252,7 @@ module Aws::Connect
|
|
8085
8252
|
#
|
8086
8253
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8087
8254
|
#
|
8088
|
-
# UI name: [Average contacts per case][
|
8255
|
+
# UI name: [Average contacts per case][19]
|
8089
8256
|
#
|
8090
8257
|
# AVG\_CASE\_RESOLUTION\_TIME
|
8091
8258
|
#
|
@@ -8095,7 +8262,7 @@ module Aws::Connect
|
|
8095
8262
|
#
|
8096
8263
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8097
8264
|
#
|
8098
|
-
# UI name: [Average case resolution time][
|
8265
|
+
# UI name: [Average case resolution time][20]
|
8099
8266
|
#
|
8100
8267
|
# AVG\_CONTACT\_DURATION
|
8101
8268
|
#
|
@@ -8105,7 +8272,7 @@ module Aws::Connect
|
|
8105
8272
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8106
8273
|
# Q in Connect
|
8107
8274
|
#
|
8108
|
-
# UI name: [Average contact duration][
|
8275
|
+
# UI name: [Average contact duration][21]
|
8109
8276
|
#
|
8110
8277
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8111
8278
|
#
|
@@ -8119,7 +8286,7 @@ module Aws::Connect
|
|
8119
8286
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8120
8287
|
# Q in Connect
|
8121
8288
|
#
|
8122
|
-
# UI name: [Average conversation duration][
|
8289
|
+
# UI name: [Average conversation duration][22]
|
8123
8290
|
#
|
8124
8291
|
# AVG\_DIALS\_PER\_MINUTE
|
8125
8292
|
#
|
@@ -8130,7 +8297,7 @@ module Aws::Connect
|
|
8130
8297
|
#
|
8131
8298
|
# Valid groupings and filters: Agent, Campaign, Queue, Routing Profile
|
8132
8299
|
#
|
8133
|
-
# UI name: [Average dials per minute][
|
8300
|
+
# UI name: [Average dials per minute][23]
|
8134
8301
|
#
|
8135
8302
|
# AVG\_FLOW\_TIME
|
8136
8303
|
#
|
@@ -8142,7 +8309,7 @@ module Aws::Connect
|
|
8142
8309
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8143
8310
|
# published timestamp
|
8144
8311
|
#
|
8145
|
-
# UI name: [Average flow time][
|
8312
|
+
# UI name: [Average flow time][24]
|
8146
8313
|
#
|
8147
8314
|
# AVG\_GREETING\_TIME\_AGENT
|
8148
8315
|
#
|
@@ -8155,7 +8322,7 @@ module Aws::Connect
|
|
8155
8322
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8156
8323
|
# Connect
|
8157
8324
|
#
|
8158
|
-
# UI name: [Average agent greeting time][
|
8325
|
+
# UI name: [Average agent greeting time][25]
|
8159
8326
|
#
|
8160
8327
|
# AVG\_HANDLE\_TIME
|
8161
8328
|
#
|
@@ -8165,7 +8332,7 @@ module Aws::Connect
|
|
8165
8332
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8166
8333
|
# RoutingStepExpression
|
8167
8334
|
#
|
8168
|
-
# UI name: [Average handle time][
|
8335
|
+
# UI name: [Average handle time][26]
|
8169
8336
|
#
|
8170
8337
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8171
8338
|
#
|
@@ -8179,7 +8346,7 @@ module Aws::Connect
|
|
8179
8346
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8180
8347
|
# Q in Connect
|
8181
8348
|
#
|
8182
|
-
# UI name: [Average customer hold time][
|
8349
|
+
# UI name: [Average customer hold time][27]
|
8183
8350
|
#
|
8184
8351
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8185
8352
|
#
|
@@ -8193,7 +8360,7 @@ module Aws::Connect
|
|
8193
8360
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8194
8361
|
# Connect
|
8195
8362
|
#
|
8196
|
-
# UI name: [Average customer hold time all contacts][
|
8363
|
+
# UI name: [Average customer hold time all contacts][28]
|
8197
8364
|
#
|
8198
8365
|
# AVG\_HOLDS
|
8199
8366
|
#
|
@@ -8203,7 +8370,7 @@ module Aws::Connect
|
|
8203
8370
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8204
8371
|
# Q in Connect
|
8205
8372
|
#
|
8206
|
-
# UI name: [Average holds][
|
8373
|
+
# UI name: [Average holds][29]
|
8207
8374
|
#
|
8208
8375
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8209
8376
|
#
|
@@ -8217,7 +8384,7 @@ module Aws::Connect
|
|
8217
8384
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8218
8385
|
# Connect
|
8219
8386
|
#
|
8220
|
-
# UI name: [Average agent interaction and customer hold time][
|
8387
|
+
# UI name: [Average agent interaction and customer hold time][30]
|
8221
8388
|
#
|
8222
8389
|
# AVG\_INTERACTION\_TIME
|
8223
8390
|
#
|
@@ -8228,7 +8395,7 @@ module Aws::Connect
|
|
8228
8395
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8229
8396
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8230
8397
|
#
|
8231
|
-
# UI name: [Average agent interaction time][
|
8398
|
+
# UI name: [Average agent interaction time][31]
|
8232
8399
|
#
|
8233
8400
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8234
8401
|
#
|
@@ -8245,7 +8412,7 @@ module Aws::Connect
|
|
8245
8412
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8246
8413
|
# Connect
|
8247
8414
|
#
|
8248
|
-
# UI name: [Average agent interruptions][
|
8415
|
+
# UI name: [Average agent interruptions][32]
|
8249
8416
|
#
|
8250
8417
|
# AVG\_INTERRUPTION\_TIME\_AGENT
|
8251
8418
|
#
|
@@ -8258,7 +8425,7 @@ module Aws::Connect
|
|
8258
8425
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8259
8426
|
# Connect
|
8260
8427
|
#
|
8261
|
-
# UI name: [Average agent interruption time][
|
8428
|
+
# UI name: [Average agent interruption time][33]
|
8262
8429
|
#
|
8263
8430
|
# AVG\_NON\_TALK\_TIME
|
8264
8431
|
#
|
@@ -8271,7 +8438,7 @@ module Aws::Connect
|
|
8271
8438
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8272
8439
|
# Connect
|
8273
8440
|
#
|
8274
|
-
# UI name: [Average non-talk time][
|
8441
|
+
# UI name: [Average non-talk time][34]
|
8275
8442
|
#
|
8276
8443
|
# AVG\_QUEUE\_ANSWER\_TIME
|
8277
8444
|
#
|
@@ -8280,7 +8447,7 @@ module Aws::Connect
|
|
8280
8447
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8281
8448
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8282
8449
|
#
|
8283
|
-
# UI name: [Average queue answer time][
|
8450
|
+
# UI name: [Average queue answer time][35]
|
8284
8451
|
#
|
8285
8452
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8286
8453
|
#
|
@@ -8293,7 +8460,7 @@ module Aws::Connect
|
|
8293
8460
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8294
8461
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
8295
8462
|
#
|
8296
|
-
# UI name: [Average resolution time][
|
8463
|
+
# UI name: [Average resolution time][36]
|
8297
8464
|
#
|
8298
8465
|
# AVG\_TALK\_TIME
|
8299
8466
|
#
|
@@ -8306,7 +8473,7 @@ module Aws::Connect
|
|
8306
8473
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8307
8474
|
# Connect
|
8308
8475
|
#
|
8309
|
-
# UI name: [Average talk time][
|
8476
|
+
# UI name: [Average talk time][37]
|
8310
8477
|
#
|
8311
8478
|
# AVG\_TALK\_TIME\_AGENT
|
8312
8479
|
#
|
@@ -8319,7 +8486,7 @@ module Aws::Connect
|
|
8319
8486
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8320
8487
|
# Connect
|
8321
8488
|
#
|
8322
|
-
# UI name: [Average agent talk time][
|
8489
|
+
# UI name: [Average agent talk time][38]
|
8323
8490
|
#
|
8324
8491
|
# AVG\_TALK\_TIME\_CUSTOMER
|
8325
8492
|
#
|
@@ -8332,7 +8499,7 @@ module Aws::Connect
|
|
8332
8499
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8333
8500
|
# Connect
|
8334
8501
|
#
|
8335
|
-
# UI name: [Average customer talk time][
|
8502
|
+
# UI name: [Average customer talk time][39]
|
8336
8503
|
#
|
8337
8504
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
8338
8505
|
#
|
@@ -8343,7 +8510,32 @@ module Aws::Connect
|
|
8343
8510
|
#
|
8344
8511
|
# Valid groupings and filters: Campaign
|
8345
8512
|
#
|
8346
|
-
# UI name: [Average wait time after customer connection][
|
8513
|
+
# UI name: [Average wait time after customer connection][40]
|
8514
|
+
#
|
8515
|
+
# BOT\_CONVERSATIONS\_COMPLETED
|
8516
|
+
#
|
8517
|
+
# : Unit: Count
|
8518
|
+
#
|
8519
|
+
# Valid groupings and filters: Channel,
|
8520
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
8521
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
8522
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
8523
|
+
# Initiation method, Invoking resource type, Parent flows resource ID
|
8524
|
+
#
|
8525
|
+
# UI name: [Bot conversations][41]
|
8526
|
+
#
|
8527
|
+
# BOT\_INTENTS\_COMPLETED
|
8528
|
+
#
|
8529
|
+
# : Unit: Count
|
8530
|
+
#
|
8531
|
+
# Valid groupings and filters: Channel,
|
8532
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
8533
|
+
# version, Bot locale, Bot intent name, Flows resource ID, Flows
|
8534
|
+
# module resource ID, Flow type, Flow action ID, Invoking resource
|
8535
|
+
# published timestamp, Initiation method, Invoking resource type,
|
8536
|
+
# Parent flows resource ID
|
8537
|
+
#
|
8538
|
+
# UI name: [Bot intents completed][42]
|
8347
8539
|
#
|
8348
8540
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
8349
8541
|
#
|
@@ -8358,7 +8550,7 @@ module Aws::Connect
|
|
8358
8550
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
8359
8551
|
# `GT` (for *Greater than*).
|
8360
8552
|
#
|
8361
|
-
# UI name: [Campaign contacts abandoned after X][
|
8553
|
+
# UI name: [Campaign contacts abandoned after X][43]
|
8362
8554
|
#
|
8363
8555
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
8364
8556
|
#
|
@@ -8373,7 +8565,7 @@ module Aws::Connect
|
|
8373
8565
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
8374
8566
|
# `GT` (for *Greater than*).
|
8375
8567
|
#
|
8376
|
-
# UI name: [Campaign contacts abandoned after X rate][
|
8568
|
+
# UI name: [Campaign contacts abandoned after X rate][44]
|
8377
8569
|
#
|
8378
8570
|
# CAMPAIGN\_INTERACTIONS
|
8379
8571
|
#
|
@@ -8386,7 +8578,7 @@ module Aws::Connect
|
|
8386
8578
|
#
|
8387
8579
|
# Valid groupings and filters: Campaign
|
8388
8580
|
#
|
8389
|
-
# UI name: [Campaign interactions][
|
8581
|
+
# UI name: [Campaign interactions][45]
|
8390
8582
|
#
|
8391
8583
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
8392
8584
|
#
|
@@ -8397,7 +8589,7 @@ module Aws::Connect
|
|
8397
8589
|
# Valid groupings and filters: Campaign, Channel,
|
8398
8590
|
# contact/segmentAttributes/connect:Subtype
|
8399
8591
|
#
|
8400
|
-
# UI name: [Campaign send attempts][
|
8592
|
+
# UI name: [Campaign send attempts][46]
|
8401
8593
|
#
|
8402
8594
|
# CASES\_CREATED
|
8403
8595
|
#
|
@@ -8407,7 +8599,7 @@ module Aws::Connect
|
|
8407
8599
|
#
|
8408
8600
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8409
8601
|
#
|
8410
|
-
# UI name: [Cases created][
|
8602
|
+
# UI name: [Cases created][47]
|
8411
8603
|
#
|
8412
8604
|
# CONTACTS\_CREATED
|
8413
8605
|
#
|
@@ -8418,7 +8610,7 @@ module Aws::Connect
|
|
8418
8610
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8419
8611
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
8420
8612
|
#
|
8421
|
-
# UI name: [Contacts created][
|
8613
|
+
# UI name: [Contacts created][48]
|
8422
8614
|
#
|
8423
8615
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8424
8616
|
#
|
@@ -8434,7 +8626,7 @@ module Aws::Connect
|
|
8434
8626
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8435
8627
|
# RoutingStepExpression, Q in Connect
|
8436
8628
|
#
|
8437
|
-
# UI name: [API contacts handled][
|
8629
|
+
# UI name: [API contacts handled][49]
|
8438
8630
|
#
|
8439
8631
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8440
8632
|
#
|
@@ -8449,7 +8641,7 @@ module Aws::Connect
|
|
8449
8641
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
8450
8642
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
8451
8643
|
#
|
8452
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
8644
|
+
# UI name: [Contacts handled (connected to agent timestamp)][50]
|
8453
8645
|
#
|
8454
8646
|
# CONTACTS\_HOLD\_ABANDONS
|
8455
8647
|
#
|
@@ -8459,7 +8651,7 @@ module Aws::Connect
|
|
8459
8651
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8460
8652
|
# Connect
|
8461
8653
|
#
|
8462
|
-
# UI name: [Contacts hold disconnect][
|
8654
|
+
# UI name: [Contacts hold disconnect][50]
|
8463
8655
|
#
|
8464
8656
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
8465
8657
|
#
|
@@ -8468,7 +8660,7 @@ module Aws::Connect
|
|
8468
8660
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8469
8661
|
# Agent Hierarchy, Q in Connect
|
8470
8662
|
#
|
8471
|
-
# UI name: [Contacts hold agent disconnect][
|
8663
|
+
# UI name: [Contacts hold agent disconnect][51]
|
8472
8664
|
#
|
8473
8665
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
8474
8666
|
#
|
@@ -8477,7 +8669,7 @@ module Aws::Connect
|
|
8477
8669
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8478
8670
|
# Agent Hierarchy, Q in Connect
|
8479
8671
|
#
|
8480
|
-
# UI name: [Contacts hold customer disconnect][
|
8672
|
+
# UI name: [Contacts hold customer disconnect][52]
|
8481
8673
|
#
|
8482
8674
|
# CONTACTS\_PUT\_ON\_HOLD
|
8483
8675
|
#
|
@@ -8486,7 +8678,7 @@ module Aws::Connect
|
|
8486
8678
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8487
8679
|
# Agent Hierarchy, Q in Connect
|
8488
8680
|
#
|
8489
|
-
# UI name: [Contacts put on hold][
|
8681
|
+
# UI name: [Contacts put on hold][52]
|
8490
8682
|
#
|
8491
8683
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
8492
8684
|
#
|
@@ -8495,7 +8687,7 @@ module Aws::Connect
|
|
8495
8687
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8496
8688
|
# Agent Hierarchy, Q in Connect
|
8497
8689
|
#
|
8498
|
-
# UI name: [Contacts transferred out external][
|
8690
|
+
# UI name: [Contacts transferred out external][53]
|
8499
8691
|
#
|
8500
8692
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
8501
8693
|
#
|
@@ -8504,7 +8696,7 @@ module Aws::Connect
|
|
8504
8696
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8505
8697
|
# Agent Hierarchy, Q in Connect
|
8506
8698
|
#
|
8507
|
-
# UI name: [Contacts transferred out internal][
|
8699
|
+
# UI name: [Contacts transferred out internal][54]
|
8508
8700
|
#
|
8509
8701
|
# CONTACTS\_QUEUED
|
8510
8702
|
#
|
@@ -8514,7 +8706,7 @@ module Aws::Connect
|
|
8514
8706
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8515
8707
|
# Connect
|
8516
8708
|
#
|
8517
|
-
# UI name: [Contacts queued][
|
8709
|
+
# UI name: [Contacts queued][55]
|
8518
8710
|
#
|
8519
8711
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
8520
8712
|
#
|
@@ -8523,7 +8715,7 @@ module Aws::Connect
|
|
8523
8715
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
8524
8716
|
# contact/segmentAttributes/connect:Subtype
|
8525
8717
|
#
|
8526
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
8718
|
+
# UI name: [Contacts queued (enqueue timestamp)][56]
|
8527
8719
|
#
|
8528
8720
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
8529
8721
|
#
|
@@ -8536,7 +8728,7 @@ module Aws::Connect
|
|
8536
8728
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8537
8729
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8538
8730
|
#
|
8539
|
-
# UI name: [Contacts removed from queue in X seconds][
|
8731
|
+
# UI name: [Contacts removed from queue in X seconds][57]
|
8540
8732
|
#
|
8541
8733
|
# CONTACTS\_RESOLVED\_IN\_X
|
8542
8734
|
#
|
@@ -8549,7 +8741,7 @@ module Aws::Connect
|
|
8549
8741
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8550
8742
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8551
8743
|
#
|
8552
|
-
# UI name: [Contacts resolved in X][
|
8744
|
+
# UI name: [Contacts resolved in X][58]
|
8553
8745
|
#
|
8554
8746
|
# CONTACTS\_TRANSFERRED\_OUT
|
8555
8747
|
#
|
@@ -8559,7 +8751,7 @@ module Aws::Connect
|
|
8559
8751
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
8560
8752
|
# Q in Connect
|
8561
8753
|
#
|
8562
|
-
# UI name: [Contacts transferred out][
|
8754
|
+
# UI name: [Contacts transferred out][59]
|
8563
8755
|
#
|
8564
8756
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8565
8757
|
#
|
@@ -8573,7 +8765,7 @@ module Aws::Connect
|
|
8573
8765
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8574
8766
|
# Connect
|
8575
8767
|
#
|
8576
|
-
# UI name: [Contacts transferred out by agent][
|
8768
|
+
# UI name: [Contacts transferred out by agent][60]
|
8577
8769
|
#
|
8578
8770
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
8579
8771
|
#
|
@@ -8583,7 +8775,7 @@ module Aws::Connect
|
|
8583
8775
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8584
8776
|
# Connect
|
8585
8777
|
#
|
8586
|
-
# UI name: [Contacts transferred out queue][
|
8778
|
+
# UI name: [Contacts transferred out queue][60]
|
8587
8779
|
#
|
8588
8780
|
# CURRENT\_CASES
|
8589
8781
|
#
|
@@ -8593,7 +8785,7 @@ module Aws::Connect
|
|
8593
8785
|
#
|
8594
8786
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8595
8787
|
#
|
8596
|
-
# UI name: [Current cases][
|
8788
|
+
# UI name: [Current cases][61]
|
8597
8789
|
#
|
8598
8790
|
# DELIVERY\_ATTEMPTS
|
8599
8791
|
#
|
@@ -8609,7 +8801,7 @@ module Aws::Connect
|
|
8609
8801
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
|
8610
8802
|
# Routing Profile
|
8611
8803
|
#
|
8612
|
-
# UI name: [Delivery attempts][
|
8804
|
+
# UI name: [Delivery attempts][62]
|
8613
8805
|
#
|
8614
8806
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
8615
8807
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -8635,7 +8827,7 @@ module Aws::Connect
|
|
8635
8827
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
|
8636
8828
|
# Routing Profile
|
8637
8829
|
#
|
8638
|
-
# UI name: [Delivery attempt disposition rate][
|
8830
|
+
# UI name: [Delivery attempt disposition rate][63]
|
8639
8831
|
#
|
8640
8832
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only available
|
8641
8833
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -8655,7 +8847,7 @@ module Aws::Connect
|
|
8655
8847
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8656
8848
|
# published timestamp
|
8657
8849
|
#
|
8658
|
-
# UI name: [Flows outcome][
|
8850
|
+
# UI name: [Flows outcome][64]
|
8659
8851
|
#
|
8660
8852
|
# FLOWS\_STARTED
|
8661
8853
|
#
|
@@ -8666,7 +8858,7 @@ module Aws::Connect
|
|
8666
8858
|
# resource ID, Flows resource ID, Initiation method, Resource
|
8667
8859
|
# published timestamp
|
8668
8860
|
#
|
8669
|
-
# UI name: [Flows started][
|
8861
|
+
# UI name: [Flows started][65]
|
8670
8862
|
#
|
8671
8863
|
# HUMAN\_ANSWERED\_CALLS
|
8672
8864
|
#
|
@@ -8678,7 +8870,7 @@ module Aws::Connect
|
|
8678
8870
|
#
|
8679
8871
|
# Valid groupings and filters: Agent, Campaign
|
8680
8872
|
#
|
8681
|
-
# UI name: [Human answered][
|
8873
|
+
# UI name: [Human answered][66]
|
8682
8874
|
#
|
8683
8875
|
# MAX\_FLOW\_TIME
|
8684
8876
|
#
|
@@ -8690,7 +8882,7 @@ module Aws::Connect
|
|
8690
8882
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8691
8883
|
# published timestamp
|
8692
8884
|
#
|
8693
|
-
# UI name: [Maximum flow time][
|
8885
|
+
# UI name: [Maximum flow time][67]
|
8694
8886
|
#
|
8695
8887
|
# MAX\_QUEUED\_TIME
|
8696
8888
|
#
|
@@ -8700,7 +8892,7 @@ module Aws::Connect
|
|
8700
8892
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8701
8893
|
# Connect
|
8702
8894
|
#
|
8703
|
-
# UI name: [Maximum queued time][
|
8895
|
+
# UI name: [Maximum queued time][68]
|
8704
8896
|
#
|
8705
8897
|
# MIN\_FLOW\_TIME
|
8706
8898
|
#
|
@@ -8712,7 +8904,32 @@ module Aws::Connect
|
|
8712
8904
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8713
8905
|
# published timestamp
|
8714
8906
|
#
|
8715
|
-
# UI name: [Minimum flow time][
|
8907
|
+
# UI name: [Minimum flow time][69]
|
8908
|
+
#
|
8909
|
+
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
8910
|
+
#
|
8911
|
+
# : Unit: Percent
|
8912
|
+
#
|
8913
|
+
# Valid groupings and filters: Channel,
|
8914
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
8915
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
8916
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
8917
|
+
# Initiation method, Invoking resource type, Parent flows resource ID
|
8918
|
+
#
|
8919
|
+
# UI name: [Percent bot conversations outcome][70]
|
8920
|
+
#
|
8921
|
+
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
8922
|
+
#
|
8923
|
+
# : Unit: Percent
|
8924
|
+
#
|
8925
|
+
# Valid groupings and filters: Channel,
|
8926
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
8927
|
+
# version, Bot locale, Bot intent name, Flows resource ID, Flows
|
8928
|
+
# module resource ID, Flow type, Flow action ID, Invoking resource
|
8929
|
+
# published timestamp, Initiation method, Invoking resource type,
|
8930
|
+
# Parent flows resource ID
|
8931
|
+
#
|
8932
|
+
# UI name: [Percent bot intents outcome][71]
|
8716
8933
|
#
|
8717
8934
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
8718
8935
|
#
|
@@ -8722,7 +8939,7 @@ module Aws::Connect
|
|
8722
8939
|
#
|
8723
8940
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8724
8941
|
#
|
8725
|
-
# UI name: [Cases resolved on first contact][
|
8942
|
+
# UI name: [Cases resolved on first contact][72]
|
8726
8943
|
#
|
8727
8944
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
8728
8945
|
#
|
@@ -8754,7 +8971,7 @@ module Aws::Connect
|
|
8754
8971
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
8755
8972
|
# published timestamp
|
8756
8973
|
#
|
8757
|
-
# UI name: [Flows outcome percentage][
|
8974
|
+
# UI name: [Flows outcome percentage][73].
|
8758
8975
|
#
|
8759
8976
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
8760
8977
|
#
|
@@ -8771,7 +8988,7 @@ module Aws::Connect
|
|
8771
8988
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8772
8989
|
# Connect
|
8773
8990
|
#
|
8774
|
-
# UI name: [Non-talk time percent][
|
8991
|
+
# UI name: [Non-talk time percent][74]
|
8775
8992
|
#
|
8776
8993
|
# PERCENT\_TALK\_TIME
|
8777
8994
|
#
|
@@ -8784,7 +9001,7 @@ module Aws::Connect
|
|
8784
9001
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8785
9002
|
# Connect
|
8786
9003
|
#
|
8787
|
-
# UI name: [Talk time percent][
|
9004
|
+
# UI name: [Talk time percent][75]
|
8788
9005
|
#
|
8789
9006
|
# PERCENT\_TALK\_TIME\_AGENT
|
8790
9007
|
#
|
@@ -8797,7 +9014,7 @@ module Aws::Connect
|
|
8797
9014
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8798
9015
|
# Connect
|
8799
9016
|
#
|
8800
|
-
# UI name: [Agent talk time percent][
|
9017
|
+
# UI name: [Agent talk time percent][76]
|
8801
9018
|
#
|
8802
9019
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
8803
9020
|
#
|
@@ -8810,7 +9027,7 @@ module Aws::Connect
|
|
8810
9027
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8811
9028
|
# Connect
|
8812
9029
|
#
|
8813
|
-
# UI name: [Customer talk time percent][
|
9030
|
+
# UI name: [Customer talk time percent][77]
|
8814
9031
|
#
|
8815
9032
|
# REOPENED\_CASE\_ACTIONS
|
8816
9033
|
#
|
@@ -8820,7 +9037,7 @@ module Aws::Connect
|
|
8820
9037
|
#
|
8821
9038
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8822
9039
|
#
|
8823
|
-
# UI name: [Cases reopened][
|
9040
|
+
# UI name: [Cases reopened][78]
|
8824
9041
|
#
|
8825
9042
|
# RESOLVED\_CASE\_ACTIONS
|
8826
9043
|
#
|
@@ -8830,7 +9047,7 @@ module Aws::Connect
|
|
8830
9047
|
#
|
8831
9048
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8832
9049
|
#
|
8833
|
-
# UI name: [Cases resolved][
|
9050
|
+
# UI name: [Cases resolved][79]
|
8834
9051
|
#
|
8835
9052
|
# SERVICE\_LEVEL
|
8836
9053
|
#
|
@@ -8845,7 +9062,7 @@ module Aws::Connect
|
|
8845
9062
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8846
9063
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8847
9064
|
#
|
8848
|
-
# UI name: [Service level X][
|
9065
|
+
# UI name: [Service level X][80]
|
8849
9066
|
#
|
8850
9067
|
# STEP\_CONTACTS\_QUEUED
|
8851
9068
|
#
|
@@ -8863,7 +9080,7 @@ module Aws::Connect
|
|
8863
9080
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8864
9081
|
# Agent Hierarchy, Q in Connect
|
8865
9082
|
#
|
8866
|
-
# UI name: [After contact work time][
|
9083
|
+
# UI name: [After contact work time][81]
|
8867
9084
|
#
|
8868
9085
|
# SUM\_CONNECTING\_TIME\_AGENT
|
8869
9086
|
#
|
@@ -8876,7 +9093,7 @@ module Aws::Connect
|
|
8876
9093
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8877
9094
|
# Agent Hierarchy
|
8878
9095
|
#
|
8879
|
-
# UI name: [Agent API connecting time][
|
9096
|
+
# UI name: [Agent API connecting time][82]
|
8880
9097
|
#
|
8881
9098
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for this
|
8882
9099
|
# metric.
|
@@ -8898,7 +9115,7 @@ module Aws::Connect
|
|
8898
9115
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8899
9116
|
# RoutingStepExpression, Q in Connect
|
8900
9117
|
#
|
8901
|
-
# UI name: [Contact abandoned][
|
9118
|
+
# UI name: [Contact abandoned][83]
|
8902
9119
|
#
|
8903
9120
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
8904
9121
|
#
|
@@ -8911,7 +9128,7 @@ module Aws::Connect
|
|
8911
9128
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8912
9129
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8913
9130
|
#
|
8914
|
-
# UI name: [Contacts abandoned in X seconds][
|
9131
|
+
# UI name: [Contacts abandoned in X seconds][84]
|
8915
9132
|
#
|
8916
9133
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
8917
9134
|
#
|
@@ -8924,7 +9141,7 @@ module Aws::Connect
|
|
8924
9141
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
8925
9142
|
# (for "Less than") or `LTE` (for "Less than equal").
|
8926
9143
|
#
|
8927
|
-
# UI name: [Contacts answered in X seconds][
|
9144
|
+
# UI name: [Contacts answered in X seconds][85]
|
8928
9145
|
#
|
8929
9146
|
# SUM\_CONTACT\_FLOW\_TIME
|
8930
9147
|
#
|
@@ -8933,7 +9150,7 @@ module Aws::Connect
|
|
8933
9150
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8934
9151
|
# Agent Hierarchy, Q in Connect
|
8935
9152
|
#
|
8936
|
-
# UI name: [Contact flow time][
|
9153
|
+
# UI name: [Contact flow time][86]
|
8937
9154
|
#
|
8938
9155
|
# SUM\_CONTACT\_TIME\_AGENT
|
8939
9156
|
#
|
@@ -8941,7 +9158,7 @@ module Aws::Connect
|
|
8941
9158
|
#
|
8942
9159
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
8943
9160
|
#
|
8944
|
-
# UI name: [Agent on contact time][
|
9161
|
+
# UI name: [Agent on contact time][87]
|
8945
9162
|
#
|
8946
9163
|
# SUM\_CONTACTS\_DISCONNECTED
|
8947
9164
|
#
|
@@ -8953,7 +9170,7 @@ module Aws::Connect
|
|
8953
9170
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
|
8954
9171
|
# Connect
|
8955
9172
|
#
|
8956
|
-
# UI name: [Contact disconnected][
|
9173
|
+
# UI name: [Contact disconnected][88]
|
8957
9174
|
#
|
8958
9175
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
8959
9176
|
#
|
@@ -8961,7 +9178,7 @@ module Aws::Connect
|
|
8961
9178
|
#
|
8962
9179
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
8963
9180
|
#
|
8964
|
-
# UI name: [Error status time][
|
9181
|
+
# UI name: [Error status time][89]
|
8965
9182
|
#
|
8966
9183
|
# SUM\_HANDLE\_TIME
|
8967
9184
|
#
|
@@ -8970,7 +9187,7 @@ module Aws::Connect
|
|
8970
9187
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8971
9188
|
# Agent Hierarchy, Q in Connect
|
8972
9189
|
#
|
8973
|
-
# UI name: [Contact handle time][
|
9190
|
+
# UI name: [Contact handle time][90]
|
8974
9191
|
#
|
8975
9192
|
# SUM\_HOLD\_TIME
|
8976
9193
|
#
|
@@ -8979,7 +9196,7 @@ module Aws::Connect
|
|
8979
9196
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8980
9197
|
# Agent Hierarchy, Q in Connect
|
8981
9198
|
#
|
8982
|
-
# UI name: [Customer hold time][
|
9199
|
+
# UI name: [Customer hold time][91]
|
8983
9200
|
#
|
8984
9201
|
# SUM\_IDLE\_TIME\_AGENT
|
8985
9202
|
#
|
@@ -8987,7 +9204,7 @@ module Aws::Connect
|
|
8987
9204
|
#
|
8988
9205
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
8989
9206
|
#
|
8990
|
-
# UI name: [Agent idle time][
|
9207
|
+
# UI name: [Agent idle time][92]
|
8991
9208
|
#
|
8992
9209
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
8993
9210
|
#
|
@@ -8996,7 +9213,7 @@ module Aws::Connect
|
|
8996
9213
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
8997
9214
|
# Agent Hierarchy, Q in Connect
|
8998
9215
|
#
|
8999
|
-
# UI name: [Agent interaction and hold time][
|
9216
|
+
# UI name: [Agent interaction and hold time][93]
|
9000
9217
|
#
|
9001
9218
|
# SUM\_INTERACTION\_TIME
|
9002
9219
|
#
|
@@ -9005,7 +9222,7 @@ module Aws::Connect
|
|
9005
9222
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
9006
9223
|
# Agent Hierarchy
|
9007
9224
|
#
|
9008
|
-
# UI name: [Agent interaction time][
|
9225
|
+
# UI name: [Agent interaction time][94]
|
9009
9226
|
#
|
9010
9227
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
9011
9228
|
#
|
@@ -9013,7 +9230,7 @@ module Aws::Connect
|
|
9013
9230
|
#
|
9014
9231
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9015
9232
|
#
|
9016
|
-
# UI name: [Non-Productive Time][
|
9233
|
+
# UI name: [Non-Productive Time][95]
|
9017
9234
|
#
|
9018
9235
|
# SUM\_ONLINE\_TIME\_AGENT
|
9019
9236
|
#
|
@@ -9021,7 +9238,7 @@ module Aws::Connect
|
|
9021
9238
|
#
|
9022
9239
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
9023
9240
|
#
|
9024
|
-
# UI name: [Online time][
|
9241
|
+
# UI name: [Online time][96]
|
9025
9242
|
#
|
9026
9243
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
9027
9244
|
#
|
@@ -9030,7 +9247,7 @@ module Aws::Connect
|
|
9030
9247
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
9031
9248
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9032
9249
|
#
|
9033
|
-
# UI name: [Callback attempts][
|
9250
|
+
# UI name: [Callback attempts][97]
|
9034
9251
|
#
|
9035
9252
|
#
|
9036
9253
|
#
|
@@ -9050,81 +9267,87 @@ module Aws::Connect
|
|
9050
9267
|
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-acw-time-historical
|
9051
9268
|
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-avg-agent-api-connecting-time
|
9052
9269
|
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-pause-time-historical
|
9053
|
-
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9054
|
-
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9055
|
-
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9056
|
-
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9057
|
-
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9058
|
-
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9059
|
-
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9060
|
-
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9061
|
-
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9062
|
-
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9063
|
-
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9064
|
-
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9065
|
-
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9066
|
-
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9067
|
-
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9068
|
-
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
9069
|
-
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9070
|
-
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
9071
|
-
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9072
|
-
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9073
|
-
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-
|
9074
|
-
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
9075
|
-
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9076
|
-
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9077
|
-
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9078
|
-
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9079
|
-
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9080
|
-
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9081
|
-
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9082
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9083
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9084
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9085
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9086
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9087
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9088
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9089
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9090
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9091
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9092
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
9093
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9094
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9095
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9096
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9097
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9098
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9099
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9100
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9101
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9102
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9103
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9104
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9105
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9106
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9107
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
9108
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-
|
9109
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9110
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9111
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9112
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9113
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9114
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9115
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9116
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9117
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9118
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9119
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9120
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9121
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9122
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9123
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-
|
9124
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9125
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9126
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9127
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
9270
|
+
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-time-metric
|
9271
|
+
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-turns-metric
|
9272
|
+
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contacts-case-historical
|
9273
|
+
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-case-resolution-time-historical
|
9274
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contact-duration-historical
|
9275
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-conversation-duration-historical
|
9276
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-dials-historical
|
9277
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-flow-time-historical
|
9278
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-greeting-time-agent-historical
|
9279
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-handle-time-historical
|
9280
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-customer-hold-time-historical
|
9281
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#avg-customer-hold-time-all-contacts-historical
|
9282
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-holds-historical
|
9283
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-customer-hold-time-historical
|
9284
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
9285
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-agent-historical
|
9286
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-time-agent-historical
|
9287
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##average-non-talk-time-historical
|
9288
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-answer-time-historical
|
9289
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-resolution-time-historical
|
9290
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-historical
|
9291
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-agent-historical
|
9292
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-customer-historical
|
9293
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-wait-time-historical
|
9294
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed-metric
|
9295
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed-metric
|
9296
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-historical
|
9297
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-rate-historical
|
9298
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-interactions-historical
|
9299
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-send-attempts-historical
|
9300
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-created-historical
|
9301
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
|
9302
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
|
9303
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
|
9304
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
|
9305
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
|
9306
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
|
9307
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
9308
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
9309
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
9310
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical
|
9311
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
9312
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
9313
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
9314
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
9315
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempts-historical
|
9316
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempt-disposition-rate-historical
|
9317
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
|
9318
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-started-historical
|
9319
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#human-answered-historical
|
9320
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-flow-time-historical
|
9321
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
9322
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#minimum-flow-time-historical
|
9323
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome-metric
|
9324
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome-metric
|
9325
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
9326
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-percentage-historical
|
9327
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
9328
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
9329
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
9330
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
9331
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
9332
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historical
|
9333
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
9334
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
9335
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
9336
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
9337
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
9338
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
9339
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
9340
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
9341
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
9342
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
9343
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
9344
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
9345
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
9346
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
9347
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
9348
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
9349
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
9350
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
9128
9351
|
#
|
9129
9352
|
# @option params [String] :next_token
|
9130
9353
|
# The token for the next set of results. Use the value returned in the
|
@@ -9380,9 +9603,9 @@ module Aws::Connect
|
|
9380
9603
|
end
|
9381
9604
|
|
9382
9605
|
# Imports a claimed phone number from an external service, such as
|
9383
|
-
# Amazon
|
9384
|
-
# API only in the same Amazon Web Services
|
9385
|
-
# Connect instance was created.
|
9606
|
+
# Amazon Web Services End User Messaging, into an Amazon Connect
|
9607
|
+
# instance. You can call this API only in the same Amazon Web Services
|
9608
|
+
# Region where the Amazon Connect instance was created.
|
9386
9609
|
#
|
9387
9610
|
# Call the [DescribePhoneNumber][1] API to verify the status of a
|
9388
9611
|
# previous `ImportPhoneNumber` operation.
|
@@ -9420,8 +9643,9 @@ module Aws::Connect
|
|
9420
9643
|
#
|
9421
9644
|
# @option params [required, String] :source_phone_number_arn
|
9422
9645
|
# The claimed phone number ARN being imported from the external service,
|
9423
|
-
# such as Amazon
|
9424
|
-
#
|
9646
|
+
# such as Amazon Web Services End User Messaging. If it is from Amazon
|
9647
|
+
# Web Services End User Messaging, it looks like the ARN of the phone
|
9648
|
+
# number to import from Amazon Web Services End User Messaging.
|
9425
9649
|
#
|
9426
9650
|
# @option params [String] :phone_number_description
|
9427
9651
|
# The description of the phone number.
|
@@ -9641,13 +9865,32 @@ module Aws::Connect
|
|
9641
9865
|
req.send_request(options)
|
9642
9866
|
end
|
9643
9867
|
|
9868
|
+
# Provides information about contact tree, a list of associated contacts
|
9869
|
+
# with a unique identifier.
|
9870
|
+
#
|
9644
9871
|
# @option params [required, String] :instance_id
|
9872
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
9873
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
9874
|
+
#
|
9875
|
+
#
|
9876
|
+
#
|
9877
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
9645
9878
|
#
|
9646
9879
|
# @option params [required, String] :contact_id
|
9880
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
9647
9881
|
#
|
9648
9882
|
# @option params [Integer] :max_results
|
9883
|
+
# The maximum number of results to return per page.
|
9884
|
+
#
|
9885
|
+
# The maximum number of results to return per page. The default
|
9886
|
+
# MaxResult size is 25.
|
9887
|
+
#
|
9888
|
+
# Valid Range: Minimum value of 1. Maximum value of 100.
|
9649
9889
|
#
|
9650
9890
|
# @option params [String] :next_token
|
9891
|
+
# The token for the next set of results. Use the value returned in the
|
9892
|
+
# previous response in the next request to retrieve the next set of
|
9893
|
+
# results.
|
9651
9894
|
#
|
9652
9895
|
# @return [Types::ListAssociatedContactsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9653
9896
|
#
|
@@ -10329,7 +10572,7 @@ module Aws::Connect
|
|
10329
10572
|
#
|
10330
10573
|
# resp = client.list_flow_associations({
|
10331
10574
|
# instance_id: "InstanceId", # required
|
10332
|
-
# resource_type: "
|
10575
|
+
# resource_type: "WHATSAPP_MESSAGING_PHONE_NUMBER", # accepts WHATSAPP_MESSAGING_PHONE_NUMBER, VOICE_PHONE_NUMBER, INBOUND_EMAIL, OUTBOUND_EMAIL, ANALYTICS_CONNECTOR
|
10333
10576
|
# next_token: "NextToken",
|
10334
10577
|
# max_results: 1,
|
10335
10578
|
# })
|
@@ -10339,7 +10582,7 @@ module Aws::Connect
|
|
10339
10582
|
# resp.flow_association_summary_list #=> Array
|
10340
10583
|
# resp.flow_association_summary_list[0].resource_id #=> String
|
10341
10584
|
# resp.flow_association_summary_list[0].flow_id #=> String
|
10342
|
-
# resp.flow_association_summary_list[0].resource_type #=> String, one of "VOICE_PHONE_NUMBER", "INBOUND_EMAIL", "OUTBOUND_EMAIL"
|
10585
|
+
# resp.flow_association_summary_list[0].resource_type #=> String, one of "WHATSAPP_MESSAGING_PHONE_NUMBER", "VOICE_PHONE_NUMBER", "INBOUND_EMAIL", "OUTBOUND_EMAIL", "ANALYTICS_CONNECTOR"
|
10343
10586
|
# resp.next_token #=> String
|
10344
10587
|
#
|
10345
10588
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListFlowAssociations AWS API Documentation
|
@@ -10622,7 +10865,7 @@ module Aws::Connect
|
|
10622
10865
|
#
|
10623
10866
|
# resp = client.list_integration_associations({
|
10624
10867
|
# instance_id: "InstanceId", # required
|
10625
|
-
# 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
|
10868
|
+
# 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
|
10626
10869
|
# next_token: "NextToken",
|
10627
10870
|
# max_results: 1,
|
10628
10871
|
# integration_arn: "ARN",
|
@@ -10634,7 +10877,7 @@ module Aws::Connect
|
|
10634
10877
|
# resp.integration_association_summary_list[0].integration_association_id #=> String
|
10635
10878
|
# resp.integration_association_summary_list[0].integration_association_arn #=> String
|
10636
10879
|
# resp.integration_association_summary_list[0].instance_id #=> String
|
10637
|
-
# 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"
|
10880
|
+
# 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"
|
10638
10881
|
# resp.integration_association_summary_list[0].integration_arn #=> String
|
10639
10882
|
# resp.integration_association_summary_list[0].source_application_url #=> String
|
10640
10883
|
# resp.integration_association_summary_list[0].source_application_name #=> String
|
@@ -12674,6 +12917,9 @@ module Aws::Connect
|
|
12674
12917
|
# The identifier of the contact. This is the identifier of the contact
|
12675
12918
|
# associated with the first interaction with the contact center.
|
12676
12919
|
#
|
12920
|
+
# @option params [String] :contact_recording_type
|
12921
|
+
# The type of recording being operated on.
|
12922
|
+
#
|
12677
12923
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
12678
12924
|
#
|
12679
12925
|
# @example Request syntax with placeholder values
|
@@ -12682,6 +12928,7 @@ module Aws::Connect
|
|
12682
12928
|
# instance_id: "InstanceId", # required
|
12683
12929
|
# contact_id: "ContactId", # required
|
12684
12930
|
# initial_contact_id: "ContactId", # required
|
12931
|
+
# contact_recording_type: "AGENT", # accepts AGENT, IVR, SCREEN
|
12685
12932
|
# })
|
12686
12933
|
#
|
12687
12934
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ResumeContactRecording AWS API Documentation
|
@@ -12893,7 +13140,7 @@ module Aws::Connect
|
|
12893
13140
|
# Filters to be applied to search results.
|
12894
13141
|
#
|
12895
13142
|
# @option params [Types::ContactFlowModuleSearchCriteria] :search_criteria
|
12896
|
-
# The search criteria to be used to return
|
13143
|
+
# The search criteria to be used to return flow modules.
|
12897
13144
|
#
|
12898
13145
|
# <note markdown="1"> The `name` and `description` fields support "contains" queries with
|
12899
13146
|
# a minimum of 2 characters and a maximum of 25 characters. Any queries
|
@@ -12981,8 +13228,8 @@ module Aws::Connect
|
|
12981
13228
|
req.send_request(options)
|
12982
13229
|
end
|
12983
13230
|
|
12984
|
-
# Searches the
|
12985
|
-
#
|
13231
|
+
# Searches the flows in an Amazon Connect instance, with optional
|
13232
|
+
# filtering.
|
12986
13233
|
#
|
12987
13234
|
# @option params [required, String] :instance_id
|
12988
13235
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -13080,7 +13327,6 @@ module Aws::Connect
|
|
13080
13327
|
# resp.contact_flows[0].content #=> String
|
13081
13328
|
# resp.contact_flows[0].tags #=> Hash
|
13082
13329
|
# resp.contact_flows[0].tags["TagKey"] #=> String
|
13083
|
-
# resp.contact_flows[0].is_default #=> Boolean
|
13084
13330
|
# resp.contact_flows[0].flow_content_sha_256 #=> String
|
13085
13331
|
# resp.contact_flows[0].version #=> Integer
|
13086
13332
|
# resp.contact_flows[0].version_description #=> String
|
@@ -13219,15 +13465,29 @@ module Aws::Connect
|
|
13219
13465
|
req.send_request(options)
|
13220
13466
|
end
|
13221
13467
|
|
13468
|
+
# Searches email address in an instance, with optional filtering.
|
13469
|
+
#
|
13222
13470
|
# @option params [required, String] :instance_id
|
13471
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
13472
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
13473
|
+
#
|
13474
|
+
#
|
13475
|
+
#
|
13476
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
13223
13477
|
#
|
13224
13478
|
# @option params [Integer] :max_results
|
13479
|
+
# The maximum number of results to return per page.
|
13225
13480
|
#
|
13226
13481
|
# @option params [String] :next_token
|
13482
|
+
# The token for the next set of results. Use the value returned in the
|
13483
|
+
# previous response in the next request to retrieve the next set of
|
13484
|
+
# results.
|
13227
13485
|
#
|
13228
13486
|
# @option params [Types::EmailAddressSearchCriteria] :search_criteria
|
13487
|
+
# The search criteria to be used to return email addresses.
|
13229
13488
|
#
|
13230
13489
|
# @option params [Types::EmailAddressSearchFilter] :search_filter
|
13490
|
+
# Filters to be applied to search results.
|
13231
13491
|
#
|
13232
13492
|
# @return [Types::SearchEmailAddressesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13233
13493
|
#
|
@@ -14547,8 +14807,8 @@ module Aws::Connect
|
|
14547
14807
|
# not map to an active chat contact, a new chat contact is also created
|
14548
14808
|
# before handling chat action.
|
14549
14809
|
#
|
14550
|
-
# Access to this API is currently restricted to Amazon
|
14551
|
-
# supporting SMS integration.
|
14810
|
+
# Access to this API is currently restricted to Amazon Web Services End
|
14811
|
+
# User Messaging for supporting SMS integration.
|
14552
14812
|
#
|
14553
14813
|
# @option params [required, String] :source_id
|
14554
14814
|
# External identifier of chat customer participant, used in part to
|
@@ -14558,14 +14818,15 @@ module Aws::Connect
|
|
14558
14818
|
# @option params [required, String] :destination_id
|
14559
14819
|
# Chat system identifier, used in part to uniquely identify chat. This
|
14560
14820
|
# is associated with the Amazon Connect instance and flow to be used to
|
14561
|
-
# start chats. For
|
14562
|
-
#
|
14821
|
+
# start chats. For Server Migration Service, this is the phone number
|
14822
|
+
# destination of inbound Server Migration Service messages represented
|
14823
|
+
# by an Amazon Web Services End User Messaging phone number ARN.
|
14563
14824
|
#
|
14564
14825
|
# @option params [String] :subtype
|
14565
14826
|
# Classification of a channel. This is used in part to uniquely identify
|
14566
14827
|
# chat.
|
14567
14828
|
#
|
14568
|
-
# Valid value: `["connect:sms"]`
|
14829
|
+
# Valid value: `["connect:sms", connect:"WhatsApp"]`
|
14569
14830
|
#
|
14570
14831
|
# @option params [required, Types::ChatEvent] :event
|
14571
14832
|
# Chat integration event payload
|
@@ -14618,24 +14879,57 @@ module Aws::Connect
|
|
14618
14879
|
req.send_request(options)
|
14619
14880
|
end
|
14620
14881
|
|
14882
|
+
# Send outbound email for outbound campaigns. For more information about
|
14883
|
+
# outbound campaigns, see [Set up Amazon Connect outbound campaigns][1].
|
14884
|
+
#
|
14885
|
+
# <note markdown="1"> Only the Amazon Connect outbound campaigns service principal is
|
14886
|
+
# allowed to assume a role in your account and call this API.
|
14887
|
+
#
|
14888
|
+
# </note>
|
14889
|
+
#
|
14890
|
+
#
|
14891
|
+
#
|
14892
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/enable-outbound-campaigns.html
|
14893
|
+
#
|
14621
14894
|
# @option params [required, String] :instance_id
|
14895
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
14896
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
14897
|
+
#
|
14898
|
+
#
|
14899
|
+
#
|
14900
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
14622
14901
|
#
|
14623
14902
|
# @option params [required, Types::EmailAddressInfo] :from_email_address
|
14903
|
+
# The email address to be used for sending email.
|
14624
14904
|
#
|
14625
14905
|
# @option params [required, Types::EmailAddressInfo] :destination_email_address
|
14906
|
+
# The email address to send the email to.
|
14626
14907
|
#
|
14627
14908
|
# @option params [Types::OutboundAdditionalRecipients] :additional_recipients
|
14909
|
+
# The additional recipients address of the email in CC.
|
14628
14910
|
#
|
14629
14911
|
# @option params [required, Types::OutboundEmailContent] :email_message
|
14912
|
+
# The email message body to be sent to the newly created email.
|
14630
14913
|
#
|
14631
14914
|
# @option params [required, String] :traffic_type
|
14915
|
+
# Denotes the class of traffic.
|
14632
14916
|
#
|
14633
14917
|
# @option params [Types::SourceCampaign] :source_campaign
|
14918
|
+
# A Campaign object need for Campaign traffic type.
|
14634
14919
|
#
|
14635
14920
|
# @option params [String] :client_token
|
14921
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
14922
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
14923
|
+
# SDK populates this field. For more information about idempotency, see
|
14924
|
+
# [Making retries safe with idempotent APIs][1].
|
14925
|
+
#
|
14636
14926
|
# **A suitable default value is auto-generated.** You should normally
|
14637
14927
|
# not need to pass this option.**
|
14638
14928
|
#
|
14929
|
+
#
|
14930
|
+
#
|
14931
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
14932
|
+
#
|
14639
14933
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
14640
14934
|
#
|
14641
14935
|
# @example Request syntax with placeholder values
|
@@ -14697,11 +14991,12 @@ module Aws::Connect
|
|
14697
14991
|
# content.
|
14698
14992
|
#
|
14699
14993
|
# You may only use this API to upload attachments to an [Amazon Connect
|
14700
|
-
# Case][1].
|
14994
|
+
# Case][1] or [Amazon Connect Email][2].
|
14701
14995
|
#
|
14702
14996
|
#
|
14703
14997
|
#
|
14704
14998
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html
|
14999
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html
|
14705
15000
|
#
|
14706
15001
|
# @option params [String] :client_token
|
14707
15002
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -14732,9 +15027,11 @@ module Aws::Connect
|
|
14732
15027
|
# @option params [required, String] :file_use_case_type
|
14733
15028
|
# The use case for the file.
|
14734
15029
|
#
|
15030
|
+
# Only `ATTACHMENTS` are supported.
|
15031
|
+
#
|
14735
15032
|
# @option params [required, String] :associated_resource_arn
|
14736
|
-
# The resource to which the attached file is (being) uploaded to.
|
14737
|
-
# [Cases][1]
|
15033
|
+
# The resource to which the attached file is (being) uploaded to. The
|
15034
|
+
# supported resources are [Cases][1] and [Email][2].
|
14738
15035
|
#
|
14739
15036
|
# <note markdown="1"> This value must be a valid ARN.
|
14740
15037
|
#
|
@@ -14742,7 +15039,8 @@ module Aws::Connect
|
|
14742
15039
|
#
|
14743
15040
|
#
|
14744
15041
|
#
|
14745
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/
|
15042
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/cases.html
|
15043
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html
|
14746
15044
|
#
|
14747
15045
|
# @option params [Types::CreatedByInfo] :created_by
|
14748
15046
|
# Represents the identity that created the file.
|
@@ -14851,8 +15149,8 @@ module Aws::Connect
|
|
14851
15149
|
# @option params [required, String] :contact_flow_id
|
14852
15150
|
# The identifier of the flow for initiating the chat. To see the
|
14853
15151
|
# ContactFlowId in the Amazon Connect admin website, on the navigation
|
14854
|
-
# menu go to **Routing**, **
|
14855
|
-
#
|
15152
|
+
# menu go to **Routing**, **Flows**. Choose the flow. On the flow page,
|
15153
|
+
# under the name of the flow, choose **Show additional flow
|
14856
15154
|
# information**. The ContactFlowId is the last part of the ARN, shown
|
14857
15155
|
# here in bold:
|
14858
15156
|
#
|
@@ -14984,6 +15282,12 @@ module Aws::Connect
|
|
14984
15282
|
# segment_attributes: {
|
14985
15283
|
# "SegmentAttributeName" => {
|
14986
15284
|
# value_string: "SegmentAttributeValueString",
|
15285
|
+
# value_map: {
|
15286
|
+
# "SegmentAttributeName" => {
|
15287
|
+
# # recursive SegmentAttributeValue
|
15288
|
+
# },
|
15289
|
+
# },
|
15290
|
+
# value_integer: 1,
|
14987
15291
|
# },
|
14988
15292
|
# },
|
14989
15293
|
# })
|
@@ -15122,6 +15426,7 @@ module Aws::Connect
|
|
15122
15426
|
# initial_contact_id: "ContactId", # required
|
15123
15427
|
# voice_recording_configuration: { # required
|
15124
15428
|
# voice_recording_track: "FROM_AGENT", # accepts FROM_AGENT, TO_AGENT, ALL
|
15429
|
+
# ivr_recording_track: "ALL", # accepts ALL
|
15125
15430
|
# },
|
15126
15431
|
# })
|
15127
15432
|
#
|
@@ -15211,36 +15516,104 @@ module Aws::Connect
|
|
15211
15516
|
req.send_request(options)
|
15212
15517
|
end
|
15213
15518
|
|
15519
|
+
# Creates an inbound email contact and initiates a flow to start the
|
15520
|
+
# email contact for the customer. Response of this API provides the
|
15521
|
+
# ContactId of the email contact created.
|
15522
|
+
#
|
15214
15523
|
# @option params [required, String] :instance_id
|
15524
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
15525
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
15526
|
+
#
|
15527
|
+
#
|
15528
|
+
#
|
15529
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
15215
15530
|
#
|
15216
15531
|
# @option params [required, Types::EmailAddressInfo] :from_email_address
|
15532
|
+
# The email address of the customer.
|
15217
15533
|
#
|
15218
15534
|
# @option params [required, String] :destination_email_address
|
15535
|
+
# The email address associated with the instance.
|
15219
15536
|
#
|
15220
15537
|
# @option params [String] :description
|
15538
|
+
# A description of the email contact.
|
15221
15539
|
#
|
15222
15540
|
# @option params [Hash<String,Types::Reference>] :references
|
15541
|
+
# A formatted URL that is shown to an agent in the Contact Control Panel
|
15542
|
+
# (CCP). Emails can have the following reference types at the time of
|
15543
|
+
# creation: `URL` \| `NUMBER` \| `STRING` \| `DATE`. `EMAIL` \|
|
15544
|
+
# `EMAIL_MESSAGE` \|`ATTACHMENT` are not a supported reference type
|
15545
|
+
# during email creation.
|
15223
15546
|
#
|
15224
15547
|
# @option params [String] :name
|
15548
|
+
# The name of a email that is shown to an agent in the Contact Control
|
15549
|
+
# Panel (CCP).
|
15225
15550
|
#
|
15226
15551
|
# @option params [required, Types::InboundEmailContent] :email_message
|
15552
|
+
# The email message body to be sent to the newly created email.
|
15227
15553
|
#
|
15228
15554
|
# @option params [Types::InboundAdditionalRecipients] :additional_recipients
|
15555
|
+
# The addtional recipients address of the email.
|
15229
15556
|
#
|
15230
15557
|
# @option params [Array<Types::EmailAttachment>] :attachments
|
15558
|
+
# List of S3 presigned URLs of email attachments and their file name.
|
15231
15559
|
#
|
15232
15560
|
# @option params [String] :contact_flow_id
|
15561
|
+
# The identifier of the flow for initiating the emails. To see the
|
15562
|
+
# ContactFlowId in the Amazon Connect admin website, on the navigation
|
15563
|
+
# menu go to **Routing**, **Flows**. Choose the flow. On the flow page,
|
15564
|
+
# under the name of the flow, choose **Show additional flow
|
15565
|
+
# information**. The ContactFlowId is the last part of the ARN, shown
|
15566
|
+
# here in bold:
|
15567
|
+
#
|
15568
|
+
# arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
|
15233
15569
|
#
|
15234
15570
|
# @option params [String] :related_contact_id
|
15571
|
+
# The contactId that is related to this contact. Linking emails together
|
15572
|
+
# by using `RelatedContactID` copies over contact attributes from the
|
15573
|
+
# related email contact to the new email contact. All updates to
|
15574
|
+
# user-defined attributes in the new email contact are limited to the
|
15575
|
+
# individual contact ID. There are no limits to the number of contacts
|
15576
|
+
# that can be linked by using `RelatedContactId`.
|
15235
15577
|
#
|
15236
15578
|
# @option params [Hash<String,String>] :attributes
|
15579
|
+
# A custom key-value pair using an attribute map. The attributes are
|
15580
|
+
# standard Amazon Connect attributes, and can be accessed in flows just
|
15581
|
+
# like any other contact attributes.
|
15582
|
+
#
|
15583
|
+
# There can be up to 32,768 UTF-8 bytes across all key-value pairs per
|
15584
|
+
# contact. Attribute keys can include only alphanumeric, dash, and
|
15585
|
+
# underscore characters.
|
15237
15586
|
#
|
15238
15587
|
# @option params [Hash<String,Types::SegmentAttributeValue>] :segment_attributes
|
15588
|
+
# A set of system defined key-value pairs stored on individual contact
|
15589
|
+
# segments using an attribute map. The attributes are standard Amazon
|
15590
|
+
# Connect attributes. They can be accessed in flows.
|
15591
|
+
#
|
15592
|
+
# Attribute keys can include only alphanumeric, -, and \_.
|
15593
|
+
#
|
15594
|
+
# This field can be used to show channel subtype, such as
|
15595
|
+
# `connect:Guide`.
|
15596
|
+
#
|
15597
|
+
# <note markdown="1"> To set contact expiry, a `ValueMap` must be specified containing the
|
15598
|
+
# integer number of minutes the contact will be active for before
|
15599
|
+
# expiring, with `SegmentAttributes` like \{ ` "connect:ContactExpiry":
|
15600
|
+
# {"ValueMap" : { "ExpiryDuration": { "ValueInteger":135}}}}`.
|
15601
|
+
#
|
15602
|
+
# </note>
|
15239
15603
|
#
|
15240
15604
|
# @option params [String] :client_token
|
15605
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
15606
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
15607
|
+
# SDK populates this field. For more information about idempotency, see
|
15608
|
+
# [Making retries safe with idempotent APIs][1].
|
15609
|
+
#
|
15241
15610
|
# **A suitable default value is auto-generated.** You should normally
|
15242
15611
|
# not need to pass this option.**
|
15243
15612
|
#
|
15613
|
+
#
|
15614
|
+
#
|
15615
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
15616
|
+
#
|
15244
15617
|
# @return [Types::StartEmailContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15245
15618
|
#
|
15246
15619
|
# * {Types::StartEmailContactResponse#contact_id #contact_id} => String
|
@@ -15304,6 +15677,12 @@ module Aws::Connect
|
|
15304
15677
|
# segment_attributes: {
|
15305
15678
|
# "SegmentAttributeName" => {
|
15306
15679
|
# value_string: "SegmentAttributeValueString",
|
15680
|
+
# value_map: {
|
15681
|
+
# "SegmentAttributeName" => {
|
15682
|
+
# # recursive SegmentAttributeValue
|
15683
|
+
# },
|
15684
|
+
# },
|
15685
|
+
# value_integer: 1,
|
15307
15686
|
# },
|
15308
15687
|
# },
|
15309
15688
|
# client_token: "ClientToken",
|
@@ -15323,16 +15702,16 @@ module Aws::Connect
|
|
15323
15702
|
end
|
15324
15703
|
|
15325
15704
|
# Initiates a new outbound SMS contact to a customer. Response of this
|
15326
|
-
# API provides the ContactId of the outbound SMS contact created.
|
15705
|
+
# API provides the `ContactId` of the outbound SMS contact created.
|
15327
15706
|
#
|
15328
15707
|
# **SourceEndpoint** only supports Endpoints with
|
15329
15708
|
# `CONNECT_PHONENUMBER_ARN` as Type and **DestinationEndpoint** only
|
15330
15709
|
# supports Endpoints with `TELEPHONE_NUMBER` as Type. **ContactFlowId**
|
15331
15710
|
# initiates the flow to manage the new SMS contact created.
|
15332
15711
|
#
|
15333
|
-
# This API can be used to initiate outbound SMS contacts for an agent
|
15334
|
-
# it can also deflect an ongoing contact to an outbound SMS contact
|
15335
|
-
# using the [StartOutboundChatContact][1] Flow Action.
|
15712
|
+
# This API can be used to initiate outbound SMS contacts for an agent,
|
15713
|
+
# or it can also deflect an ongoing contact to an outbound SMS contact
|
15714
|
+
# by using the [StartOutboundChatContact][1] Flow Action.
|
15336
15715
|
#
|
15337
15716
|
# For more information about using SMS in Amazon Connect, see the
|
15338
15717
|
# following topics in the *Amazon Connect Administrator Guide*:
|
@@ -15458,6 +15837,12 @@ module Aws::Connect
|
|
15458
15837
|
# segment_attributes: { # required
|
15459
15838
|
# "SegmentAttributeName" => {
|
15460
15839
|
# value_string: "SegmentAttributeValueString",
|
15840
|
+
# value_map: {
|
15841
|
+
# "SegmentAttributeName" => {
|
15842
|
+
# # recursive SegmentAttributeValue
|
15843
|
+
# },
|
15844
|
+
# },
|
15845
|
+
# value_integer: 1,
|
15461
15846
|
# },
|
15462
15847
|
# },
|
15463
15848
|
# attributes: {
|
@@ -15490,22 +15875,45 @@ module Aws::Connect
|
|
15490
15875
|
req.send_request(options)
|
15491
15876
|
end
|
15492
15877
|
|
15878
|
+
# Initiates a flow to send an agent reply or outbound email contact
|
15879
|
+
# (created from the CreateContact API) to a customer.
|
15880
|
+
#
|
15493
15881
|
# @option params [required, String] :instance_id
|
15882
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
15883
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
15884
|
+
#
|
15885
|
+
#
|
15886
|
+
#
|
15887
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
15494
15888
|
#
|
15495
15889
|
# @option params [required, String] :contact_id
|
15890
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
15496
15891
|
#
|
15497
15892
|
# @option params [Types::EmailAddressInfo] :from_email_address
|
15893
|
+
# The email address associated with the instance.
|
15498
15894
|
#
|
15499
15895
|
# @option params [required, Types::EmailAddressInfo] :destination_email_address
|
15896
|
+
# The email address of the customer.
|
15500
15897
|
#
|
15501
15898
|
# @option params [Types::OutboundAdditionalRecipients] :additional_recipients
|
15899
|
+
# The addtional recipients address of email in CC.
|
15502
15900
|
#
|
15503
15901
|
# @option params [required, Types::OutboundEmailContent] :email_message
|
15902
|
+
# The email message body to be sent to the newly created email.
|
15504
15903
|
#
|
15505
15904
|
# @option params [String] :client_token
|
15905
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
15906
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
15907
|
+
# SDK populates this field. For more information about idempotency, see
|
15908
|
+
# [Making retries safe with idempotent APIs][1].
|
15909
|
+
#
|
15506
15910
|
# **A suitable default value is auto-generated.** You should normally
|
15507
15911
|
# not need to pass this option.**
|
15508
15912
|
#
|
15913
|
+
#
|
15914
|
+
#
|
15915
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
15916
|
+
#
|
15509
15917
|
# @return [Types::StartOutboundEmailContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15510
15918
|
#
|
15511
15919
|
# * {Types::StartOutboundEmailContactResponse#contact_id #contact_id} => String
|
@@ -15850,8 +16258,8 @@ module Aws::Connect
|
|
15850
16258
|
# @option params [String] :contact_flow_id
|
15851
16259
|
# The identifier of the flow for initiating the tasks. To see the
|
15852
16260
|
# ContactFlowId in the Amazon Connect admin website, on the navigation
|
15853
|
-
# menu go to **Routing**, **
|
15854
|
-
#
|
16261
|
+
# menu go to **Routing**, **Flows**. Choose the flow. On the flow page,
|
16262
|
+
# under the name of the flow, choose **Show additional flow
|
15855
16263
|
# information**. The ContactFlowId is the last part of the ARN, shown
|
15856
16264
|
# here in bold:
|
15857
16265
|
#
|
@@ -15931,6 +16339,26 @@ module Aws::Connect
|
|
15931
16339
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/tasks.html#linked-tasks
|
15932
16340
|
#
|
15933
16341
|
# @option params [Hash<String,Types::SegmentAttributeValue>] :segment_attributes
|
16342
|
+
# A set of system defined key-value pairs stored on individual contact
|
16343
|
+
# segments (unique contact ID) using an attribute map. The attributes
|
16344
|
+
# are standard Amazon Connect attributes. They can be accessed in flows.
|
16345
|
+
#
|
16346
|
+
# Attribute keys can include only alphanumeric, -, and \_.
|
16347
|
+
#
|
16348
|
+
# This field can be used to set Contact Expiry as a duration in minutes
|
16349
|
+
# and set a UserId for the User who created a task.
|
16350
|
+
#
|
16351
|
+
# <note markdown="1"> To set contact expiry, a ValueMap must be specified containing the
|
16352
|
+
# integer number of minutes the contact will be active for before
|
16353
|
+
# expiring, with `SegmentAttributes` like \{ ` "connect:ContactExpiry":
|
16354
|
+
# {"ValueMap" : { "ExpiryDuration": { "ValueInteger": 135}}}}`.
|
16355
|
+
#
|
16356
|
+
# To set the created by user, a valid AgentResourceId must be supplied,
|
16357
|
+
# with `SegmentAttributes` like \{ `"connect:CreatedByUser" {
|
16358
|
+
# "ValueString":
|
16359
|
+
# "arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/agent/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"}}}`.
|
16360
|
+
#
|
16361
|
+
# </note>
|
15934
16362
|
#
|
15935
16363
|
# @return [Types::StartTaskContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15936
16364
|
#
|
@@ -15964,6 +16392,12 @@ module Aws::Connect
|
|
15964
16392
|
# segment_attributes: {
|
15965
16393
|
# "SegmentAttributeName" => {
|
15966
16394
|
# value_string: "SegmentAttributeValueString",
|
16395
|
+
# value_map: {
|
16396
|
+
# "SegmentAttributeName" => {
|
16397
|
+
# # recursive SegmentAttributeValue
|
16398
|
+
# },
|
16399
|
+
# },
|
16400
|
+
# value_integer: 1,
|
15967
16401
|
# },
|
15968
16402
|
# },
|
15969
16403
|
# })
|
@@ -16194,6 +16628,9 @@ module Aws::Connect
|
|
16194
16628
|
# The identifier of the contact. This is the identifier of the contact
|
16195
16629
|
# associated with the first interaction with the contact center.
|
16196
16630
|
#
|
16631
|
+
# @option params [String] :contact_recording_type
|
16632
|
+
# The type of recording being operated on.
|
16633
|
+
#
|
16197
16634
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
16198
16635
|
#
|
16199
16636
|
# @example Request syntax with placeholder values
|
@@ -16202,6 +16639,7 @@ module Aws::Connect
|
|
16202
16639
|
# instance_id: "InstanceId", # required
|
16203
16640
|
# contact_id: "ContactId", # required
|
16204
16641
|
# initial_contact_id: "ContactId", # required
|
16642
|
+
# contact_recording_type: "AGENT", # accepts AGENT, IVR, SCREEN
|
16205
16643
|
# })
|
16206
16644
|
#
|
16207
16645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContactRecording AWS API Documentation
|
@@ -16348,6 +16786,9 @@ module Aws::Connect
|
|
16348
16786
|
# The identifier of the contact. This is the identifier of the contact
|
16349
16787
|
# associated with the first interaction with the contact center.
|
16350
16788
|
#
|
16789
|
+
# @option params [String] :contact_recording_type
|
16790
|
+
# The type of recording being operated on.
|
16791
|
+
#
|
16351
16792
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
16352
16793
|
#
|
16353
16794
|
# @example Request syntax with placeholder values
|
@@ -16356,6 +16797,7 @@ module Aws::Connect
|
|
16356
16797
|
# instance_id: "InstanceId", # required
|
16357
16798
|
# contact_id: "ContactId", # required
|
16358
16799
|
# initial_contact_id: "ContactId", # required
|
16800
|
+
# contact_recording_type: "AGENT", # accepts AGENT, IVR, SCREEN
|
16359
16801
|
# })
|
16360
16802
|
#
|
16361
16803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SuspendContactRecording AWS API Documentation
|
@@ -16418,9 +16860,9 @@ module Aws::Connect
|
|
16418
16860
|
# Adds the specified tags to the specified resource.
|
16419
16861
|
#
|
16420
16862
|
# Some of the supported resource types are agents, routing profiles,
|
16421
|
-
# queues, quick connects,
|
16422
|
-
#
|
16423
|
-
#
|
16863
|
+
# queues, quick connects, flows, agent statuses, hours of operation,
|
16864
|
+
# phone numbers, security profiles, and task templates. For a complete
|
16865
|
+
# list, see [Tagging resources in Amazon Connect][1].
|
16424
16866
|
#
|
16425
16867
|
# For sample policies that use tags, see [Amazon Connect Identity-Based
|
16426
16868
|
# Policy Examples][2] in the *Amazon Connect Administrator Guide*.
|
@@ -16775,6 +17217,61 @@ module Aws::Connect
|
|
16775
17217
|
# (CCP).
|
16776
17218
|
#
|
16777
17219
|
# @option params [Hash<String,Types::SegmentAttributeValue>] :segment_attributes
|
17220
|
+
# A set of system defined key-value pairs stored on individual contact
|
17221
|
+
# segments (unique contact ID) using an attribute map. The attributes
|
17222
|
+
# are standard Amazon Connect attributes. They can be accessed in flows.
|
17223
|
+
#
|
17224
|
+
# Attribute keys can include only alphanumeric, -, and \_.
|
17225
|
+
#
|
17226
|
+
# This field can be used to show channel subtype, such as
|
17227
|
+
# `connect:Guide`.
|
17228
|
+
#
|
17229
|
+
# Currently Contact Expiry is the only segment attribute which can be
|
17230
|
+
# updated by using the UpdateContact API.
|
17231
|
+
#
|
17232
|
+
# @option params [Types::QueueInfoInput] :queue_info
|
17233
|
+
# Information about the queue associated with a contact. This parameter
|
17234
|
+
# can only be updated for external audio contacts. It is used when you
|
17235
|
+
# integrate third-party systems with Contact Lens for analytics. For
|
17236
|
+
# more information, see [Amazon Connect Contact Lens integration][1] in
|
17237
|
+
# the <i> Amazon Connect Administrator Guide</i>.
|
17238
|
+
#
|
17239
|
+
#
|
17240
|
+
#
|
17241
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
17242
|
+
#
|
17243
|
+
# @option params [Types::UserInfo] :user_info
|
17244
|
+
# Information about the agent associated with a contact. This parameter
|
17245
|
+
# can only be updated for external audio contacts. It is used when you
|
17246
|
+
# integrate third-party systems with Contact Lens for analytics. For
|
17247
|
+
# more information, see [Amazon Connect Contact Lens integration][1] in
|
17248
|
+
# the <i> Amazon Connect Administrator Guide</i>.
|
17249
|
+
#
|
17250
|
+
#
|
17251
|
+
#
|
17252
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
17253
|
+
#
|
17254
|
+
# @option params [Types::Endpoint] :customer_endpoint
|
17255
|
+
# The endpoint of the customer for which the contact was initiated. For
|
17256
|
+
# external audio contacts, this is usually the end customer's phone
|
17257
|
+
# number. This value can only be updated for external audio contacts.
|
17258
|
+
# For more information, see [Amazon Connect Contact Lens integration][1]
|
17259
|
+
# in the *Amazon Connect Administrator Guide*.
|
17260
|
+
#
|
17261
|
+
#
|
17262
|
+
#
|
17263
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
17264
|
+
#
|
17265
|
+
# @option params [Types::Endpoint] :system_endpoint
|
17266
|
+
# External system endpoint for the contact was initiated. For external
|
17267
|
+
# audio contacts, this is the phone number of the external system such
|
17268
|
+
# as the contact center. This value can only be updated for external
|
17269
|
+
# audio contacts. For more information, see [Amazon Connect Contact Lens
|
17270
|
+
# integration][1] in the *Amazon Connect Administrator Guide*.
|
17271
|
+
#
|
17272
|
+
#
|
17273
|
+
#
|
17274
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
16778
17275
|
#
|
16779
17276
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
16780
17277
|
#
|
@@ -16797,8 +17294,28 @@ module Aws::Connect
|
|
16797
17294
|
# segment_attributes: {
|
16798
17295
|
# "SegmentAttributeName" => {
|
16799
17296
|
# value_string: "SegmentAttributeValueString",
|
17297
|
+
# value_map: {
|
17298
|
+
# "SegmentAttributeName" => {
|
17299
|
+
# # recursive SegmentAttributeValue
|
17300
|
+
# },
|
17301
|
+
# },
|
17302
|
+
# value_integer: 1,
|
16800
17303
|
# },
|
16801
17304
|
# },
|
17305
|
+
# queue_info: {
|
17306
|
+
# id: "QueueId",
|
17307
|
+
# },
|
17308
|
+
# user_info: {
|
17309
|
+
# user_id: "AgentResourceId",
|
17310
|
+
# },
|
17311
|
+
# customer_endpoint: {
|
17312
|
+
# type: "TELEPHONE_NUMBER", # accepts TELEPHONE_NUMBER, VOIP, CONTACT_FLOW, CONNECT_PHONENUMBER_ARN, EMAIL_ADDRESS
|
17313
|
+
# address: "EndpointAddress",
|
17314
|
+
# },
|
17315
|
+
# system_endpoint: {
|
17316
|
+
# type: "TELEPHONE_NUMBER", # accepts TELEPHONE_NUMBER, VOIP, CONTACT_FLOW, CONNECT_PHONENUMBER_ARN, EMAIL_ADDRESS
|
17317
|
+
# address: "EndpointAddress",
|
17318
|
+
# },
|
16802
17319
|
# })
|
16803
17320
|
#
|
16804
17321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContact AWS API Documentation
|
@@ -16960,8 +17477,8 @@ module Aws::Connect
|
|
16960
17477
|
# language][1].
|
16961
17478
|
#
|
16962
17479
|
# Use the `$SAVED` alias in the request to describe the `SAVED` content
|
16963
|
-
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`.
|
16964
|
-
#
|
17480
|
+
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`. After
|
17481
|
+
# a flow is published, `$SAVED` needs to be supplied to view saved
|
16965
17482
|
# content that has not been published.
|
16966
17483
|
#
|
16967
17484
|
#
|
@@ -17050,8 +17567,8 @@ module Aws::Connect
|
|
17050
17567
|
# instance.
|
17051
17568
|
#
|
17052
17569
|
# Use the `$SAVED` alias in the request to describe the `SAVED` content
|
17053
|
-
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`.
|
17054
|
-
#
|
17570
|
+
# of a Flow. For example, `arn:aws:.../contact-flow/{id}:$SAVED`. After
|
17571
|
+
# a flow is published, `$SAVED` needs to be supplied to view saved
|
17055
17572
|
# content that has not been published.
|
17056
17573
|
#
|
17057
17574
|
# @option params [required, String] :instance_id
|
@@ -17314,15 +17831,40 @@ module Aws::Connect
|
|
17314
17831
|
req.send_request(options)
|
17315
17832
|
end
|
17316
17833
|
|
17834
|
+
# Updates an email address metadata. For more information about email
|
17835
|
+
# addresses, see [Create email addresses][1] in the Amazon Connect
|
17836
|
+
# Administrator Guide.
|
17837
|
+
#
|
17838
|
+
#
|
17839
|
+
#
|
17840
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-email-address1.html
|
17841
|
+
#
|
17317
17842
|
# @option params [required, String] :instance_id
|
17843
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
17844
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
17845
|
+
#
|
17846
|
+
#
|
17847
|
+
#
|
17848
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
17318
17849
|
#
|
17319
17850
|
# @option params [required, String] :email_address_id
|
17851
|
+
# The identifier of the email address.
|
17320
17852
|
#
|
17321
17853
|
# @option params [String] :description
|
17854
|
+
# The description of the email address.
|
17322
17855
|
#
|
17323
17856
|
# @option params [String] :display_name
|
17857
|
+
# The display name of email address.
|
17324
17858
|
#
|
17325
17859
|
# @option params [String] :client_token
|
17860
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
17861
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
17862
|
+
# SDK populates this field. For more information about idempotency, see
|
17863
|
+
# [Making retries safe with idempotent APIs][1].
|
17864
|
+
#
|
17865
|
+
#
|
17866
|
+
#
|
17867
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
17326
17868
|
#
|
17327
17869
|
# @return [Types::UpdateEmailAddressMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17328
17870
|
#
|
@@ -18158,11 +18700,21 @@ module Aws::Connect
|
|
18158
18700
|
req.send_request(options)
|
18159
18701
|
end
|
18160
18702
|
|
18703
|
+
# Updates the outbound email address Id for a specified queue.
|
18704
|
+
#
|
18161
18705
|
# @option params [required, String] :instance_id
|
18706
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
18707
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
18708
|
+
#
|
18709
|
+
#
|
18710
|
+
#
|
18711
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
18162
18712
|
#
|
18163
18713
|
# @option params [required, String] :queue_id
|
18714
|
+
# The identifier for the queue.
|
18164
18715
|
#
|
18165
18716
|
# @option params [required, Types::OutboundEmailConfig] :outbound_email_config
|
18717
|
+
# The outbound email address ID for a specified queue.
|
18166
18718
|
#
|
18167
18719
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
18168
18720
|
#
|
@@ -18757,6 +19309,8 @@ module Aws::Connect
|
|
18757
19309
|
# by referencing this template.
|
18758
19310
|
#
|
18759
19311
|
# @option params [String] :self_assign_flow_id
|
19312
|
+
# The ContactFlowId for the flow that will be run if this template is
|
19313
|
+
# used to create a self-assigned task.
|
18760
19314
|
#
|
18761
19315
|
# @option params [Types::TaskTemplateConstraints] :constraints
|
18762
19316
|
# Constraints that are applicable to the fields listed.
|
@@ -19406,7 +19960,7 @@ module Aws::Connect
|
|
19406
19960
|
tracer: tracer
|
19407
19961
|
)
|
19408
19962
|
context[:gem_name] = 'aws-sdk-connect'
|
19409
|
-
context[:gem_version] = '1.
|
19963
|
+
context[:gem_version] = '1.188.0'
|
19410
19964
|
Seahorse::Client::Request.new(handlers, context)
|
19411
19965
|
end
|
19412
19966
|
|