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
@@ -88,10 +88,14 @@ module Aws::Connect
|
|
88
88
|
include Aws::Structure
|
89
89
|
end
|
90
90
|
|
91
|
+
# List of additional email addresses for an email contact.
|
92
|
+
#
|
91
93
|
# @!attribute [rw] to_list
|
94
|
+
# List of additional TO email recipients for an email contact.
|
92
95
|
# @return [Array<Types::EmailRecipient>]
|
93
96
|
#
|
94
97
|
# @!attribute [rw] cc_list
|
98
|
+
# List of additional CC email recipients for an email contact.
|
95
99
|
# @return [Array<Types::EmailRecipient>]
|
96
100
|
#
|
97
101
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AdditionalEmailRecipients AWS API Documentation
|
@@ -759,6 +763,12 @@ module Aws::Connect
|
|
759
763
|
#
|
760
764
|
# @!attribute [rw] resource_id
|
761
765
|
# The identifier of the resource.
|
766
|
+
#
|
767
|
+
# * Amazon Web Services End User Messaging SMS phone number ARN when
|
768
|
+
# using `SMS_PHONE_NUMBER`
|
769
|
+
#
|
770
|
+
# * Amazon Web Services End User Messaging Social phone number ARN
|
771
|
+
# when using `WHATSAPP_MESSAGING_PHONE_NUMBER`
|
762
772
|
# @return [String]
|
763
773
|
#
|
764
774
|
# @!attribute [rw] flow_id
|
@@ -1062,31 +1072,46 @@ module Aws::Connect
|
|
1062
1072
|
include Aws::Structure
|
1063
1073
|
end
|
1064
1074
|
|
1075
|
+
# Contact summary of a contact in contact tree associated with unique
|
1076
|
+
# identifier.
|
1077
|
+
#
|
1065
1078
|
# @!attribute [rw] contact_id
|
1079
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
1066
1080
|
# @return [String]
|
1067
1081
|
#
|
1068
1082
|
# @!attribute [rw] contact_arn
|
1083
|
+
# The Amazon Resource Name (ARN) of the contact
|
1069
1084
|
# @return [String]
|
1070
1085
|
#
|
1071
1086
|
# @!attribute [rw] initiation_timestamp
|
1087
|
+
# The date and time this contact was initiated, in UTC time.
|
1072
1088
|
# @return [Time]
|
1073
1089
|
#
|
1074
1090
|
# @!attribute [rw] disconnect_timestamp
|
1091
|
+
# The timestamp when the customer endpoint disconnected from Amazon
|
1092
|
+
# Connect.
|
1075
1093
|
# @return [Time]
|
1076
1094
|
#
|
1077
1095
|
# @!attribute [rw] initial_contact_id
|
1096
|
+
# If this contact is related to other contacts, this is the ID of the
|
1097
|
+
# initial contact.
|
1078
1098
|
# @return [String]
|
1079
1099
|
#
|
1080
1100
|
# @!attribute [rw] previous_contact_id
|
1101
|
+
# If this contact is not the first contact, this is the ID of the
|
1102
|
+
# previous contact.
|
1081
1103
|
# @return [String]
|
1082
1104
|
#
|
1083
1105
|
# @!attribute [rw] related_contact_id
|
1106
|
+
# The contactId that is related to this contact.
|
1084
1107
|
# @return [String]
|
1085
1108
|
#
|
1086
1109
|
# @!attribute [rw] initiation_method
|
1110
|
+
# Indicates how the contact was initiated.
|
1087
1111
|
# @return [String]
|
1088
1112
|
#
|
1089
1113
|
# @!attribute [rw] channel
|
1114
|
+
# How the contact reached your contact center.
|
1090
1115
|
# @return [String]
|
1091
1116
|
#
|
1092
1117
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociatedContactSummary AWS API Documentation
|
@@ -1218,6 +1243,7 @@ module Aws::Connect
|
|
1218
1243
|
# @return [String]
|
1219
1244
|
#
|
1220
1245
|
# @!attribute [rw] arn
|
1246
|
+
# The Amazon Resource Name (ARN) of the attachment reference.
|
1221
1247
|
# @return [String]
|
1222
1248
|
#
|
1223
1249
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AttachmentReference AWS API Documentation
|
@@ -1658,8 +1684,8 @@ module Aws::Connect
|
|
1658
1684
|
# @return [String]
|
1659
1685
|
#
|
1660
1686
|
# @!attribute [rw] associated_resource_arn
|
1661
|
-
# The resource to which the attached file is (being) uploaded to.
|
1662
|
-
# [Cases][1]
|
1687
|
+
# The resource to which the attached file is (being) uploaded to. The
|
1688
|
+
# supported resources are [Cases][1] and [Email][2].
|
1663
1689
|
#
|
1664
1690
|
# <note markdown="1"> This value must be a valid ARN.
|
1665
1691
|
#
|
@@ -1667,7 +1693,8 @@ module Aws::Connect
|
|
1667
1693
|
#
|
1668
1694
|
#
|
1669
1695
|
#
|
1670
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/
|
1696
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/cases.html
|
1697
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html
|
1671
1698
|
# @return [String]
|
1672
1699
|
#
|
1673
1700
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/BatchGetAttachedFileMetadataRequest AWS API Documentation
|
@@ -1708,6 +1735,12 @@ module Aws::Connect
|
|
1708
1735
|
#
|
1709
1736
|
# @!attribute [rw] resource_ids
|
1710
1737
|
# A list of resource identifiers to retrieve flow associations.
|
1738
|
+
#
|
1739
|
+
# * Amazon Web Services End User Messaging SMS phone number ARN when
|
1740
|
+
# using `SMS_PHONE_NUMBER`
|
1741
|
+
#
|
1742
|
+
# * Amazon Web Services End User Messaging Social phone number ARN
|
1743
|
+
# when using `WHATSAPP_MESSAGING_PHONE_NUMBER`
|
1711
1744
|
# @return [Array<String>]
|
1712
1745
|
#
|
1713
1746
|
# @!attribute [rw] resource_type
|
@@ -2093,9 +2126,10 @@ module Aws::Connect
|
|
2093
2126
|
#
|
2094
2127
|
# @!attribute [rw] source_phone_number_arn
|
2095
2128
|
# The claimed phone number ARN that was previously imported from the
|
2096
|
-
# external service, such as Amazon
|
2097
|
-
#
|
2098
|
-
# imported from Amazon
|
2129
|
+
# external service, such as Amazon Web Services End User Messaging. If
|
2130
|
+
# it is from Amazon Web Services End User Messaging, it looks like the
|
2131
|
+
# ARN of the phone number that was imported from Amazon Web Services
|
2132
|
+
# End User Messaging.
|
2099
2133
|
# @return [String]
|
2100
2134
|
#
|
2101
2135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ClaimedPhoneNumberSummary AWS API Documentation
|
@@ -2142,8 +2176,8 @@ module Aws::Connect
|
|
2142
2176
|
# @return [String]
|
2143
2177
|
#
|
2144
2178
|
# @!attribute [rw] associated_resource_arn
|
2145
|
-
# The resource to which the attached file is (being) uploaded to.
|
2146
|
-
# [Cases][1]
|
2179
|
+
# The resource to which the attached file is (being) uploaded to. The
|
2180
|
+
# supported resources are [Cases][1] and [Email][2].
|
2147
2181
|
#
|
2148
2182
|
# <note markdown="1"> This value must be a valid ARN.
|
2149
2183
|
#
|
@@ -2151,7 +2185,8 @@ module Aws::Connect
|
|
2151
2185
|
#
|
2152
2186
|
#
|
2153
2187
|
#
|
2154
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/
|
2188
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/cases.html
|
2189
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html
|
2155
2190
|
# @return [String]
|
2156
2191
|
#
|
2157
2192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CompleteAttachedFileUploadRequest AWS API Documentation
|
@@ -2197,6 +2232,8 @@ module Aws::Connect
|
|
2197
2232
|
include Aws::Structure
|
2198
2233
|
end
|
2199
2234
|
|
2235
|
+
# A conditional check failed.
|
2236
|
+
#
|
2200
2237
|
# @!attribute [rw] message
|
2201
2238
|
# @return [String]
|
2202
2239
|
#
|
@@ -2262,6 +2299,8 @@ module Aws::Connect
|
|
2262
2299
|
# @return [String]
|
2263
2300
|
#
|
2264
2301
|
# @!attribute [rw] contact_association_id
|
2302
|
+
# This is the root contactId which is used as a unique identifier for
|
2303
|
+
# all subsequent contacts in a contact tree.
|
2265
2304
|
# @return [String]
|
2266
2305
|
#
|
2267
2306
|
# @!attribute [rw] initiation_method
|
@@ -2343,9 +2382,16 @@ module Aws::Connect
|
|
2343
2382
|
# @return [Types::WisdomInfo]
|
2344
2383
|
#
|
2345
2384
|
# @!attribute [rw] customer_endpoint
|
2385
|
+
# The customer or external third party participant endpoint.
|
2346
2386
|
# @return [Types::EndpointInfo]
|
2347
2387
|
#
|
2348
2388
|
# @!attribute [rw] system_endpoint
|
2389
|
+
# The system endpoint. For `INBOUND`, this is the phone number or
|
2390
|
+
# email address that the customer dialed. For `OUTBOUND` and
|
2391
|
+
# `EXTERNAL_OUTBOUND`, this is the outbound caller ID number assigned
|
2392
|
+
# to the outbound queue that is used to dial the customer. For
|
2393
|
+
# callback, this shows up as Softphone for calls handled by agents
|
2394
|
+
# with softphone.
|
2349
2395
|
# @return [Types::EndpointInfo]
|
2350
2396
|
#
|
2351
2397
|
# @!attribute [rw] queue_time_adjustment_seconds
|
@@ -2407,6 +2453,7 @@ module Aws::Connect
|
|
2407
2453
|
# @return [Types::DisconnectDetails]
|
2408
2454
|
#
|
2409
2455
|
# @!attribute [rw] additional_email_recipients
|
2456
|
+
# List of additional email addresses for an email contact.
|
2410
2457
|
# @return [Types::AdditionalEmailRecipients]
|
2411
2458
|
#
|
2412
2459
|
# @!attribute [rw] segment_attributes
|
@@ -2569,7 +2616,7 @@ module Aws::Connect
|
|
2569
2616
|
# @return [String]
|
2570
2617
|
#
|
2571
2618
|
# @!attribute [rw] status
|
2572
|
-
# The status of the
|
2619
|
+
# The status of the flow.
|
2573
2620
|
# @return [String]
|
2574
2621
|
#
|
2575
2622
|
# @!attribute [rw] description
|
@@ -2593,11 +2640,6 @@ module Aws::Connect
|
|
2593
2640
|
# "key2":"value2"} }.
|
2594
2641
|
# @return [Hash<String,String>]
|
2595
2642
|
#
|
2596
|
-
# @!attribute [rw] is_default
|
2597
|
-
# Amazon Connect includes a set of default flows that have already
|
2598
|
-
# been published. It uses them to power your contact center.
|
2599
|
-
# @return [Boolean]
|
2600
|
-
#
|
2601
2643
|
# @!attribute [rw] flow_content_sha_256
|
2602
2644
|
# Indicates the checksum value of the flow content.
|
2603
2645
|
# @return [String]
|
@@ -2611,11 +2653,11 @@ module Aws::Connect
|
|
2611
2653
|
# @return [String]
|
2612
2654
|
#
|
2613
2655
|
# @!attribute [rw] last_modified_time
|
2614
|
-
# The time at which the
|
2656
|
+
# The time at which the flow was last modified.
|
2615
2657
|
# @return [Time]
|
2616
2658
|
#
|
2617
2659
|
# @!attribute [rw] last_modified_region
|
2618
|
-
# The region in which the
|
2660
|
+
# The region in which the flow was last modified
|
2619
2661
|
# @return [String]
|
2620
2662
|
#
|
2621
2663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlow AWS API Documentation
|
@@ -2630,7 +2672,6 @@ module Aws::Connect
|
|
2630
2672
|
:description,
|
2631
2673
|
:content,
|
2632
2674
|
:tags,
|
2633
|
-
:is_default,
|
2634
2675
|
:flow_content_sha_256,
|
2635
2676
|
:version,
|
2636
2677
|
:version_description,
|
@@ -2787,7 +2828,7 @@ module Aws::Connect
|
|
2787
2828
|
include Aws::Structure
|
2788
2829
|
end
|
2789
2830
|
|
2790
|
-
# The search criteria to be used to return
|
2831
|
+
# The search criteria to be used to return flows.
|
2791
2832
|
#
|
2792
2833
|
# @!attribute [rw] or_conditions
|
2793
2834
|
# A list of conditions which would be applied together with an `OR`
|
@@ -2881,7 +2922,7 @@ module Aws::Connect
|
|
2881
2922
|
# @return [String]
|
2882
2923
|
#
|
2883
2924
|
# @!attribute [rw] contact_flow_status
|
2884
|
-
# The status of the
|
2925
|
+
# The status of the flow.
|
2885
2926
|
# @return [String]
|
2886
2927
|
#
|
2887
2928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowSummary AWS API Documentation
|
@@ -2897,7 +2938,7 @@ module Aws::Connect
|
|
2897
2938
|
include Aws::Structure
|
2898
2939
|
end
|
2899
2940
|
|
2900
|
-
# A summary of a
|
2941
|
+
# A summary of a flow version's metadata.
|
2901
2942
|
#
|
2902
2943
|
# @!attribute [rw] arn
|
2903
2944
|
# The Amazon Resource Name (ARN) of the view version.
|
@@ -2995,6 +3036,7 @@ module Aws::Connect
|
|
2995
3036
|
# @return [Time]
|
2996
3037
|
#
|
2997
3038
|
# @!attribute [rw] segment_attributes
|
3039
|
+
# Set of segment attributes for a contact.
|
2998
3040
|
# @return [Hash<String,Types::ContactSearchSummarySegmentAttributeValue>]
|
2999
3041
|
#
|
3000
3042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummary AWS API Documentation
|
@@ -3054,7 +3096,13 @@ module Aws::Connect
|
|
3054
3096
|
include Aws::Structure
|
3055
3097
|
end
|
3056
3098
|
|
3099
|
+
# The value of a segment attribute. This is structured as a map with a
|
3100
|
+
# single key-value pair. The key 'valueString' indicates that the
|
3101
|
+
# attribute type is a string, and its corresponding value is the actual
|
3102
|
+
# string value of the segment attribute.
|
3103
|
+
#
|
3057
3104
|
# @!attribute [rw] value_string
|
3105
|
+
# The value of a segment attribute represented as a string.
|
3058
3106
|
# @return [String]
|
3059
3107
|
#
|
3060
3108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummarySegmentAttributeValue AWS API Documentation
|
@@ -3476,44 +3524,95 @@ module Aws::Connect
|
|
3476
3524
|
end
|
3477
3525
|
|
3478
3526
|
# @!attribute [rw] instance_id
|
3527
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3528
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3529
|
+
#
|
3530
|
+
#
|
3531
|
+
#
|
3532
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3479
3533
|
# @return [String]
|
3480
3534
|
#
|
3481
3535
|
# @!attribute [rw] client_token
|
3536
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
3537
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
3538
|
+
# SDK populates this field. For more information about idempotency,
|
3539
|
+
# see [Making retries safe with idempotent APIs][1].
|
3540
|
+
#
|
3482
3541
|
# **A suitable default value is auto-generated.** You should normally
|
3483
3542
|
# not need to pass this option.
|
3543
|
+
#
|
3544
|
+
#
|
3545
|
+
#
|
3546
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
3484
3547
|
# @return [String]
|
3485
3548
|
#
|
3486
3549
|
# @!attribute [rw] related_contact_id
|
3550
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
3487
3551
|
# @return [String]
|
3488
3552
|
#
|
3489
3553
|
# @!attribute [rw] attributes
|
3554
|
+
# A custom key-value pair using an attribute map. The attributes are
|
3555
|
+
# standard Amazon Connect attributes, and can be accessed in flows
|
3556
|
+
# just like any other contact attributes.
|
3557
|
+
#
|
3558
|
+
# There can be up to 32,768 UTF-8 bytes across all key-value pairs per
|
3559
|
+
# contact. Attribute keys can include only alphanumeric, dash, and
|
3560
|
+
# underscore characters.
|
3490
3561
|
# @return [Hash<String,String>]
|
3491
3562
|
#
|
3492
3563
|
# @!attribute [rw] references
|
3564
|
+
# A formatted URL that is shown to an agent in the Contact Control
|
3565
|
+
# Panel (CCP). Tasks can have the following reference types at the
|
3566
|
+
# time of creation: URL \| NUMBER \| STRING \| DATE \| EMAIL \|
|
3567
|
+
# ATTACHMENT.
|
3493
3568
|
# @return [Hash<String,Types::Reference>]
|
3494
3569
|
#
|
3495
3570
|
# @!attribute [rw] channel
|
3571
|
+
# The channel for the contact
|
3496
3572
|
# @return [String]
|
3497
3573
|
#
|
3498
3574
|
# @!attribute [rw] initiation_method
|
3575
|
+
# Indicates how the contact was initiated.
|
3499
3576
|
# @return [String]
|
3500
3577
|
#
|
3501
3578
|
# @!attribute [rw] expiry_duration_in_minutes
|
3579
|
+
# Number of minutes the contact will be active for before expiring
|
3502
3580
|
# @return [Integer]
|
3503
3581
|
#
|
3504
3582
|
# @!attribute [rw] user_info
|
3583
|
+
# User details for the contact
|
3505
3584
|
# @return [Types::UserInfo]
|
3506
3585
|
#
|
3507
3586
|
# @!attribute [rw] initiate_as
|
3587
|
+
# Initial state of the contact when it's created
|
3508
3588
|
# @return [String]
|
3509
3589
|
#
|
3510
3590
|
# @!attribute [rw] name
|
3591
|
+
# The name of a the contact.
|
3511
3592
|
# @return [String]
|
3512
3593
|
#
|
3513
3594
|
# @!attribute [rw] description
|
3595
|
+
# A description of the contact.
|
3514
3596
|
# @return [String]
|
3515
3597
|
#
|
3516
3598
|
# @!attribute [rw] segment_attributes
|
3599
|
+
# A set of system defined key-value pairs stored on individual contact
|
3600
|
+
# segments (unique contact ID) using an attribute map. The attributes
|
3601
|
+
# are standard Amazon Connect attributes. They can be accessed in
|
3602
|
+
# flows.
|
3603
|
+
#
|
3604
|
+
# Attribute keys can include only alphanumeric, -, and \_.
|
3605
|
+
#
|
3606
|
+
# This field can be used to set Segment Contact Expiry as a duration
|
3607
|
+
# in minutes.
|
3608
|
+
#
|
3609
|
+
# <note markdown="1"> To set contact expiry, a ValueMap must be specified containing the
|
3610
|
+
# integer number of minutes the contact will be active for before
|
3611
|
+
# expiring, with `SegmentAttributes` like \{ `
|
3612
|
+
# "connect:ContactExpiry": {"ValueMap" : { "ExpiryDuration": {
|
3613
|
+
# "ValueInteger": 135}}}}`.
|
3614
|
+
#
|
3615
|
+
# </note>
|
3517
3616
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
3518
3617
|
#
|
3519
3618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactRequest AWS API Documentation
|
@@ -3537,9 +3636,11 @@ module Aws::Connect
|
|
3537
3636
|
end
|
3538
3637
|
|
3539
3638
|
# @!attribute [rw] contact_id
|
3639
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
3540
3640
|
# @return [String]
|
3541
3641
|
#
|
3542
3642
|
# @!attribute [rw] contact_arn
|
3643
|
+
# The Amazon Resource Name (ARN) of the created contact.
|
3543
3644
|
# @return [String]
|
3544
3645
|
#
|
3545
3646
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactResponse AWS API Documentation
|
@@ -3552,21 +3653,42 @@ module Aws::Connect
|
|
3552
3653
|
end
|
3553
3654
|
|
3554
3655
|
# @!attribute [rw] description
|
3656
|
+
# The description of the email address.
|
3555
3657
|
# @return [String]
|
3556
3658
|
#
|
3557
3659
|
# @!attribute [rw] instance_id
|
3660
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
3661
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
3662
|
+
#
|
3663
|
+
#
|
3664
|
+
#
|
3665
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
3558
3666
|
# @return [String]
|
3559
3667
|
#
|
3560
3668
|
# @!attribute [rw] email_address
|
3669
|
+
# The email address with the instance, in
|
3670
|
+
# \[^\\s@\]+@\[^\\s@\]+\\.\[^\\s@\]+ format.
|
3561
3671
|
# @return [String]
|
3562
3672
|
#
|
3563
3673
|
# @!attribute [rw] display_name
|
3674
|
+
# The display name of email address
|
3564
3675
|
# @return [String]
|
3565
3676
|
#
|
3566
3677
|
# @!attribute [rw] tags
|
3678
|
+
# The tags used to organize, track, or control access for this
|
3679
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
3680
|
+
# "key2":"value2"} }.
|
3567
3681
|
# @return [Hash<String,String>]
|
3568
3682
|
#
|
3569
3683
|
# @!attribute [rw] client_token
|
3684
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
3685
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
3686
|
+
# SDK populates this field. For more information about idempotency,
|
3687
|
+
# see [Making retries safe with idempotent APIs][1].
|
3688
|
+
#
|
3689
|
+
#
|
3690
|
+
#
|
3691
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
3570
3692
|
# @return [String]
|
3571
3693
|
#
|
3572
3694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateEmailAddressRequest AWS API Documentation
|
@@ -3583,9 +3705,11 @@ module Aws::Connect
|
|
3583
3705
|
end
|
3584
3706
|
|
3585
3707
|
# @!attribute [rw] email_address_id
|
3708
|
+
# The identifier of the email address.
|
3586
3709
|
# @return [String]
|
3587
3710
|
#
|
3588
3711
|
# @!attribute [rw] email_address_arn
|
3712
|
+
# The Amazon Resource Name (ARN) of the email address.
|
3589
3713
|
# @return [String]
|
3590
3714
|
#
|
3591
3715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateEmailAddressResponse AWS API Documentation
|
@@ -3807,8 +3931,9 @@ module Aws::Connect
|
|
3807
3931
|
# @!attribute [rw] integration_arn
|
3808
3932
|
# The Amazon Resource Name (ARN) of the integration.
|
3809
3933
|
#
|
3810
|
-
# <note markdown="1"> When integrating with Amazon
|
3811
|
-
#
|
3934
|
+
# <note markdown="1"> When integrating with Amazon Web Services End User Messaging, the
|
3935
|
+
# Amazon Connect and Amazon Web Services End User Messaging instances
|
3936
|
+
# must be in the same account.
|
3812
3937
|
#
|
3813
3938
|
# </note>
|
3814
3939
|
# @return [String]
|
@@ -4159,6 +4284,7 @@ module Aws::Connect
|
|
4159
4284
|
# @return [Types::OutboundCallerConfig]
|
4160
4285
|
#
|
4161
4286
|
# @!attribute [rw] outbound_email_config
|
4287
|
+
# The outbound email address ID for a specified queue.
|
4162
4288
|
# @return [Types::OutboundEmailConfig]
|
4163
4289
|
#
|
4164
4290
|
# @!attribute [rw] hours_of_operation_id
|
@@ -4547,6 +4673,8 @@ module Aws::Connect
|
|
4547
4673
|
# @return [String]
|
4548
4674
|
#
|
4549
4675
|
# @!attribute [rw] self_assign_flow_id
|
4676
|
+
# The ContactFlowId for the flow that will be run if this template is
|
4677
|
+
# used to create a self-assigned task.
|
4550
4678
|
# @return [String]
|
4551
4679
|
#
|
4552
4680
|
# @!attribute [rw] constraints
|
@@ -5545,9 +5673,16 @@ module Aws::Connect
|
|
5545
5673
|
class DeleteContactFlowResponse < Aws::EmptyStructure; end
|
5546
5674
|
|
5547
5675
|
# @!attribute [rw] instance_id
|
5676
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
5677
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
5678
|
+
#
|
5679
|
+
#
|
5680
|
+
#
|
5681
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
5548
5682
|
# @return [String]
|
5549
5683
|
#
|
5550
5684
|
# @!attribute [rw] email_address_id
|
5685
|
+
# The identifier of the email address.
|
5551
5686
|
# @return [String]
|
5552
5687
|
#
|
5553
5688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteEmailAddressRequest AWS API Documentation
|
@@ -6214,9 +6349,16 @@ module Aws::Connect
|
|
6214
6349
|
end
|
6215
6350
|
|
6216
6351
|
# @!attribute [rw] instance_id
|
6352
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6353
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6354
|
+
#
|
6355
|
+
#
|
6356
|
+
#
|
6357
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6217
6358
|
# @return [String]
|
6218
6359
|
#
|
6219
6360
|
# @!attribute [rw] email_address_id
|
6361
|
+
# The identifier of the email address.
|
6220
6362
|
# @return [String]
|
6221
6363
|
#
|
6222
6364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeEmailAddressRequest AWS API Documentation
|
@@ -6229,27 +6371,38 @@ module Aws::Connect
|
|
6229
6371
|
end
|
6230
6372
|
|
6231
6373
|
# @!attribute [rw] email_address_id
|
6374
|
+
# The identifier of the email address.
|
6232
6375
|
# @return [String]
|
6233
6376
|
#
|
6234
6377
|
# @!attribute [rw] email_address_arn
|
6378
|
+
# The Amazon Resource Name (ARN) of the email address.
|
6235
6379
|
# @return [String]
|
6236
6380
|
#
|
6237
6381
|
# @!attribute [rw] email_address
|
6382
|
+
# The email address with the instance, in
|
6383
|
+
# \[^\\s@\]+@\[^\\s@\]+\\.\[^\\s@\]+ format.
|
6238
6384
|
# @return [String]
|
6239
6385
|
#
|
6240
6386
|
# @!attribute [rw] display_name
|
6387
|
+
# The display name of email address
|
6241
6388
|
# @return [String]
|
6242
6389
|
#
|
6243
6390
|
# @!attribute [rw] description
|
6391
|
+
# The description of the email address.
|
6244
6392
|
# @return [String]
|
6245
6393
|
#
|
6246
6394
|
# @!attribute [rw] create_timestamp
|
6395
|
+
# The email address creation timestamp in ISO 8601 Datetime.
|
6247
6396
|
# @return [String]
|
6248
6397
|
#
|
6249
6398
|
# @!attribute [rw] modified_timestamp
|
6399
|
+
# The email address last modification timestamp in ISO 8601 Datetime.
|
6250
6400
|
# @return [String]
|
6251
6401
|
#
|
6252
6402
|
# @!attribute [rw] tags
|
6403
|
+
# The tags used to organize, track, or control access for this
|
6404
|
+
# resource. For example, \{ "Tags": \{"key1":"value1",
|
6405
|
+
# "key2":"value2"} }.
|
6253
6406
|
# @return [Hash<String,String>]
|
6254
6407
|
#
|
6255
6408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeEmailAddressResponse AWS API Documentation
|
@@ -7066,6 +7219,12 @@ module Aws::Connect
|
|
7066
7219
|
#
|
7067
7220
|
# @!attribute [rw] resource_id
|
7068
7221
|
# The identifier of the resource.
|
7222
|
+
#
|
7223
|
+
# * Amazon Web Services End User Messaging SMS phone number ARN when
|
7224
|
+
# using `SMS_PHONE_NUMBER`
|
7225
|
+
#
|
7226
|
+
# * Amazon Web Services End User Messaging Social phone number ARN
|
7227
|
+
# when using `WHATSAPP_MESSAGING_PHONE_NUMBER`
|
7069
7228
|
# @return [String]
|
7070
7229
|
#
|
7071
7230
|
# @!attribute [rw] resource_type
|
@@ -7431,10 +7590,15 @@ module Aws::Connect
|
|
7431
7590
|
include Aws::Structure
|
7432
7591
|
end
|
7433
7592
|
|
7593
|
+
# Contains information about a source or destination email address
|
7594
|
+
#
|
7434
7595
|
# @!attribute [rw] email_address
|
7596
|
+
# The email address with the instance, in
|
7597
|
+
# \[^\\s@\]+@\[^\\s@\]+\\.\[^\\s@\]+ format.
|
7435
7598
|
# @return [String]
|
7436
7599
|
#
|
7437
7600
|
# @!attribute [rw] display_name
|
7601
|
+
# The display name of email address.
|
7438
7602
|
# @return [String]
|
7439
7603
|
#
|
7440
7604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailAddressInfo AWS API Documentation
|
@@ -7446,19 +7610,27 @@ module Aws::Connect
|
|
7446
7610
|
include Aws::Structure
|
7447
7611
|
end
|
7448
7612
|
|
7613
|
+
# Contains information about an email address for a contact center.
|
7614
|
+
#
|
7449
7615
|
# @!attribute [rw] email_address_id
|
7616
|
+
# The identifier of the email address.
|
7450
7617
|
# @return [String]
|
7451
7618
|
#
|
7452
7619
|
# @!attribute [rw] email_address_arn
|
7620
|
+
# The Amazon Resource Name (ARN) of the email address.
|
7453
7621
|
# @return [String]
|
7454
7622
|
#
|
7455
7623
|
# @!attribute [rw] email_address
|
7624
|
+
# The email address with the instance, in
|
7625
|
+
# \[^\\s@\]+@\[^\\s@\]+\\.\[^\\s@\]+ format.
|
7456
7626
|
# @return [String]
|
7457
7627
|
#
|
7458
7628
|
# @!attribute [rw] description
|
7629
|
+
# The description of the email address.
|
7459
7630
|
# @return [String]
|
7460
7631
|
#
|
7461
7632
|
# @!attribute [rw] display_name
|
7633
|
+
# The display name of email address.
|
7462
7634
|
# @return [String]
|
7463
7635
|
#
|
7464
7636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailAddressMetadata AWS API Documentation
|
@@ -7473,10 +7645,16 @@ module Aws::Connect
|
|
7473
7645
|
include Aws::Structure
|
7474
7646
|
end
|
7475
7647
|
|
7648
|
+
# The search criteria to be used to return email addresses.
|
7649
|
+
#
|
7476
7650
|
# @!attribute [rw] or_conditions
|
7651
|
+
# A list of conditions which would be applied together with an OR
|
7652
|
+
# condition.
|
7477
7653
|
# @return [Array<Types::EmailAddressSearchCriteria>]
|
7478
7654
|
#
|
7479
7655
|
# @!attribute [rw] and_conditions
|
7656
|
+
# A list of conditions which would be applied together with an AND
|
7657
|
+
# condition.
|
7480
7658
|
# @return [Array<Types::EmailAddressSearchCriteria>]
|
7481
7659
|
#
|
7482
7660
|
# @!attribute [rw] string_condition
|
@@ -7494,6 +7672,8 @@ module Aws::Connect
|
|
7494
7672
|
include Aws::Structure
|
7495
7673
|
end
|
7496
7674
|
|
7675
|
+
# Filters to be applied to search results.
|
7676
|
+
#
|
7497
7677
|
# @!attribute [rw] tag_filter
|
7498
7678
|
# An object that can be used to specify Tag conditions inside the
|
7499
7679
|
# `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
|
@@ -7514,10 +7694,15 @@ module Aws::Connect
|
|
7514
7694
|
include Aws::Structure
|
7515
7695
|
end
|
7516
7696
|
|
7697
|
+
# Information about the email attachment files.
|
7698
|
+
#
|
7517
7699
|
# @!attribute [rw] file_name
|
7700
|
+
# A case-sensitive name of the attached file being uploaded.
|
7518
7701
|
# @return [String]
|
7519
7702
|
#
|
7520
7703
|
# @!attribute [rw] s3_url
|
7704
|
+
# The pre-signed URLs for the S3 bucket where the email attachment is
|
7705
|
+
# stored.
|
7521
7706
|
# @return [String]
|
7522
7707
|
#
|
7523
7708
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailAttachment AWS API Documentation
|
@@ -7529,10 +7714,15 @@ module Aws::Connect
|
|
7529
7714
|
include Aws::Structure
|
7530
7715
|
end
|
7531
7716
|
|
7717
|
+
# Information about the reference when the referenceType is
|
7718
|
+
# `EMAIL_MESSAGE`. Otherwise, null.
|
7719
|
+
#
|
7532
7720
|
# @!attribute [rw] name
|
7721
|
+
# The name of the email message reference
|
7533
7722
|
# @return [String]
|
7534
7723
|
#
|
7535
7724
|
# @!attribute [rw] arn
|
7725
|
+
# The Amazon Resource Name (ARN) of the email message reference
|
7536
7726
|
# @return [String]
|
7537
7727
|
#
|
7538
7728
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailMessageReference AWS API Documentation
|
@@ -7544,10 +7734,22 @@ module Aws::Connect
|
|
7544
7734
|
include Aws::Structure
|
7545
7735
|
end
|
7546
7736
|
|
7737
|
+
# Information about the email recipient
|
7738
|
+
#
|
7547
7739
|
# @!attribute [rw] address
|
7740
|
+
# Address of the email recipient.
|
7741
|
+
#
|
7742
|
+
# Type: String
|
7743
|
+
#
|
7744
|
+
# Length Constraints: Minimum length of 1. Maximum length of 256.
|
7548
7745
|
# @return [String]
|
7549
7746
|
#
|
7550
7747
|
# @!attribute [rw] display_name
|
7748
|
+
# Display name of the email recipient.
|
7749
|
+
#
|
7750
|
+
# Type: String
|
7751
|
+
#
|
7752
|
+
# Length Constraints: Minimum length of 1. Maximum length of 256.
|
7551
7753
|
# @return [String]
|
7552
7754
|
#
|
7553
7755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailRecipient AWS API Documentation
|
@@ -7645,13 +7847,18 @@ module Aws::Connect
|
|
7645
7847
|
include Aws::Structure
|
7646
7848
|
end
|
7647
7849
|
|
7850
|
+
# Information about the endpoint.
|
7851
|
+
#
|
7648
7852
|
# @!attribute [rw] type
|
7853
|
+
# Type of endpoint.
|
7649
7854
|
# @return [String]
|
7650
7855
|
#
|
7651
7856
|
# @!attribute [rw] address
|
7857
|
+
# Address of the endpoint.
|
7652
7858
|
# @return [String]
|
7653
7859
|
#
|
7654
7860
|
# @!attribute [rw] display_name
|
7861
|
+
# Display name of the endpoint.
|
7655
7862
|
# @return [String]
|
7656
7863
|
#
|
7657
7864
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EndpointInfo AWS API Documentation
|
@@ -8775,7 +8982,7 @@ module Aws::Connect
|
|
8775
8982
|
# Request to GetAttachedFile API.
|
8776
8983
|
#
|
8777
8984
|
# @!attribute [rw] instance_id
|
8778
|
-
# The unique identifier of the Connect instance.
|
8985
|
+
# The unique identifier of the Amazon Connect instance.
|
8779
8986
|
# @return [String]
|
8780
8987
|
#
|
8781
8988
|
# @!attribute [rw] file_id
|
@@ -8788,8 +8995,8 @@ module Aws::Connect
|
|
8788
8995
|
# @return [Integer]
|
8789
8996
|
#
|
8790
8997
|
# @!attribute [rw] associated_resource_arn
|
8791
|
-
# The resource to which the attached file is (being) uploaded to.
|
8792
|
-
# [Cases][1]
|
8998
|
+
# The resource to which the attached file is (being) uploaded to. The
|
8999
|
+
# supported resources are [Cases][1] and [Email][2].
|
8793
9000
|
#
|
8794
9001
|
# <note markdown="1"> This value must be a valid ARN.
|
8795
9002
|
#
|
@@ -8797,7 +9004,8 @@ module Aws::Connect
|
|
8797
9004
|
#
|
8798
9005
|
#
|
8799
9006
|
#
|
8800
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/
|
9007
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/cases.html
|
9008
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html
|
8801
9009
|
# @return [String]
|
8802
9010
|
#
|
8803
9011
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetAttachedFileRequest AWS API Documentation
|
@@ -9292,6 +9500,12 @@ module Aws::Connect
|
|
9292
9500
|
#
|
9293
9501
|
# @!attribute [rw] resource_id
|
9294
9502
|
# The identifier of the resource.
|
9503
|
+
#
|
9504
|
+
# * Amazon Web Services End User Messaging SMS phone number ARN when
|
9505
|
+
# using `SMS_PHONE_NUMBER`
|
9506
|
+
#
|
9507
|
+
# * Amazon Web Services End User Messaging Social phone number ARN
|
9508
|
+
# when using `WHATSAPP_MESSAGING_PHONE_NUMBER`
|
9295
9509
|
# @return [String]
|
9296
9510
|
#
|
9297
9511
|
# @!attribute [rw] resource_type
|
@@ -9703,13 +9917,17 @@ module Aws::Connect
|
|
9703
9917
|
# `AGENT_HIERARCHY_LEVEL_ONE` \| `AGENT_HIERARCHY_LEVEL_TWO` \|
|
9704
9918
|
# `AGENT_HIERARCHY_LEVEL_THREE` \| `AGENT_HIERARCHY_LEVEL_FOUR` \|
|
9705
9919
|
# `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
9706
|
-
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `
|
9707
|
-
# `
|
9708
|
-
# `
|
9920
|
+
# `ANSWERING_MACHINE_DETECTION_STATUS` \| ` BOT_ID` \| `BOT_ALIAS`
|
9921
|
+
# \| `BOT_VERSION` \| `BOT_LOCALE` \| `BOT_INTENT_NAME` \|
|
9922
|
+
# `CAMPAIGN` \| `CAMPAIGN_DELIVERY_EVENT_TYPE` \|`CASE_TEMPLATE_ARN`
|
9923
|
+
# \| `CASE_STATUS` \| `CHANNEL` \|
|
9709
9924
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
9710
|
-
# \| `FEATURE` \| `
|
9925
|
+
# \| `FEATURE` \| `FLOW_ACTION_ID` \| `FLOW_TYPE` \|
|
9926
|
+
# `FLOWS_MODULE_RESOURCE_ID` \| `FLOWS_NEXT_RESOURCE_ID` \|
|
9711
9927
|
# `FLOWS_NEXT_RESOURCE_QUEUE_ID` \| `FLOWS_OUTCOME_TYPE` \|
|
9712
9928
|
# `FLOWS_RESOURCE_ID` \| `INITIATION_METHOD` \|
|
9929
|
+
# `INVOKING_RESOURCE_PUBLISHED_TIMESTAMP` \|
|
9930
|
+
# `INVOKING_RESOURCE_TYPE` \| `PARENT_FLOWS_RESOURCE_ID` \|
|
9713
9931
|
# `RESOURCE_PUBLISHED_TIMESTAMP` \| `ROUTING_PROFILE` \|
|
9714
9932
|
# `ROUTING_STEP_EXPRESSION` \| `QUEUE` \| `Q_CONNECT_ENABLED` \|
|
9715
9933
|
#
|
@@ -9763,12 +9981,15 @@ module Aws::Connect
|
|
9763
9981
|
# Valid grouping keys: `AGENT` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
|
9764
9982
|
# `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
|
9765
9983
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
9766
|
-
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `
|
9984
|
+
# `ANSWERING_MACHINE_DETECTION_STATUS` \| `BOT_ID` \| `BOT_ALIAS` \|
|
9985
|
+
# `BOT_VERSION` \| `BOT_LOCALE` \| `BOT_INTENT_NAME` \| `CAMPAIGN` \|
|
9767
9986
|
# `CAMPAIGN_DELIVERY_EVENT_TYPE` \| `CASE_TEMPLATE_ARN` \|
|
9768
9987
|
# `CASE_STATUS` \| `CHANNEL` \|
|
9769
9988
|
# `contact/segmentAttributes/connect:Subtype` \| `DISCONNECT_REASON`
|
9770
|
-
# \| `FLOWS_RESOURCE_ID` \| `FLOWS_MODULE_RESOURCE_ID` \|
|
9771
|
-
# \| `
|
9989
|
+
# \| `FLOWS_RESOURCE_ID` \| `FLOWS_MODULE_RESOURCE_ID` \|
|
9990
|
+
# `FLOW_ACTION_ID` \| `FLOW_TYPE` \| `FLOWS_OUTCOME_TYPE` \|
|
9991
|
+
# `INITIATION_METHOD` \| `INVOKING_RESOURCE_PUBLISHED_TIMESTAMP` \|
|
9992
|
+
# `INVOKING_RESOURCE_TYPE` \| `PARENT_FLOWS_RESOURCE_ID` \|
|
9772
9993
|
# `Q_CONNECT_ENABLED` \| `QUEUE` \| `RESOURCE_PUBLISHED_TIMESTAMP` \|
|
9773
9994
|
# `ROUTING_PROFILE` \| `ROUTING_STEP_EXPRESSION`
|
9774
9995
|
# @return [Array<String>]
|
@@ -9935,6 +10156,32 @@ module Aws::Connect
|
|
9935
10156
|
#
|
9936
10157
|
# UI name: [Average agent pause time][16]
|
9937
10158
|
#
|
10159
|
+
# AVG\_BOT\_CONVERSATION\_TIME
|
10160
|
+
#
|
10161
|
+
# : Unit: Seconds
|
10162
|
+
#
|
10163
|
+
# Valid groupings and filters: Channel,
|
10164
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
10165
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
10166
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
10167
|
+
# Initiation method, Invoking resource type, Parent flows resource
|
10168
|
+
# ID
|
10169
|
+
#
|
10170
|
+
# UI name: [Average bot conversation time][17]
|
10171
|
+
#
|
10172
|
+
# AVG\_BOT\_CONVERSATION\_TURNS
|
10173
|
+
#
|
10174
|
+
# : Unit: Count
|
10175
|
+
#
|
10176
|
+
# Valid groupings and filters: Channel,
|
10177
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
10178
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
10179
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
10180
|
+
# Initiation method, Invoking resource type, Parent flows resource
|
10181
|
+
# ID
|
10182
|
+
#
|
10183
|
+
# UI name: [Average bot conversation turns][18]
|
10184
|
+
#
|
9938
10185
|
# AVG\_CASE\_RELATED\_CONTACTS
|
9939
10186
|
#
|
9940
10187
|
# : Unit: Count
|
@@ -9943,7 +10190,7 @@ module Aws::Connect
|
|
9943
10190
|
#
|
9944
10191
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9945
10192
|
#
|
9946
|
-
# UI name: [Average contacts per case][
|
10193
|
+
# UI name: [Average contacts per case][19]
|
9947
10194
|
#
|
9948
10195
|
# AVG\_CASE\_RESOLUTION\_TIME
|
9949
10196
|
#
|
@@ -9953,7 +10200,7 @@ module Aws::Connect
|
|
9953
10200
|
#
|
9954
10201
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
9955
10202
|
#
|
9956
|
-
# UI name: [Average case resolution time][
|
10203
|
+
# UI name: [Average case resolution time][20]
|
9957
10204
|
#
|
9958
10205
|
# AVG\_CONTACT\_DURATION
|
9959
10206
|
#
|
@@ -9963,7 +10210,7 @@ module Aws::Connect
|
|
9963
10210
|
# Agent, Agent Hierarchy, Feature,
|
9964
10211
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9965
10212
|
#
|
9966
|
-
# UI name: [Average contact duration][
|
10213
|
+
# UI name: [Average contact duration][21]
|
9967
10214
|
#
|
9968
10215
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
9969
10216
|
#
|
@@ -9977,7 +10224,7 @@ module Aws::Connect
|
|
9977
10224
|
# Agent, Agent Hierarchy, Feature,
|
9978
10225
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
9979
10226
|
#
|
9980
|
-
# UI name: [Average conversation duration][
|
10227
|
+
# UI name: [Average conversation duration][22]
|
9981
10228
|
#
|
9982
10229
|
# AVG\_DIALS\_PER\_MINUTE
|
9983
10230
|
#
|
@@ -9989,7 +10236,7 @@ module Aws::Connect
|
|
9989
10236
|
# Valid groupings and filters: Agent, Campaign, Queue, Routing
|
9990
10237
|
# Profile
|
9991
10238
|
#
|
9992
|
-
# UI name: [Average dials per minute][
|
10239
|
+
# UI name: [Average dials per minute][23]
|
9993
10240
|
#
|
9994
10241
|
# AVG\_FLOW\_TIME
|
9995
10242
|
#
|
@@ -10001,7 +10248,7 @@ module Aws::Connect
|
|
10001
10248
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
10002
10249
|
# published timestamp
|
10003
10250
|
#
|
10004
|
-
# UI name: [Average flow time][
|
10251
|
+
# UI name: [Average flow time][24]
|
10005
10252
|
#
|
10006
10253
|
# AVG\_GREETING\_TIME\_AGENT
|
10007
10254
|
#
|
@@ -10014,7 +10261,7 @@ module Aws::Connect
|
|
10014
10261
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10015
10262
|
# Q in Connect
|
10016
10263
|
#
|
10017
|
-
# UI name: [Average agent greeting time][
|
10264
|
+
# UI name: [Average agent greeting time][25]
|
10018
10265
|
#
|
10019
10266
|
# AVG\_HANDLE\_TIME
|
10020
10267
|
#
|
@@ -10024,7 +10271,7 @@ module Aws::Connect
|
|
10024
10271
|
# Agent, Agent Hierarchy, Feature,
|
10025
10272
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression
|
10026
10273
|
#
|
10027
|
-
# UI name: [Average handle time][
|
10274
|
+
# UI name: [Average handle time][26]
|
10028
10275
|
#
|
10029
10276
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10030
10277
|
#
|
@@ -10038,7 +10285,7 @@ module Aws::Connect
|
|
10038
10285
|
# Agent, Agent Hierarchy, Feature,
|
10039
10286
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10040
10287
|
#
|
10041
|
-
# UI name: [Average customer hold time][
|
10288
|
+
# UI name: [Average customer hold time][27]
|
10042
10289
|
#
|
10043
10290
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10044
10291
|
#
|
@@ -10052,7 +10299,7 @@ module Aws::Connect
|
|
10052
10299
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10053
10300
|
# Q in Connect
|
10054
10301
|
#
|
10055
|
-
# UI name: [Average customer hold time all contacts][
|
10302
|
+
# UI name: [Average customer hold time all contacts][28]
|
10056
10303
|
#
|
10057
10304
|
# AVG\_HOLDS
|
10058
10305
|
#
|
@@ -10062,7 +10309,7 @@ module Aws::Connect
|
|
10062
10309
|
# Agent, Agent Hierarchy, Feature,
|
10063
10310
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10064
10311
|
#
|
10065
|
-
# UI name: [Average holds][
|
10312
|
+
# UI name: [Average holds][29]
|
10066
10313
|
#
|
10067
10314
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10068
10315
|
#
|
@@ -10076,7 +10323,7 @@ module Aws::Connect
|
|
10076
10323
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10077
10324
|
# Q in Connect
|
10078
10325
|
#
|
10079
|
-
# UI name: [Average agent interaction and customer hold time][
|
10326
|
+
# UI name: [Average agent interaction and customer hold time][30]
|
10080
10327
|
#
|
10081
10328
|
# AVG\_INTERACTION\_TIME
|
10082
10329
|
#
|
@@ -10087,7 +10334,7 @@ module Aws::Connect
|
|
10087
10334
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10088
10335
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
10089
10336
|
#
|
10090
|
-
# UI name: [Average agent interaction time][
|
10337
|
+
# UI name: [Average agent interaction time][31]
|
10091
10338
|
#
|
10092
10339
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10093
10340
|
#
|
@@ -10104,7 +10351,7 @@ module Aws::Connect
|
|
10104
10351
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10105
10352
|
# Q in Connect
|
10106
10353
|
#
|
10107
|
-
# UI name: [Average agent interruptions][
|
10354
|
+
# UI name: [Average agent interruptions][32]
|
10108
10355
|
#
|
10109
10356
|
# AVG\_INTERRUPTION\_TIME\_AGENT
|
10110
10357
|
#
|
@@ -10117,7 +10364,7 @@ module Aws::Connect
|
|
10117
10364
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10118
10365
|
# Q in Connect
|
10119
10366
|
#
|
10120
|
-
# UI name: [Average agent interruption time][
|
10367
|
+
# UI name: [Average agent interruption time][33]
|
10121
10368
|
#
|
10122
10369
|
# AVG\_NON\_TALK\_TIME
|
10123
10370
|
#
|
@@ -10130,7 +10377,7 @@ module Aws::Connect
|
|
10130
10377
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10131
10378
|
# Q in Connect
|
10132
10379
|
#
|
10133
|
-
# UI name: [Average non-talk time][
|
10380
|
+
# UI name: [Average non-talk time][34]
|
10134
10381
|
#
|
10135
10382
|
# AVG\_QUEUE\_ANSWER\_TIME
|
10136
10383
|
#
|
@@ -10139,7 +10386,7 @@ module Aws::Connect
|
|
10139
10386
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10140
10387
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
10141
10388
|
#
|
10142
|
-
# UI name: [Average queue answer time][
|
10389
|
+
# UI name: [Average queue answer time][35]
|
10143
10390
|
#
|
10144
10391
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10145
10392
|
#
|
@@ -10152,7 +10399,7 @@ module Aws::Connect
|
|
10152
10399
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10153
10400
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10154
10401
|
#
|
10155
|
-
# UI name: [Average resolution time][
|
10402
|
+
# UI name: [Average resolution time][36]
|
10156
10403
|
#
|
10157
10404
|
# AVG\_TALK\_TIME
|
10158
10405
|
#
|
@@ -10165,7 +10412,7 @@ module Aws::Connect
|
|
10165
10412
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10166
10413
|
# Q in Connect
|
10167
10414
|
#
|
10168
|
-
# UI name: [Average talk time][
|
10415
|
+
# UI name: [Average talk time][37]
|
10169
10416
|
#
|
10170
10417
|
# AVG\_TALK\_TIME\_AGENT
|
10171
10418
|
#
|
@@ -10178,7 +10425,7 @@ module Aws::Connect
|
|
10178
10425
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10179
10426
|
# Q in Connect
|
10180
10427
|
#
|
10181
|
-
# UI name: [Average agent talk time][
|
10428
|
+
# UI name: [Average agent talk time][38]
|
10182
10429
|
#
|
10183
10430
|
# AVG\_TALK\_TIME\_CUSTOMER
|
10184
10431
|
#
|
@@ -10191,7 +10438,7 @@ module Aws::Connect
|
|
10191
10438
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10192
10439
|
# Q in Connect
|
10193
10440
|
#
|
10194
|
-
# UI name: [Average customer talk time][
|
10441
|
+
# UI name: [Average customer talk time][39]
|
10195
10442
|
#
|
10196
10443
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
10197
10444
|
#
|
@@ -10202,7 +10449,33 @@ module Aws::Connect
|
|
10202
10449
|
#
|
10203
10450
|
# Valid groupings and filters: Campaign
|
10204
10451
|
#
|
10205
|
-
# UI name: [Average wait time after customer connection][
|
10452
|
+
# UI name: [Average wait time after customer connection][40]
|
10453
|
+
#
|
10454
|
+
# BOT\_CONVERSATIONS\_COMPLETED
|
10455
|
+
#
|
10456
|
+
# : Unit: Count
|
10457
|
+
#
|
10458
|
+
# Valid groupings and filters: Channel,
|
10459
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
10460
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
10461
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
10462
|
+
# Initiation method, Invoking resource type, Parent flows resource
|
10463
|
+
# ID
|
10464
|
+
#
|
10465
|
+
# UI name: [Bot conversations][41]
|
10466
|
+
#
|
10467
|
+
# BOT\_INTENTS\_COMPLETED
|
10468
|
+
#
|
10469
|
+
# : Unit: Count
|
10470
|
+
#
|
10471
|
+
# Valid groupings and filters: Channel,
|
10472
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
10473
|
+
# version, Bot locale, Bot intent name, Flows resource ID, Flows
|
10474
|
+
# module resource ID, Flow type, Flow action ID, Invoking resource
|
10475
|
+
# published timestamp, Initiation method, Invoking resource type,
|
10476
|
+
# Parent flows resource ID
|
10477
|
+
#
|
10478
|
+
# UI name: [Bot intents completed][42]
|
10206
10479
|
#
|
10207
10480
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
10208
10481
|
#
|
@@ -10217,7 +10490,7 @@ module Aws::Connect
|
|
10217
10490
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
10218
10491
|
# `GT` (for *Greater than*).
|
10219
10492
|
#
|
10220
|
-
# UI name: [Campaign contacts abandoned after X][
|
10493
|
+
# UI name: [Campaign contacts abandoned after X][43]
|
10221
10494
|
#
|
10222
10495
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
10223
10496
|
#
|
@@ -10232,7 +10505,7 @@ module Aws::Connect
|
|
10232
10505
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
10233
10506
|
# `GT` (for *Greater than*).
|
10234
10507
|
#
|
10235
|
-
# UI name: [Campaign contacts abandoned after X rate][
|
10508
|
+
# UI name: [Campaign contacts abandoned after X rate][44]
|
10236
10509
|
#
|
10237
10510
|
# CAMPAIGN\_INTERACTIONS
|
10238
10511
|
#
|
@@ -10245,7 +10518,7 @@ module Aws::Connect
|
|
10245
10518
|
#
|
10246
10519
|
# Valid groupings and filters: Campaign
|
10247
10520
|
#
|
10248
|
-
# UI name: [Campaign interactions][
|
10521
|
+
# UI name: [Campaign interactions][45]
|
10249
10522
|
#
|
10250
10523
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
10251
10524
|
#
|
@@ -10256,7 +10529,7 @@ module Aws::Connect
|
|
10256
10529
|
# Valid groupings and filters: Campaign, Channel,
|
10257
10530
|
# contact/segmentAttributes/connect:Subtype
|
10258
10531
|
#
|
10259
|
-
# UI name: [Campaign send attempts][
|
10532
|
+
# UI name: [Campaign send attempts][46]
|
10260
10533
|
#
|
10261
10534
|
# CASES\_CREATED
|
10262
10535
|
#
|
@@ -10266,7 +10539,7 @@ module Aws::Connect
|
|
10266
10539
|
#
|
10267
10540
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10268
10541
|
#
|
10269
|
-
# UI name: [Cases created][
|
10542
|
+
# UI name: [Cases created][47]
|
10270
10543
|
#
|
10271
10544
|
# CONTACTS\_CREATED
|
10272
10545
|
#
|
@@ -10277,7 +10550,7 @@ module Aws::Connect
|
|
10277
10550
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10278
10551
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
10279
10552
|
#
|
10280
|
-
# UI name: [Contacts created][
|
10553
|
+
# UI name: [Contacts created][48]
|
10281
10554
|
#
|
10282
10555
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10283
10556
|
#
|
@@ -10294,7 +10567,7 @@ module Aws::Connect
|
|
10294
10567
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression,
|
10295
10568
|
# Q in Connect
|
10296
10569
|
#
|
10297
|
-
# UI name: [API contacts handled][
|
10570
|
+
# UI name: [API contacts handled][49]
|
10298
10571
|
#
|
10299
10572
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10300
10573
|
#
|
@@ -10309,7 +10582,7 @@ module Aws::Connect
|
|
10309
10582
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
10310
10583
|
# Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect
|
10311
10584
|
#
|
10312
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
10585
|
+
# UI name: [Contacts handled (connected to agent timestamp)][50]
|
10313
10586
|
#
|
10314
10587
|
# CONTACTS\_HOLD\_ABANDONS
|
10315
10588
|
#
|
@@ -10319,7 +10592,7 @@ module Aws::Connect
|
|
10319
10592
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10320
10593
|
# Q in Connect
|
10321
10594
|
#
|
10322
|
-
# UI name: [Contacts hold disconnect][
|
10595
|
+
# UI name: [Contacts hold disconnect][50]
|
10323
10596
|
#
|
10324
10597
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
10325
10598
|
#
|
@@ -10328,7 +10601,7 @@ module Aws::Connect
|
|
10328
10601
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10329
10602
|
# Agent, Agent Hierarchy, Q in Connect
|
10330
10603
|
#
|
10331
|
-
# UI name: [Contacts hold agent disconnect][
|
10604
|
+
# UI name: [Contacts hold agent disconnect][51]
|
10332
10605
|
#
|
10333
10606
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
10334
10607
|
#
|
@@ -10337,7 +10610,7 @@ module Aws::Connect
|
|
10337
10610
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10338
10611
|
# Agent, Agent Hierarchy, Q in Connect
|
10339
10612
|
#
|
10340
|
-
# UI name: [Contacts hold customer disconnect][
|
10613
|
+
# UI name: [Contacts hold customer disconnect][52]
|
10341
10614
|
#
|
10342
10615
|
# CONTACTS\_PUT\_ON\_HOLD
|
10343
10616
|
#
|
@@ -10346,7 +10619,7 @@ module Aws::Connect
|
|
10346
10619
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10347
10620
|
# Agent, Agent Hierarchy, Q in Connect
|
10348
10621
|
#
|
10349
|
-
# UI name: [Contacts put on hold][
|
10622
|
+
# UI name: [Contacts put on hold][52]
|
10350
10623
|
#
|
10351
10624
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
10352
10625
|
#
|
@@ -10355,7 +10628,7 @@ module Aws::Connect
|
|
10355
10628
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10356
10629
|
# Agent, Agent Hierarchy, Q in Connect
|
10357
10630
|
#
|
10358
|
-
# UI name: [Contacts transferred out external][
|
10631
|
+
# UI name: [Contacts transferred out external][53]
|
10359
10632
|
#
|
10360
10633
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
10361
10634
|
#
|
@@ -10364,7 +10637,7 @@ module Aws::Connect
|
|
10364
10637
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10365
10638
|
# Agent, Agent Hierarchy, Q in Connect
|
10366
10639
|
#
|
10367
|
-
# UI name: [Contacts transferred out internal][
|
10640
|
+
# UI name: [Contacts transferred out internal][54]
|
10368
10641
|
#
|
10369
10642
|
# CONTACTS\_QUEUED
|
10370
10643
|
#
|
@@ -10374,7 +10647,7 @@ module Aws::Connect
|
|
10374
10647
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10375
10648
|
# Q in Connect
|
10376
10649
|
#
|
10377
|
-
# UI name: [Contacts queued][
|
10650
|
+
# UI name: [Contacts queued][55]
|
10378
10651
|
#
|
10379
10652
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
10380
10653
|
#
|
@@ -10383,7 +10656,7 @@ module Aws::Connect
|
|
10383
10656
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
10384
10657
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
10385
10658
|
#
|
10386
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
10659
|
+
# UI name: [Contacts queued (enqueue timestamp)][56]
|
10387
10660
|
#
|
10388
10661
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
10389
10662
|
#
|
@@ -10396,7 +10669,7 @@ module Aws::Connect
|
|
10396
10669
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10397
10670
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10398
10671
|
#
|
10399
|
-
# UI name: [Contacts removed from queue in X seconds][
|
10672
|
+
# UI name: [Contacts removed from queue in X seconds][57]
|
10400
10673
|
#
|
10401
10674
|
# CONTACTS\_RESOLVED\_IN\_X
|
10402
10675
|
#
|
@@ -10409,7 +10682,7 @@ module Aws::Connect
|
|
10409
10682
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10410
10683
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10411
10684
|
#
|
10412
|
-
# UI name: [Contacts resolved in X][
|
10685
|
+
# UI name: [Contacts resolved in X][58]
|
10413
10686
|
#
|
10414
10687
|
# CONTACTS\_TRANSFERRED\_OUT
|
10415
10688
|
#
|
@@ -10419,7 +10692,7 @@ module Aws::Connect
|
|
10419
10692
|
# Agent, Agent Hierarchy, Feature,
|
10420
10693
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10421
10694
|
#
|
10422
|
-
# UI name: [Contacts transferred out][
|
10695
|
+
# UI name: [Contacts transferred out][59]
|
10423
10696
|
#
|
10424
10697
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
10425
10698
|
#
|
@@ -10433,7 +10706,7 @@ module Aws::Connect
|
|
10433
10706
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10434
10707
|
# Q in Connect
|
10435
10708
|
#
|
10436
|
-
# UI name: [Contacts transferred out by agent][
|
10709
|
+
# UI name: [Contacts transferred out by agent][60]
|
10437
10710
|
#
|
10438
10711
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
10439
10712
|
#
|
@@ -10443,7 +10716,7 @@ module Aws::Connect
|
|
10443
10716
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10444
10717
|
# Q in Connect
|
10445
10718
|
#
|
10446
|
-
# UI name: [Contacts transferred out queue][
|
10719
|
+
# UI name: [Contacts transferred out queue][60]
|
10447
10720
|
#
|
10448
10721
|
# CURRENT\_CASES
|
10449
10722
|
#
|
@@ -10453,7 +10726,7 @@ module Aws::Connect
|
|
10453
10726
|
#
|
10454
10727
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10455
10728
|
#
|
10456
|
-
# UI name: [Current cases][
|
10729
|
+
# UI name: [Current cases][61]
|
10457
10730
|
#
|
10458
10731
|
# DELIVERY\_ATTEMPTS
|
10459
10732
|
#
|
@@ -10469,7 +10742,7 @@ module Aws::Connect
|
|
10469
10742
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
10470
10743
|
# Queue, Routing Profile
|
10471
10744
|
#
|
10472
|
-
# UI name: [Delivery attempts][
|
10745
|
+
# UI name: [Delivery attempts][62]
|
10473
10746
|
#
|
10474
10747
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
10475
10748
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -10495,7 +10768,7 @@ module Aws::Connect
|
|
10495
10768
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
10496
10769
|
# Queue, Routing Profile
|
10497
10770
|
#
|
10498
|
-
# UI name: [Delivery attempt disposition rate][
|
10771
|
+
# UI name: [Delivery attempt disposition rate][63]
|
10499
10772
|
#
|
10500
10773
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only
|
10501
10774
|
# available for SMS and Email campaign delivery modes. Agent, Queue,
|
@@ -10515,7 +10788,7 @@ module Aws::Connect
|
|
10515
10788
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
10516
10789
|
# published timestamp
|
10517
10790
|
#
|
10518
|
-
# UI name: [Flows outcome][
|
10791
|
+
# UI name: [Flows outcome][64]
|
10519
10792
|
#
|
10520
10793
|
# FLOWS\_STARTED
|
10521
10794
|
#
|
@@ -10526,7 +10799,7 @@ module Aws::Connect
|
|
10526
10799
|
# resource ID, Flows resource ID, Initiation method, Resource
|
10527
10800
|
# published timestamp
|
10528
10801
|
#
|
10529
|
-
# UI name: [Flows started][
|
10802
|
+
# UI name: [Flows started][65]
|
10530
10803
|
#
|
10531
10804
|
# HUMAN\_ANSWERED\_CALLS
|
10532
10805
|
#
|
@@ -10538,7 +10811,7 @@ module Aws::Connect
|
|
10538
10811
|
#
|
10539
10812
|
# Valid groupings and filters: Agent, Campaign
|
10540
10813
|
#
|
10541
|
-
# UI name: [Human answered][
|
10814
|
+
# UI name: [Human answered][66]
|
10542
10815
|
#
|
10543
10816
|
# MAX\_FLOW\_TIME
|
10544
10817
|
#
|
@@ -10550,7 +10823,7 @@ module Aws::Connect
|
|
10550
10823
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
10551
10824
|
# published timestamp
|
10552
10825
|
#
|
10553
|
-
# UI name: [Maximum flow time][
|
10826
|
+
# UI name: [Maximum flow time][67]
|
10554
10827
|
#
|
10555
10828
|
# MAX\_QUEUED\_TIME
|
10556
10829
|
#
|
@@ -10560,7 +10833,7 @@ module Aws::Connect
|
|
10560
10833
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10561
10834
|
# Q in Connect
|
10562
10835
|
#
|
10563
|
-
# UI name: [Maximum queued time][
|
10836
|
+
# UI name: [Maximum queued time][68]
|
10564
10837
|
#
|
10565
10838
|
# MIN\_FLOW\_TIME
|
10566
10839
|
#
|
@@ -10572,7 +10845,33 @@ module Aws::Connect
|
|
10572
10845
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
10573
10846
|
# published timestamp
|
10574
10847
|
#
|
10575
|
-
# UI name: [Minimum flow time][
|
10848
|
+
# UI name: [Minimum flow time][69]
|
10849
|
+
#
|
10850
|
+
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
10851
|
+
#
|
10852
|
+
# : Unit: Percent
|
10853
|
+
#
|
10854
|
+
# Valid groupings and filters: Channel,
|
10855
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
10856
|
+
# version, Bot locale, Flows resource ID, Flows module resource ID,
|
10857
|
+
# Flow type, Flow action ID, Invoking resource published timestamp,
|
10858
|
+
# Initiation method, Invoking resource type, Parent flows resource
|
10859
|
+
# ID
|
10860
|
+
#
|
10861
|
+
# UI name: [Percent bot conversations outcome][70]
|
10862
|
+
#
|
10863
|
+
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
10864
|
+
#
|
10865
|
+
# : Unit: Percent
|
10866
|
+
#
|
10867
|
+
# Valid groupings and filters: Channel,
|
10868
|
+
# contact/segmentAttributes/connect:Subtype, Bot ID, Bot alias, Bot
|
10869
|
+
# version, Bot locale, Bot intent name, Flows resource ID, Flows
|
10870
|
+
# module resource ID, Flow type, Flow action ID, Invoking resource
|
10871
|
+
# published timestamp, Initiation method, Invoking resource type,
|
10872
|
+
# Parent flows resource ID
|
10873
|
+
#
|
10874
|
+
# UI name: [Percent bot intents outcome][71]
|
10576
10875
|
#
|
10577
10876
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
10578
10877
|
#
|
@@ -10582,7 +10881,7 @@ module Aws::Connect
|
|
10582
10881
|
#
|
10583
10882
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10584
10883
|
#
|
10585
|
-
# UI name: [Cases resolved on first contact][
|
10884
|
+
# UI name: [Cases resolved on first contact][72]
|
10586
10885
|
#
|
10587
10886
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
10588
10887
|
#
|
@@ -10614,7 +10913,7 @@ module Aws::Connect
|
|
10614
10913
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
10615
10914
|
# published timestamp
|
10616
10915
|
#
|
10617
|
-
# UI name: [Flows outcome percentage][
|
10916
|
+
# UI name: [Flows outcome percentage][73].
|
10618
10917
|
#
|
10619
10918
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
10620
10919
|
#
|
@@ -10631,7 +10930,7 @@ module Aws::Connect
|
|
10631
10930
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10632
10931
|
# Q in Connect
|
10633
10932
|
#
|
10634
|
-
# UI name: [Non-talk time percent][
|
10933
|
+
# UI name: [Non-talk time percent][74]
|
10635
10934
|
#
|
10636
10935
|
# PERCENT\_TALK\_TIME
|
10637
10936
|
#
|
@@ -10644,7 +10943,7 @@ module Aws::Connect
|
|
10644
10943
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10645
10944
|
# Q in Connect
|
10646
10945
|
#
|
10647
|
-
# UI name: [Talk time percent][
|
10946
|
+
# UI name: [Talk time percent][75]
|
10648
10947
|
#
|
10649
10948
|
# PERCENT\_TALK\_TIME\_AGENT
|
10650
10949
|
#
|
@@ -10657,7 +10956,7 @@ module Aws::Connect
|
|
10657
10956
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10658
10957
|
# Q in Connect
|
10659
10958
|
#
|
10660
|
-
# UI name: [Agent talk time percent][
|
10959
|
+
# UI name: [Agent talk time percent][76]
|
10661
10960
|
#
|
10662
10961
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
10663
10962
|
#
|
@@ -10670,7 +10969,7 @@ module Aws::Connect
|
|
10670
10969
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10671
10970
|
# Q in Connect
|
10672
10971
|
#
|
10673
|
-
# UI name: [Customer talk time percent][
|
10972
|
+
# UI name: [Customer talk time percent][77]
|
10674
10973
|
#
|
10675
10974
|
# REOPENED\_CASE\_ACTIONS
|
10676
10975
|
#
|
@@ -10680,7 +10979,7 @@ module Aws::Connect
|
|
10680
10979
|
#
|
10681
10980
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10682
10981
|
#
|
10683
|
-
# UI name: [Cases reopened][
|
10982
|
+
# UI name: [Cases reopened][78]
|
10684
10983
|
#
|
10685
10984
|
# RESOLVED\_CASE\_ACTIONS
|
10686
10985
|
#
|
@@ -10690,7 +10989,7 @@ module Aws::Connect
|
|
10690
10989
|
#
|
10691
10990
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
10692
10991
|
#
|
10693
|
-
# UI name: [Cases resolved][
|
10992
|
+
# UI name: [Cases resolved][79]
|
10694
10993
|
#
|
10695
10994
|
# SERVICE\_LEVEL
|
10696
10995
|
#
|
@@ -10705,7 +11004,7 @@ module Aws::Connect
|
|
10705
11004
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10706
11005
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10707
11006
|
#
|
10708
|
-
# UI name: [Service level X][
|
11007
|
+
# UI name: [Service level X][80]
|
10709
11008
|
#
|
10710
11009
|
# STEP\_CONTACTS\_QUEUED
|
10711
11010
|
#
|
@@ -10723,7 +11022,7 @@ module Aws::Connect
|
|
10723
11022
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10724
11023
|
# Agent, Agent Hierarchy, Q in Connect
|
10725
11024
|
#
|
10726
|
-
# UI name: [After contact work time][
|
11025
|
+
# UI name: [After contact work time][81]
|
10727
11026
|
#
|
10728
11027
|
# SUM\_CONNECTING\_TIME\_AGENT
|
10729
11028
|
#
|
@@ -10736,7 +11035,7 @@ module Aws::Connect
|
|
10736
11035
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10737
11036
|
# Agent, Agent Hierarchy
|
10738
11037
|
#
|
10739
|
-
# UI name: [Agent API connecting time][
|
11038
|
+
# UI name: [Agent API connecting time][82]
|
10740
11039
|
#
|
10741
11040
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for
|
10742
11041
|
# this metric.
|
@@ -10758,7 +11057,7 @@ module Aws::Connect
|
|
10758
11057
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10759
11058
|
# RoutingStepExpression, Q in Connect
|
10760
11059
|
#
|
10761
|
-
# UI name: [Contact abandoned][
|
11060
|
+
# UI name: [Contact abandoned][83]
|
10762
11061
|
#
|
10763
11062
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
10764
11063
|
#
|
@@ -10771,7 +11070,7 @@ module Aws::Connect
|
|
10771
11070
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10772
11071
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10773
11072
|
#
|
10774
|
-
# UI name: [Contacts abandoned in X seconds][
|
11073
|
+
# UI name: [Contacts abandoned in X seconds][84]
|
10775
11074
|
#
|
10776
11075
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
10777
11076
|
#
|
@@ -10784,7 +11083,7 @@ module Aws::Connect
|
|
10784
11083
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
10785
11084
|
# (for "Less than") or `LTE` (for "Less than equal").
|
10786
11085
|
#
|
10787
|
-
# UI name: [Contacts answered in X seconds][
|
11086
|
+
# UI name: [Contacts answered in X seconds][85]
|
10788
11087
|
#
|
10789
11088
|
# SUM\_CONTACT\_FLOW\_TIME
|
10790
11089
|
#
|
@@ -10793,7 +11092,7 @@ module Aws::Connect
|
|
10793
11092
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10794
11093
|
# Agent, Agent Hierarchy, Q in Connect
|
10795
11094
|
#
|
10796
|
-
# UI name: [Contact flow time][
|
11095
|
+
# UI name: [Contact flow time][86]
|
10797
11096
|
#
|
10798
11097
|
# SUM\_CONTACT\_TIME\_AGENT
|
10799
11098
|
#
|
@@ -10802,7 +11101,7 @@ module Aws::Connect
|
|
10802
11101
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10803
11102
|
# Hierarchy
|
10804
11103
|
#
|
10805
|
-
# UI name: [Agent on contact time][
|
11104
|
+
# UI name: [Agent on contact time][87]
|
10806
11105
|
#
|
10807
11106
|
# SUM\_CONTACTS\_DISCONNECTED
|
10808
11107
|
#
|
@@ -10814,7 +11113,7 @@ module Aws::Connect
|
|
10814
11113
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
10815
11114
|
# Q in Connect
|
10816
11115
|
#
|
10817
|
-
# UI name: [Contact disconnected][
|
11116
|
+
# UI name: [Contact disconnected][88]
|
10818
11117
|
#
|
10819
11118
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
10820
11119
|
#
|
@@ -10823,7 +11122,7 @@ module Aws::Connect
|
|
10823
11122
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10824
11123
|
# Hierarchy
|
10825
11124
|
#
|
10826
|
-
# UI name: [Error status time][
|
11125
|
+
# UI name: [Error status time][89]
|
10827
11126
|
#
|
10828
11127
|
# SUM\_HANDLE\_TIME
|
10829
11128
|
#
|
@@ -10832,7 +11131,7 @@ module Aws::Connect
|
|
10832
11131
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10833
11132
|
# Agent, Agent Hierarchy, Q in Connect
|
10834
11133
|
#
|
10835
|
-
# UI name: [Contact handle time][
|
11134
|
+
# UI name: [Contact handle time][90]
|
10836
11135
|
#
|
10837
11136
|
# SUM\_HOLD\_TIME
|
10838
11137
|
#
|
@@ -10841,7 +11140,7 @@ module Aws::Connect
|
|
10841
11140
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10842
11141
|
# Agent, Agent Hierarchy, Q in Connect
|
10843
11142
|
#
|
10844
|
-
# UI name: [Customer hold time][
|
11143
|
+
# UI name: [Customer hold time][91]
|
10845
11144
|
#
|
10846
11145
|
# SUM\_IDLE\_TIME\_AGENT
|
10847
11146
|
#
|
@@ -10850,7 +11149,7 @@ module Aws::Connect
|
|
10850
11149
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10851
11150
|
# Hierarchy
|
10852
11151
|
#
|
10853
|
-
# UI name: [Agent idle time][
|
11152
|
+
# UI name: [Agent idle time][92]
|
10854
11153
|
#
|
10855
11154
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
10856
11155
|
#
|
@@ -10859,7 +11158,7 @@ module Aws::Connect
|
|
10859
11158
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10860
11159
|
# Agent, Agent Hierarchy, Q in Connect
|
10861
11160
|
#
|
10862
|
-
# UI name: [Agent interaction and hold time][
|
11161
|
+
# UI name: [Agent interaction and hold time][93]
|
10863
11162
|
#
|
10864
11163
|
# SUM\_INTERACTION\_TIME
|
10865
11164
|
#
|
@@ -10868,7 +11167,7 @@ module Aws::Connect
|
|
10868
11167
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10869
11168
|
# Agent, Agent Hierarchy
|
10870
11169
|
#
|
10871
|
-
# UI name: [Agent interaction time][
|
11170
|
+
# UI name: [Agent interaction time][94]
|
10872
11171
|
#
|
10873
11172
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
10874
11173
|
#
|
@@ -10877,7 +11176,7 @@ module Aws::Connect
|
|
10877
11176
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10878
11177
|
# Hierarchy
|
10879
11178
|
#
|
10880
|
-
# UI name: [Non-Productive Time][
|
11179
|
+
# UI name: [Non-Productive Time][95]
|
10881
11180
|
#
|
10882
11181
|
# SUM\_ONLINE\_TIME\_AGENT
|
10883
11182
|
#
|
@@ -10886,7 +11185,7 @@ module Aws::Connect
|
|
10886
11185
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
10887
11186
|
# Hierarchy
|
10888
11187
|
#
|
10889
|
-
# UI name: [Online time][
|
11188
|
+
# UI name: [Online time][96]
|
10890
11189
|
#
|
10891
11190
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
10892
11191
|
#
|
@@ -10895,7 +11194,7 @@ module Aws::Connect
|
|
10895
11194
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
10896
11195
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
10897
11196
|
#
|
10898
|
-
# UI name: [Callback attempts][
|
11197
|
+
# UI name: [Callback attempts][97]
|
10899
11198
|
#
|
10900
11199
|
#
|
10901
11200
|
#
|
@@ -10915,81 +11214,87 @@ module Aws::Connect
|
|
10915
11214
|
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-acw-time-historical
|
10916
11215
|
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-avg-agent-api-connecting-time
|
10917
11216
|
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-pause-time-historical
|
10918
|
-
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10919
|
-
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10920
|
-
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10921
|
-
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10922
|
-
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10923
|
-
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10924
|
-
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10925
|
-
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10926
|
-
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10927
|
-
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10928
|
-
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10929
|
-
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10930
|
-
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10931
|
-
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10932
|
-
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10933
|
-
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
10934
|
-
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10935
|
-
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
10936
|
-
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10937
|
-
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10938
|
-
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-
|
10939
|
-
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-
|
10940
|
-
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10941
|
-
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10942
|
-
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10943
|
-
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10944
|
-
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10945
|
-
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10946
|
-
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10947
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10948
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10949
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10950
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10951
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10952
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10953
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10954
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10955
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10956
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10957
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-
|
10958
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10959
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10960
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10961
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10962
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10963
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10964
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10965
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10966
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10967
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10968
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10969
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10970
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10971
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10972
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
10973
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-
|
10974
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10975
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10976
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10977
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10978
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10979
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10980
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10981
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10982
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10983
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10984
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10985
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10986
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10987
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10988
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-
|
10989
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10990
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10991
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
10992
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#
|
11217
|
+
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-time-metric
|
11218
|
+
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#average-bot-conversation-turns-metric
|
11219
|
+
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contacts-case-historical
|
11220
|
+
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-case-resolution-time-historical
|
11221
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contact-duration-historical
|
11222
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-conversation-duration-historical
|
11223
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-dials-historical
|
11224
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-flow-time-historical
|
11225
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-greeting-time-agent-historical
|
11226
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-handle-time-historical
|
11227
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-customer-hold-time-historical
|
11228
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#avg-customer-hold-time-all-contacts-historical
|
11229
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-holds-historical
|
11230
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-customer-hold-time-historical
|
11231
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
11232
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-agent-historical
|
11233
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-time-agent-historical
|
11234
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##average-non-talk-time-historical
|
11235
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-answer-time-historical
|
11236
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-resolution-time-historical
|
11237
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-historical
|
11238
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-agent-historical
|
11239
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-customer-historical
|
11240
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-wait-time-historical
|
11241
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed-metric
|
11242
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed-metric
|
11243
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-historical
|
11244
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-contacts-abandoned-rate-historical
|
11245
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-interactions-historical
|
11246
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#campaign-send-attempts-historical
|
11247
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-created-historical
|
11248
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
|
11249
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
|
11250
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
|
11251
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
|
11252
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
|
11253
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
|
11254
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
11255
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
11256
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
11257
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical
|
11258
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
11259
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
11260
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
11261
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
11262
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempts-historical
|
11263
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#delivery-attempt-disposition-rate-historical
|
11264
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
|
11265
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-started-historical
|
11266
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#human-answered-historical
|
11267
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-flow-time-historical
|
11268
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
11269
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#minimum-flow-time-historical
|
11270
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome-metric
|
11271
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome-metric
|
11272
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
11273
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-percentage-historical
|
11274
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
11275
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
11276
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
11277
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
11278
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
11279
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historical
|
11280
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
11281
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
11282
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
11283
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
11284
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
11285
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
11286
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
11287
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
11288
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
11289
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
11290
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
11291
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
11292
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
11293
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
11294
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
11295
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
11296
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
11297
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
10993
11298
|
# @return [Array<Types::MetricV2>]
|
10994
11299
|
#
|
10995
11300
|
# @!attribute [rw] next_token
|
@@ -11142,6 +11447,8 @@ module Aws::Connect
|
|
11142
11447
|
# @return [String]
|
11143
11448
|
#
|
11144
11449
|
# @!attribute [rw] self_assign_flow_id
|
11450
|
+
# ContactFlowId for the flow that will be run if this template is used
|
11451
|
+
# to create a self-assigned task
|
11145
11452
|
# @return [String]
|
11146
11453
|
#
|
11147
11454
|
# @!attribute [rw] constraints
|
@@ -11885,9 +12192,10 @@ module Aws::Connect
|
|
11885
12192
|
#
|
11886
12193
|
# @!attribute [rw] source_phone_number_arn
|
11887
12194
|
# The claimed phone number ARN being imported from the external
|
11888
|
-
# service, such as Amazon
|
11889
|
-
#
|
11890
|
-
#
|
12195
|
+
# service, such as Amazon Web Services End User Messaging. If it is
|
12196
|
+
# from Amazon Web Services End User Messaging, it looks like the ARN
|
12197
|
+
# of the phone number to import from Amazon Web Services End User
|
12198
|
+
# Messaging.
|
11891
12199
|
# @return [String]
|
11892
12200
|
#
|
11893
12201
|
# @!attribute [rw] phone_number_description
|
@@ -11943,10 +12251,14 @@ module Aws::Connect
|
|
11943
12251
|
include Aws::Structure
|
11944
12252
|
end
|
11945
12253
|
|
12254
|
+
# The additional TO CC recipients information of inbound email.
|
12255
|
+
#
|
11946
12256
|
# @!attribute [rw] to_addresses
|
12257
|
+
# The additional recipients information present in to list.
|
11947
12258
|
# @return [Array<Types::EmailAddressInfo>]
|
11948
12259
|
#
|
11949
12260
|
# @!attribute [rw] cc_addresses
|
12261
|
+
# The additional recipients information present in cc list.
|
11950
12262
|
# @return [Array<Types::EmailAddressInfo>]
|
11951
12263
|
#
|
11952
12264
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InboundAdditionalRecipients AWS API Documentation
|
@@ -11958,10 +12270,14 @@ module Aws::Connect
|
|
11958
12270
|
include Aws::Structure
|
11959
12271
|
end
|
11960
12272
|
|
12273
|
+
# Information about email body content.
|
12274
|
+
#
|
11961
12275
|
# @!attribute [rw] message_source_type
|
12276
|
+
# The message source type, that is, `RAW`.
|
11962
12277
|
# @return [String]
|
11963
12278
|
#
|
11964
12279
|
# @!attribute [rw] raw_message
|
12280
|
+
# The raw email body content.
|
11965
12281
|
# @return [Types::InboundRawMessage]
|
11966
12282
|
#
|
11967
12283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InboundEmailContent AWS API Documentation
|
@@ -11973,16 +12289,22 @@ module Aws::Connect
|
|
11973
12289
|
include Aws::Structure
|
11974
12290
|
end
|
11975
12291
|
|
12292
|
+
# Information about the raw email body content.
|
12293
|
+
#
|
11976
12294
|
# @!attribute [rw] subject
|
12295
|
+
# The email subject.
|
11977
12296
|
# @return [String]
|
11978
12297
|
#
|
11979
12298
|
# @!attribute [rw] body
|
12299
|
+
# The email message body.
|
11980
12300
|
# @return [String]
|
11981
12301
|
#
|
11982
12302
|
# @!attribute [rw] content_type
|
12303
|
+
# Type of content, that is, `text/plain` or `text/html`.
|
11983
12304
|
# @return [String]
|
11984
12305
|
#
|
11985
12306
|
# @!attribute [rw] headers
|
12307
|
+
# Headers present in inbound email.
|
11986
12308
|
# @return [Hash<String,String>]
|
11987
12309
|
#
|
11988
12310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InboundRawMessage AWS API Documentation
|
@@ -12672,15 +12994,31 @@ module Aws::Connect
|
|
12672
12994
|
end
|
12673
12995
|
|
12674
12996
|
# @!attribute [rw] instance_id
|
12997
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
12998
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
12999
|
+
#
|
13000
|
+
#
|
13001
|
+
#
|
13002
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
12675
13003
|
# @return [String]
|
12676
13004
|
#
|
12677
13005
|
# @!attribute [rw] contact_id
|
13006
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
12678
13007
|
# @return [String]
|
12679
13008
|
#
|
12680
13009
|
# @!attribute [rw] max_results
|
13010
|
+
# The maximum number of results to return per page.
|
13011
|
+
#
|
13012
|
+
# The maximum number of results to return per page. The default
|
13013
|
+
# MaxResult size is 25.
|
13014
|
+
#
|
13015
|
+
# Valid Range: Minimum value of 1. Maximum value of 100.
|
12681
13016
|
# @return [Integer]
|
12682
13017
|
#
|
12683
13018
|
# @!attribute [rw] next_token
|
13019
|
+
# The token for the next set of results. Use the value returned in the
|
13020
|
+
# previous response in the next request to retrieve the next set of
|
13021
|
+
# results.
|
12684
13022
|
# @return [String]
|
12685
13023
|
#
|
12686
13024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAssociatedContactsRequest AWS API Documentation
|
@@ -12695,9 +13033,13 @@ module Aws::Connect
|
|
12695
13033
|
end
|
12696
13034
|
|
12697
13035
|
# @!attribute [rw] contact_summary_list
|
13036
|
+
# List of the contact summary for all the contacts in contact tree
|
13037
|
+
# associated with unique identifier.
|
12698
13038
|
# @return [Array<Types::AssociatedContactSummary>]
|
12699
13039
|
#
|
12700
13040
|
# @!attribute [rw] next_token
|
13041
|
+
# If there are additional results, this is the token for the next set
|
13042
|
+
# of results.
|
12701
13043
|
# @return [String]
|
12702
13044
|
#
|
12703
13045
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAssociatedContactsResponse AWS API Documentation
|
@@ -13756,9 +14098,10 @@ module Aws::Connect
|
|
13756
14098
|
#
|
13757
14099
|
# @!attribute [rw] source_phone_number_arn
|
13758
14100
|
# The claimed phone number ARN that was previously imported from the
|
13759
|
-
# external service, such as Amazon
|
13760
|
-
#
|
13761
|
-
# imported from Amazon
|
14101
|
+
# external service, such as Amazon Web Services End User Messaging. If
|
14102
|
+
# it is from Amazon Web Services End User Messaging, it looks like the
|
14103
|
+
# ARN of the phone number that was imported from Amazon Web Services
|
14104
|
+
# End User Messaging.
|
13762
14105
|
# @return [String]
|
13763
14106
|
#
|
13764
14107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListPhoneNumbersSummary AWS API Documentation
|
@@ -15287,10 +15630,21 @@ module Aws::Connect
|
|
15287
15630
|
# see the description for the [Flow outcome][2] metric in the *Amazon
|
15288
15631
|
# Connect Administrator Guide*.
|
15289
15632
|
#
|
15633
|
+
# For valid values of the metric-level filter
|
15634
|
+
# `BOT_CONVERSATION_OUTCOME_TYPE`, see the description for the [Bot
|
15635
|
+
# conversations completed][3] in the *Amazon Connect Administrator
|
15636
|
+
# Guide*.
|
15637
|
+
#
|
15638
|
+
# For valid values of the metric-level filter
|
15639
|
+
# `BOT_INTENT_OUTCOME_TYPE`, see the description for the [Bot intents
|
15640
|
+
# completed][4] metric in the *Amazon Connect Administrator Guide*.
|
15641
|
+
#
|
15290
15642
|
#
|
15291
15643
|
#
|
15292
15644
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/ctr-data-model.html#ctr-ContactTraceRecord
|
15293
15645
|
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#flows-outcome-historical
|
15646
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed-metric
|
15647
|
+
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed-metric
|
15294
15648
|
# @return [Array<String>]
|
15295
15649
|
#
|
15296
15650
|
# @!attribute [rw] negate
|
@@ -15603,7 +15957,10 @@ module Aws::Connect
|
|
15603
15957
|
include Aws::Structure
|
15604
15958
|
end
|
15605
15959
|
|
15960
|
+
# The additional recipients information of outbound email.
|
15961
|
+
#
|
15606
15962
|
# @!attribute [rw] cc_email_addresses
|
15963
|
+
# The additional CC email address recipients information.
|
15607
15964
|
# @return [Array<Types::EmailAddressInfo>]
|
15608
15965
|
#
|
15609
15966
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OutboundAdditionalRecipients AWS API Documentation
|
@@ -15652,7 +16009,10 @@ module Aws::Connect
|
|
15652
16009
|
include Aws::Structure
|
15653
16010
|
end
|
15654
16011
|
|
16012
|
+
# The outbound email address Id.
|
16013
|
+
#
|
15655
16014
|
# @!attribute [rw] outbound_email_address_id
|
16015
|
+
# The identifier of the email address.
|
15656
16016
|
# @return [String]
|
15657
16017
|
#
|
15658
16018
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OutboundEmailConfig AWS API Documentation
|
@@ -15663,13 +16023,18 @@ module Aws::Connect
|
|
15663
16023
|
include Aws::Structure
|
15664
16024
|
end
|
15665
16025
|
|
16026
|
+
# Information about email body content.
|
16027
|
+
#
|
15666
16028
|
# @!attribute [rw] message_source_type
|
16029
|
+
# The message source type, that is, `RAW` or `TEMPLATE`.
|
15667
16030
|
# @return [String]
|
15668
16031
|
#
|
15669
16032
|
# @!attribute [rw] templated_message_config
|
16033
|
+
# Information about template message configuration.
|
15670
16034
|
# @return [Types::TemplatedMessageConfig]
|
15671
16035
|
#
|
15672
16036
|
# @!attribute [rw] raw_message
|
16037
|
+
# The raw email body content.
|
15673
16038
|
# @return [Types::OutboundRawMessage]
|
15674
16039
|
#
|
15675
16040
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OutboundEmailContent AWS API Documentation
|
@@ -15682,13 +16047,18 @@ module Aws::Connect
|
|
15682
16047
|
include Aws::Structure
|
15683
16048
|
end
|
15684
16049
|
|
16050
|
+
# Information about the raw email body content.
|
16051
|
+
#
|
15685
16052
|
# @!attribute [rw] subject
|
16053
|
+
# The email subject.
|
15686
16054
|
# @return [String]
|
15687
16055
|
#
|
15688
16056
|
# @!attribute [rw] body
|
16057
|
+
# The email message body.
|
15689
16058
|
# @return [String]
|
15690
16059
|
#
|
15691
16060
|
# @!attribute [rw] content_type
|
16061
|
+
# Type of content, that is, `text/plain` or `text/html`.
|
15692
16062
|
# @return [String]
|
15693
16063
|
#
|
15694
16064
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OutboundRawMessage AWS API Documentation
|
@@ -15703,8 +16073,8 @@ module Aws::Connect
|
|
15703
16073
|
|
15704
16074
|
# Thrown for analyzed content when requested OutputType was not enabled
|
15705
16075
|
# for a given contact. For example, if an OutputType.Raw was requested
|
15706
|
-
# for a contact that had `RedactedOnly` Redaction policy set in
|
15707
|
-
#
|
16076
|
+
# for a contact that had `RedactedOnly` Redaction policy set in the
|
16077
|
+
# flow.
|
15708
16078
|
#
|
15709
16079
|
# @!attribute [rw] message
|
15710
16080
|
# @return [String]
|
@@ -16406,6 +16776,7 @@ module Aws::Connect
|
|
16406
16776
|
# @return [Types::OutboundCallerConfig]
|
16407
16777
|
#
|
16408
16778
|
# @!attribute [rw] outbound_email_config
|
16779
|
+
# The outbound email address ID for a specified queue.
|
16409
16780
|
# @return [Types::OutboundEmailConfig]
|
16410
16781
|
#
|
16411
16782
|
# @!attribute [rw] hours_of_operation_id
|
@@ -16474,6 +16845,20 @@ module Aws::Connect
|
|
16474
16845
|
include Aws::Structure
|
16475
16846
|
end
|
16476
16847
|
|
16848
|
+
# Information about a queue.
|
16849
|
+
#
|
16850
|
+
# @!attribute [rw] id
|
16851
|
+
# The identifier of the queue.
|
16852
|
+
# @return [String]
|
16853
|
+
#
|
16854
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QueueInfoInput AWS API Documentation
|
16855
|
+
#
|
16856
|
+
class QueueInfoInput < Struct.new(
|
16857
|
+
:id)
|
16858
|
+
SENSITIVE = []
|
16859
|
+
include Aws::Structure
|
16860
|
+
end
|
16861
|
+
|
16477
16862
|
# Contains information about a queue for a quick connect. The flow must
|
16478
16863
|
# be of type Transfer to Queue.
|
16479
16864
|
#
|
@@ -17298,12 +17683,15 @@ module Aws::Connect
|
|
17298
17683
|
# @return [String]
|
17299
17684
|
#
|
17300
17685
|
# @!attribute [rw] status
|
17686
|
+
# Status of the attachment reference type.
|
17301
17687
|
# @return [String]
|
17302
17688
|
#
|
17303
17689
|
# @!attribute [rw] arn
|
17690
|
+
# The Amazon Resource Name (ARN) of the reference
|
17304
17691
|
# @return [String]
|
17305
17692
|
#
|
17306
17693
|
# @!attribute [rw] status_reason
|
17694
|
+
# Relevant details why the reference was not successfully created.
|
17307
17695
|
# @return [String]
|
17308
17696
|
#
|
17309
17697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Reference AWS API Documentation
|
@@ -17335,6 +17723,8 @@ module Aws::Connect
|
|
17335
17723
|
# @return [Types::AttachmentReference]
|
17336
17724
|
#
|
17337
17725
|
# @!attribute [rw] email_message
|
17726
|
+
# Information about the reference when the referenceType is
|
17727
|
+
# `EMAIL_MESSAGE`. Otherwise, null.
|
17338
17728
|
# @return [Types::EmailMessageReference]
|
17339
17729
|
#
|
17340
17730
|
# @!attribute [rw] string
|
@@ -17668,12 +18058,17 @@ module Aws::Connect
|
|
17668
18058
|
# associated with the first interaction with the contact center.
|
17669
18059
|
# @return [String]
|
17670
18060
|
#
|
18061
|
+
# @!attribute [rw] contact_recording_type
|
18062
|
+
# The type of recording being operated on.
|
18063
|
+
# @return [String]
|
18064
|
+
#
|
17671
18065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ResumeContactRecordingRequest AWS API Documentation
|
17672
18066
|
#
|
17673
18067
|
class ResumeContactRecordingRequest < Struct.new(
|
17674
18068
|
:instance_id,
|
17675
18069
|
:contact_id,
|
17676
|
-
:initial_contact_id
|
18070
|
+
:initial_contact_id,
|
18071
|
+
:contact_recording_type)
|
17677
18072
|
SENSITIVE = []
|
17678
18073
|
include Aws::Structure
|
17679
18074
|
end
|
@@ -18513,7 +18908,7 @@ module Aws::Connect
|
|
18513
18908
|
# @return [Types::ContactFlowModuleSearchFilter]
|
18514
18909
|
#
|
18515
18910
|
# @!attribute [rw] search_criteria
|
18516
|
-
# The search criteria to be used to return
|
18911
|
+
# The search criteria to be used to return flow modules.
|
18517
18912
|
#
|
18518
18913
|
# <note markdown="1"> The `name` and `description` fields support "contains" queries
|
18519
18914
|
# with a minimum of 2 characters and a maximum of 25 characters. Any
|
@@ -18536,7 +18931,7 @@ module Aws::Connect
|
|
18536
18931
|
end
|
18537
18932
|
|
18538
18933
|
# @!attribute [rw] contact_flow_modules
|
18539
|
-
# The search criteria to be used to return
|
18934
|
+
# The search criteria to be used to return flow modules.
|
18540
18935
|
# @return [Array<Types::ContactFlowModule>]
|
18541
18936
|
#
|
18542
18937
|
# @!attribute [rw] next_token
|
@@ -18545,7 +18940,7 @@ module Aws::Connect
|
|
18545
18940
|
# @return [String]
|
18546
18941
|
#
|
18547
18942
|
# @!attribute [rw] approximate_total_count
|
18548
|
-
# The total number of
|
18943
|
+
# The total number of flows which matched your search query.
|
18549
18944
|
# @return [Integer]
|
18550
18945
|
#
|
18551
18946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactFlowModulesResponse AWS API Documentation
|
@@ -18610,7 +19005,7 @@ module Aws::Connect
|
|
18610
19005
|
# @return [String]
|
18611
19006
|
#
|
18612
19007
|
# @!attribute [rw] approximate_total_count
|
18613
|
-
# The total number of
|
19008
|
+
# The total number of flows which matched your search query.
|
18614
19009
|
# @return [Integer]
|
18615
19010
|
#
|
18616
19011
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactFlowsResponse AWS API Documentation
|
@@ -18757,6 +19152,8 @@ module Aws::Connect
|
|
18757
19152
|
# @return [Types::SearchableContactAttributes]
|
18758
19153
|
#
|
18759
19154
|
# @!attribute [rw] searchable_segment_attributes
|
19155
|
+
# The search criteria based on searchable segment attributes of a
|
19156
|
+
# contact.
|
18760
19157
|
# @return [Types::SearchableSegmentAttributes]
|
18761
19158
|
#
|
18762
19159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchCriteria AWS API Documentation
|
@@ -18775,18 +19172,30 @@ module Aws::Connect
|
|
18775
19172
|
end
|
18776
19173
|
|
18777
19174
|
# @!attribute [rw] instance_id
|
19175
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
19176
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
19177
|
+
#
|
19178
|
+
#
|
19179
|
+
#
|
19180
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
18778
19181
|
# @return [String]
|
18779
19182
|
#
|
18780
19183
|
# @!attribute [rw] max_results
|
19184
|
+
# The maximum number of results to return per page.
|
18781
19185
|
# @return [Integer]
|
18782
19186
|
#
|
18783
19187
|
# @!attribute [rw] next_token
|
19188
|
+
# The token for the next set of results. Use the value returned in the
|
19189
|
+
# previous response in the next request to retrieve the next set of
|
19190
|
+
# results.
|
18784
19191
|
# @return [String]
|
18785
19192
|
#
|
18786
19193
|
# @!attribute [rw] search_criteria
|
19194
|
+
# The search criteria to be used to return email addresses.
|
18787
19195
|
# @return [Types::EmailAddressSearchCriteria]
|
18788
19196
|
#
|
18789
19197
|
# @!attribute [rw] search_filter
|
19198
|
+
# Filters to be applied to search results.
|
18790
19199
|
# @return [Types::EmailAddressSearchFilter]
|
18791
19200
|
#
|
18792
19201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchEmailAddressesRequest AWS API Documentation
|
@@ -18802,12 +19211,16 @@ module Aws::Connect
|
|
18802
19211
|
end
|
18803
19212
|
|
18804
19213
|
# @!attribute [rw] next_token
|
19214
|
+
# If there are additional results, this is the token for the next set
|
19215
|
+
# of results.
|
18805
19216
|
# @return [String]
|
18806
19217
|
#
|
18807
19218
|
# @!attribute [rw] email_addresses
|
19219
|
+
# List of email addresses matching SearchFilter and SearchCriteria
|
18808
19220
|
# @return [Array<Types::EmailAddressMetadata>]
|
18809
19221
|
#
|
18810
19222
|
# @!attribute [rw] approximate_total_count
|
19223
|
+
# The total number of email addresses which matched your search query.
|
18811
19224
|
# @return [Integer]
|
18812
19225
|
#
|
18813
19226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchEmailAddressesResponse AWS API Documentation
|
@@ -19570,7 +19983,7 @@ module Aws::Connect
|
|
19570
19983
|
include Aws::Structure
|
19571
19984
|
end
|
19572
19985
|
|
19573
|
-
# The search criteria based on user-
|
19986
|
+
# The search criteria based on user-defined contact attribute key and
|
19574
19987
|
# values to search on.
|
19575
19988
|
#
|
19576
19989
|
# @!attribute [rw] key
|
@@ -19591,10 +20004,16 @@ module Aws::Connect
|
|
19591
20004
|
include Aws::Structure
|
19592
20005
|
end
|
19593
20006
|
|
20007
|
+
# The search criteria based on searchable segment attributes of a
|
20008
|
+
# contact
|
20009
|
+
#
|
19594
20010
|
# @!attribute [rw] criteria
|
20011
|
+
# The list of criteria based on searchable segment attributes.
|
19595
20012
|
# @return [Array<Types::SearchableSegmentAttributesCriteria>]
|
19596
20013
|
#
|
19597
20014
|
# @!attribute [rw] match_type
|
20015
|
+
# The match type combining search criteria using multiple searchable
|
20016
|
+
# segment attributes.
|
19598
20017
|
# @return [String]
|
19599
20018
|
#
|
19600
20019
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableSegmentAttributes AWS API Documentation
|
@@ -19606,10 +20025,16 @@ module Aws::Connect
|
|
19606
20025
|
include Aws::Structure
|
19607
20026
|
end
|
19608
20027
|
|
20028
|
+
# The search criteria based on searchable segment attribute key and
|
20029
|
+
# values to search on.
|
20030
|
+
#
|
19609
20031
|
# @!attribute [rw] key
|
20032
|
+
# The key containing a searchable segment attribute.
|
19610
20033
|
# @return [String]
|
19611
20034
|
#
|
19612
20035
|
# @!attribute [rw] values
|
20036
|
+
# The list of values to search for within a searchable segment
|
20037
|
+
# attribute.
|
19613
20038
|
# @return [Array<String>]
|
19614
20039
|
#
|
19615
20040
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableSegmentAttributesCriteria AWS API Documentation
|
@@ -19657,7 +20082,7 @@ module Aws::Connect
|
|
19657
20082
|
# @return [String]
|
19658
20083
|
#
|
19659
20084
|
# @!attribute [rw] arn
|
19660
|
-
# The Amazon Resource Name (ARN) for the
|
20085
|
+
# The Amazon Resource Name (ARN) for the security profile.
|
19661
20086
|
# @return [String]
|
19662
20087
|
#
|
19663
20088
|
# @!attribute [rw] security_profile_name
|
@@ -19861,10 +20286,20 @@ module Aws::Connect
|
|
19861
20286
|
# The value of a segment attribute.
|
19862
20287
|
# @return [String]
|
19863
20288
|
#
|
20289
|
+
# @!attribute [rw] value_map
|
20290
|
+
# The value of a segment attribute.
|
20291
|
+
# @return [Hash<String,Types::SegmentAttributeValue>]
|
20292
|
+
#
|
20293
|
+
# @!attribute [rw] value_integer
|
20294
|
+
# The value of a segment attribute.
|
20295
|
+
# @return [Integer]
|
20296
|
+
#
|
19864
20297
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SegmentAttributeValue AWS API Documentation
|
19865
20298
|
#
|
19866
20299
|
class SegmentAttributeValue < Struct.new(
|
19867
|
-
:value_string
|
20300
|
+
:value_string,
|
20301
|
+
:value_map,
|
20302
|
+
:value_integer)
|
19868
20303
|
SENSITIVE = []
|
19869
20304
|
include Aws::Structure
|
19870
20305
|
end
|
@@ -19878,16 +20313,17 @@ module Aws::Connect
|
|
19878
20313
|
# @!attribute [rw] destination_id
|
19879
20314
|
# Chat system identifier, used in part to uniquely identify chat. This
|
19880
20315
|
# is associated with the Amazon Connect instance and flow to be used
|
19881
|
-
# to start chats. For
|
19882
|
-
#
|
19883
|
-
#
|
20316
|
+
# to start chats. For Server Migration Service, this is the phone
|
20317
|
+
# number destination of inbound Server Migration Service messages
|
20318
|
+
# represented by an Amazon Web Services End User Messaging phone
|
20319
|
+
# number ARN.
|
19884
20320
|
# @return [String]
|
19885
20321
|
#
|
19886
20322
|
# @!attribute [rw] subtype
|
19887
20323
|
# Classification of a channel. This is used in part to uniquely
|
19888
20324
|
# identify chat.
|
19889
20325
|
#
|
19890
|
-
# Valid value: `["connect:sms"]`
|
20326
|
+
# Valid value: `["connect:sms", connect:"WhatsApp"]`
|
19891
20327
|
# @return [String]
|
19892
20328
|
#
|
19893
20329
|
# @!attribute [rw] event
|
@@ -19978,29 +20414,50 @@ module Aws::Connect
|
|
19978
20414
|
end
|
19979
20415
|
|
19980
20416
|
# @!attribute [rw] instance_id
|
20417
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
20418
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
20419
|
+
#
|
20420
|
+
#
|
20421
|
+
#
|
20422
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
19981
20423
|
# @return [String]
|
19982
20424
|
#
|
19983
20425
|
# @!attribute [rw] from_email_address
|
20426
|
+
# The email address to be used for sending email.
|
19984
20427
|
# @return [Types::EmailAddressInfo]
|
19985
20428
|
#
|
19986
20429
|
# @!attribute [rw] destination_email_address
|
20430
|
+
# The email address to send the email to.
|
19987
20431
|
# @return [Types::EmailAddressInfo]
|
19988
20432
|
#
|
19989
20433
|
# @!attribute [rw] additional_recipients
|
20434
|
+
# The additional recipients address of the email in CC.
|
19990
20435
|
# @return [Types::OutboundAdditionalRecipients]
|
19991
20436
|
#
|
19992
20437
|
# @!attribute [rw] email_message
|
20438
|
+
# The email message body to be sent to the newly created email.
|
19993
20439
|
# @return [Types::OutboundEmailContent]
|
19994
20440
|
#
|
19995
20441
|
# @!attribute [rw] traffic_type
|
20442
|
+
# Denotes the class of traffic.
|
19996
20443
|
# @return [String]
|
19997
20444
|
#
|
19998
20445
|
# @!attribute [rw] source_campaign
|
20446
|
+
# A Campaign object need for Campaign traffic type.
|
19999
20447
|
# @return [Types::SourceCampaign]
|
20000
20448
|
#
|
20001
20449
|
# @!attribute [rw] client_token
|
20450
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
20451
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
20452
|
+
# SDK populates this field. For more information about idempotency,
|
20453
|
+
# see [Making retries safe with idempotent APIs][1].
|
20454
|
+
#
|
20002
20455
|
# **A suitable default value is auto-generated.** You should normally
|
20003
20456
|
# not need to pass this option.
|
20457
|
+
#
|
20458
|
+
#
|
20459
|
+
#
|
20460
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
20004
20461
|
# @return [String]
|
20005
20462
|
#
|
20006
20463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SendOutboundEmailRequest AWS API Documentation
|
@@ -20028,6 +20485,7 @@ module Aws::Connect
|
|
20028
20485
|
# @return [String]
|
20029
20486
|
#
|
20030
20487
|
# @!attribute [rw] reason
|
20488
|
+
# The reason for the exception.
|
20031
20489
|
# @return [Types::ServiceQuotaExceededExceptionReason]
|
20032
20490
|
#
|
20033
20491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ServiceQuotaExceededException AWS API Documentation
|
@@ -20039,7 +20497,11 @@ module Aws::Connect
|
|
20039
20497
|
include Aws::Structure
|
20040
20498
|
end
|
20041
20499
|
|
20500
|
+
# The reason for the exception.
|
20501
|
+
#
|
20042
20502
|
# @!attribute [rw] attached_file_service_quota_exceeded_exception_reason
|
20503
|
+
# Total file size of all files or total number of files exceeds the
|
20504
|
+
# service quota
|
20043
20505
|
# @return [String]
|
20044
20506
|
#
|
20045
20507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ServiceQuotaExceededExceptionReason AWS API Documentation
|
@@ -20139,10 +20601,14 @@ module Aws::Connect
|
|
20139
20601
|
include Aws::Structure
|
20140
20602
|
end
|
20141
20603
|
|
20604
|
+
# Information about the campaign.
|
20605
|
+
#
|
20142
20606
|
# @!attribute [rw] campaign_id
|
20607
|
+
# A unique identifier for a campaign.
|
20143
20608
|
# @return [String]
|
20144
20609
|
#
|
20145
20610
|
# @!attribute [rw] outbound_request_id
|
20611
|
+
# A unique identifier for a each request part of same campaign.
|
20146
20612
|
# @return [String]
|
20147
20613
|
#
|
20148
20614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SourceCampaign AWS API Documentation
|
@@ -20187,11 +20653,13 @@ module Aws::Connect
|
|
20187
20653
|
#
|
20188
20654
|
# @!attribute [rw] file_use_case_type
|
20189
20655
|
# The use case for the file.
|
20656
|
+
#
|
20657
|
+
# Only `ATTACHMENTS` are supported.
|
20190
20658
|
# @return [String]
|
20191
20659
|
#
|
20192
20660
|
# @!attribute [rw] associated_resource_arn
|
20193
|
-
# The resource to which the attached file is (being) uploaded to.
|
20194
|
-
# [Cases][1]
|
20661
|
+
# The resource to which the attached file is (being) uploaded to. The
|
20662
|
+
# supported resources are [Cases][1] and [Email][2].
|
20195
20663
|
#
|
20196
20664
|
# <note markdown="1"> This value must be a valid ARN.
|
20197
20665
|
#
|
@@ -20199,7 +20667,8 @@ module Aws::Connect
|
|
20199
20667
|
#
|
20200
20668
|
#
|
20201
20669
|
#
|
20202
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/
|
20670
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/cases.html
|
20671
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html
|
20203
20672
|
# @return [String]
|
20204
20673
|
#
|
20205
20674
|
# @!attribute [rw] created_by
|
@@ -20281,8 +20750,8 @@ module Aws::Connect
|
|
20281
20750
|
# @!attribute [rw] contact_flow_id
|
20282
20751
|
# The identifier of the flow for initiating the chat. To see the
|
20283
20752
|
# ContactFlowId in the Amazon Connect admin website, on the navigation
|
20284
|
-
# menu go to **Routing**, **
|
20285
|
-
#
|
20753
|
+
# menu go to **Routing**, **Flows**. Choose the flow. On the flow
|
20754
|
+
# page, under the name of the flow, choose **Show additional flow
|
20286
20755
|
# information**. The ContactFlowId is the last part of the ARN, shown
|
20287
20756
|
# here in bold:
|
20288
20757
|
#
|
@@ -20598,47 +21067,112 @@ module Aws::Connect
|
|
20598
21067
|
end
|
20599
21068
|
|
20600
21069
|
# @!attribute [rw] instance_id
|
21070
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
21071
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
21072
|
+
#
|
21073
|
+
#
|
21074
|
+
#
|
21075
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
20601
21076
|
# @return [String]
|
20602
21077
|
#
|
20603
21078
|
# @!attribute [rw] from_email_address
|
21079
|
+
# The email address of the customer.
|
20604
21080
|
# @return [Types::EmailAddressInfo]
|
20605
21081
|
#
|
20606
21082
|
# @!attribute [rw] destination_email_address
|
21083
|
+
# The email address associated with the instance.
|
20607
21084
|
# @return [String]
|
20608
21085
|
#
|
20609
21086
|
# @!attribute [rw] description
|
21087
|
+
# A description of the email contact.
|
20610
21088
|
# @return [String]
|
20611
21089
|
#
|
20612
21090
|
# @!attribute [rw] references
|
21091
|
+
# A formatted URL that is shown to an agent in the Contact Control
|
21092
|
+
# Panel (CCP). Emails can have the following reference types at the
|
21093
|
+
# time of creation: `URL` \| `NUMBER` \| `STRING` \| `DATE`. `EMAIL`
|
21094
|
+
# \| `EMAIL_MESSAGE` \|`ATTACHMENT` are not a supported reference type
|
21095
|
+
# during email creation.
|
20613
21096
|
# @return [Hash<String,Types::Reference>]
|
20614
21097
|
#
|
20615
21098
|
# @!attribute [rw] name
|
21099
|
+
# The name of a email that is shown to an agent in the Contact Control
|
21100
|
+
# Panel (CCP).
|
20616
21101
|
# @return [String]
|
20617
21102
|
#
|
20618
21103
|
# @!attribute [rw] email_message
|
21104
|
+
# The email message body to be sent to the newly created email.
|
20619
21105
|
# @return [Types::InboundEmailContent]
|
20620
21106
|
#
|
20621
21107
|
# @!attribute [rw] additional_recipients
|
21108
|
+
# The addtional recipients address of the email.
|
20622
21109
|
# @return [Types::InboundAdditionalRecipients]
|
20623
21110
|
#
|
20624
21111
|
# @!attribute [rw] attachments
|
21112
|
+
# List of S3 presigned URLs of email attachments and their file name.
|
20625
21113
|
# @return [Array<Types::EmailAttachment>]
|
20626
21114
|
#
|
20627
21115
|
# @!attribute [rw] contact_flow_id
|
21116
|
+
# The identifier of the flow for initiating the emails. To see the
|
21117
|
+
# ContactFlowId in the Amazon Connect admin website, on the navigation
|
21118
|
+
# menu go to **Routing**, **Flows**. Choose the flow. On the flow
|
21119
|
+
# page, under the name of the flow, choose **Show additional flow
|
21120
|
+
# information**. The ContactFlowId is the last part of the ARN, shown
|
21121
|
+
# here in bold:
|
21122
|
+
#
|
21123
|
+
# arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
|
20628
21124
|
# @return [String]
|
20629
21125
|
#
|
20630
21126
|
# @!attribute [rw] related_contact_id
|
21127
|
+
# The contactId that is related to this contact. Linking emails
|
21128
|
+
# together by using `RelatedContactID` copies over contact attributes
|
21129
|
+
# from the related email contact to the new email contact. All updates
|
21130
|
+
# to user-defined attributes in the new email contact are limited to
|
21131
|
+
# the individual contact ID. There are no limits to the number of
|
21132
|
+
# contacts that can be linked by using `RelatedContactId`.
|
20631
21133
|
# @return [String]
|
20632
21134
|
#
|
20633
21135
|
# @!attribute [rw] attributes
|
21136
|
+
# A custom key-value pair using an attribute map. The attributes are
|
21137
|
+
# standard Amazon Connect attributes, and can be accessed in flows
|
21138
|
+
# just like any other contact attributes.
|
21139
|
+
#
|
21140
|
+
# There can be up to 32,768 UTF-8 bytes across all key-value pairs per
|
21141
|
+
# contact. Attribute keys can include only alphanumeric, dash, and
|
21142
|
+
# underscore characters.
|
20634
21143
|
# @return [Hash<String,String>]
|
20635
21144
|
#
|
20636
21145
|
# @!attribute [rw] segment_attributes
|
21146
|
+
# A set of system defined key-value pairs stored on individual contact
|
21147
|
+
# segments using an attribute map. The attributes are standard Amazon
|
21148
|
+
# Connect attributes. They can be accessed in flows.
|
21149
|
+
#
|
21150
|
+
# Attribute keys can include only alphanumeric, -, and \_.
|
21151
|
+
#
|
21152
|
+
# This field can be used to show channel subtype, such as
|
21153
|
+
# `connect:Guide`.
|
21154
|
+
#
|
21155
|
+
# <note markdown="1"> To set contact expiry, a `ValueMap` must be specified containing the
|
21156
|
+
# integer number of minutes the contact will be active for before
|
21157
|
+
# expiring, with `SegmentAttributes` like \{ `
|
21158
|
+
# "connect:ContactExpiry": {"ValueMap" : { "ExpiryDuration": {
|
21159
|
+
# "ValueInteger":135}}}}`.
|
21160
|
+
#
|
21161
|
+
# </note>
|
20637
21162
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
20638
21163
|
#
|
20639
21164
|
# @!attribute [rw] client_token
|
21165
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
21166
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
21167
|
+
# SDK populates this field. For more information about idempotency,
|
21168
|
+
# see [Making retries safe with idempotent APIs][1].
|
21169
|
+
#
|
20640
21170
|
# **A suitable default value is auto-generated.** You should normally
|
20641
21171
|
# not need to pass this option.
|
21172
|
+
#
|
21173
|
+
#
|
21174
|
+
#
|
21175
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
20642
21176
|
# @return [String]
|
20643
21177
|
#
|
20644
21178
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartEmailContactRequest AWS API Documentation
|
@@ -20663,6 +21197,7 @@ module Aws::Connect
|
|
20663
21197
|
end
|
20664
21198
|
|
20665
21199
|
# @!attribute [rw] contact_id
|
21200
|
+
# The identifier of this contact within the Amazon Connect instance.
|
20666
21201
|
# @return [String]
|
20667
21202
|
#
|
20668
21203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartEmailContactResponse AWS API Documentation
|
@@ -20808,26 +21343,46 @@ module Aws::Connect
|
|
20808
21343
|
end
|
20809
21344
|
|
20810
21345
|
# @!attribute [rw] instance_id
|
21346
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
21347
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
21348
|
+
#
|
21349
|
+
#
|
21350
|
+
#
|
21351
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
20811
21352
|
# @return [String]
|
20812
21353
|
#
|
20813
21354
|
# @!attribute [rw] contact_id
|
21355
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
20814
21356
|
# @return [String]
|
20815
21357
|
#
|
20816
21358
|
# @!attribute [rw] from_email_address
|
21359
|
+
# The email address associated with the instance.
|
20817
21360
|
# @return [Types::EmailAddressInfo]
|
20818
21361
|
#
|
20819
21362
|
# @!attribute [rw] destination_email_address
|
21363
|
+
# The email address of the customer.
|
20820
21364
|
# @return [Types::EmailAddressInfo]
|
20821
21365
|
#
|
20822
21366
|
# @!attribute [rw] additional_recipients
|
21367
|
+
# The addtional recipients address of email in CC.
|
20823
21368
|
# @return [Types::OutboundAdditionalRecipients]
|
20824
21369
|
#
|
20825
21370
|
# @!attribute [rw] email_message
|
21371
|
+
# The email message body to be sent to the newly created email.
|
20826
21372
|
# @return [Types::OutboundEmailContent]
|
20827
21373
|
#
|
20828
21374
|
# @!attribute [rw] client_token
|
21375
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
21376
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
21377
|
+
# SDK populates this field. For more information about idempotency,
|
21378
|
+
# see [Making retries safe with idempotent APIs][1].
|
21379
|
+
#
|
20829
21380
|
# **A suitable default value is auto-generated.** You should normally
|
20830
21381
|
# not need to pass this option.
|
21382
|
+
#
|
21383
|
+
#
|
21384
|
+
#
|
21385
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
20831
21386
|
# @return [String]
|
20832
21387
|
#
|
20833
21388
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartOutboundEmailContactRequest AWS API Documentation
|
@@ -20845,6 +21400,7 @@ module Aws::Connect
|
|
20845
21400
|
end
|
20846
21401
|
|
20847
21402
|
# @!attribute [rw] contact_id
|
21403
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
20848
21404
|
# @return [String]
|
20849
21405
|
#
|
20850
21406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartOutboundEmailContactResponse AWS API Documentation
|
@@ -21054,8 +21610,8 @@ module Aws::Connect
|
|
21054
21610
|
# @!attribute [rw] contact_flow_id
|
21055
21611
|
# The identifier of the flow for initiating the tasks. To see the
|
21056
21612
|
# ContactFlowId in the Amazon Connect admin website, on the navigation
|
21057
|
-
# menu go to **Routing**, **
|
21058
|
-
#
|
21613
|
+
# menu go to **Routing**, **Flows**. Choose the flow. On the flow
|
21614
|
+
# page, under the name of the flow, choose **Show additional flow
|
21059
21615
|
# information**. The ContactFlowId is the last part of the ARN, shown
|
21060
21616
|
# here in bold:
|
21061
21617
|
#
|
@@ -21146,6 +21702,28 @@ module Aws::Connect
|
|
21146
21702
|
# @return [String]
|
21147
21703
|
#
|
21148
21704
|
# @!attribute [rw] segment_attributes
|
21705
|
+
# A set of system defined key-value pairs stored on individual contact
|
21706
|
+
# segments (unique contact ID) using an attribute map. The attributes
|
21707
|
+
# are standard Amazon Connect attributes. They can be accessed in
|
21708
|
+
# flows.
|
21709
|
+
#
|
21710
|
+
# Attribute keys can include only alphanumeric, -, and \_.
|
21711
|
+
#
|
21712
|
+
# This field can be used to set Contact Expiry as a duration in
|
21713
|
+
# minutes and set a UserId for the User who created a task.
|
21714
|
+
#
|
21715
|
+
# <note markdown="1"> To set contact expiry, a ValueMap must be specified containing the
|
21716
|
+
# integer number of minutes the contact will be active for before
|
21717
|
+
# expiring, with `SegmentAttributes` like \{ `
|
21718
|
+
# "connect:ContactExpiry": {"ValueMap" : { "ExpiryDuration": {
|
21719
|
+
# "ValueInteger": 135}}}}`.
|
21720
|
+
#
|
21721
|
+
# To set the created by user, a valid AgentResourceId must be
|
21722
|
+
# supplied, with `SegmentAttributes` like \{ `"connect:CreatedByUser"
|
21723
|
+
# { "ValueString":
|
21724
|
+
# "arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/agent/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"}}}`.
|
21725
|
+
#
|
21726
|
+
# </note>
|
21149
21727
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
21150
21728
|
#
|
21151
21729
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTaskContactRequest AWS API Documentation
|
@@ -21346,12 +21924,17 @@ module Aws::Connect
|
|
21346
21924
|
# associated with the first interaction with the contact center.
|
21347
21925
|
# @return [String]
|
21348
21926
|
#
|
21927
|
+
# @!attribute [rw] contact_recording_type
|
21928
|
+
# The type of recording being operated on.
|
21929
|
+
# @return [String]
|
21930
|
+
#
|
21349
21931
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContactRecordingRequest AWS API Documentation
|
21350
21932
|
#
|
21351
21933
|
class StopContactRecordingRequest < Struct.new(
|
21352
21934
|
:instance_id,
|
21353
21935
|
:contact_id,
|
21354
|
-
:initial_contact_id
|
21936
|
+
:initial_contact_id,
|
21937
|
+
:contact_recording_type)
|
21355
21938
|
SENSITIVE = []
|
21356
21939
|
include Aws::Structure
|
21357
21940
|
end
|
@@ -21571,12 +22154,17 @@ module Aws::Connect
|
|
21571
22154
|
# associated with the first interaction with the contact center.
|
21572
22155
|
# @return [String]
|
21573
22156
|
#
|
22157
|
+
# @!attribute [rw] contact_recording_type
|
22158
|
+
# The type of recording being operated on.
|
22159
|
+
# @return [String]
|
22160
|
+
#
|
21574
22161
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SuspendContactRecordingRequest AWS API Documentation
|
21575
22162
|
#
|
21576
22163
|
class SuspendContactRecordingRequest < Struct.new(
|
21577
22164
|
:instance_id,
|
21578
22165
|
:contact_id,
|
21579
|
-
:initial_contact_id
|
22166
|
+
:initial_contact_id,
|
22167
|
+
:contact_recording_type)
|
21580
22168
|
SENSITIVE = []
|
21581
22169
|
include Aws::Structure
|
21582
22170
|
end
|
@@ -21694,7 +22282,7 @@ module Aws::Connect
|
|
21694
22282
|
# A tag set contains tag key and tag value.
|
21695
22283
|
#
|
21696
22284
|
# @!attribute [rw] key
|
21697
|
-
# The tag key in the
|
22285
|
+
# The tag key in the TagSet.
|
21698
22286
|
# @return [String]
|
21699
22287
|
#
|
21700
22288
|
# @!attribute [rw] value
|
@@ -21913,10 +22501,20 @@ module Aws::Connect
|
|
21913
22501
|
include Aws::Structure
|
21914
22502
|
end
|
21915
22503
|
|
22504
|
+
# Information about the template attributes.
|
22505
|
+
#
|
21916
22506
|
# @!attribute [rw] custom_attributes
|
22507
|
+
# An object that specifies the custom attributes values to use for
|
22508
|
+
# variables in the message template. This object contains different
|
22509
|
+
# categories of key-value pairs. Each key defines a variable or
|
22510
|
+
# placeholder in the message template.
|
21917
22511
|
# @return [Hash<String,String>]
|
21918
22512
|
#
|
21919
22513
|
# @!attribute [rw] customer_profile_attributes
|
22514
|
+
# An object that specifies the customer profile attributes values to
|
22515
|
+
# use for variables in the message template. This object contains
|
22516
|
+
# different categories of key-value pairs. Each key defines a variable
|
22517
|
+
# or placeholder in the message template.
|
21920
22518
|
# @return [String]
|
21921
22519
|
#
|
21922
22520
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TemplateAttributes AWS API Documentation
|
@@ -21928,13 +22526,20 @@ module Aws::Connect
|
|
21928
22526
|
include Aws::Structure
|
21929
22527
|
end
|
21930
22528
|
|
22529
|
+
# Information about template message configuration.
|
22530
|
+
#
|
21931
22531
|
# @!attribute [rw] knowledge_base_id
|
22532
|
+
# The identifier of the knowledge base. Can be either the ID or the
|
22533
|
+
# ARN. URLs cannot contain the ARN.
|
21932
22534
|
# @return [String]
|
21933
22535
|
#
|
21934
22536
|
# @!attribute [rw] message_template_id
|
22537
|
+
# The identifier of the message template Id.
|
21935
22538
|
# @return [String]
|
21936
22539
|
#
|
21937
22540
|
# @!attribute [rw] template_attributes
|
22541
|
+
# Information about template attributes, that is, CustomAttributes or
|
22542
|
+
# CustomerProfileAttributes.
|
21938
22543
|
# @return [Types::TemplateAttributes]
|
21939
22544
|
#
|
21940
22545
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TemplatedMessageConfig AWS API Documentation
|
@@ -22812,8 +23417,68 @@ module Aws::Connect
|
|
22812
23417
|
# @return [Hash<String,Types::Reference>]
|
22813
23418
|
#
|
22814
23419
|
# @!attribute [rw] segment_attributes
|
23420
|
+
# A set of system defined key-value pairs stored on individual contact
|
23421
|
+
# segments (unique contact ID) using an attribute map. The attributes
|
23422
|
+
# are standard Amazon Connect attributes. They can be accessed in
|
23423
|
+
# flows.
|
23424
|
+
#
|
23425
|
+
# Attribute keys can include only alphanumeric, -, and \_.
|
23426
|
+
#
|
23427
|
+
# This field can be used to show channel subtype, such as
|
23428
|
+
# `connect:Guide`.
|
23429
|
+
#
|
23430
|
+
# Currently Contact Expiry is the only segment attribute which can be
|
23431
|
+
# updated by using the UpdateContact API.
|
22815
23432
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
22816
23433
|
#
|
23434
|
+
# @!attribute [rw] queue_info
|
23435
|
+
# Information about the queue associated with a contact. This
|
23436
|
+
# parameter can only be updated for external audio contacts. It is
|
23437
|
+
# used when you integrate third-party systems with Contact Lens for
|
23438
|
+
# analytics. For more information, see [Amazon Connect Contact Lens
|
23439
|
+
# integration][1] in the <i> Amazon Connect Administrator Guide</i>.
|
23440
|
+
#
|
23441
|
+
#
|
23442
|
+
#
|
23443
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
23444
|
+
# @return [Types::QueueInfoInput]
|
23445
|
+
#
|
23446
|
+
# @!attribute [rw] user_info
|
23447
|
+
# Information about the agent associated with a contact. This
|
23448
|
+
# parameter can only be updated for external audio contacts. It is
|
23449
|
+
# used when you integrate third-party systems with Contact Lens for
|
23450
|
+
# analytics. For more information, see [Amazon Connect Contact Lens
|
23451
|
+
# integration][1] in the <i> Amazon Connect Administrator Guide</i>.
|
23452
|
+
#
|
23453
|
+
#
|
23454
|
+
#
|
23455
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
23456
|
+
# @return [Types::UserInfo]
|
23457
|
+
#
|
23458
|
+
# @!attribute [rw] customer_endpoint
|
23459
|
+
# The endpoint of the customer for which the contact was initiated.
|
23460
|
+
# For external audio contacts, this is usually the end customer's
|
23461
|
+
# phone number. This value can only be updated for external audio
|
23462
|
+
# contacts. For more information, see [Amazon Connect Contact Lens
|
23463
|
+
# integration][1] in the *Amazon Connect Administrator Guide*.
|
23464
|
+
#
|
23465
|
+
#
|
23466
|
+
#
|
23467
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
23468
|
+
# @return [Types::Endpoint]
|
23469
|
+
#
|
23470
|
+
# @!attribute [rw] system_endpoint
|
23471
|
+
# External system endpoint for the contact was initiated. For external
|
23472
|
+
# audio contacts, this is the phone number of the external system such
|
23473
|
+
# as the contact center. This value can only be updated for external
|
23474
|
+
# audio contacts. For more information, see [Amazon Connect Contact
|
23475
|
+
# Lens integration][1] in the *Amazon Connect Administrator Guide*.
|
23476
|
+
#
|
23477
|
+
#
|
23478
|
+
#
|
23479
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
23480
|
+
# @return [Types::Endpoint]
|
23481
|
+
#
|
22817
23482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactRequest AWS API Documentation
|
22818
23483
|
#
|
22819
23484
|
class UpdateContactRequest < Struct.new(
|
@@ -22822,7 +23487,11 @@ module Aws::Connect
|
|
22822
23487
|
:name,
|
22823
23488
|
:description,
|
22824
23489
|
:references,
|
22825
|
-
:segment_attributes
|
23490
|
+
:segment_attributes,
|
23491
|
+
:queue_info,
|
23492
|
+
:user_info,
|
23493
|
+
:customer_endpoint,
|
23494
|
+
:system_endpoint)
|
22826
23495
|
SENSITIVE = [:name, :description]
|
22827
23496
|
include Aws::Structure
|
22828
23497
|
end
|
@@ -22913,18 +23582,35 @@ module Aws::Connect
|
|
22913
23582
|
class UpdateContactScheduleResponse < Aws::EmptyStructure; end
|
22914
23583
|
|
22915
23584
|
# @!attribute [rw] instance_id
|
23585
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
23586
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
23587
|
+
#
|
23588
|
+
#
|
23589
|
+
#
|
23590
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
22916
23591
|
# @return [String]
|
22917
23592
|
#
|
22918
23593
|
# @!attribute [rw] email_address_id
|
23594
|
+
# The identifier of the email address.
|
22919
23595
|
# @return [String]
|
22920
23596
|
#
|
22921
23597
|
# @!attribute [rw] description
|
23598
|
+
# The description of the email address.
|
22922
23599
|
# @return [String]
|
22923
23600
|
#
|
22924
23601
|
# @!attribute [rw] display_name
|
23602
|
+
# The display name of email address.
|
22925
23603
|
# @return [String]
|
22926
23604
|
#
|
22927
23605
|
# @!attribute [rw] client_token
|
23606
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
23607
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
23608
|
+
# SDK populates this field. For more information about idempotency,
|
23609
|
+
# see [Making retries safe with idempotent APIs][1].
|
23610
|
+
#
|
23611
|
+
#
|
23612
|
+
#
|
23613
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
22928
23614
|
# @return [String]
|
22929
23615
|
#
|
22930
23616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateEmailAddressMetadataRequest AWS API Documentation
|
@@ -22940,9 +23626,11 @@ module Aws::Connect
|
|
22940
23626
|
end
|
22941
23627
|
|
22942
23628
|
# @!attribute [rw] email_address_id
|
23629
|
+
# The identifier of the email address.
|
22943
23630
|
# @return [String]
|
22944
23631
|
#
|
22945
23632
|
# @!attribute [rw] email_address_arn
|
23633
|
+
# The Amazon Resource Name (ARN) of the email address.
|
22946
23634
|
# @return [String]
|
22947
23635
|
#
|
22948
23636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateEmailAddressMetadataResponse AWS API Documentation
|
@@ -23498,12 +24186,20 @@ module Aws::Connect
|
|
23498
24186
|
end
|
23499
24187
|
|
23500
24188
|
# @!attribute [rw] instance_id
|
24189
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
24190
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
24191
|
+
#
|
24192
|
+
#
|
24193
|
+
#
|
24194
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
23501
24195
|
# @return [String]
|
23502
24196
|
#
|
23503
24197
|
# @!attribute [rw] queue_id
|
24198
|
+
# The identifier for the queue.
|
23504
24199
|
# @return [String]
|
23505
24200
|
#
|
23506
24201
|
# @!attribute [rw] outbound_email_config
|
24202
|
+
# The outbound email address ID for a specified queue.
|
23507
24203
|
# @return [Types::OutboundEmailConfig]
|
23508
24204
|
#
|
23509
24205
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQueueOutboundEmailConfigRequest AWS API Documentation
|
@@ -23888,6 +24584,8 @@ module Aws::Connect
|
|
23888
24584
|
# @return [String]
|
23889
24585
|
#
|
23890
24586
|
# @!attribute [rw] self_assign_flow_id
|
24587
|
+
# The ContactFlowId for the flow that will be run if this template is
|
24588
|
+
# used to create a self-assigned task.
|
23891
24589
|
# @return [String]
|
23892
24590
|
#
|
23893
24591
|
# @!attribute [rw] constraints
|
@@ -23958,6 +24656,8 @@ module Aws::Connect
|
|
23958
24656
|
# @return [String]
|
23959
24657
|
#
|
23960
24658
|
# @!attribute [rw] self_assign_flow_id
|
24659
|
+
# The ContactFlowId for the flow that will be run if this template is
|
24660
|
+
# used to create a self-assigned task.
|
23961
24661
|
# @return [String]
|
23962
24662
|
#
|
23963
24663
|
# @!attribute [rw] constraints
|
@@ -24706,7 +25406,10 @@ module Aws::Connect
|
|
24706
25406
|
include Aws::Structure
|
24707
25407
|
end
|
24708
25408
|
|
25409
|
+
# The user details for the contact.
|
25410
|
+
#
|
24709
25411
|
# @!attribute [rw] user_id
|
25412
|
+
# The user identifier for the contact.
|
24710
25413
|
# @return [String]
|
24711
25414
|
#
|
24712
25415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserInfo AWS API Documentation
|
@@ -25383,10 +26086,15 @@ module Aws::Connect
|
|
25383
26086
|
# Identifies which track is being recorded.
|
25384
26087
|
# @return [String]
|
25385
26088
|
#
|
26089
|
+
# @!attribute [rw] ivr_recording_track
|
26090
|
+
# Identifies which IVR track is being recorded.
|
26091
|
+
# @return [String]
|
26092
|
+
#
|
25386
26093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/VoiceRecordingConfiguration AWS API Documentation
|
25387
26094
|
#
|
25388
26095
|
class VoiceRecordingConfiguration < Struct.new(
|
25389
|
-
:voice_recording_track
|
26096
|
+
:voice_recording_track,
|
26097
|
+
:ivr_recording_track)
|
25390
26098
|
SENSITIVE = []
|
25391
26099
|
include Aws::Structure
|
25392
26100
|
end
|