aws-sdk-connect 1.216.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +502 -172
- data/lib/aws-sdk-connect/client_api.rb +128 -2
- data/lib/aws-sdk-connect/types.rb +529 -165
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +91 -10
- data/sig/types.rbs +98 -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
|
@@ -5124,6 +5175,17 @@ module Aws::Connect
|
|
5124
5175
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html
|
5125
5176
|
# @return [Array<Types::RoutingProfileQueueConfig>]
|
5126
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
|
+
#
|
5127
5189
|
# @!attribute [rw] media_concurrencies
|
5128
5190
|
# The channels that agents can handle in the Contact Control Panel
|
5129
5191
|
# (CCP) for this routing profile.
|
@@ -5149,6 +5211,7 @@ module Aws::Connect
|
|
5149
5211
|
:description,
|
5150
5212
|
:default_outbound_queue_id,
|
5151
5213
|
:queue_configs,
|
5214
|
+
:manual_assignment_queue_configs,
|
5152
5215
|
:media_concurrencies,
|
5153
5216
|
:tags,
|
5154
5217
|
:agent_availability_timer)
|
@@ -8322,12 +8385,18 @@ module Aws::Connect
|
|
8322
8385
|
# The queues to disassociate from this routing profile.
|
8323
8386
|
# @return [Array<Types::RoutingProfileQueueReference>]
|
8324
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
|
+
#
|
8325
8393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateRoutingProfileQueuesRequest AWS API Documentation
|
8326
8394
|
#
|
8327
8395
|
class DisassociateRoutingProfileQueuesRequest < Struct.new(
|
8328
8396
|
:instance_id,
|
8329
8397
|
:routing_profile_id,
|
8330
|
-
:queue_references
|
8398
|
+
:queue_references,
|
8399
|
+
:manual_assignment_queue_references)
|
8331
8400
|
SENSITIVE = []
|
8332
8401
|
include Aws::Structure
|
8333
8402
|
end
|
@@ -11263,6 +11332,8 @@ module Aws::Connect
|
|
11263
11332
|
# Agent, Agent Hierarchy, Feature,
|
11264
11333
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11265
11334
|
#
|
11335
|
+
# Valid metric filter key: `INITIATION_METHOD`
|
11336
|
+
#
|
11266
11337
|
# UI name: [Average queue abandon time][12]
|
11267
11338
|
#
|
11268
11339
|
# AVG\_ACTIVE\_TIME
|
@@ -11658,10 +11729,23 @@ module Aws::Connect
|
|
11658
11729
|
#
|
11659
11730
|
# UI name: [Average queue answer time][45]
|
11660
11731
|
#
|
11732
|
+
# Valid metric level filters: `INITIATION_METHOD`, `FEATURE`,
|
11733
|
+
# `DISCONNECT_REASON`
|
11734
|
+
#
|
11661
11735
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11662
11736
|
#
|
11663
11737
|
# </note>
|
11664
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
|
+
#
|
11665
11749
|
# AVG\_RESPONSE\_TIME\_AGENT
|
11666
11750
|
#
|
11667
11751
|
# : Unit: Seconds
|
@@ -11671,7 +11755,7 @@ module Aws::Connect
|
|
11671
11755
|
# Feature, RoutingStepExpression, Initiation method, Routing
|
11672
11756
|
# Profile, Queue, Q in Connect
|
11673
11757
|
#
|
11674
|
-
# UI name: [Average agent response time][
|
11758
|
+
# UI name: [Average agent response time][47]
|
11675
11759
|
#
|
11676
11760
|
# AVG\_RESPONSE\_TIME\_CUSTOMER
|
11677
11761
|
#
|
@@ -11682,7 +11766,7 @@ module Aws::Connect
|
|
11682
11766
|
# Feature, RoutingStepExpression, Initiation method, Routing
|
11683
11767
|
# Profile, Queue, Q in Connect
|
11684
11768
|
#
|
11685
|
-
# UI name: [Average customer response time][
|
11769
|
+
# UI name: [Average customer response time][48]
|
11686
11770
|
#
|
11687
11771
|
# AVG\_RESOLUTION\_TIME
|
11688
11772
|
#
|
@@ -11691,7 +11775,7 @@ module Aws::Connect
|
|
11691
11775
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11692
11776
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11693
11777
|
#
|
11694
|
-
# UI name: [Average resolution time][
|
11778
|
+
# UI name: [Average resolution time][49]
|
11695
11779
|
#
|
11696
11780
|
# AVG\_TALK\_TIME
|
11697
11781
|
#
|
@@ -11704,7 +11788,7 @@ module Aws::Connect
|
|
11704
11788
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11705
11789
|
# Q in Connect
|
11706
11790
|
#
|
11707
|
-
# UI name: [Average talk time][
|
11791
|
+
# UI name: [Average talk time][50]
|
11708
11792
|
#
|
11709
11793
|
# AVG\_TALK\_TIME\_AGENT
|
11710
11794
|
#
|
@@ -11717,7 +11801,7 @@ module Aws::Connect
|
|
11717
11801
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11718
11802
|
# Q in Connect
|
11719
11803
|
#
|
11720
|
-
# UI name: [Average agent talk time][
|
11804
|
+
# UI name: [Average agent talk time][51]
|
11721
11805
|
#
|
11722
11806
|
# AVG\_TALK\_TIME\_CUSTOMER
|
11723
11807
|
#
|
@@ -11730,7 +11814,7 @@ module Aws::Connect
|
|
11730
11814
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11731
11815
|
# Q in Connect
|
11732
11816
|
#
|
11733
|
-
# UI name: [Average customer talk time][
|
11817
|
+
# UI name: [Average customer talk time][52]
|
11734
11818
|
#
|
11735
11819
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
11736
11820
|
#
|
@@ -11741,7 +11825,18 @@ module Aws::Connect
|
|
11741
11825
|
#
|
11742
11826
|
# Valid groupings and filters: Campaign
|
11743
11827
|
#
|
11744
|
-
# 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]
|
11745
11840
|
#
|
11746
11841
|
# AVG\_WEIGHTED\_EVALUATION\_SCORE
|
11747
11842
|
#
|
@@ -11751,7 +11846,7 @@ module Aws::Connect
|
|
11751
11846
|
# Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
|
11752
11847
|
# Evaluation Source, Form Version, Queue, Routing Profile
|
11753
11848
|
#
|
11754
|
-
# UI name: [Average weighted evaluation score][
|
11849
|
+
# UI name: [Average weighted evaluation score][55]
|
11755
11850
|
#
|
11756
11851
|
# BOT\_CONVERSATIONS\_COMPLETED
|
11757
11852
|
#
|
@@ -11764,7 +11859,7 @@ module Aws::Connect
|
|
11764
11859
|
# Initiation method, Invoking resource type, Parent flows resource
|
11765
11860
|
# ID
|
11766
11861
|
#
|
11767
|
-
# UI name: [Bot conversations completed][
|
11862
|
+
# UI name: [Bot conversations completed][56]
|
11768
11863
|
#
|
11769
11864
|
# BOT\_INTENTS\_COMPLETED
|
11770
11865
|
#
|
@@ -11777,7 +11872,7 @@ module Aws::Connect
|
|
11777
11872
|
# published timestamp, Initiation method, Invoking resource type,
|
11778
11873
|
# Parent flows resource ID
|
11779
11874
|
#
|
11780
|
-
# UI name: [Bot intents completed][
|
11875
|
+
# UI name: [Bot intents completed][57]
|
11781
11876
|
#
|
11782
11877
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
11783
11878
|
#
|
@@ -11792,7 +11887,7 @@ module Aws::Connect
|
|
11792
11887
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
11793
11888
|
# `GT` (for *Greater than*).
|
11794
11889
|
#
|
11795
|
-
# UI name: [Campaign contacts abandoned after X][
|
11890
|
+
# UI name: [Campaign contacts abandoned after X][58]
|
11796
11891
|
#
|
11797
11892
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
11798
11893
|
#
|
@@ -11807,7 +11902,7 @@ module Aws::Connect
|
|
11807
11902
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
11808
11903
|
# `GT` (for *Greater than*).
|
11809
11904
|
#
|
11810
|
-
# UI name: [Campaign contacts abandoned after X rate][
|
11905
|
+
# UI name: [Campaign contacts abandoned after X rate][59]
|
11811
11906
|
#
|
11812
11907
|
# CAMPAIGN\_INTERACTIONS
|
11813
11908
|
#
|
@@ -11820,7 +11915,7 @@ module Aws::Connect
|
|
11820
11915
|
#
|
11821
11916
|
# Valid groupings and filters: Campaign
|
11822
11917
|
#
|
11823
|
-
# UI name: [Campaign interactions][
|
11918
|
+
# UI name: [Campaign interactions][60]
|
11824
11919
|
#
|
11825
11920
|
# CAMPAIGN\_PROGRESS\_RATE
|
11826
11921
|
#
|
@@ -11833,7 +11928,7 @@ module Aws::Connect
|
|
11833
11928
|
# Valid groupings and filters: Campaign, Campaign Execution
|
11834
11929
|
# Timestamp
|
11835
11930
|
#
|
11836
|
-
# UI name: [Campaign progress rate][
|
11931
|
+
# UI name: [Campaign progress rate][61]
|
11837
11932
|
#
|
11838
11933
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
11839
11934
|
#
|
@@ -11844,7 +11939,7 @@ module Aws::Connect
|
|
11844
11939
|
# Valid groupings and filters: Campaign, Channel,
|
11845
11940
|
# contact/segmentAttributes/connect:Subtype
|
11846
11941
|
#
|
11847
|
-
# UI name: [Campaign send attempts][
|
11942
|
+
# UI name: [Campaign send attempts][62]
|
11848
11943
|
#
|
11849
11944
|
# CAMPAIGN\_SEND\_EXCLUSIONS
|
11850
11945
|
#
|
@@ -11857,7 +11952,7 @@ module Aws::Connect
|
|
11857
11952
|
# Valid groupings and filters: Campaign, Campaign Excluded Event
|
11858
11953
|
# Type, Campaign Execution Timestamp
|
11859
11954
|
#
|
11860
|
-
# UI name: [Campaign send exclusions][
|
11955
|
+
# UI name: [Campaign send exclusions][63]
|
11861
11956
|
#
|
11862
11957
|
# CASES\_CREATED
|
11863
11958
|
#
|
@@ -11867,7 +11962,7 @@ module Aws::Connect
|
|
11867
11962
|
#
|
11868
11963
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11869
11964
|
#
|
11870
|
-
# UI name: [Cases created][
|
11965
|
+
# UI name: [Cases created][64]
|
11871
11966
|
#
|
11872
11967
|
# CONTACTS\_CREATED
|
11873
11968
|
#
|
@@ -11878,7 +11973,7 @@ module Aws::Connect
|
|
11878
11973
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11879
11974
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11880
11975
|
#
|
11881
|
-
# UI name: [Contacts created][
|
11976
|
+
# UI name: [Contacts created][65]
|
11882
11977
|
#
|
11883
11978
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11884
11979
|
#
|
@@ -11895,7 +11990,7 @@ module Aws::Connect
|
|
11895
11990
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression,
|
11896
11991
|
# Q in Connect
|
11897
11992
|
#
|
11898
|
-
# UI name: [
|
11993
|
+
# UI name: [Contacts handled][66]
|
11899
11994
|
#
|
11900
11995
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11901
11996
|
#
|
@@ -11910,7 +12005,7 @@ module Aws::Connect
|
|
11910
12005
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11911
12006
|
# Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11912
12007
|
#
|
11913
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
12008
|
+
# UI name: [Contacts handled (connected to agent timestamp)][67]
|
11914
12009
|
#
|
11915
12010
|
# CONTACTS\_HOLD\_ABANDONS
|
11916
12011
|
#
|
@@ -11920,7 +12015,7 @@ module Aws::Connect
|
|
11920
12015
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11921
12016
|
# Q in Connect
|
11922
12017
|
#
|
11923
|
-
# UI name: [Contacts hold disconnect][
|
12018
|
+
# UI name: [Contacts hold disconnect][68]
|
11924
12019
|
#
|
11925
12020
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
11926
12021
|
#
|
@@ -11929,7 +12024,7 @@ module Aws::Connect
|
|
11929
12024
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11930
12025
|
# Agent, Agent Hierarchy, Q in Connect
|
11931
12026
|
#
|
11932
|
-
# UI name: [Contacts hold agent disconnect][
|
12027
|
+
# UI name: [Contacts hold agent disconnect][69]
|
11933
12028
|
#
|
11934
12029
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
11935
12030
|
#
|
@@ -11938,7 +12033,7 @@ module Aws::Connect
|
|
11938
12033
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11939
12034
|
# Agent, Agent Hierarchy, Q in Connect
|
11940
12035
|
#
|
11941
|
-
# UI name: [Contacts hold customer disconnect][
|
12036
|
+
# UI name: [Contacts hold customer disconnect][70]
|
11942
12037
|
#
|
11943
12038
|
# CONTACTS\_PUT\_ON\_HOLD
|
11944
12039
|
#
|
@@ -11947,7 +12042,7 @@ module Aws::Connect
|
|
11947
12042
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11948
12043
|
# Agent, Agent Hierarchy, Q in Connect
|
11949
12044
|
#
|
11950
|
-
# UI name: [Contacts put on hold][
|
12045
|
+
# UI name: [Contacts put on hold][71]
|
11951
12046
|
#
|
11952
12047
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
11953
12048
|
#
|
@@ -11956,7 +12051,7 @@ module Aws::Connect
|
|
11956
12051
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11957
12052
|
# Agent, Agent Hierarchy, Q in Connect
|
11958
12053
|
#
|
11959
|
-
# UI name: [Contacts transferred out external][
|
12054
|
+
# UI name: [Contacts transferred out external][72]
|
11960
12055
|
#
|
11961
12056
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
11962
12057
|
#
|
@@ -11965,7 +12060,7 @@ module Aws::Connect
|
|
11965
12060
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11966
12061
|
# Agent, Agent Hierarchy, Q in Connect
|
11967
12062
|
#
|
11968
|
-
# UI name: [Contacts transferred out internal][
|
12063
|
+
# UI name: [Contacts transferred out internal][73]
|
11969
12064
|
#
|
11970
12065
|
# CONTACTS\_QUEUED
|
11971
12066
|
#
|
@@ -11975,7 +12070,7 @@ module Aws::Connect
|
|
11975
12070
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11976
12071
|
# Q in Connect
|
11977
12072
|
#
|
11978
|
-
# UI name: [Contacts queued][
|
12073
|
+
# UI name: [Contacts queued][74]
|
11979
12074
|
#
|
11980
12075
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
11981
12076
|
#
|
@@ -11984,7 +12079,7 @@ module Aws::Connect
|
|
11984
12079
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11985
12080
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
11986
12081
|
#
|
11987
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
12082
|
+
# UI name: [Contacts queued (enqueue timestamp)][75]
|
11988
12083
|
#
|
11989
12084
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
11990
12085
|
#
|
@@ -11997,7 +12092,7 @@ module Aws::Connect
|
|
11997
12092
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11998
12093
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11999
12094
|
#
|
12000
|
-
# UI name: [Contacts removed from queue in X seconds][
|
12095
|
+
# UI name: [Contacts removed from queue in X seconds][76]
|
12001
12096
|
#
|
12002
12097
|
# CONTACTS\_RESOLVED\_IN\_X
|
12003
12098
|
#
|
@@ -12010,7 +12105,7 @@ module Aws::Connect
|
|
12010
12105
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12011
12106
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12012
12107
|
#
|
12013
|
-
# UI name: [Contacts resolved in X][
|
12108
|
+
# UI name: [Contacts resolved in X][77]
|
12014
12109
|
#
|
12015
12110
|
# CONTACTS\_TRANSFERRED\_OUT
|
12016
12111
|
#
|
@@ -12020,7 +12115,7 @@ module Aws::Connect
|
|
12020
12115
|
# Agent, Agent Hierarchy, Feature,
|
12021
12116
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
12022
12117
|
#
|
12023
|
-
# UI name: [Contacts transferred out][
|
12118
|
+
# UI name: [Contacts transferred out][78]
|
12024
12119
|
#
|
12025
12120
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
12026
12121
|
#
|
@@ -12034,7 +12129,7 @@ module Aws::Connect
|
|
12034
12129
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12035
12130
|
# Q in Connect
|
12036
12131
|
#
|
12037
|
-
# UI name: [Contacts transferred out by agent][
|
12132
|
+
# UI name: [Contacts transferred out by agent][79]
|
12038
12133
|
#
|
12039
12134
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
12040
12135
|
#
|
@@ -12044,7 +12139,7 @@ module Aws::Connect
|
|
12044
12139
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12045
12140
|
# Q in Connect
|
12046
12141
|
#
|
12047
|
-
# UI name: [Contacts transferred out queue][
|
12142
|
+
# UI name: [Contacts transferred out queue][80]
|
12048
12143
|
#
|
12049
12144
|
# CURRENT\_CASES
|
12050
12145
|
#
|
@@ -12054,7 +12149,7 @@ module Aws::Connect
|
|
12054
12149
|
#
|
12055
12150
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12056
12151
|
#
|
12057
|
-
# UI name: [Current cases][
|
12152
|
+
# UI name: [Current cases][81]
|
12058
12153
|
#
|
12059
12154
|
# CONVERSATIONS\_ABANDONED
|
12060
12155
|
#
|
@@ -12065,7 +12160,7 @@ module Aws::Connect
|
|
12065
12160
|
# Feature, RoutingStepExpression, Initiation method, Routing
|
12066
12161
|
# Profile, Queue, Q in Connect
|
12067
12162
|
#
|
12068
|
-
# UI name: [Conversations abandoned][
|
12163
|
+
# UI name: [Conversations abandoned][82]
|
12069
12164
|
#
|
12070
12165
|
# DELIVERY\_ATTEMPTS
|
12071
12166
|
#
|
@@ -12081,7 +12176,7 @@ module Aws::Connect
|
|
12081
12176
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
12082
12177
|
# Queue, Routing Profile
|
12083
12178
|
#
|
12084
|
-
# UI name: [Delivery attempts][
|
12179
|
+
# UI name: [Delivery attempts][83]
|
12085
12180
|
#
|
12086
12181
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
12087
12182
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -12107,7 +12202,7 @@ module Aws::Connect
|
|
12107
12202
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
12108
12203
|
# Queue, Routing Profile
|
12109
12204
|
#
|
12110
|
-
# UI name: [Delivery attempt disposition rate][
|
12205
|
+
# UI name: [Delivery attempt disposition rate][84]
|
12111
12206
|
#
|
12112
12207
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only
|
12113
12208
|
# available for SMS and Email campaign delivery modes. Agent, Queue,
|
@@ -12125,7 +12220,7 @@ module Aws::Connect
|
|
12125
12220
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
12126
12221
|
# Routing Profile
|
12127
12222
|
#
|
12128
|
-
# UI name: [Evaluations performed][
|
12223
|
+
# UI name: [Evaluations performed][85]
|
12129
12224
|
#
|
12130
12225
|
# FLOWS\_OUTCOME
|
12131
12226
|
#
|
@@ -12137,7 +12232,7 @@ module Aws::Connect
|
|
12137
12232
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
12138
12233
|
# published timestamp
|
12139
12234
|
#
|
12140
|
-
# UI name: [Flows outcome][
|
12235
|
+
# UI name: [Flows outcome][86]
|
12141
12236
|
#
|
12142
12237
|
# FLOWS\_STARTED
|
12143
12238
|
#
|
@@ -12148,7 +12243,7 @@ module Aws::Connect
|
|
12148
12243
|
# resource ID, Flows resource ID, Initiation method, Resource
|
12149
12244
|
# published timestamp
|
12150
12245
|
#
|
12151
|
-
# UI name: [Flows started][
|
12246
|
+
# UI name: [Flows started][87]
|
12152
12247
|
#
|
12153
12248
|
# HUMAN\_ANSWERED\_CALLS
|
12154
12249
|
#
|
@@ -12160,7 +12255,7 @@ module Aws::Connect
|
|
12160
12255
|
#
|
12161
12256
|
# Valid groupings and filters: Agent, Campaign
|
12162
12257
|
#
|
12163
|
-
# UI name: [Human answered][
|
12258
|
+
# UI name: [Human answered][88]
|
12164
12259
|
#
|
12165
12260
|
# MAX\_FLOW\_TIME
|
12166
12261
|
#
|
@@ -12172,7 +12267,7 @@ module Aws::Connect
|
|
12172
12267
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
12173
12268
|
# published timestamp
|
12174
12269
|
#
|
12175
|
-
# UI name: [Maximum flow time][
|
12270
|
+
# UI name: [Maximum flow time][89]
|
12176
12271
|
#
|
12177
12272
|
# MAX\_QUEUED\_TIME
|
12178
12273
|
#
|
@@ -12182,7 +12277,7 @@ module Aws::Connect
|
|
12182
12277
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12183
12278
|
# Q in Connect
|
12184
12279
|
#
|
12185
|
-
# UI name: [Maximum queued time][
|
12280
|
+
# UI name: [Maximum queued time][90]
|
12186
12281
|
#
|
12187
12282
|
# MIN\_FLOW\_TIME
|
12188
12283
|
#
|
@@ -12194,7 +12289,7 @@ module Aws::Connect
|
|
12194
12289
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
12195
12290
|
# published timestamp
|
12196
12291
|
#
|
12197
|
-
# UI name: [Minimum flow time][
|
12292
|
+
# UI name: [Minimum flow time][91]
|
12198
12293
|
#
|
12199
12294
|
# PERCENT\_AUTOMATIC\_FAILS
|
12200
12295
|
#
|
@@ -12204,7 +12299,7 @@ module Aws::Connect
|
|
12204
12299
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
12205
12300
|
# Routing Profile
|
12206
12301
|
#
|
12207
|
-
# UI name: [Automatic fails percent][
|
12302
|
+
# UI name: [Automatic fails percent][92]
|
12208
12303
|
#
|
12209
12304
|
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
12210
12305
|
#
|
@@ -12217,7 +12312,7 @@ module Aws::Connect
|
|
12217
12312
|
# Initiation method, Invoking resource type, Parent flows resource
|
12218
12313
|
# ID
|
12219
12314
|
#
|
12220
|
-
# UI name: [Percent bot conversations outcome][
|
12315
|
+
# UI name: [Percent bot conversations outcome][93]
|
12221
12316
|
#
|
12222
12317
|
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
12223
12318
|
#
|
@@ -12230,7 +12325,7 @@ module Aws::Connect
|
|
12230
12325
|
# published timestamp, Initiation method, Invoking resource type,
|
12231
12326
|
# Parent flows resource ID
|
12232
12327
|
#
|
12233
|
-
# UI name: [Percent bot intents outcome][
|
12328
|
+
# UI name: [Percent bot intents outcome][94]
|
12234
12329
|
#
|
12235
12330
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
12236
12331
|
#
|
@@ -12240,7 +12335,7 @@ module Aws::Connect
|
|
12240
12335
|
#
|
12241
12336
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12242
12337
|
#
|
12243
|
-
# UI name: [Cases resolved on first contact][
|
12338
|
+
# UI name: [Cases resolved on first contact][95]
|
12244
12339
|
#
|
12245
12340
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
12246
12341
|
#
|
@@ -12272,7 +12367,7 @@ module Aws::Connect
|
|
12272
12367
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
12273
12368
|
# published timestamp
|
12274
12369
|
#
|
12275
|
-
# UI name: [Flows outcome percentage][
|
12370
|
+
# UI name: [Flows outcome percentage][96].
|
12276
12371
|
#
|
12277
12372
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
12278
12373
|
#
|
@@ -12289,7 +12384,7 @@ module Aws::Connect
|
|
12289
12384
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12290
12385
|
# Q in Connect
|
12291
12386
|
#
|
12292
|
-
# UI name: [Non-talk time percent][
|
12387
|
+
# UI name: [Non-talk time percent][97]
|
12293
12388
|
#
|
12294
12389
|
# PERCENT\_TALK\_TIME
|
12295
12390
|
#
|
@@ -12302,7 +12397,7 @@ module Aws::Connect
|
|
12302
12397
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12303
12398
|
# Q in Connect
|
12304
12399
|
#
|
12305
|
-
# UI name: [Talk time percent][
|
12400
|
+
# UI name: [Talk time percent][98]
|
12306
12401
|
#
|
12307
12402
|
# PERCENT\_TALK\_TIME\_AGENT
|
12308
12403
|
#
|
@@ -12315,7 +12410,7 @@ module Aws::Connect
|
|
12315
12410
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12316
12411
|
# Q in Connect
|
12317
12412
|
#
|
12318
|
-
# UI name: [Agent talk time percent][
|
12413
|
+
# UI name: [Agent talk time percent][99]
|
12319
12414
|
#
|
12320
12415
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
12321
12416
|
#
|
@@ -12328,7 +12423,7 @@ module Aws::Connect
|
|
12328
12423
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12329
12424
|
# Q in Connect
|
12330
12425
|
#
|
12331
|
-
# UI name: [Customer talk time percent][
|
12426
|
+
# UI name: [Customer talk time percent][100]
|
12332
12427
|
#
|
12333
12428
|
# RECIPIENTS\_ATTEMPTED
|
12334
12429
|
#
|
@@ -12341,7 +12436,7 @@ module Aws::Connect
|
|
12341
12436
|
# Valid groupings and filters: Campaign, Campaign Execution
|
12342
12437
|
# Timestamp
|
12343
12438
|
#
|
12344
|
-
# UI name: [Recipients attempted][
|
12439
|
+
# UI name: [Recipients attempted][101]
|
12345
12440
|
#
|
12346
12441
|
# RECIPIENTS\_INTERACTED
|
12347
12442
|
#
|
@@ -12357,7 +12452,7 @@ module Aws::Connect
|
|
12357
12452
|
# contact/segmentAttributes/connect:Subtype, Campaign Execution
|
12358
12453
|
# Timestamp
|
12359
12454
|
#
|
12360
|
-
# UI name: [Recipients interacted][
|
12455
|
+
# UI name: [Recipients interacted][102]
|
12361
12456
|
#
|
12362
12457
|
# RECIPIENTS\_TARGETED
|
12363
12458
|
#
|
@@ -12370,7 +12465,7 @@ module Aws::Connect
|
|
12370
12465
|
# Valid groupings and filters: Campaign, Campaign Execution
|
12371
12466
|
# Timestamp
|
12372
12467
|
#
|
12373
|
-
# UI name: [Recipients targeted][
|
12468
|
+
# UI name: [Recipients targeted][103]
|
12374
12469
|
#
|
12375
12470
|
# REOPENED\_CASE\_ACTIONS
|
12376
12471
|
#
|
@@ -12380,7 +12475,7 @@ module Aws::Connect
|
|
12380
12475
|
#
|
12381
12476
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12382
12477
|
#
|
12383
|
-
# UI name: [Cases reopened][
|
12478
|
+
# UI name: [Cases reopened][104]
|
12384
12479
|
#
|
12385
12480
|
# RESOLVED\_CASE\_ACTIONS
|
12386
12481
|
#
|
@@ -12390,7 +12485,7 @@ module Aws::Connect
|
|
12390
12485
|
#
|
12391
12486
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12392
12487
|
#
|
12393
|
-
# UI name: [Cases resolved][
|
12488
|
+
# UI name: [Cases resolved][105]
|
12394
12489
|
#
|
12395
12490
|
# SERVICE\_LEVEL
|
12396
12491
|
#
|
@@ -12405,7 +12500,7 @@ module Aws::Connect
|
|
12405
12500
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12406
12501
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12407
12502
|
#
|
12408
|
-
# UI name: [Service level X][
|
12503
|
+
# UI name: [Service level X][106]
|
12409
12504
|
#
|
12410
12505
|
# STEP\_CONTACTS\_QUEUED
|
12411
12506
|
#
|
@@ -12431,12 +12526,13 @@ module Aws::Connect
|
|
12431
12526
|
#
|
12432
12527
|
# Valid metric filter key: `INITIATION_METHOD`. This metric only
|
12433
12528
|
# supports the following filter keys as `INITIATION_METHOD`:
|
12434
|
-
# `INBOUND` \| `OUTBOUND` \| `CALLBACK` \| `API`
|
12529
|
+
# `INBOUND` \| `OUTBOUND` \| `CALLBACK` \| `API` \|
|
12530
|
+
# `CALLBACK_CUSTOMER_FIRST_DIALED`
|
12435
12531
|
#
|
12436
12532
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12437
12533
|
# Agent, Agent Hierarchy
|
12438
12534
|
#
|
12439
|
-
# UI name: [Agent API connecting time][
|
12535
|
+
# UI name: [Agent API connecting time][107]
|
12440
12536
|
#
|
12441
12537
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for
|
12442
12538
|
# this metric.
|
@@ -12449,8 +12545,9 @@ module Aws::Connect
|
|
12449
12545
|
#
|
12450
12546
|
# Metric filter:
|
12451
12547
|
#
|
12452
|
-
# * Valid values: `API`\| `
|
12453
|
-
# `
|
12548
|
+
# * Valid values: `API`\| `INCOMING` \| `OUTBOUND` \| `TRANSFER` \|
|
12549
|
+
# `CALLBACK` \| `QUEUE_TRANSFER`\| `Disconnect` \|
|
12550
|
+
# `CALLBACK_CUSTOMER_FIRST_DIALED`
|
12454
12551
|
#
|
12455
12552
|
# ^
|
12456
12553
|
#
|
@@ -12458,7 +12555,7 @@ module Aws::Connect
|
|
12458
12555
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12459
12556
|
# RoutingStepExpression, Q in Connect
|
12460
12557
|
#
|
12461
|
-
# UI name: [Contact abandoned][
|
12558
|
+
# UI name: [Contact abandoned][108]
|
12462
12559
|
#
|
12463
12560
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
12464
12561
|
#
|
@@ -12471,7 +12568,7 @@ module Aws::Connect
|
|
12471
12568
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12472
12569
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12473
12570
|
#
|
12474
|
-
# UI name: [Contacts abandoned in X seconds][
|
12571
|
+
# UI name: [Contacts abandoned in X seconds][109]
|
12475
12572
|
#
|
12476
12573
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
12477
12574
|
#
|
@@ -12484,7 +12581,7 @@ module Aws::Connect
|
|
12484
12581
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12485
12582
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12486
12583
|
#
|
12487
|
-
# UI name: [Contacts answered in X seconds][
|
12584
|
+
# UI name: [Contacts answered in X seconds][110]
|
12488
12585
|
#
|
12489
12586
|
# SUM\_CONTACT\_FLOW\_TIME
|
12490
12587
|
#
|
@@ -12493,7 +12590,7 @@ module Aws::Connect
|
|
12493
12590
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12494
12591
|
# Agent, Agent Hierarchy, Q in Connect
|
12495
12592
|
#
|
12496
|
-
# UI name: [Contact flow time][
|
12593
|
+
# UI name: [Contact flow time][111]
|
12497
12594
|
#
|
12498
12595
|
# SUM\_CONTACT\_TIME\_AGENT
|
12499
12596
|
#
|
@@ -12502,7 +12599,7 @@ module Aws::Connect
|
|
12502
12599
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12503
12600
|
# Hierarchy
|
12504
12601
|
#
|
12505
|
-
# UI name: [Agent on contact time][
|
12602
|
+
# UI name: [Agent on contact time][112]
|
12506
12603
|
#
|
12507
12604
|
# SUM\_CONTACTS\_DISCONNECTED
|
12508
12605
|
#
|
@@ -12514,7 +12611,7 @@ module Aws::Connect
|
|
12514
12611
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12515
12612
|
# Q in Connect
|
12516
12613
|
#
|
12517
|
-
# UI name: [Contact disconnected][
|
12614
|
+
# UI name: [Contact disconnected][113]
|
12518
12615
|
#
|
12519
12616
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
12520
12617
|
#
|
@@ -12523,7 +12620,7 @@ module Aws::Connect
|
|
12523
12620
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12524
12621
|
# Hierarchy
|
12525
12622
|
#
|
12526
|
-
# UI name: [Error status time][
|
12623
|
+
# UI name: [Error status time][114]
|
12527
12624
|
#
|
12528
12625
|
# SUM\_HANDLE\_TIME
|
12529
12626
|
#
|
@@ -12532,7 +12629,7 @@ module Aws::Connect
|
|
12532
12629
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12533
12630
|
# Agent, Agent Hierarchy, Q in Connect
|
12534
12631
|
#
|
12535
|
-
# UI name: [Contact handle time][
|
12632
|
+
# UI name: [Contact handle time][115]
|
12536
12633
|
#
|
12537
12634
|
# SUM\_HOLD\_TIME
|
12538
12635
|
#
|
@@ -12541,7 +12638,7 @@ module Aws::Connect
|
|
12541
12638
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12542
12639
|
# Agent, Agent Hierarchy, Q in Connect
|
12543
12640
|
#
|
12544
|
-
# UI name: [Customer hold time][
|
12641
|
+
# UI name: [Customer hold time][116]
|
12545
12642
|
#
|
12546
12643
|
# SUM\_IDLE\_TIME\_AGENT
|
12547
12644
|
#
|
@@ -12550,7 +12647,7 @@ module Aws::Connect
|
|
12550
12647
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12551
12648
|
# Hierarchy
|
12552
12649
|
#
|
12553
|
-
# UI name: [Agent idle time][
|
12650
|
+
# UI name: [Agent idle time][117]
|
12554
12651
|
#
|
12555
12652
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
12556
12653
|
#
|
@@ -12559,7 +12656,7 @@ module Aws::Connect
|
|
12559
12656
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12560
12657
|
# Agent, Agent Hierarchy, Q in Connect
|
12561
12658
|
#
|
12562
|
-
# UI name: [Agent interaction and hold time][
|
12659
|
+
# UI name: [Agent interaction and hold time][118]
|
12563
12660
|
#
|
12564
12661
|
# SUM\_INTERACTION\_TIME
|
12565
12662
|
#
|
@@ -12568,7 +12665,7 @@ module Aws::Connect
|
|
12568
12665
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12569
12666
|
# Agent, Agent Hierarchy
|
12570
12667
|
#
|
12571
|
-
# UI name: [Agent interaction time][
|
12668
|
+
# UI name: [Agent interaction time][119]
|
12572
12669
|
#
|
12573
12670
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
12574
12671
|
#
|
@@ -12577,7 +12674,7 @@ module Aws::Connect
|
|
12577
12674
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12578
12675
|
# Hierarchy
|
12579
12676
|
#
|
12580
|
-
# UI name: [Agent non-productive time][
|
12677
|
+
# UI name: [Agent non-productive time][120]
|
12581
12678
|
#
|
12582
12679
|
# SUM\_ONLINE\_TIME\_AGENT
|
12583
12680
|
#
|
@@ -12586,7 +12683,7 @@ module Aws::Connect
|
|
12586
12683
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12587
12684
|
# Hierarchy
|
12588
12685
|
#
|
12589
|
-
# UI name: [Online time][
|
12686
|
+
# UI name: [Online time][121]
|
12590
12687
|
#
|
12591
12688
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
12592
12689
|
#
|
@@ -12595,7 +12692,7 @@ module Aws::Connect
|
|
12595
12692
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12596
12693
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
12597
12694
|
#
|
12598
|
-
# UI name: [Callback attempts][
|
12695
|
+
# UI name: [Callback attempts][122]
|
12599
12696
|
#
|
12600
12697
|
#
|
12601
12698
|
#
|
@@ -12644,81 +12741,83 @@ module Aws::Connect
|
|
12644
12741
|
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-messages
|
12645
12742
|
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-non-talk-time
|
12646
12743
|
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time
|
12647
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12648
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12649
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12650
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12651
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12652
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12653
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12654
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12655
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12656
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12657
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12658
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12659
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
12660
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
12661
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
12662
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-
|
12663
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12664
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12665
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12666
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12667
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12668
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12669
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-
|
12670
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12671
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12672
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12673
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12674
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12675
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12676
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12677
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12678
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12679
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
12680
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12681
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12682
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12683
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12684
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12685
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12686
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12687
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12688
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12689
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12690
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12691
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12692
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12693
|
-
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12694
|
-
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12695
|
-
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12696
|
-
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12697
|
-
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12698
|
-
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12699
|
-
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12700
|
-
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12701
|
-
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12702
|
-
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-
|
12703
|
-
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12704
|
-
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12705
|
-
# [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12706
|
-
# [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12707
|
-
# [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12708
|
-
# [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12709
|
-
# [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12710
|
-
# [109]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12711
|
-
# [110]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12712
|
-
# [111]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-
|
12713
|
-
# [112]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12714
|
-
# [113]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-
|
12715
|
-
# [114]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12716
|
-
# [115]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12717
|
-
# [116]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12718
|
-
# [117]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-
|
12719
|
-
# [118]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-
|
12720
|
-
# [119]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12721
|
-
# [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
|
12722
12821
|
# @return [Array<Types::MetricV2>]
|
12723
12822
|
#
|
12724
12823
|
# @!attribute [rw] next_token
|
@@ -13745,8 +13844,7 @@ module Aws::Connect
|
|
13745
13844
|
# @return [String]
|
13746
13845
|
#
|
13747
13846
|
# @!attribute [rw] effective_till
|
13748
|
-
# The date
|
13749
|
-
# effective.
|
13847
|
+
# The date until the hours of operation override is effective.
|
13750
13848
|
# @return [String]
|
13751
13849
|
#
|
13752
13850
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationOverride AWS API Documentation
|
@@ -16442,6 +16540,70 @@ module Aws::Connect
|
|
16442
16540
|
include Aws::Structure
|
16443
16541
|
end
|
16444
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
|
+
|
16445
16607
|
# @!attribute [rw] instance_id
|
16446
16608
|
# The identifier of the Amazon Connect instance. You can [find the
|
16447
16609
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -17717,6 +17879,26 @@ module Aws::Connect
|
|
17717
17879
|
include Aws::Structure
|
17718
17880
|
end
|
17719
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
|
+
|
17720
17902
|
# Payload of chat properties to apply when starting a new contact.
|
17721
17903
|
#
|
17722
17904
|
# @!attribute [rw] supported_messaging_content_types
|
@@ -20407,6 +20589,11 @@ module Aws::Connect
|
|
20407
20589
|
# The number of associated queues in routing profile.
|
20408
20590
|
# @return [Integer]
|
20409
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
|
+
#
|
20410
20597
|
# @!attribute [rw] number_of_associated_users
|
20411
20598
|
# The number of associated users in routing profile.
|
20412
20599
|
# @return [Integer]
|
@@ -20434,6 +20621,10 @@ module Aws::Connect
|
|
20434
20621
|
# The IDs of the associated queue.
|
20435
20622
|
# @return [Array<String>]
|
20436
20623
|
#
|
20624
|
+
# @!attribute [rw] associated_manual_assignment_queue_ids
|
20625
|
+
# The IDs of the associated manual assignment queues.
|
20626
|
+
# @return [Array<String>]
|
20627
|
+
#
|
20437
20628
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfile AWS API Documentation
|
20438
20629
|
#
|
20439
20630
|
class RoutingProfile < Struct.new(
|
@@ -20446,12 +20637,60 @@ module Aws::Connect
|
|
20446
20637
|
:default_outbound_queue_id,
|
20447
20638
|
:tags,
|
20448
20639
|
:number_of_associated_queues,
|
20640
|
+
:number_of_associated_manual_assignment_queues,
|
20449
20641
|
:number_of_associated_users,
|
20450
20642
|
:agent_availability_timer,
|
20451
20643
|
:last_modified_time,
|
20452
20644
|
:last_modified_region,
|
20453
20645
|
:is_default,
|
20454
|
-
: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)
|
20455
20694
|
SENSITIVE = []
|
20456
20695
|
include Aws::Structure
|
20457
20696
|
end
|
@@ -21191,6 +21430,44 @@ module Aws::Connect
|
|
21191
21430
|
include Aws::Structure
|
21192
21431
|
end
|
21193
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
|
+
|
21194
21471
|
# @!attribute [rw] instance_id
|
21195
21472
|
# The identifier of Amazon Connect instance. You can find the instance
|
21196
21473
|
# ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -21278,8 +21555,32 @@ module Aws::Connect
|
|
21278
21555
|
include Aws::Structure
|
21279
21556
|
end
|
21280
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
|
+
|
21281
21578
|
# A structure of search criteria to be used to return contacts.
|
21282
21579
|
#
|
21580
|
+
# @!attribute [rw] name
|
21581
|
+
# Name of the contact.
|
21582
|
+
# @return [Types::NameCriteria]
|
21583
|
+
#
|
21283
21584
|
# @!attribute [rw] agent_ids
|
21284
21585
|
# The identifiers of agents who handled the contacts.
|
21285
21586
|
# @return [Array<String>]
|
@@ -21306,6 +21607,14 @@ module Aws::Connect
|
|
21306
21607
|
# The list of queue IDs associated with contacts.
|
21307
21608
|
# @return [Array<String>]
|
21308
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
|
+
#
|
21309
21618
|
# @!attribute [rw] searchable_contact_attributes
|
21310
21619
|
# The search criteria based on user-defined contact attributes that
|
21311
21620
|
# have been configured for contact search. For more information, see
|
@@ -21332,12 +21641,15 @@ module Aws::Connect
|
|
21332
21641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchCriteria AWS API Documentation
|
21333
21642
|
#
|
21334
21643
|
class SearchCriteria < Struct.new(
|
21644
|
+
:name,
|
21335
21645
|
:agent_ids,
|
21336
21646
|
:agent_hierarchy_groups,
|
21337
21647
|
:channels,
|
21338
21648
|
:contact_analysis,
|
21339
21649
|
:initiation_methods,
|
21340
21650
|
:queue_ids,
|
21651
|
+
:routing_criteria,
|
21652
|
+
:additional_time_range,
|
21341
21653
|
:searchable_contact_attributes,
|
21342
21654
|
:searchable_segment_attributes)
|
21343
21655
|
SENSITIVE = []
|
@@ -22194,6 +22506,26 @@ module Aws::Connect
|
|
22194
22506
|
include Aws::Structure
|
22195
22507
|
end
|
22196
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
|
+
|
22197
22529
|
# A structure that defines search criteria based on user-defined contact
|
22198
22530
|
# attributes that are configured for contact search.
|
22199
22531
|
#
|
@@ -22237,6 +22569,34 @@ module Aws::Connect
|
|
22237
22569
|
include Aws::Structure
|
22238
22570
|
end
|
22239
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
|
+
|
22240
22600
|
# The search criteria based on searchable segment attributes of a
|
22241
22601
|
# contact
|
22242
22602
|
#
|
@@ -26049,8 +26409,7 @@ module Aws::Connect
|
|
26049
26409
|
# @return [String]
|
26050
26410
|
#
|
26051
26411
|
# @!attribute [rw] effective_till
|
26052
|
-
# The date
|
26053
|
-
# effective.
|
26412
|
+
# The date until the hours of operation override is effective.
|
26054
26413
|
# @return [String]
|
26055
26414
|
#
|
26056
26415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateHoursOfOperationOverrideRequest AWS API Documentation
|
@@ -27899,13 +28258,18 @@ module Aws::Connect
|
|
27899
28258
|
# The phone number for the user's desk phone.
|
27900
28259
|
# @return [String]
|
27901
28260
|
#
|
28261
|
+
# @!attribute [rw] persistent_connection
|
28262
|
+
# The persistent connection setting for the user.
|
28263
|
+
# @return [Boolean]
|
28264
|
+
#
|
27902
28265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserPhoneConfig AWS API Documentation
|
27903
28266
|
#
|
27904
28267
|
class UserPhoneConfig < Struct.new(
|
27905
28268
|
:phone_type,
|
27906
28269
|
:auto_accept,
|
27907
28270
|
:after_contact_work_time_limit,
|
27908
|
-
:desk_phone_number
|
28271
|
+
:desk_phone_number,
|
28272
|
+
:persistent_connection)
|
27909
28273
|
SENSITIVE = []
|
27910
28274
|
include Aws::Structure
|
27911
28275
|
end
|