aws-sdk-connect 1.215.0 → 1.218.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +690 -199
- data/lib/aws-sdk-connect/client_api.rb +155 -3
- data/lib/aws-sdk-connect/types.rb +637 -170
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +130 -17
- data/sig/types.rbs +117 -7
- metadata +1 -1
@@ -839,6 +839,38 @@ module Aws::Connect
|
|
839
839
|
include Aws::Structure
|
840
840
|
end
|
841
841
|
|
842
|
+
# @!attribute [rw] instance_id
|
843
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
844
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
845
|
+
#
|
846
|
+
#
|
847
|
+
#
|
848
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
849
|
+
# @return [String]
|
850
|
+
#
|
851
|
+
# @!attribute [rw] contact_id
|
852
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
853
|
+
# @return [String]
|
854
|
+
#
|
855
|
+
# @!attribute [rw] user_id
|
856
|
+
# The identifier for the user. This can be the ID or the ARN of the
|
857
|
+
# user.
|
858
|
+
# @return [String]
|
859
|
+
#
|
860
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateContactWithUserRequest AWS API Documentation
|
861
|
+
#
|
862
|
+
class AssociateContactWithUserRequest < Struct.new(
|
863
|
+
:instance_id,
|
864
|
+
:contact_id,
|
865
|
+
:user_id)
|
866
|
+
SENSITIVE = []
|
867
|
+
include Aws::Structure
|
868
|
+
end
|
869
|
+
|
870
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateContactWithUserResponse AWS API Documentation
|
871
|
+
#
|
872
|
+
class AssociateContactWithUserResponse < Aws::EmptyStructure; end
|
873
|
+
|
842
874
|
# @!attribute [rw] instance_id
|
843
875
|
# The identifier of the Amazon Connect instance. You can [find the
|
844
876
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -1141,12 +1173,17 @@ module Aws::Connect
|
|
1141
1173
|
# The queues to associate with this routing profile.
|
1142
1174
|
# @return [Array<Types::RoutingProfileQueueConfig>]
|
1143
1175
|
#
|
1176
|
+
# @!attribute [rw] manual_assignment_queue_configs
|
1177
|
+
# The manual assignment queues to associate with this routing profile.
|
1178
|
+
# @return [Array<Types::RoutingProfileManualAssignmentQueueConfig>]
|
1179
|
+
#
|
1144
1180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateRoutingProfileQueuesRequest AWS API Documentation
|
1145
1181
|
#
|
1146
1182
|
class AssociateRoutingProfileQueuesRequest < Struct.new(
|
1147
1183
|
:instance_id,
|
1148
1184
|
:routing_profile_id,
|
1149
|
-
:queue_configs
|
1185
|
+
:queue_configs,
|
1186
|
+
:manual_assignment_queue_configs)
|
1150
1187
|
SENSITIVE = []
|
1151
1188
|
include Aws::Structure
|
1152
1189
|
end
|
@@ -3479,7 +3516,6 @@ module Aws::Connect
|
|
3479
3516
|
end
|
3480
3517
|
|
3481
3518
|
# The contact with the specified ID is not active or does not exist.
|
3482
|
-
# Applies to Voice calls only, not to Chat or Task contacts.
|
3483
3519
|
#
|
3484
3520
|
# @!attribute [rw] message
|
3485
3521
|
# The message.
|
@@ -3555,6 +3591,14 @@ module Aws::Connect
|
|
3555
3591
|
# Set of segment attributes for a contact.
|
3556
3592
|
# @return [Hash<String,Types::ContactSearchSummarySegmentAttributeValue>]
|
3557
3593
|
#
|
3594
|
+
# @!attribute [rw] name
|
3595
|
+
# Indicates name of the contact.
|
3596
|
+
# @return [String]
|
3597
|
+
#
|
3598
|
+
# @!attribute [rw] routing_criteria
|
3599
|
+
# Latest routing criteria on the contact.
|
3600
|
+
# @return [Types::RoutingCriteria]
|
3601
|
+
#
|
3558
3602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummary AWS API Documentation
|
3559
3603
|
#
|
3560
3604
|
class ContactSearchSummary < Struct.new(
|
@@ -3569,8 +3613,10 @@ module Aws::Connect
|
|
3569
3613
|
:initiation_timestamp,
|
3570
3614
|
:disconnect_timestamp,
|
3571
3615
|
:scheduled_timestamp,
|
3572
|
-
:segment_attributes
|
3573
|
-
|
3616
|
+
:segment_attributes,
|
3617
|
+
:name,
|
3618
|
+
:routing_criteria)
|
3619
|
+
SENSITIVE = [:segment_attributes, :name]
|
3574
3620
|
include Aws::Structure
|
3575
3621
|
end
|
3576
3622
|
|
@@ -3621,10 +3667,15 @@ module Aws::Connect
|
|
3621
3667
|
# The value of a segment attribute represented as a string.
|
3622
3668
|
# @return [String]
|
3623
3669
|
#
|
3670
|
+
# @!attribute [rw] value_map
|
3671
|
+
# The key and value of a segment attribute.
|
3672
|
+
# @return [Hash<String,Types::SegmentAttributeValue>]
|
3673
|
+
#
|
3624
3674
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummarySegmentAttributeValue AWS API Documentation
|
3625
3675
|
#
|
3626
3676
|
class ContactSearchSummarySegmentAttributeValue < Struct.new(
|
3627
|
-
:value_string
|
3677
|
+
:value_string,
|
3678
|
+
:value_map)
|
3628
3679
|
SENSITIVE = []
|
3629
3680
|
include Aws::Structure
|
3630
3681
|
end
|
@@ -4802,12 +4853,27 @@ module Aws::Connect
|
|
4802
4853
|
# The values of the predefined attribute.
|
4803
4854
|
# @return [Types::PredefinedAttributeValues]
|
4804
4855
|
#
|
4856
|
+
# @!attribute [rw] purposes
|
4857
|
+
# Values that enable you to categorize your predefined attributes. You
|
4858
|
+
# can use them in custom UI elements across the Amazon Connect admin
|
4859
|
+
# website.
|
4860
|
+
# @return [Array<String>]
|
4861
|
+
#
|
4862
|
+
# @!attribute [rw] attribute_configuration
|
4863
|
+
# Custom metadata that is associated to predefined attributes to
|
4864
|
+
# control behavior in upstream services, such as controlling how a
|
4865
|
+
# predefined attribute should be displayed in the Amazon Connect admin
|
4866
|
+
# website.
|
4867
|
+
# @return [Types::InputPredefinedAttributeConfiguration]
|
4868
|
+
#
|
4805
4869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreatePredefinedAttributeRequest AWS API Documentation
|
4806
4870
|
#
|
4807
4871
|
class CreatePredefinedAttributeRequest < Struct.new(
|
4808
4872
|
:instance_id,
|
4809
4873
|
:name,
|
4810
|
-
:values
|
4874
|
+
:values,
|
4875
|
+
:purposes,
|
4876
|
+
:attribute_configuration)
|
4811
4877
|
SENSITIVE = []
|
4812
4878
|
include Aws::Structure
|
4813
4879
|
end
|
@@ -5109,6 +5175,17 @@ module Aws::Connect
|
|
5109
5175
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html
|
5110
5176
|
# @return [Array<Types::RoutingProfileQueueConfig>]
|
5111
5177
|
#
|
5178
|
+
# @!attribute [rw] manual_assignment_queue_configs
|
5179
|
+
# The manual assignment queues associated with the routing profile. If
|
5180
|
+
# no queue is added, agents and supervisors can't pick or assign any
|
5181
|
+
# contacts from this routing profile. The limit of 10 array members
|
5182
|
+
# applies to the maximum number of
|
5183
|
+
# RoutingProfileManualAssignmentQueueConfig objects that can be passed
|
5184
|
+
# during a CreateRoutingProfile API request. It is different from the
|
5185
|
+
# quota of 50 queues per routing profile per instance that is listed
|
5186
|
+
# in Amazon Connect service quotas.
|
5187
|
+
# @return [Array<Types::RoutingProfileManualAssignmentQueueConfig>]
|
5188
|
+
#
|
5112
5189
|
# @!attribute [rw] media_concurrencies
|
5113
5190
|
# The channels that agents can handle in the Contact Control Panel
|
5114
5191
|
# (CCP) for this routing profile.
|
@@ -5134,6 +5211,7 @@ module Aws::Connect
|
|
5134
5211
|
:description,
|
5135
5212
|
:default_outbound_queue_id,
|
5136
5213
|
:queue_configs,
|
5214
|
+
:manual_assignment_queue_configs,
|
5137
5215
|
:media_concurrencies,
|
5138
5216
|
:tags,
|
5139
5217
|
:agent_availability_timer)
|
@@ -8307,12 +8385,18 @@ module Aws::Connect
|
|
8307
8385
|
# The queues to disassociate from this routing profile.
|
8308
8386
|
# @return [Array<Types::RoutingProfileQueueReference>]
|
8309
8387
|
#
|
8388
|
+
# @!attribute [rw] manual_assignment_queue_references
|
8389
|
+
# The manual assignment queues to disassociate with this routing
|
8390
|
+
# profile.
|
8391
|
+
# @return [Array<Types::RoutingProfileQueueReference>]
|
8392
|
+
#
|
8310
8393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateRoutingProfileQueuesRequest AWS API Documentation
|
8311
8394
|
#
|
8312
8395
|
class DisassociateRoutingProfileQueuesRequest < Struct.new(
|
8313
8396
|
:instance_id,
|
8314
8397
|
:routing_profile_id,
|
8315
|
-
:queue_references
|
8398
|
+
:queue_references,
|
8399
|
+
:manual_assignment_queue_references)
|
8316
8400
|
SENSITIVE = []
|
8317
8401
|
include Aws::Structure
|
8318
8402
|
end
|
@@ -11248,6 +11332,8 @@ module Aws::Connect
|
|
11248
11332
|
# Agent, Agent Hierarchy, Feature,
|
11249
11333
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11250
11334
|
#
|
11335
|
+
# Valid metric filter key: `INITIATION_METHOD`
|
11336
|
+
#
|
11251
11337
|
# UI name: [Average queue abandon time][12]
|
11252
11338
|
#
|
11253
11339
|
# AVG\_ACTIVE\_TIME
|
@@ -11643,10 +11729,23 @@ module Aws::Connect
|
|
11643
11729
|
#
|
11644
11730
|
# UI name: [Average queue answer time][45]
|
11645
11731
|
#
|
11732
|
+
# Valid metric level filters: `INITIATION_METHOD`, `FEATURE`,
|
11733
|
+
# `DISCONNECT_REASON`
|
11734
|
+
#
|
11646
11735
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11647
11736
|
#
|
11648
11737
|
# </note>
|
11649
11738
|
#
|
11739
|
+
# AVG\_QUEUE\_ANSWER\_TIME\_CUSTOMER\_FIRST\_CALLBACK
|
11740
|
+
#
|
11741
|
+
# : Unit: Seconds
|
11742
|
+
#
|
11743
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11744
|
+
# Agent, Feature, contact/segmentAttributes/connect:Subtype, Q in
|
11745
|
+
# Connect, Agent Hierarchy
|
11746
|
+
#
|
11747
|
+
# UI name: [Avg. queue answer time - customer first callback][46]
|
11748
|
+
#
|
11650
11749
|
# AVG\_RESPONSE\_TIME\_AGENT
|
11651
11750
|
#
|
11652
11751
|
# : Unit: Seconds
|
@@ -11656,7 +11755,7 @@ module Aws::Connect
|
|
11656
11755
|
# Feature, RoutingStepExpression, Initiation method, Routing
|
11657
11756
|
# Profile, Queue, Q in Connect
|
11658
11757
|
#
|
11659
|
-
# UI name: [Average agent response time][
|
11758
|
+
# UI name: [Average agent response time][47]
|
11660
11759
|
#
|
11661
11760
|
# AVG\_RESPONSE\_TIME\_CUSTOMER
|
11662
11761
|
#
|
@@ -11667,7 +11766,7 @@ module Aws::Connect
|
|
11667
11766
|
# Feature, RoutingStepExpression, Initiation method, Routing
|
11668
11767
|
# Profile, Queue, Q in Connect
|
11669
11768
|
#
|
11670
|
-
# UI name: [Average customer response time][
|
11769
|
+
# UI name: [Average customer response time][48]
|
11671
11770
|
#
|
11672
11771
|
# AVG\_RESOLUTION\_TIME
|
11673
11772
|
#
|
@@ -11676,7 +11775,7 @@ module Aws::Connect
|
|
11676
11775
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11677
11776
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11678
11777
|
#
|
11679
|
-
# UI name: [Average resolution time][
|
11778
|
+
# UI name: [Average resolution time][49]
|
11680
11779
|
#
|
11681
11780
|
# AVG\_TALK\_TIME
|
11682
11781
|
#
|
@@ -11689,7 +11788,7 @@ module Aws::Connect
|
|
11689
11788
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11690
11789
|
# Q in Connect
|
11691
11790
|
#
|
11692
|
-
# UI name: [Average talk time][
|
11791
|
+
# UI name: [Average talk time][50]
|
11693
11792
|
#
|
11694
11793
|
# AVG\_TALK\_TIME\_AGENT
|
11695
11794
|
#
|
@@ -11702,7 +11801,7 @@ module Aws::Connect
|
|
11702
11801
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11703
11802
|
# Q in Connect
|
11704
11803
|
#
|
11705
|
-
# UI name: [Average agent talk time][
|
11804
|
+
# UI name: [Average agent talk time][51]
|
11706
11805
|
#
|
11707
11806
|
# AVG\_TALK\_TIME\_CUSTOMER
|
11708
11807
|
#
|
@@ -11715,7 +11814,7 @@ module Aws::Connect
|
|
11715
11814
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11716
11815
|
# Q in Connect
|
11717
11816
|
#
|
11718
|
-
# UI name: [Average customer talk time][
|
11817
|
+
# UI name: [Average customer talk time][52]
|
11719
11818
|
#
|
11720
11819
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
11721
11820
|
#
|
@@ -11726,7 +11825,18 @@ module Aws::Connect
|
|
11726
11825
|
#
|
11727
11826
|
# Valid groupings and filters: Campaign
|
11728
11827
|
#
|
11729
|
-
# UI name: [Average wait time after customer connection][
|
11828
|
+
# UI name: [Average wait time after customer connection][53]
|
11829
|
+
#
|
11830
|
+
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_FIRST\_CALLBACK\_CONNECTION
|
11831
|
+
#
|
11832
|
+
# : Unit: Seconds
|
11833
|
+
#
|
11834
|
+
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11835
|
+
# Agent, Feature, contact/segmentAttributes/connect:Subtype, Q in
|
11836
|
+
# Connect, Agent Hierarchy
|
11837
|
+
#
|
11838
|
+
# UI name: [Avg. wait time after customer connection - customer
|
11839
|
+
# first callback][54]
|
11730
11840
|
#
|
11731
11841
|
# AVG\_WEIGHTED\_EVALUATION\_SCORE
|
11732
11842
|
#
|
@@ -11736,7 +11846,7 @@ module Aws::Connect
|
|
11736
11846
|
# Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
|
11737
11847
|
# Evaluation Source, Form Version, Queue, Routing Profile
|
11738
11848
|
#
|
11739
|
-
# UI name: [Average weighted evaluation score][
|
11849
|
+
# UI name: [Average weighted evaluation score][55]
|
11740
11850
|
#
|
11741
11851
|
# BOT\_CONVERSATIONS\_COMPLETED
|
11742
11852
|
#
|
@@ -11749,7 +11859,7 @@ module Aws::Connect
|
|
11749
11859
|
# Initiation method, Invoking resource type, Parent flows resource
|
11750
11860
|
# ID
|
11751
11861
|
#
|
11752
|
-
# UI name: [Bot conversations completed][
|
11862
|
+
# UI name: [Bot conversations completed][56]
|
11753
11863
|
#
|
11754
11864
|
# BOT\_INTENTS\_COMPLETED
|
11755
11865
|
#
|
@@ -11762,7 +11872,7 @@ module Aws::Connect
|
|
11762
11872
|
# published timestamp, Initiation method, Invoking resource type,
|
11763
11873
|
# Parent flows resource ID
|
11764
11874
|
#
|
11765
|
-
# UI name: [Bot intents completed][
|
11875
|
+
# UI name: [Bot intents completed][57]
|
11766
11876
|
#
|
11767
11877
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
11768
11878
|
#
|
@@ -11777,7 +11887,7 @@ module Aws::Connect
|
|
11777
11887
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
11778
11888
|
# `GT` (for *Greater than*).
|
11779
11889
|
#
|
11780
|
-
# UI name: [Campaign contacts abandoned after X][
|
11890
|
+
# UI name: [Campaign contacts abandoned after X][58]
|
11781
11891
|
#
|
11782
11892
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
11783
11893
|
#
|
@@ -11792,7 +11902,7 @@ module Aws::Connect
|
|
11792
11902
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
11793
11903
|
# `GT` (for *Greater than*).
|
11794
11904
|
#
|
11795
|
-
# UI name: [Campaign contacts abandoned after X rate][
|
11905
|
+
# UI name: [Campaign contacts abandoned after X rate][59]
|
11796
11906
|
#
|
11797
11907
|
# CAMPAIGN\_INTERACTIONS
|
11798
11908
|
#
|
@@ -11805,7 +11915,7 @@ module Aws::Connect
|
|
11805
11915
|
#
|
11806
11916
|
# Valid groupings and filters: Campaign
|
11807
11917
|
#
|
11808
|
-
# UI name: [Campaign interactions][
|
11918
|
+
# UI name: [Campaign interactions][60]
|
11809
11919
|
#
|
11810
11920
|
# CAMPAIGN\_PROGRESS\_RATE
|
11811
11921
|
#
|
@@ -11818,7 +11928,7 @@ module Aws::Connect
|
|
11818
11928
|
# Valid groupings and filters: Campaign, Campaign Execution
|
11819
11929
|
# Timestamp
|
11820
11930
|
#
|
11821
|
-
# UI name: [Campaign progress rate][
|
11931
|
+
# UI name: [Campaign progress rate][61]
|
11822
11932
|
#
|
11823
11933
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
11824
11934
|
#
|
@@ -11829,7 +11939,7 @@ module Aws::Connect
|
|
11829
11939
|
# Valid groupings and filters: Campaign, Channel,
|
11830
11940
|
# contact/segmentAttributes/connect:Subtype
|
11831
11941
|
#
|
11832
|
-
# UI name: [Campaign send attempts][
|
11942
|
+
# UI name: [Campaign send attempts][62]
|
11833
11943
|
#
|
11834
11944
|
# CAMPAIGN\_SEND\_EXCLUSIONS
|
11835
11945
|
#
|
@@ -11842,7 +11952,7 @@ module Aws::Connect
|
|
11842
11952
|
# Valid groupings and filters: Campaign, Campaign Excluded Event
|
11843
11953
|
# Type, Campaign Execution Timestamp
|
11844
11954
|
#
|
11845
|
-
# UI name: [Campaign send exclusions][
|
11955
|
+
# UI name: [Campaign send exclusions][63]
|
11846
11956
|
#
|
11847
11957
|
# CASES\_CREATED
|
11848
11958
|
#
|
@@ -11852,7 +11962,7 @@ module Aws::Connect
|
|
11852
11962
|
#
|
11853
11963
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11854
11964
|
#
|
11855
|
-
# UI name: [Cases created][
|
11965
|
+
# UI name: [Cases created][64]
|
11856
11966
|
#
|
11857
11967
|
# CONTACTS\_CREATED
|
11858
11968
|
#
|
@@ -11863,7 +11973,7 @@ module Aws::Connect
|
|
11863
11973
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11864
11974
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11865
11975
|
#
|
11866
|
-
# UI name: [Contacts created][
|
11976
|
+
# UI name: [Contacts created][65]
|
11867
11977
|
#
|
11868
11978
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11869
11979
|
#
|
@@ -11880,7 +11990,7 @@ module Aws::Connect
|
|
11880
11990
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression,
|
11881
11991
|
# Q in Connect
|
11882
11992
|
#
|
11883
|
-
# UI name: [
|
11993
|
+
# UI name: [Contacts handled][66]
|
11884
11994
|
#
|
11885
11995
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11886
11996
|
#
|
@@ -11895,7 +12005,7 @@ module Aws::Connect
|
|
11895
12005
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11896
12006
|
# Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11897
12007
|
#
|
11898
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
12008
|
+
# UI name: [Contacts handled (connected to agent timestamp)][67]
|
11899
12009
|
#
|
11900
12010
|
# CONTACTS\_HOLD\_ABANDONS
|
11901
12011
|
#
|
@@ -11905,7 +12015,7 @@ module Aws::Connect
|
|
11905
12015
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11906
12016
|
# Q in Connect
|
11907
12017
|
#
|
11908
|
-
# UI name: [Contacts hold disconnect][
|
12018
|
+
# UI name: [Contacts hold disconnect][68]
|
11909
12019
|
#
|
11910
12020
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
11911
12021
|
#
|
@@ -11914,7 +12024,7 @@ module Aws::Connect
|
|
11914
12024
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11915
12025
|
# Agent, Agent Hierarchy, Q in Connect
|
11916
12026
|
#
|
11917
|
-
# UI name: [Contacts hold agent disconnect][
|
12027
|
+
# UI name: [Contacts hold agent disconnect][69]
|
11918
12028
|
#
|
11919
12029
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
11920
12030
|
#
|
@@ -11923,7 +12033,7 @@ module Aws::Connect
|
|
11923
12033
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11924
12034
|
# Agent, Agent Hierarchy, Q in Connect
|
11925
12035
|
#
|
11926
|
-
# UI name: [Contacts hold customer disconnect][
|
12036
|
+
# UI name: [Contacts hold customer disconnect][70]
|
11927
12037
|
#
|
11928
12038
|
# CONTACTS\_PUT\_ON\_HOLD
|
11929
12039
|
#
|
@@ -11932,7 +12042,7 @@ module Aws::Connect
|
|
11932
12042
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11933
12043
|
# Agent, Agent Hierarchy, Q in Connect
|
11934
12044
|
#
|
11935
|
-
# UI name: [Contacts put on hold][
|
12045
|
+
# UI name: [Contacts put on hold][71]
|
11936
12046
|
#
|
11937
12047
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
11938
12048
|
#
|
@@ -11941,7 +12051,7 @@ module Aws::Connect
|
|
11941
12051
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11942
12052
|
# Agent, Agent Hierarchy, Q in Connect
|
11943
12053
|
#
|
11944
|
-
# UI name: [Contacts transferred out external][
|
12054
|
+
# UI name: [Contacts transferred out external][72]
|
11945
12055
|
#
|
11946
12056
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
11947
12057
|
#
|
@@ -11950,7 +12060,7 @@ module Aws::Connect
|
|
11950
12060
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11951
12061
|
# Agent, Agent Hierarchy, Q in Connect
|
11952
12062
|
#
|
11953
|
-
# UI name: [Contacts transferred out internal][
|
12063
|
+
# UI name: [Contacts transferred out internal][73]
|
11954
12064
|
#
|
11955
12065
|
# CONTACTS\_QUEUED
|
11956
12066
|
#
|
@@ -11960,7 +12070,7 @@ module Aws::Connect
|
|
11960
12070
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11961
12071
|
# Q in Connect
|
11962
12072
|
#
|
11963
|
-
# UI name: [Contacts queued][
|
12073
|
+
# UI name: [Contacts queued][74]
|
11964
12074
|
#
|
11965
12075
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
11966
12076
|
#
|
@@ -11969,7 +12079,7 @@ module Aws::Connect
|
|
11969
12079
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11970
12080
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
11971
12081
|
#
|
11972
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
12082
|
+
# UI name: [Contacts queued (enqueue timestamp)][75]
|
11973
12083
|
#
|
11974
12084
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
11975
12085
|
#
|
@@ -11982,7 +12092,7 @@ module Aws::Connect
|
|
11982
12092
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11983
12093
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11984
12094
|
#
|
11985
|
-
# UI name: [Contacts removed from queue in X seconds][
|
12095
|
+
# UI name: [Contacts removed from queue in X seconds][76]
|
11986
12096
|
#
|
11987
12097
|
# CONTACTS\_RESOLVED\_IN\_X
|
11988
12098
|
#
|
@@ -11995,7 +12105,7 @@ module Aws::Connect
|
|
11995
12105
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11996
12106
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11997
12107
|
#
|
11998
|
-
# UI name: [Contacts resolved in X][
|
12108
|
+
# UI name: [Contacts resolved in X][77]
|
11999
12109
|
#
|
12000
12110
|
# CONTACTS\_TRANSFERRED\_OUT
|
12001
12111
|
#
|
@@ -12005,7 +12115,7 @@ module Aws::Connect
|
|
12005
12115
|
# Agent, Agent Hierarchy, Feature,
|
12006
12116
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
12007
12117
|
#
|
12008
|
-
# UI name: [Contacts transferred out][
|
12118
|
+
# UI name: [Contacts transferred out][78]
|
12009
12119
|
#
|
12010
12120
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
12011
12121
|
#
|
@@ -12019,7 +12129,7 @@ module Aws::Connect
|
|
12019
12129
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12020
12130
|
# Q in Connect
|
12021
12131
|
#
|
12022
|
-
# UI name: [Contacts transferred out by agent][
|
12132
|
+
# UI name: [Contacts transferred out by agent][79]
|
12023
12133
|
#
|
12024
12134
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
12025
12135
|
#
|
@@ -12029,7 +12139,7 @@ module Aws::Connect
|
|
12029
12139
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12030
12140
|
# Q in Connect
|
12031
12141
|
#
|
12032
|
-
# UI name: [Contacts transferred out queue][
|
12142
|
+
# UI name: [Contacts transferred out queue][80]
|
12033
12143
|
#
|
12034
12144
|
# CURRENT\_CASES
|
12035
12145
|
#
|
@@ -12039,7 +12149,7 @@ module Aws::Connect
|
|
12039
12149
|
#
|
12040
12150
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12041
12151
|
#
|
12042
|
-
# UI name: [Current cases][
|
12152
|
+
# UI name: [Current cases][81]
|
12043
12153
|
#
|
12044
12154
|
# CONVERSATIONS\_ABANDONED
|
12045
12155
|
#
|
@@ -12050,7 +12160,7 @@ module Aws::Connect
|
|
12050
12160
|
# Feature, RoutingStepExpression, Initiation method, Routing
|
12051
12161
|
# Profile, Queue, Q in Connect
|
12052
12162
|
#
|
12053
|
-
# UI name: [Conversations abandoned][
|
12163
|
+
# UI name: [Conversations abandoned][82]
|
12054
12164
|
#
|
12055
12165
|
# DELIVERY\_ATTEMPTS
|
12056
12166
|
#
|
@@ -12066,7 +12176,7 @@ module Aws::Connect
|
|
12066
12176
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
12067
12177
|
# Queue, Routing Profile
|
12068
12178
|
#
|
12069
|
-
# UI name: [Delivery attempts][
|
12179
|
+
# UI name: [Delivery attempts][83]
|
12070
12180
|
#
|
12071
12181
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
12072
12182
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -12092,7 +12202,7 @@ module Aws::Connect
|
|
12092
12202
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
12093
12203
|
# Queue, Routing Profile
|
12094
12204
|
#
|
12095
|
-
# UI name: [Delivery attempt disposition rate][
|
12205
|
+
# UI name: [Delivery attempt disposition rate][84]
|
12096
12206
|
#
|
12097
12207
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only
|
12098
12208
|
# available for SMS and Email campaign delivery modes. Agent, Queue,
|
@@ -12110,7 +12220,7 @@ module Aws::Connect
|
|
12110
12220
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
12111
12221
|
# Routing Profile
|
12112
12222
|
#
|
12113
|
-
# UI name: [Evaluations performed][
|
12223
|
+
# UI name: [Evaluations performed][85]
|
12114
12224
|
#
|
12115
12225
|
# FLOWS\_OUTCOME
|
12116
12226
|
#
|
@@ -12122,7 +12232,7 @@ module Aws::Connect
|
|
12122
12232
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
12123
12233
|
# published timestamp
|
12124
12234
|
#
|
12125
|
-
# UI name: [Flows outcome][
|
12235
|
+
# UI name: [Flows outcome][86]
|
12126
12236
|
#
|
12127
12237
|
# FLOWS\_STARTED
|
12128
12238
|
#
|
@@ -12133,7 +12243,7 @@ module Aws::Connect
|
|
12133
12243
|
# resource ID, Flows resource ID, Initiation method, Resource
|
12134
12244
|
# published timestamp
|
12135
12245
|
#
|
12136
|
-
# UI name: [Flows started][
|
12246
|
+
# UI name: [Flows started][87]
|
12137
12247
|
#
|
12138
12248
|
# HUMAN\_ANSWERED\_CALLS
|
12139
12249
|
#
|
@@ -12145,7 +12255,7 @@ module Aws::Connect
|
|
12145
12255
|
#
|
12146
12256
|
# Valid groupings and filters: Agent, Campaign
|
12147
12257
|
#
|
12148
|
-
# UI name: [Human answered][
|
12258
|
+
# UI name: [Human answered][88]
|
12149
12259
|
#
|
12150
12260
|
# MAX\_FLOW\_TIME
|
12151
12261
|
#
|
@@ -12157,7 +12267,7 @@ module Aws::Connect
|
|
12157
12267
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
12158
12268
|
# published timestamp
|
12159
12269
|
#
|
12160
|
-
# UI name: [Maximum flow time][
|
12270
|
+
# UI name: [Maximum flow time][89]
|
12161
12271
|
#
|
12162
12272
|
# MAX\_QUEUED\_TIME
|
12163
12273
|
#
|
@@ -12167,7 +12277,7 @@ module Aws::Connect
|
|
12167
12277
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12168
12278
|
# Q in Connect
|
12169
12279
|
#
|
12170
|
-
# UI name: [Maximum queued time][
|
12280
|
+
# UI name: [Maximum queued time][90]
|
12171
12281
|
#
|
12172
12282
|
# MIN\_FLOW\_TIME
|
12173
12283
|
#
|
@@ -12179,7 +12289,7 @@ module Aws::Connect
|
|
12179
12289
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
12180
12290
|
# published timestamp
|
12181
12291
|
#
|
12182
|
-
# UI name: [Minimum flow time][
|
12292
|
+
# UI name: [Minimum flow time][91]
|
12183
12293
|
#
|
12184
12294
|
# PERCENT\_AUTOMATIC\_FAILS
|
12185
12295
|
#
|
@@ -12189,7 +12299,7 @@ module Aws::Connect
|
|
12189
12299
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
12190
12300
|
# Routing Profile
|
12191
12301
|
#
|
12192
|
-
# UI name: [Automatic fails percent][
|
12302
|
+
# UI name: [Automatic fails percent][92]
|
12193
12303
|
#
|
12194
12304
|
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
12195
12305
|
#
|
@@ -12202,7 +12312,7 @@ module Aws::Connect
|
|
12202
12312
|
# Initiation method, Invoking resource type, Parent flows resource
|
12203
12313
|
# ID
|
12204
12314
|
#
|
12205
|
-
# UI name: [Percent bot conversations outcome][
|
12315
|
+
# UI name: [Percent bot conversations outcome][93]
|
12206
12316
|
#
|
12207
12317
|
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
12208
12318
|
#
|
@@ -12215,7 +12325,7 @@ module Aws::Connect
|
|
12215
12325
|
# published timestamp, Initiation method, Invoking resource type,
|
12216
12326
|
# Parent flows resource ID
|
12217
12327
|
#
|
12218
|
-
# UI name: [Percent bot intents outcome][
|
12328
|
+
# UI name: [Percent bot intents outcome][94]
|
12219
12329
|
#
|
12220
12330
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
12221
12331
|
#
|
@@ -12225,7 +12335,7 @@ module Aws::Connect
|
|
12225
12335
|
#
|
12226
12336
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12227
12337
|
#
|
12228
|
-
# UI name: [Cases resolved on first contact][
|
12338
|
+
# UI name: [Cases resolved on first contact][95]
|
12229
12339
|
#
|
12230
12340
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
12231
12341
|
#
|
@@ -12257,7 +12367,7 @@ module Aws::Connect
|
|
12257
12367
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
12258
12368
|
# published timestamp
|
12259
12369
|
#
|
12260
|
-
# UI name: [Flows outcome percentage][
|
12370
|
+
# UI name: [Flows outcome percentage][96].
|
12261
12371
|
#
|
12262
12372
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
12263
12373
|
#
|
@@ -12274,7 +12384,7 @@ module Aws::Connect
|
|
12274
12384
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12275
12385
|
# Q in Connect
|
12276
12386
|
#
|
12277
|
-
# UI name: [Non-talk time percent][
|
12387
|
+
# UI name: [Non-talk time percent][97]
|
12278
12388
|
#
|
12279
12389
|
# PERCENT\_TALK\_TIME
|
12280
12390
|
#
|
@@ -12287,7 +12397,7 @@ module Aws::Connect
|
|
12287
12397
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12288
12398
|
# Q in Connect
|
12289
12399
|
#
|
12290
|
-
# UI name: [Talk time percent][
|
12400
|
+
# UI name: [Talk time percent][98]
|
12291
12401
|
#
|
12292
12402
|
# PERCENT\_TALK\_TIME\_AGENT
|
12293
12403
|
#
|
@@ -12300,7 +12410,7 @@ module Aws::Connect
|
|
12300
12410
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12301
12411
|
# Q in Connect
|
12302
12412
|
#
|
12303
|
-
# UI name: [Agent talk time percent][
|
12413
|
+
# UI name: [Agent talk time percent][99]
|
12304
12414
|
#
|
12305
12415
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
12306
12416
|
#
|
@@ -12313,7 +12423,7 @@ module Aws::Connect
|
|
12313
12423
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12314
12424
|
# Q in Connect
|
12315
12425
|
#
|
12316
|
-
# UI name: [Customer talk time percent][
|
12426
|
+
# UI name: [Customer talk time percent][100]
|
12317
12427
|
#
|
12318
12428
|
# RECIPIENTS\_ATTEMPTED
|
12319
12429
|
#
|
@@ -12326,7 +12436,7 @@ module Aws::Connect
|
|
12326
12436
|
# Valid groupings and filters: Campaign, Campaign Execution
|
12327
12437
|
# Timestamp
|
12328
12438
|
#
|
12329
|
-
# UI name: [Recipients attempted][
|
12439
|
+
# UI name: [Recipients attempted][101]
|
12330
12440
|
#
|
12331
12441
|
# RECIPIENTS\_INTERACTED
|
12332
12442
|
#
|
@@ -12342,7 +12452,7 @@ module Aws::Connect
|
|
12342
12452
|
# contact/segmentAttributes/connect:Subtype, Campaign Execution
|
12343
12453
|
# Timestamp
|
12344
12454
|
#
|
12345
|
-
# UI name: [Recipients interacted][
|
12455
|
+
# UI name: [Recipients interacted][102]
|
12346
12456
|
#
|
12347
12457
|
# RECIPIENTS\_TARGETED
|
12348
12458
|
#
|
@@ -12355,7 +12465,7 @@ module Aws::Connect
|
|
12355
12465
|
# Valid groupings and filters: Campaign, Campaign Execution
|
12356
12466
|
# Timestamp
|
12357
12467
|
#
|
12358
|
-
# UI name: [Recipients targeted][
|
12468
|
+
# UI name: [Recipients targeted][103]
|
12359
12469
|
#
|
12360
12470
|
# REOPENED\_CASE\_ACTIONS
|
12361
12471
|
#
|
@@ -12365,7 +12475,7 @@ module Aws::Connect
|
|
12365
12475
|
#
|
12366
12476
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12367
12477
|
#
|
12368
|
-
# UI name: [Cases reopened][
|
12478
|
+
# UI name: [Cases reopened][104]
|
12369
12479
|
#
|
12370
12480
|
# RESOLVED\_CASE\_ACTIONS
|
12371
12481
|
#
|
@@ -12375,7 +12485,7 @@ module Aws::Connect
|
|
12375
12485
|
#
|
12376
12486
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12377
12487
|
#
|
12378
|
-
# UI name: [Cases resolved][
|
12488
|
+
# UI name: [Cases resolved][105]
|
12379
12489
|
#
|
12380
12490
|
# SERVICE\_LEVEL
|
12381
12491
|
#
|
@@ -12390,7 +12500,7 @@ module Aws::Connect
|
|
12390
12500
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12391
12501
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12392
12502
|
#
|
12393
|
-
# UI name: [Service level X][
|
12503
|
+
# UI name: [Service level X][106]
|
12394
12504
|
#
|
12395
12505
|
# STEP\_CONTACTS\_QUEUED
|
12396
12506
|
#
|
@@ -12416,12 +12526,13 @@ module Aws::Connect
|
|
12416
12526
|
#
|
12417
12527
|
# Valid metric filter key: `INITIATION_METHOD`. This metric only
|
12418
12528
|
# supports the following filter keys as `INITIATION_METHOD`:
|
12419
|
-
# `INBOUND` \| `OUTBOUND` \| `CALLBACK` \| `API`
|
12529
|
+
# `INBOUND` \| `OUTBOUND` \| `CALLBACK` \| `API` \|
|
12530
|
+
# `CALLBACK_CUSTOMER_FIRST_DIALED`
|
12420
12531
|
#
|
12421
12532
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12422
12533
|
# Agent, Agent Hierarchy
|
12423
12534
|
#
|
12424
|
-
# UI name: [Agent API connecting time][
|
12535
|
+
# UI name: [Agent API connecting time][107]
|
12425
12536
|
#
|
12426
12537
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for
|
12427
12538
|
# this metric.
|
@@ -12434,8 +12545,9 @@ module Aws::Connect
|
|
12434
12545
|
#
|
12435
12546
|
# Metric filter:
|
12436
12547
|
#
|
12437
|
-
# * Valid values: `API`\| `
|
12438
|
-
# `
|
12548
|
+
# * Valid values: `API`\| `INCOMING` \| `OUTBOUND` \| `TRANSFER` \|
|
12549
|
+
# `CALLBACK` \| `QUEUE_TRANSFER`\| `Disconnect` \|
|
12550
|
+
# `CALLBACK_CUSTOMER_FIRST_DIALED`
|
12439
12551
|
#
|
12440
12552
|
# ^
|
12441
12553
|
#
|
@@ -12443,7 +12555,7 @@ module Aws::Connect
|
|
12443
12555
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12444
12556
|
# RoutingStepExpression, Q in Connect
|
12445
12557
|
#
|
12446
|
-
# UI name: [Contact abandoned][
|
12558
|
+
# UI name: [Contact abandoned][108]
|
12447
12559
|
#
|
12448
12560
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
12449
12561
|
#
|
@@ -12456,7 +12568,7 @@ module Aws::Connect
|
|
12456
12568
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12457
12569
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12458
12570
|
#
|
12459
|
-
# UI name: [Contacts abandoned in X seconds][
|
12571
|
+
# UI name: [Contacts abandoned in X seconds][109]
|
12460
12572
|
#
|
12461
12573
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
12462
12574
|
#
|
@@ -12469,7 +12581,7 @@ module Aws::Connect
|
|
12469
12581
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12470
12582
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12471
12583
|
#
|
12472
|
-
# UI name: [Contacts answered in X seconds][
|
12584
|
+
# UI name: [Contacts answered in X seconds][110]
|
12473
12585
|
#
|
12474
12586
|
# SUM\_CONTACT\_FLOW\_TIME
|
12475
12587
|
#
|
@@ -12478,7 +12590,7 @@ module Aws::Connect
|
|
12478
12590
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12479
12591
|
# Agent, Agent Hierarchy, Q in Connect
|
12480
12592
|
#
|
12481
|
-
# UI name: [Contact flow time][
|
12593
|
+
# UI name: [Contact flow time][111]
|
12482
12594
|
#
|
12483
12595
|
# SUM\_CONTACT\_TIME\_AGENT
|
12484
12596
|
#
|
@@ -12487,7 +12599,7 @@ module Aws::Connect
|
|
12487
12599
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12488
12600
|
# Hierarchy
|
12489
12601
|
#
|
12490
|
-
# UI name: [Agent on contact time][
|
12602
|
+
# UI name: [Agent on contact time][112]
|
12491
12603
|
#
|
12492
12604
|
# SUM\_CONTACTS\_DISCONNECTED
|
12493
12605
|
#
|
@@ -12499,7 +12611,7 @@ module Aws::Connect
|
|
12499
12611
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12500
12612
|
# Q in Connect
|
12501
12613
|
#
|
12502
|
-
# UI name: [Contact disconnected][
|
12614
|
+
# UI name: [Contact disconnected][113]
|
12503
12615
|
#
|
12504
12616
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
12505
12617
|
#
|
@@ -12508,7 +12620,7 @@ module Aws::Connect
|
|
12508
12620
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12509
12621
|
# Hierarchy
|
12510
12622
|
#
|
12511
|
-
# UI name: [Error status time][
|
12623
|
+
# UI name: [Error status time][114]
|
12512
12624
|
#
|
12513
12625
|
# SUM\_HANDLE\_TIME
|
12514
12626
|
#
|
@@ -12517,7 +12629,7 @@ module Aws::Connect
|
|
12517
12629
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12518
12630
|
# Agent, Agent Hierarchy, Q in Connect
|
12519
12631
|
#
|
12520
|
-
# UI name: [Contact handle time][
|
12632
|
+
# UI name: [Contact handle time][115]
|
12521
12633
|
#
|
12522
12634
|
# SUM\_HOLD\_TIME
|
12523
12635
|
#
|
@@ -12526,7 +12638,7 @@ module Aws::Connect
|
|
12526
12638
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12527
12639
|
# Agent, Agent Hierarchy, Q in Connect
|
12528
12640
|
#
|
12529
|
-
# UI name: [Customer hold time][
|
12641
|
+
# UI name: [Customer hold time][116]
|
12530
12642
|
#
|
12531
12643
|
# SUM\_IDLE\_TIME\_AGENT
|
12532
12644
|
#
|
@@ -12535,7 +12647,7 @@ module Aws::Connect
|
|
12535
12647
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12536
12648
|
# Hierarchy
|
12537
12649
|
#
|
12538
|
-
# UI name: [Agent idle time][
|
12650
|
+
# UI name: [Agent idle time][117]
|
12539
12651
|
#
|
12540
12652
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
12541
12653
|
#
|
@@ -12544,7 +12656,7 @@ module Aws::Connect
|
|
12544
12656
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12545
12657
|
# Agent, Agent Hierarchy, Q in Connect
|
12546
12658
|
#
|
12547
|
-
# UI name: [Agent interaction and hold time][
|
12659
|
+
# UI name: [Agent interaction and hold time][118]
|
12548
12660
|
#
|
12549
12661
|
# SUM\_INTERACTION\_TIME
|
12550
12662
|
#
|
@@ -12553,7 +12665,7 @@ module Aws::Connect
|
|
12553
12665
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12554
12666
|
# Agent, Agent Hierarchy
|
12555
12667
|
#
|
12556
|
-
# UI name: [Agent interaction time][
|
12668
|
+
# UI name: [Agent interaction time][119]
|
12557
12669
|
#
|
12558
12670
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
12559
12671
|
#
|
@@ -12562,7 +12674,7 @@ module Aws::Connect
|
|
12562
12674
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12563
12675
|
# Hierarchy
|
12564
12676
|
#
|
12565
|
-
# UI name: [Agent non-productive time][
|
12677
|
+
# UI name: [Agent non-productive time][120]
|
12566
12678
|
#
|
12567
12679
|
# SUM\_ONLINE\_TIME\_AGENT
|
12568
12680
|
#
|
@@ -12571,7 +12683,7 @@ module Aws::Connect
|
|
12571
12683
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12572
12684
|
# Hierarchy
|
12573
12685
|
#
|
12574
|
-
# UI name: [Online time][
|
12686
|
+
# UI name: [Online time][121]
|
12575
12687
|
#
|
12576
12688
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
12577
12689
|
#
|
@@ -12580,7 +12692,7 @@ module Aws::Connect
|
|
12580
12692
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12581
12693
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
12582
12694
|
#
|
12583
|
-
# UI name: [Callback attempts][
|
12695
|
+
# UI name: [Callback attempts][122]
|
12584
12696
|
#
|
12585
12697
|
#
|
12586
12698
|
#
|
@@ -12629,81 +12741,83 @@ module Aws::Connect
|
|
12629
12741
|
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-messages
|
12630
12742
|
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-non-talk-time
|
12631
12743
|
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time
|
12632
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12633
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12634
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12635
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12636
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12637
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12638
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12639
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12640
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12641
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12642
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12643
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12644
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
12645
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
12646
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
12647
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
12648
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12649
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12650
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12651
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12652
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12653
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12654
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-
|
12655
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12656
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12657
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12658
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12659
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12660
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12661
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12662
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12663
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12664
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
12665
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12666
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12667
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12668
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12669
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12670
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12671
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12672
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12673
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12674
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12675
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12676
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12677
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12678
|
-
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12679
|
-
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12680
|
-
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12681
|
-
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12682
|
-
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12683
|
-
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12684
|
-
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12685
|
-
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12686
|
-
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12687
|
-
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-
|
12688
|
-
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12689
|
-
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12690
|
-
# [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12691
|
-
# [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12692
|
-
# [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12693
|
-
# [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12694
|
-
# [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12695
|
-
# [109]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12696
|
-
# [110]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12697
|
-
# [111]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-
|
12698
|
-
# [112]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12699
|
-
# [113]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-
|
12700
|
-
# [114]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12701
|
-
# [115]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12702
|
-
# [116]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12703
|
-
# [117]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-
|
12704
|
-
# [118]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-
|
12705
|
-
# [119]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12706
|
-
# [120]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12744
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time-customer-first-callback
|
12745
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-response-time-agent
|
12746
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-time-agent
|
12747
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-resolution-time
|
12748
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-talk-time
|
12749
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-talk-time
|
12750
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-talk-time
|
12751
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection
|
12752
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection-customer-first-callback
|
12753
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-weighted-evaluation-score
|
12754
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed
|
12755
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed
|
12756
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x
|
12757
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x-rate
|
12758
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-interactions
|
12759
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-progress-rate
|
12760
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-attempts
|
12761
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-exclusions
|
12762
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-created
|
12763
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-created
|
12764
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled
|
12765
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-by-connected-to-agent-timestamp
|
12766
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
|
12767
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-agent-disconnect
|
12768
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-customer-disconnect
|
12769
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-put-on-hold
|
12770
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-external
|
12771
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-internal
|
12772
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
|
12773
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued-by-enqueue
|
12774
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-removed-from-queue
|
12775
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-resolved
|
12776
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
12777
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-by-agent
|
12778
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
|
12779
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#current-cases
|
12780
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#conversations-abandoned
|
12781
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempts
|
12782
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempt-disposition-rate
|
12783
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#evaluations-performed
|
12784
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
|
12785
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-started
|
12786
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#human-answered
|
12787
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-flow-time
|
12788
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-queued-time
|
12789
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
|
12790
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#automatic-fails-percent
|
12791
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome
|
12792
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome
|
12793
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved-on-first-contact
|
12794
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome-percentage
|
12795
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-talk-time-percent
|
12796
|
+
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#talk-time-percent
|
12797
|
+
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-talk-time-percent
|
12798
|
+
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-talk-time-percent
|
12799
|
+
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-attempted
|
12800
|
+
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-interacted
|
12801
|
+
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-targeted
|
12802
|
+
# [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-reopened
|
12803
|
+
# [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved
|
12804
|
+
# [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
|
12805
|
+
# [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-api-connecting-time
|
12806
|
+
# [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
|
12807
|
+
# [109]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned-in-x-seconds
|
12808
|
+
# [110]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-answered-in-x-seconds
|
12809
|
+
# [111]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-flow-time
|
12810
|
+
# [112]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-on-contact-time
|
12811
|
+
# [113]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-disconnected
|
12812
|
+
# [114]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#error-status-time
|
12813
|
+
# [115]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-handle-time
|
12814
|
+
# [116]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-hold-time
|
12815
|
+
# [117]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-idle-time
|
12816
|
+
# [118]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-and-hold-time
|
12817
|
+
# [119]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-time
|
12818
|
+
# [120]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-productive-time
|
12819
|
+
# [121]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#online-time
|
12820
|
+
# [122]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-attempts
|
12707
12821
|
# @return [Array<Types::MetricV2>]
|
12708
12822
|
#
|
12709
12823
|
# @!attribute [rw] next_token
|
@@ -13730,8 +13844,7 @@ module Aws::Connect
|
|
13730
13844
|
# @return [String]
|
13731
13845
|
#
|
13732
13846
|
# @!attribute [rw] effective_till
|
13733
|
-
# The date
|
13734
|
-
# effective.
|
13847
|
+
# The date until the hours of operation override is effective.
|
13735
13848
|
# @return [String]
|
13736
13849
|
#
|
13737
13850
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationOverride AWS API Documentation
|
@@ -14087,6 +14200,25 @@ module Aws::Connect
|
|
14087
14200
|
include Aws::Structure
|
14088
14201
|
end
|
14089
14202
|
|
14203
|
+
# Custom metadata that is associated to predefined attributes to control
|
14204
|
+
# behavior in upstream services, such as controlling how a predefined
|
14205
|
+
# attribute should be displayed in the Amazon Connect admin website.
|
14206
|
+
#
|
14207
|
+
# @!attribute [rw] enable_value_validation_on_association
|
14208
|
+
# When this parameter is set to true, Amazon Connect enforces strict
|
14209
|
+
# validation on the specific values, if the values are predefined in
|
14210
|
+
# attributes. The contact will store only valid and predefined values
|
14211
|
+
# for the predefined attribute key.
|
14212
|
+
# @return [Boolean]
|
14213
|
+
#
|
14214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InputPredefinedAttributeConfiguration AWS API Documentation
|
14215
|
+
#
|
14216
|
+
class InputPredefinedAttributeConfiguration < Struct.new(
|
14217
|
+
:enable_value_validation_on_association)
|
14218
|
+
SENSITIVE = []
|
14219
|
+
include Aws::Structure
|
14220
|
+
end
|
14221
|
+
|
14090
14222
|
# The Amazon Connect instance.
|
14091
14223
|
#
|
14092
14224
|
# @!attribute [rw] id
|
@@ -16408,6 +16540,70 @@ module Aws::Connect
|
|
16408
16540
|
include Aws::Structure
|
16409
16541
|
end
|
16410
16542
|
|
16543
|
+
# @!attribute [rw] instance_id
|
16544
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
16545
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
16546
|
+
#
|
16547
|
+
#
|
16548
|
+
#
|
16549
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
16550
|
+
# @return [String]
|
16551
|
+
#
|
16552
|
+
# @!attribute [rw] routing_profile_id
|
16553
|
+
# The identifier of the routing profile.
|
16554
|
+
# @return [String]
|
16555
|
+
#
|
16556
|
+
# @!attribute [rw] next_token
|
16557
|
+
# The token for the next set of results. Use the value returned in the
|
16558
|
+
# previous response in the next request to retrieve the next set of
|
16559
|
+
# results.
|
16560
|
+
# @return [String]
|
16561
|
+
#
|
16562
|
+
# @!attribute [rw] max_results
|
16563
|
+
# The maximum number of results to return per page.
|
16564
|
+
# @return [Integer]
|
16565
|
+
#
|
16566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileManualAssignmentQueuesRequest AWS API Documentation
|
16567
|
+
#
|
16568
|
+
class ListRoutingProfileManualAssignmentQueuesRequest < Struct.new(
|
16569
|
+
:instance_id,
|
16570
|
+
:routing_profile_id,
|
16571
|
+
:next_token,
|
16572
|
+
:max_results)
|
16573
|
+
SENSITIVE = []
|
16574
|
+
include Aws::Structure
|
16575
|
+
end
|
16576
|
+
|
16577
|
+
# @!attribute [rw] next_token
|
16578
|
+
# If there are additional results, this is the token for the next set
|
16579
|
+
# of results.
|
16580
|
+
# @return [String]
|
16581
|
+
#
|
16582
|
+
# @!attribute [rw] routing_profile_manual_assignment_queue_config_summary_list
|
16583
|
+
# Information about the manual assignment queues associated with the
|
16584
|
+
# routing profile.
|
16585
|
+
# @return [Array<Types::RoutingProfileManualAssignmentQueueConfigSummary>]
|
16586
|
+
#
|
16587
|
+
# @!attribute [rw] last_modified_time
|
16588
|
+
# The timestamp when this resource was last modified.
|
16589
|
+
# @return [Time]
|
16590
|
+
#
|
16591
|
+
# @!attribute [rw] last_modified_region
|
16592
|
+
# The Amazon Web Services Region where this resource was last
|
16593
|
+
# modified.
|
16594
|
+
# @return [String]
|
16595
|
+
#
|
16596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileManualAssignmentQueuesResponse AWS API Documentation
|
16597
|
+
#
|
16598
|
+
class ListRoutingProfileManualAssignmentQueuesResponse < Struct.new(
|
16599
|
+
:next_token,
|
16600
|
+
:routing_profile_manual_assignment_queue_config_summary_list,
|
16601
|
+
:last_modified_time,
|
16602
|
+
:last_modified_region)
|
16603
|
+
SENSITIVE = []
|
16604
|
+
include Aws::Structure
|
16605
|
+
end
|
16606
|
+
|
16411
16607
|
# @!attribute [rw] instance_id
|
16412
16608
|
# The identifier of the Amazon Connect instance. You can [find the
|
16413
16609
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -17683,6 +17879,26 @@ module Aws::Connect
|
|
17683
17879
|
include Aws::Structure
|
17684
17880
|
end
|
17685
17881
|
|
17882
|
+
# The search criteria based on the contact name
|
17883
|
+
#
|
17884
|
+
# @!attribute [rw] search_text
|
17885
|
+
# The words or phrases used to match the contact name.
|
17886
|
+
# @return [Array<String>]
|
17887
|
+
#
|
17888
|
+
# @!attribute [rw] match_type
|
17889
|
+
# The match type combining name search criteria using multiple search
|
17890
|
+
# texts in a name criteria.
|
17891
|
+
# @return [String]
|
17892
|
+
#
|
17893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/NameCriteria AWS API Documentation
|
17894
|
+
#
|
17895
|
+
class NameCriteria < Struct.new(
|
17896
|
+
:search_text,
|
17897
|
+
:match_type)
|
17898
|
+
SENSITIVE = [:search_text]
|
17899
|
+
include Aws::Structure
|
17900
|
+
end
|
17901
|
+
|
17686
17902
|
# Payload of chat properties to apply when starting a new contact.
|
17687
17903
|
#
|
17688
17904
|
# @!attribute [rw] supported_messaging_content_types
|
@@ -18412,6 +18628,19 @@ module Aws::Connect
|
|
18412
18628
|
# The values of the predefined attribute.
|
18413
18629
|
# @return [Types::PredefinedAttributeValues]
|
18414
18630
|
#
|
18631
|
+
# @!attribute [rw] purposes
|
18632
|
+
# Values that enable you to categorize your predefined attributes. You
|
18633
|
+
# can use them in custom UI elements across the Amazon Connect admin
|
18634
|
+
# website.
|
18635
|
+
# @return [Array<String>]
|
18636
|
+
#
|
18637
|
+
# @!attribute [rw] attribute_configuration
|
18638
|
+
# Custom metadata that is associated to predefined attributes to
|
18639
|
+
# control behavior in upstream services, such as controlling how a
|
18640
|
+
# predefined attribute should be displayed in the Amazon Connect admin
|
18641
|
+
# website.
|
18642
|
+
# @return [Types::PredefinedAttributeConfiguration]
|
18643
|
+
#
|
18415
18644
|
# @!attribute [rw] last_modified_time
|
18416
18645
|
# Last modified time.
|
18417
18646
|
# @return [Time]
|
@@ -18425,12 +18654,39 @@ module Aws::Connect
|
|
18425
18654
|
class PredefinedAttribute < Struct.new(
|
18426
18655
|
:name,
|
18427
18656
|
:values,
|
18657
|
+
:purposes,
|
18658
|
+
:attribute_configuration,
|
18428
18659
|
:last_modified_time,
|
18429
18660
|
:last_modified_region)
|
18430
18661
|
SENSITIVE = []
|
18431
18662
|
include Aws::Structure
|
18432
18663
|
end
|
18433
18664
|
|
18665
|
+
# Custom metadata that is associated to predefined attributes to control
|
18666
|
+
# behavior in upstream services, such as controlling how a predefined
|
18667
|
+
# attribute should be displayed in the Amazon Connect admin website.
|
18668
|
+
#
|
18669
|
+
# @!attribute [rw] enable_value_validation_on_association
|
18670
|
+
# When this parameter is set to true, Amazon Connect enforces strict
|
18671
|
+
# validation on the specific values, if the values are predefined in
|
18672
|
+
# attributes. The contact will store only valid and predefined values
|
18673
|
+
# for teh predefined attribute key.
|
18674
|
+
# @return [Boolean]
|
18675
|
+
#
|
18676
|
+
# @!attribute [rw] is_read_only
|
18677
|
+
# A boolean flag used to indicate whether a predefined attribute
|
18678
|
+
# should be displayed in the Amazon Connect admin website.
|
18679
|
+
# @return [Boolean]
|
18680
|
+
#
|
18681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PredefinedAttributeConfiguration AWS API Documentation
|
18682
|
+
#
|
18683
|
+
class PredefinedAttributeConfiguration < Struct.new(
|
18684
|
+
:enable_value_validation_on_association,
|
18685
|
+
:is_read_only)
|
18686
|
+
SENSITIVE = []
|
18687
|
+
include Aws::Structure
|
18688
|
+
end
|
18689
|
+
|
18434
18690
|
# The search criteria to be used to return predefined attributes.
|
18435
18691
|
#
|
18436
18692
|
# @!attribute [rw] or_conditions
|
@@ -20333,6 +20589,11 @@ module Aws::Connect
|
|
20333
20589
|
# The number of associated queues in routing profile.
|
20334
20590
|
# @return [Integer]
|
20335
20591
|
#
|
20592
|
+
# @!attribute [rw] number_of_associated_manual_assignment_queues
|
20593
|
+
# The number of associated manual assignment queues in routing
|
20594
|
+
# profile.
|
20595
|
+
# @return [Integer]
|
20596
|
+
#
|
20336
20597
|
# @!attribute [rw] number_of_associated_users
|
20337
20598
|
# The number of associated users in routing profile.
|
20338
20599
|
# @return [Integer]
|
@@ -20360,6 +20621,10 @@ module Aws::Connect
|
|
20360
20621
|
# The IDs of the associated queue.
|
20361
20622
|
# @return [Array<String>]
|
20362
20623
|
#
|
20624
|
+
# @!attribute [rw] associated_manual_assignment_queue_ids
|
20625
|
+
# The IDs of the associated manual assignment queues.
|
20626
|
+
# @return [Array<String>]
|
20627
|
+
#
|
20363
20628
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfile AWS API Documentation
|
20364
20629
|
#
|
20365
20630
|
class RoutingProfile < Struct.new(
|
@@ -20372,12 +20637,60 @@ module Aws::Connect
|
|
20372
20637
|
:default_outbound_queue_id,
|
20373
20638
|
:tags,
|
20374
20639
|
:number_of_associated_queues,
|
20640
|
+
:number_of_associated_manual_assignment_queues,
|
20375
20641
|
:number_of_associated_users,
|
20376
20642
|
:agent_availability_timer,
|
20377
20643
|
:last_modified_time,
|
20378
20644
|
:last_modified_region,
|
20379
20645
|
:is_default,
|
20380
|
-
:associated_queue_ids
|
20646
|
+
:associated_queue_ids,
|
20647
|
+
:associated_manual_assignment_queue_ids)
|
20648
|
+
SENSITIVE = []
|
20649
|
+
include Aws::Structure
|
20650
|
+
end
|
20651
|
+
|
20652
|
+
# Contains information about the queue and channel for manual assignment
|
20653
|
+
# behaviour can be enabled.
|
20654
|
+
#
|
20655
|
+
# @!attribute [rw] queue_reference
|
20656
|
+
# Contains the channel and queue identifier for a routing profile.
|
20657
|
+
# @return [Types::RoutingProfileQueueReference]
|
20658
|
+
#
|
20659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfileManualAssignmentQueueConfig AWS API Documentation
|
20660
|
+
#
|
20661
|
+
class RoutingProfileManualAssignmentQueueConfig < Struct.new(
|
20662
|
+
:queue_reference)
|
20663
|
+
SENSITIVE = []
|
20664
|
+
include Aws::Structure
|
20665
|
+
end
|
20666
|
+
|
20667
|
+
# Contains summary information about a routing profile manual assignment
|
20668
|
+
# queue.
|
20669
|
+
#
|
20670
|
+
# @!attribute [rw] queue_id
|
20671
|
+
# The identifier for the queue.
|
20672
|
+
# @return [String]
|
20673
|
+
#
|
20674
|
+
# @!attribute [rw] queue_arn
|
20675
|
+
# The Amazon Resource Name (ARN) of the queue.
|
20676
|
+
# @return [String]
|
20677
|
+
#
|
20678
|
+
# @!attribute [rw] queue_name
|
20679
|
+
# The name of the queue.
|
20680
|
+
# @return [String]
|
20681
|
+
#
|
20682
|
+
# @!attribute [rw] channel
|
20683
|
+
# The channels this queue supports. Valid Values: CHAT \| TASK \|
|
20684
|
+
# EMAIL
|
20685
|
+
# @return [String]
|
20686
|
+
#
|
20687
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfileManualAssignmentQueueConfigSummary AWS API Documentation
|
20688
|
+
#
|
20689
|
+
class RoutingProfileManualAssignmentQueueConfigSummary < Struct.new(
|
20690
|
+
:queue_id,
|
20691
|
+
:queue_arn,
|
20692
|
+
:queue_name,
|
20693
|
+
:channel)
|
20381
20694
|
SENSITIVE = []
|
20382
20695
|
include Aws::Structure
|
20383
20696
|
end
|
@@ -21117,6 +21430,44 @@ module Aws::Connect
|
|
21117
21430
|
include Aws::Structure
|
21118
21431
|
end
|
21119
21432
|
|
21433
|
+
# Time range that you additionally want to filter on.
|
21434
|
+
#
|
21435
|
+
# @!attribute [rw] criteria
|
21436
|
+
# List of criteria of the time range to additionally filter on.
|
21437
|
+
# @return [Array<Types::SearchContactsAdditionalTimeRangeCriteria>]
|
21438
|
+
#
|
21439
|
+
# @!attribute [rw] match_type
|
21440
|
+
# The match type combining multiple time range filters.
|
21441
|
+
# @return [String]
|
21442
|
+
#
|
21443
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsAdditionalTimeRange AWS API Documentation
|
21444
|
+
#
|
21445
|
+
class SearchContactsAdditionalTimeRange < Struct.new(
|
21446
|
+
:criteria,
|
21447
|
+
:match_type)
|
21448
|
+
SENSITIVE = []
|
21449
|
+
include Aws::Structure
|
21450
|
+
end
|
21451
|
+
|
21452
|
+
# The criteria of the time range to additionally filter on.
|
21453
|
+
#
|
21454
|
+
# @!attribute [rw] time_range
|
21455
|
+
# A structure of time range that you want to search results.
|
21456
|
+
# @return [Types::SearchContactsTimeRange]
|
21457
|
+
#
|
21458
|
+
# @!attribute [rw] timestamp_condition
|
21459
|
+
# List of the timestamp conditions.
|
21460
|
+
# @return [Types::SearchContactsTimestampCondition]
|
21461
|
+
#
|
21462
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsAdditionalTimeRangeCriteria AWS API Documentation
|
21463
|
+
#
|
21464
|
+
class SearchContactsAdditionalTimeRangeCriteria < Struct.new(
|
21465
|
+
:time_range,
|
21466
|
+
:timestamp_condition)
|
21467
|
+
SENSITIVE = []
|
21468
|
+
include Aws::Structure
|
21469
|
+
end
|
21470
|
+
|
21120
21471
|
# @!attribute [rw] instance_id
|
21121
21472
|
# The identifier of Amazon Connect instance. You can find the instance
|
21122
21473
|
# ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -21204,8 +21555,32 @@ module Aws::Connect
|
|
21204
21555
|
include Aws::Structure
|
21205
21556
|
end
|
21206
21557
|
|
21558
|
+
# The timestamp condition indicating which timestamp should be used and
|
21559
|
+
# how it should be filtered.
|
21560
|
+
#
|
21561
|
+
# @!attribute [rw] type
|
21562
|
+
# Type of the timestamps to use for the filter.
|
21563
|
+
# @return [String]
|
21564
|
+
#
|
21565
|
+
# @!attribute [rw] condition_type
|
21566
|
+
# Condition of the timestamp on the contact.
|
21567
|
+
# @return [String]
|
21568
|
+
#
|
21569
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsTimestampCondition AWS API Documentation
|
21570
|
+
#
|
21571
|
+
class SearchContactsTimestampCondition < Struct.new(
|
21572
|
+
:type,
|
21573
|
+
:condition_type)
|
21574
|
+
SENSITIVE = []
|
21575
|
+
include Aws::Structure
|
21576
|
+
end
|
21577
|
+
|
21207
21578
|
# A structure of search criteria to be used to return contacts.
|
21208
21579
|
#
|
21580
|
+
# @!attribute [rw] name
|
21581
|
+
# Name of the contact.
|
21582
|
+
# @return [Types::NameCriteria]
|
21583
|
+
#
|
21209
21584
|
# @!attribute [rw] agent_ids
|
21210
21585
|
# The identifiers of agents who handled the contacts.
|
21211
21586
|
# @return [Array<String>]
|
@@ -21232,6 +21607,14 @@ module Aws::Connect
|
|
21232
21607
|
# The list of queue IDs associated with contacts.
|
21233
21608
|
# @return [Array<String>]
|
21234
21609
|
#
|
21610
|
+
# @!attribute [rw] routing_criteria
|
21611
|
+
# Routing criteria for the contact.
|
21612
|
+
# @return [Types::SearchableRoutingCriteria]
|
21613
|
+
#
|
21614
|
+
# @!attribute [rw] additional_time_range
|
21615
|
+
# Additional TimeRange used to filter contacts.
|
21616
|
+
# @return [Types::SearchContactsAdditionalTimeRange]
|
21617
|
+
#
|
21235
21618
|
# @!attribute [rw] searchable_contact_attributes
|
21236
21619
|
# The search criteria based on user-defined contact attributes that
|
21237
21620
|
# have been configured for contact search. For more information, see
|
@@ -21258,12 +21641,15 @@ module Aws::Connect
|
|
21258
21641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchCriteria AWS API Documentation
|
21259
21642
|
#
|
21260
21643
|
class SearchCriteria < Struct.new(
|
21644
|
+
:name,
|
21261
21645
|
:agent_ids,
|
21262
21646
|
:agent_hierarchy_groups,
|
21263
21647
|
:channels,
|
21264
21648
|
:contact_analysis,
|
21265
21649
|
:initiation_methods,
|
21266
21650
|
:queue_ids,
|
21651
|
+
:routing_criteria,
|
21652
|
+
:additional_time_range,
|
21267
21653
|
:searchable_contact_attributes,
|
21268
21654
|
:searchable_segment_attributes)
|
21269
21655
|
SENSITIVE = []
|
@@ -22120,6 +22506,26 @@ module Aws::Connect
|
|
22120
22506
|
include Aws::Structure
|
22121
22507
|
end
|
22122
22508
|
|
22509
|
+
# The agent criteria to search for preferred agents on the routing
|
22510
|
+
# criteria.
|
22511
|
+
#
|
22512
|
+
# @!attribute [rw] agent_ids
|
22513
|
+
# The identifiers of agents used in preferred agents matching.
|
22514
|
+
# @return [Array<String>]
|
22515
|
+
#
|
22516
|
+
# @!attribute [rw] match_type
|
22517
|
+
# The match type combining multiple agent criteria steps.
|
22518
|
+
# @return [String]
|
22519
|
+
#
|
22520
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableAgentCriteriaStep AWS API Documentation
|
22521
|
+
#
|
22522
|
+
class SearchableAgentCriteriaStep < Struct.new(
|
22523
|
+
:agent_ids,
|
22524
|
+
:match_type)
|
22525
|
+
SENSITIVE = []
|
22526
|
+
include Aws::Structure
|
22527
|
+
end
|
22528
|
+
|
22123
22529
|
# A structure that defines search criteria based on user-defined contact
|
22124
22530
|
# attributes that are configured for contact search.
|
22125
22531
|
#
|
@@ -22163,6 +22569,34 @@ module Aws::Connect
|
|
22163
22569
|
include Aws::Structure
|
22164
22570
|
end
|
22165
22571
|
|
22572
|
+
# Routing criteria of the contact to match on.
|
22573
|
+
#
|
22574
|
+
# @!attribute [rw] steps
|
22575
|
+
# The list of Routing criteria steps of the contact routing.
|
22576
|
+
# @return [Array<Types::SearchableRoutingCriteriaStep>]
|
22577
|
+
#
|
22578
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableRoutingCriteria AWS API Documentation
|
22579
|
+
#
|
22580
|
+
class SearchableRoutingCriteria < Struct.new(
|
22581
|
+
:steps)
|
22582
|
+
SENSITIVE = []
|
22583
|
+
include Aws::Structure
|
22584
|
+
end
|
22585
|
+
|
22586
|
+
# Routing criteria of the contact to match on.
|
22587
|
+
#
|
22588
|
+
# @!attribute [rw] agent_criteria
|
22589
|
+
# Agent matching the routing step of the routing criteria
|
22590
|
+
# @return [Types::SearchableAgentCriteriaStep]
|
22591
|
+
#
|
22592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableRoutingCriteriaStep AWS API Documentation
|
22593
|
+
#
|
22594
|
+
class SearchableRoutingCriteriaStep < Struct.new(
|
22595
|
+
:agent_criteria)
|
22596
|
+
SENSITIVE = []
|
22597
|
+
include Aws::Structure
|
22598
|
+
end
|
22599
|
+
|
22166
22600
|
# The search criteria based on searchable segment attributes of a
|
22167
22601
|
# contact
|
22168
22602
|
#
|
@@ -22453,12 +22887,25 @@ module Aws::Connect
|
|
22453
22887
|
# The value of a segment attribute.
|
22454
22888
|
# @return [Integer]
|
22455
22889
|
#
|
22890
|
+
# @!attribute [rw] value_list
|
22891
|
+
# The value of a segment attribute. This is only supported for
|
22892
|
+
# system-defined attributes, not for user-defined attributes.
|
22893
|
+
# @return [Array<Types::SegmentAttributeValue>]
|
22894
|
+
#
|
22895
|
+
# @!attribute [rw] value_arn
|
22896
|
+
# The value of a segment attribute that has to be a valid ARN. This is
|
22897
|
+
# only supported for system-defined attributes, not for user-defined
|
22898
|
+
# attributes.
|
22899
|
+
# @return [String]
|
22900
|
+
#
|
22456
22901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SegmentAttributeValue AWS API Documentation
|
22457
22902
|
#
|
22458
22903
|
class SegmentAttributeValue < Struct.new(
|
22459
22904
|
:value_string,
|
22460
22905
|
:value_map,
|
22461
|
-
:value_integer
|
22906
|
+
:value_integer,
|
22907
|
+
:value_list,
|
22908
|
+
:value_arn)
|
22462
22909
|
SENSITIVE = []
|
22463
22910
|
include Aws::Structure
|
22464
22911
|
end
|
@@ -25624,8 +26071,9 @@ module Aws::Connect
|
|
25624
26071
|
# This field can be used to show channel subtype, such as
|
25625
26072
|
# `connect:Guide`.
|
25626
26073
|
#
|
25627
|
-
#
|
25628
|
-
# updated by using the
|
26074
|
+
# Contact Expiry, and user-defined attributes (String - String) that
|
26075
|
+
# are defined in predefined attributes, can be updated by using the
|
26076
|
+
# UpdateContact API.
|
25629
26077
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
25630
26078
|
#
|
25631
26079
|
# @!attribute [rw] queue_info
|
@@ -25961,8 +26409,7 @@ module Aws::Connect
|
|
25961
26409
|
# @return [String]
|
25962
26410
|
#
|
25963
26411
|
# @!attribute [rw] effective_till
|
25964
|
-
# The date
|
25965
|
-
# effective.
|
26412
|
+
# The date until the hours of operation override is effective.
|
25966
26413
|
# @return [String]
|
25967
26414
|
#
|
25968
26415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateHoursOfOperationOverrideRequest AWS API Documentation
|
@@ -26328,12 +26775,27 @@ module Aws::Connect
|
|
26328
26775
|
# The values of the predefined attribute.
|
26329
26776
|
# @return [Types::PredefinedAttributeValues]
|
26330
26777
|
#
|
26778
|
+
# @!attribute [rw] purposes
|
26779
|
+
# Values that enable you to categorize your predefined attributes. You
|
26780
|
+
# can use them in custom UI elements across the Amazon Connect admin
|
26781
|
+
# website.
|
26782
|
+
# @return [Array<String>]
|
26783
|
+
#
|
26784
|
+
# @!attribute [rw] attribute_configuration
|
26785
|
+
# Custom metadata that is associated to predefined attributes to
|
26786
|
+
# control behavior in upstream services, such as controlling how a
|
26787
|
+
# predefined attribute should be displayed in the Amazon Connect admin
|
26788
|
+
# website.
|
26789
|
+
# @return [Types::InputPredefinedAttributeConfiguration]
|
26790
|
+
#
|
26331
26791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdatePredefinedAttributeRequest AWS API Documentation
|
26332
26792
|
#
|
26333
26793
|
class UpdatePredefinedAttributeRequest < Struct.new(
|
26334
26794
|
:instance_id,
|
26335
26795
|
:name,
|
26336
|
-
:values
|
26796
|
+
:values,
|
26797
|
+
:purposes,
|
26798
|
+
:attribute_configuration)
|
26337
26799
|
SENSITIVE = []
|
26338
26800
|
include Aws::Structure
|
26339
26801
|
end
|
@@ -27796,13 +28258,18 @@ module Aws::Connect
|
|
27796
28258
|
# The phone number for the user's desk phone.
|
27797
28259
|
# @return [String]
|
27798
28260
|
#
|
28261
|
+
# @!attribute [rw] persistent_connection
|
28262
|
+
# The persistent connection setting for the user.
|
28263
|
+
# @return [Boolean]
|
28264
|
+
#
|
27799
28265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserPhoneConfig AWS API Documentation
|
27800
28266
|
#
|
27801
28267
|
class UserPhoneConfig < Struct.new(
|
27802
28268
|
:phone_type,
|
27803
28269
|
:auto_accept,
|
27804
28270
|
:after_contact_work_time_limit,
|
27805
|
-
:desk_phone_number
|
28271
|
+
:desk_phone_number,
|
28272
|
+
:persistent_connection)
|
27806
28273
|
SENSITIVE = []
|
27807
28274
|
include Aws::Structure
|
27808
28275
|
end
|