aws-sdk-connect 1.150.0 → 1.152.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 +407 -13
- data/lib/aws-sdk-connect/client_api.rb +30 -3
- data/lib/aws-sdk-connect/types.rb +462 -15
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +42 -2
- data/sig/types.rbs +21 -0
- metadata +2 -2
@@ -123,6 +123,12 @@ module Aws::Connect
|
|
123
123
|
# @!attribute [rw] agent_contact_state
|
124
124
|
# The [state of the contact][1].
|
125
125
|
#
|
126
|
+
# <note markdown="1"> When `AgentContactState` is set to `CONNECTED_ONHOLD`,
|
127
|
+
# `StateStartTimestamp` is not changed. Instead, `StateStartTimestamp`
|
128
|
+
# reflects the time the contact was `CONNECTED` to the agent.
|
129
|
+
#
|
130
|
+
# </note>
|
131
|
+
#
|
126
132
|
#
|
127
133
|
#
|
128
134
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/about-contact-states.html
|
@@ -959,6 +965,27 @@ module Aws::Connect
|
|
959
965
|
include Aws::Structure
|
960
966
|
end
|
961
967
|
|
968
|
+
# A list of conditions which would be applied together with an `AND`
|
969
|
+
# condition.
|
970
|
+
#
|
971
|
+
# @!attribute [rw] tag_conditions
|
972
|
+
# A leaf node condition which can be used to specify a tag condition.
|
973
|
+
# @return [Array<Types::TagCondition>]
|
974
|
+
#
|
975
|
+
# @!attribute [rw] hierarchy_group_condition
|
976
|
+
# A leaf node condition which can be used to specify a hierarchy group
|
977
|
+
# condition.
|
978
|
+
# @return [Types::HierarchyGroupCondition]
|
979
|
+
#
|
980
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AttributeAndCondition AWS API Documentation
|
981
|
+
#
|
982
|
+
class AttributeAndCondition < Struct.new(
|
983
|
+
:tag_conditions,
|
984
|
+
:hierarchy_group_condition)
|
985
|
+
SENSITIVE = []
|
986
|
+
include Aws::Structure
|
987
|
+
end
|
988
|
+
|
962
989
|
# Has audio-specific configurations as the operating parameter for Echo
|
963
990
|
# Reduction.
|
964
991
|
#
|
@@ -2142,6 +2169,54 @@ module Aws::Connect
|
|
2142
2169
|
include Aws::Structure
|
2143
2170
|
end
|
2144
2171
|
|
2172
|
+
# An object that can be used to specify Tag conditions or Hierarchy
|
2173
|
+
# Group conditions inside the `SearchFilter`.
|
2174
|
+
#
|
2175
|
+
# This accepts an `OR` of `AND` (List of List) input where:
|
2176
|
+
#
|
2177
|
+
# * The top level list specifies conditions that need to be applied with
|
2178
|
+
# `OR` operator
|
2179
|
+
#
|
2180
|
+
# * The inner list specifies conditions that need to be applied with
|
2181
|
+
# `AND` operator.
|
2182
|
+
#
|
2183
|
+
# <note markdown="1"> Only one field can be populated. Maximum number of allowed Tag
|
2184
|
+
# conditions is 25. Maximum number of allowed Hierarchy Group conditions
|
2185
|
+
# is 20.
|
2186
|
+
#
|
2187
|
+
# </note>
|
2188
|
+
#
|
2189
|
+
# @!attribute [rw] or_conditions
|
2190
|
+
# A list of conditions which would be applied together with an `OR`
|
2191
|
+
# condition.
|
2192
|
+
# @return [Array<Types::AttributeAndCondition>]
|
2193
|
+
#
|
2194
|
+
# @!attribute [rw] and_condition
|
2195
|
+
# A list of conditions which would be applied together with an `AND`
|
2196
|
+
# condition.
|
2197
|
+
# @return [Types::AttributeAndCondition]
|
2198
|
+
#
|
2199
|
+
# @!attribute [rw] tag_condition
|
2200
|
+
# A leaf node condition which can be used to specify a tag condition,
|
2201
|
+
# for example, `HAVE BPO = 123`.
|
2202
|
+
# @return [Types::TagCondition]
|
2203
|
+
#
|
2204
|
+
# @!attribute [rw] hierarchy_group_condition
|
2205
|
+
# A leaf node condition which can be used to specify a hierarchy group
|
2206
|
+
# condition.
|
2207
|
+
# @return [Types::HierarchyGroupCondition]
|
2208
|
+
#
|
2209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ControlPlaneUserAttributeFilter AWS API Documentation
|
2210
|
+
#
|
2211
|
+
class ControlPlaneUserAttributeFilter < Struct.new(
|
2212
|
+
:or_conditions,
|
2213
|
+
:and_condition,
|
2214
|
+
:tag_condition,
|
2215
|
+
:hierarchy_group_condition)
|
2216
|
+
SENSITIVE = []
|
2217
|
+
include Aws::Structure
|
2218
|
+
end
|
2219
|
+
|
2145
2220
|
# @!attribute [rw] instance_id
|
2146
2221
|
# The identifier of the Amazon Connect instance. You can [find the
|
2147
2222
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -3250,6 +3325,17 @@ module Aws::Connect
|
|
3250
3325
|
# give access to.
|
3251
3326
|
# @return [Array<Types::Application>]
|
3252
3327
|
#
|
3328
|
+
# @!attribute [rw] hierarchy_restricted_resources
|
3329
|
+
# The list of resources that a security profile applies hierarchy
|
3330
|
+
# restrictions to in Amazon Connect. Following are acceptable
|
3331
|
+
# ResourceNames: `User`.
|
3332
|
+
# @return [Array<String>]
|
3333
|
+
#
|
3334
|
+
# @!attribute [rw] allowed_access_control_hierarchy_group_id
|
3335
|
+
# The identifier of the hierarchy group that a security profile uses
|
3336
|
+
# to restrict access to resources in Amazon Connect.
|
3337
|
+
# @return [String]
|
3338
|
+
#
|
3253
3339
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfileRequest AWS API Documentation
|
3254
3340
|
#
|
3255
3341
|
class CreateSecurityProfileRequest < Struct.new(
|
@@ -3260,7 +3346,9 @@ module Aws::Connect
|
|
3260
3346
|
:tags,
|
3261
3347
|
:allowed_access_control_tags,
|
3262
3348
|
:tag_restricted_resources,
|
3263
|
-
:applications
|
3349
|
+
:applications,
|
3350
|
+
:hierarchy_restricted_resources,
|
3351
|
+
:allowed_access_control_hierarchy_group_id)
|
3264
3352
|
SENSITIVE = []
|
3265
3353
|
include Aws::Structure
|
3266
3354
|
end
|
@@ -3548,6 +3636,14 @@ module Aws::Connect
|
|
3548
3636
|
# identity management, the user name can include up to 20 characters.
|
3549
3637
|
# If you are using SAML for identity management, the user name can
|
3550
3638
|
# include up to 64 characters from \[a-zA-Z0-9\_-.\\@\]+.
|
3639
|
+
#
|
3640
|
+
# Username can include @ only if used in an email format. For example:
|
3641
|
+
#
|
3642
|
+
# * Correct: testuser
|
3643
|
+
#
|
3644
|
+
# * Correct: testuser@example.com
|
3645
|
+
#
|
3646
|
+
# * Incorrect: testuser@example
|
3551
3647
|
# @return [String]
|
3552
3648
|
#
|
3553
3649
|
# @!attribute [rw] password
|
@@ -7831,7 +7927,8 @@ module Aws::Connect
|
|
7831
7927
|
# `AGENT` \| `CHANNEL` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
|
7832
7928
|
# `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
|
7833
7929
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
7834
|
-
# `FEATURE` \| `
|
7930
|
+
# `FEATURE` \| `CASE_TEMPLATE_ARN` \| `CASE_STATUS` \|
|
7931
|
+
# `contact/segmentAttributes/connect:Subtype` \|
|
7835
7932
|
# `ROUTING_STEP_EXPRESSION`
|
7836
7933
|
#
|
7837
7934
|
# * **Filter values**: A maximum of 100 filter values are supported in
|
@@ -7870,7 +7967,8 @@ module Aws::Connect
|
|
7870
7967
|
# Valid grouping keys: `QUEUE` \| `ROUTING_PROFILE` \| `AGENT` \|
|
7871
7968
|
# `CHANNEL` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
|
7872
7969
|
# `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
|
7873
|
-
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE
|
7970
|
+
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
7971
|
+
# `CASE_TEMPLATE_ARN` \| `CASE_STATUS` \|
|
7874
7972
|
# `contact/segmentAttributes/connect:Subtype` \|
|
7875
7973
|
# `ROUTING_STEP_EXPRESSION`
|
7876
7974
|
# @return [Array<String>]
|
@@ -7889,16 +7987,20 @@ module Aws::Connect
|
|
7889
7987
|
# Agent, Agent Hierarchy, Feature,
|
7890
7988
|
# contact/segmentAttributes/connect:Subtype
|
7891
7989
|
#
|
7990
|
+
# UI name: [Abandonment rate][2]
|
7991
|
+
#
|
7892
7992
|
# AGENT\_ADHERENT\_TIME
|
7893
7993
|
#
|
7894
7994
|
# : This metric is available only in Amazon Web Services Regions where
|
7895
|
-
# [Forecasting, capacity planning, and scheduling][
|
7995
|
+
# [Forecasting, capacity planning, and scheduling][3] is available.
|
7896
7996
|
#
|
7897
7997
|
# Unit: Seconds
|
7898
7998
|
#
|
7899
7999
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7900
8000
|
# Agent, Agent Hierarchy
|
7901
8001
|
#
|
8002
|
+
# UI name: [Adherent time][4]
|
8003
|
+
#
|
7902
8004
|
# AGENT\_ANSWER\_RATE
|
7903
8005
|
#
|
7904
8006
|
# : Unit: Percent
|
@@ -7906,6 +8008,8 @@ module Aws::Connect
|
|
7906
8008
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7907
8009
|
# Agent, Agent Hierarchy
|
7908
8010
|
#
|
8011
|
+
# UI name: [Agent answer rate][5]
|
8012
|
+
#
|
7909
8013
|
# AGENT\_NON\_ADHERENT\_TIME
|
7910
8014
|
#
|
7911
8015
|
# : Unit: Seconds
|
@@ -7913,6 +8017,8 @@ module Aws::Connect
|
|
7913
8017
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7914
8018
|
# Agent, Agent Hierarchy
|
7915
8019
|
#
|
8020
|
+
# UI name: [Non-adherent time][6]
|
8021
|
+
#
|
7916
8022
|
# AGENT\_NON\_RESPONSE
|
7917
8023
|
#
|
7918
8024
|
# : Unit: Count
|
@@ -7920,6 +8026,8 @@ module Aws::Connect
|
|
7920
8026
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7921
8027
|
# Agent, Agent Hierarchy
|
7922
8028
|
#
|
8029
|
+
# UI name: [Agent non-response][7]
|
8030
|
+
#
|
7923
8031
|
# AGENT\_NON\_RESPONSE\_WITHOUT\_CUSTOMER\_ABANDONS
|
7924
8032
|
#
|
7925
8033
|
# : Unit: Count
|
@@ -7930,6 +8038,8 @@ module Aws::Connect
|
|
7930
8038
|
# Data for this metric is available starting from October 1, 2023
|
7931
8039
|
# 0:00:00 GMT.
|
7932
8040
|
#
|
8041
|
+
# UI name: [Agent non-response without customer abandons][8]
|
8042
|
+
#
|
7933
8043
|
# AGENT\_OCCUPANCY
|
7934
8044
|
#
|
7935
8045
|
# : Unit: Percentage
|
@@ -7937,26 +8047,32 @@ module Aws::Connect
|
|
7937
8047
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
7938
8048
|
# Hierarchy
|
7939
8049
|
#
|
8050
|
+
# UI name: [Occupancy][9]
|
8051
|
+
#
|
7940
8052
|
# AGENT\_SCHEDULE\_ADHERENCE
|
7941
8053
|
#
|
7942
8054
|
# : This metric is available only in Amazon Web Services Regions where
|
7943
|
-
# [Forecasting, capacity planning, and scheduling][
|
8055
|
+
# [Forecasting, capacity planning, and scheduling][3] is available.
|
7944
8056
|
#
|
7945
8057
|
# Unit: Percent
|
7946
8058
|
#
|
7947
8059
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7948
8060
|
# Agent, Agent Hierarchy
|
7949
8061
|
#
|
8062
|
+
# UI name: [Adherence][10]
|
8063
|
+
#
|
7950
8064
|
# AGENT\_SCHEDULED\_TIME
|
7951
8065
|
#
|
7952
8066
|
# : This metric is available only in Amazon Web Services Regions where
|
7953
|
-
# [Forecasting, capacity planning, and scheduling][
|
8067
|
+
# [Forecasting, capacity planning, and scheduling][3] is available.
|
7954
8068
|
#
|
7955
8069
|
# Unit: Seconds
|
7956
8070
|
#
|
7957
8071
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7958
8072
|
# Agent, Agent Hierarchy
|
7959
8073
|
#
|
8074
|
+
# UI name: [Scheduled time][11]
|
8075
|
+
#
|
7960
8076
|
# AVG\_ABANDON\_TIME
|
7961
8077
|
#
|
7962
8078
|
# : Unit: Seconds
|
@@ -7965,6 +8081,8 @@ module Aws::Connect
|
|
7965
8081
|
# Agent, Agent Hierarchy, Feature,
|
7966
8082
|
# contact/segmentAttributes/connect:Subtype
|
7967
8083
|
#
|
8084
|
+
# UI name: [Average queue abandon time][12]
|
8085
|
+
#
|
7968
8086
|
# AVG\_ACTIVE\_TIME
|
7969
8087
|
#
|
7970
8088
|
# : Unit: Seconds
|
@@ -7972,6 +8090,8 @@ module Aws::Connect
|
|
7972
8090
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7973
8091
|
# Agent, Agent Hierarchy
|
7974
8092
|
#
|
8093
|
+
# UI name: [Average active time][13]
|
8094
|
+
#
|
7975
8095
|
# AVG\_AFTER\_CONTACT\_WORK\_TIME
|
7976
8096
|
#
|
7977
8097
|
# : Unit: Seconds
|
@@ -7982,6 +8102,8 @@ module Aws::Connect
|
|
7982
8102
|
# Agent, Agent Hierarchy, Feature,
|
7983
8103
|
# contact/segmentAttributes/connect:Subtype
|
7984
8104
|
#
|
8105
|
+
# UI name: [Average after contact work time][14]
|
8106
|
+
#
|
7985
8107
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7986
8108
|
#
|
7987
8109
|
# </note>
|
@@ -7997,6 +8119,8 @@ module Aws::Connect
|
|
7997
8119
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7998
8120
|
# Agent, Agent Hierarchy
|
7999
8121
|
#
|
8122
|
+
# UI name: [Average agent API connecting time][15]
|
8123
|
+
#
|
8000
8124
|
# <note markdown="1"> The `Negate` key in Metric Level Filters is not applicable for
|
8001
8125
|
# this metric.
|
8002
8126
|
#
|
@@ -8009,6 +8133,28 @@ module Aws::Connect
|
|
8009
8133
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8010
8134
|
# Agent, Agent Hierarchy
|
8011
8135
|
#
|
8136
|
+
# UI name: [Average agent pause time][16]
|
8137
|
+
#
|
8138
|
+
# AVG\_CASE\_RELATED\_CONTACTS
|
8139
|
+
#
|
8140
|
+
# : Unit: Count
|
8141
|
+
#
|
8142
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
8143
|
+
#
|
8144
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8145
|
+
#
|
8146
|
+
# UI name: [Average contacts per case][17]
|
8147
|
+
#
|
8148
|
+
# AVG\_CASE\_RESOLUTION\_TIME
|
8149
|
+
#
|
8150
|
+
# : Unit: Seconds
|
8151
|
+
#
|
8152
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
8153
|
+
#
|
8154
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8155
|
+
#
|
8156
|
+
# UI name: [Average case resolution time][18]
|
8157
|
+
#
|
8012
8158
|
# AVG\_CONTACT\_DURATION
|
8013
8159
|
#
|
8014
8160
|
# : Unit: Seconds
|
@@ -8017,6 +8163,8 @@ module Aws::Connect
|
|
8017
8163
|
# Agent, Agent Hierarchy, Feature,
|
8018
8164
|
# contact/segmentAttributes/connect:Subtype
|
8019
8165
|
#
|
8166
|
+
# UI name: [Average contact duration][19]
|
8167
|
+
#
|
8020
8168
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8021
8169
|
#
|
8022
8170
|
# </note>
|
@@ -8029,6 +8177,8 @@ module Aws::Connect
|
|
8029
8177
|
# Agent, Agent Hierarchy, Feature,
|
8030
8178
|
# contact/segmentAttributes/connect:Subtype
|
8031
8179
|
#
|
8180
|
+
# UI name: [Average conversation duration][20]
|
8181
|
+
#
|
8032
8182
|
# AVG\_GREETING\_TIME\_AGENT
|
8033
8183
|
#
|
8034
8184
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8039,6 +8189,8 @@ module Aws::Connect
|
|
8039
8189
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8040
8190
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8041
8191
|
#
|
8192
|
+
# UI name: [Average greeting time agent ][21]
|
8193
|
+
#
|
8042
8194
|
# AVG\_HANDLE\_TIME
|
8043
8195
|
#
|
8044
8196
|
# : Unit: Seconds
|
@@ -8047,6 +8199,8 @@ module Aws::Connect
|
|
8047
8199
|
# Agent, Agent Hierarchy, Feature,
|
8048
8200
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression
|
8049
8201
|
#
|
8202
|
+
# UI name: [Average handle time][22]
|
8203
|
+
#
|
8050
8204
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8051
8205
|
#
|
8052
8206
|
# </note>
|
@@ -8059,6 +8213,8 @@ module Aws::Connect
|
|
8059
8213
|
# Agent, Agent Hierarchy, Feature,
|
8060
8214
|
# contact/segmentAttributes/connect:Subtype
|
8061
8215
|
#
|
8216
|
+
# UI name: [Average customer hold time][23]
|
8217
|
+
#
|
8062
8218
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8063
8219
|
#
|
8064
8220
|
# </note>
|
@@ -8070,6 +8226,8 @@ module Aws::Connect
|
|
8070
8226
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8071
8227
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8072
8228
|
#
|
8229
|
+
# UI name: [Average customer hold time all contacts][24]
|
8230
|
+
#
|
8073
8231
|
# AVG\_HOLDS
|
8074
8232
|
#
|
8075
8233
|
# : Unit: Count
|
@@ -8078,6 +8236,8 @@ module Aws::Connect
|
|
8078
8236
|
# Agent, Agent Hierarchy, Feature,
|
8079
8237
|
# contact/segmentAttributes/connect:Subtype
|
8080
8238
|
#
|
8239
|
+
# UI name: [Average holds][25]
|
8240
|
+
#
|
8081
8241
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8082
8242
|
#
|
8083
8243
|
# </note>
|
@@ -8089,6 +8249,8 @@ module Aws::Connect
|
|
8089
8249
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8090
8250
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8091
8251
|
#
|
8252
|
+
# UI name: [Average agent interaction and customer hold time][26]
|
8253
|
+
#
|
8092
8254
|
# AVG\_INTERACTION\_TIME
|
8093
8255
|
#
|
8094
8256
|
# : Unit: Seconds
|
@@ -8098,6 +8260,8 @@ module Aws::Connect
|
|
8098
8260
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8099
8261
|
# Feature, contact/segmentAttributes/connect:Subtype
|
8100
8262
|
#
|
8263
|
+
# UI name: [Average agent interaction time][27]
|
8264
|
+
#
|
8101
8265
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8102
8266
|
#
|
8103
8267
|
# </note>
|
@@ -8112,6 +8276,8 @@ module Aws::Connect
|
|
8112
8276
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8113
8277
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8114
8278
|
#
|
8279
|
+
# UI name: [Average interruptions agent ][28]
|
8280
|
+
#
|
8115
8281
|
# AVG\_INTERRUPTION\_TIME\_AGENT
|
8116
8282
|
#
|
8117
8283
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8122,6 +8288,8 @@ module Aws::Connect
|
|
8122
8288
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8123
8289
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8124
8290
|
#
|
8291
|
+
# UI name: [Average interruption time agent][29]
|
8292
|
+
#
|
8125
8293
|
# AVG\_NON\_TALK\_TIME
|
8126
8294
|
#
|
8127
8295
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8132,6 +8300,8 @@ module Aws::Connect
|
|
8132
8300
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8133
8301
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8134
8302
|
#
|
8303
|
+
# UI name: [Average non-talk time][30]
|
8304
|
+
#
|
8135
8305
|
# AVG\_QUEUE\_ANSWER\_TIME
|
8136
8306
|
#
|
8137
8307
|
# : Unit: Seconds
|
@@ -8139,6 +8309,8 @@ module Aws::Connect
|
|
8139
8309
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8140
8310
|
# Feature, contact/segmentAttributes/connect:Subtype
|
8141
8311
|
#
|
8312
|
+
# UI name: [Average queue answer time][31]
|
8313
|
+
#
|
8142
8314
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8143
8315
|
#
|
8144
8316
|
# </note>
|
@@ -8150,6 +8322,8 @@ module Aws::Connect
|
|
8150
8322
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8151
8323
|
# contact/segmentAttributes/connect:Subtype
|
8152
8324
|
#
|
8325
|
+
# UI name: [Average resolution time][32]
|
8326
|
+
#
|
8153
8327
|
# AVG\_TALK\_TIME
|
8154
8328
|
#
|
8155
8329
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8160,6 +8334,8 @@ module Aws::Connect
|
|
8160
8334
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8161
8335
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8162
8336
|
#
|
8337
|
+
# UI name: [Average talk time][33]
|
8338
|
+
#
|
8163
8339
|
# AVG\_TALK\_TIME\_AGENT
|
8164
8340
|
#
|
8165
8341
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8170,6 +8346,8 @@ module Aws::Connect
|
|
8170
8346
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8171
8347
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8172
8348
|
#
|
8349
|
+
# UI name: [Average talk time agent][34]
|
8350
|
+
#
|
8173
8351
|
# AVG\_TALK\_TIME\_CUSTOMER
|
8174
8352
|
#
|
8175
8353
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8180,6 +8358,18 @@ module Aws::Connect
|
|
8180
8358
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8181
8359
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8182
8360
|
#
|
8361
|
+
# UI name: [Average talk time customer][35]
|
8362
|
+
#
|
8363
|
+
# CASES\_CREATED
|
8364
|
+
#
|
8365
|
+
# : Unit: Count
|
8366
|
+
#
|
8367
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
8368
|
+
#
|
8369
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8370
|
+
#
|
8371
|
+
# UI name: [Cases created][36]
|
8372
|
+
#
|
8183
8373
|
# CONTACTS\_ABANDONED
|
8184
8374
|
#
|
8185
8375
|
# : Unit: Count
|
@@ -8188,6 +8378,8 @@ module Aws::Connect
|
|
8188
8378
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
8189
8379
|
# RoutingStepExpression
|
8190
8380
|
#
|
8381
|
+
# UI name: [Contact abandoned][37]
|
8382
|
+
#
|
8191
8383
|
# CONTACTS\_CREATED
|
8192
8384
|
#
|
8193
8385
|
# : Unit: Count
|
@@ -8197,6 +8389,8 @@ module Aws::Connect
|
|
8197
8389
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8198
8390
|
# Feature, contact/segmentAttributes/connect:Subtype
|
8199
8391
|
#
|
8392
|
+
# UI name: [Contacts created][38]
|
8393
|
+
#
|
8200
8394
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8201
8395
|
#
|
8202
8396
|
# </note>
|
@@ -8211,6 +8405,8 @@ module Aws::Connect
|
|
8211
8405
|
# Agent, Agent Hierarchy, Feature,
|
8212
8406
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression
|
8213
8407
|
#
|
8408
|
+
# UI name: [API contacts handled][39]
|
8409
|
+
#
|
8214
8410
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8215
8411
|
#
|
8216
8412
|
# </note>
|
@@ -8224,6 +8420,8 @@ module Aws::Connect
|
|
8224
8420
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
8225
8421
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
8226
8422
|
#
|
8423
|
+
# UI name: [Contacts handled by Connected to agent][40]
|
8424
|
+
#
|
8227
8425
|
# CONTACTS\_HOLD\_ABANDONS
|
8228
8426
|
#
|
8229
8427
|
# : Unit: Count
|
@@ -8231,6 +8429,8 @@ module Aws::Connect
|
|
8231
8429
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8232
8430
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8233
8431
|
#
|
8432
|
+
# UI name: [Contacts hold disconnect][40]
|
8433
|
+
#
|
8234
8434
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
8235
8435
|
#
|
8236
8436
|
# : Unit: Count
|
@@ -8238,6 +8438,8 @@ module Aws::Connect
|
|
8238
8438
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8239
8439
|
# Agent, Agent Hierarchy
|
8240
8440
|
#
|
8441
|
+
# UI name: [Contacts hold agent disconnect][41]
|
8442
|
+
#
|
8241
8443
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
8242
8444
|
#
|
8243
8445
|
# : Unit: Count
|
@@ -8245,6 +8447,8 @@ module Aws::Connect
|
|
8245
8447
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8246
8448
|
# Agent, Agent Hierarchy
|
8247
8449
|
#
|
8450
|
+
# UI name: [Contacts hold customer disconnect][42]
|
8451
|
+
#
|
8248
8452
|
# CONTACTS\_PUT\_ON\_HOLD
|
8249
8453
|
#
|
8250
8454
|
# : Unit: Count
|
@@ -8252,6 +8456,8 @@ module Aws::Connect
|
|
8252
8456
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8253
8457
|
# Agent, Agent Hierarchy
|
8254
8458
|
#
|
8459
|
+
# UI name: [Contacts put on hold][42]
|
8460
|
+
#
|
8255
8461
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
8256
8462
|
#
|
8257
8463
|
# : Unit: Count
|
@@ -8259,6 +8465,8 @@ module Aws::Connect
|
|
8259
8465
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8260
8466
|
# Agent, Agent Hierarchy
|
8261
8467
|
#
|
8468
|
+
# UI name: [Contacts transferred out external][43]
|
8469
|
+
#
|
8262
8470
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
8263
8471
|
#
|
8264
8472
|
# : Unit: Percent
|
@@ -8266,6 +8474,8 @@ module Aws::Connect
|
|
8266
8474
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8267
8475
|
# Agent, Agent Hierarchy
|
8268
8476
|
#
|
8477
|
+
# UI name: [Contacts transferred out internal][44]
|
8478
|
+
#
|
8269
8479
|
# CONTACTS\_QUEUED
|
8270
8480
|
#
|
8271
8481
|
# : Unit: Count
|
@@ -8273,6 +8483,8 @@ module Aws::Connect
|
|
8273
8483
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8274
8484
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8275
8485
|
#
|
8486
|
+
# UI name: [Contacts queued][45]
|
8487
|
+
#
|
8276
8488
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
8277
8489
|
#
|
8278
8490
|
# : Unit: Count
|
@@ -8280,6 +8492,8 @@ module Aws::Connect
|
|
8280
8492
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
8281
8493
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
8282
8494
|
#
|
8495
|
+
# UI name: [Contacts queued by Enqueue][46]
|
8496
|
+
#
|
8283
8497
|
# CONTACTS\_RESOLVED\_IN\_X
|
8284
8498
|
#
|
8285
8499
|
# : Unit: Count
|
@@ -8291,6 +8505,8 @@ module Aws::Connect
|
|
8291
8505
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
8292
8506
|
# `LT` (for "Less than").
|
8293
8507
|
#
|
8508
|
+
# UI name: [Contacts resolved in X][47]
|
8509
|
+
#
|
8294
8510
|
# CONTACTS\_TRANSFERRED\_OUT
|
8295
8511
|
#
|
8296
8512
|
# : Unit: Count
|
@@ -8299,6 +8515,8 @@ module Aws::Connect
|
|
8299
8515
|
# Agent, Agent Hierarchy, Feature,
|
8300
8516
|
# contact/segmentAttributes/connect:Subtype
|
8301
8517
|
#
|
8518
|
+
# UI name: [Contacts transferred out][48]
|
8519
|
+
#
|
8302
8520
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
8303
8521
|
#
|
8304
8522
|
# </note>
|
@@ -8310,6 +8528,8 @@ module Aws::Connect
|
|
8310
8528
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8311
8529
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8312
8530
|
#
|
8531
|
+
# UI name: [Contacts transferred out by agent][49]
|
8532
|
+
#
|
8313
8533
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
8314
8534
|
#
|
8315
8535
|
# : Unit: Count
|
@@ -8317,6 +8537,18 @@ module Aws::Connect
|
|
8317
8537
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8318
8538
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8319
8539
|
#
|
8540
|
+
# UI name: [Contacts transferred out queue][49]
|
8541
|
+
#
|
8542
|
+
# CURRENT\_CASES
|
8543
|
+
#
|
8544
|
+
# : Unit: Count
|
8545
|
+
#
|
8546
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
8547
|
+
#
|
8548
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8549
|
+
#
|
8550
|
+
# UI name: [Current cases][50]
|
8551
|
+
#
|
8320
8552
|
# MAX\_QUEUED\_TIME
|
8321
8553
|
#
|
8322
8554
|
# : Unit: Seconds
|
@@ -8324,18 +8556,34 @@ module Aws::Connect
|
|
8324
8556
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8325
8557
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8326
8558
|
#
|
8559
|
+
# UI name: [Maximum queued time][51]
|
8560
|
+
#
|
8561
|
+
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
8562
|
+
#
|
8563
|
+
# : Unit: Percent
|
8564
|
+
#
|
8565
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
8566
|
+
#
|
8567
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8568
|
+
#
|
8569
|
+
# UI name: [Cases resolved on first contact][52]
|
8570
|
+
#
|
8327
8571
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
8328
8572
|
#
|
8329
8573
|
# : Unit: Percent
|
8330
8574
|
#
|
8331
8575
|
# Valid groupings and filters: Queue, RoutingStepExpression
|
8332
8576
|
#
|
8577
|
+
# UI name: Not available
|
8578
|
+
#
|
8333
8579
|
# PERCENT\_CONTACTS\_STEP\_JOINED
|
8334
8580
|
#
|
8335
8581
|
# : Unit: Percent
|
8336
8582
|
#
|
8337
8583
|
# Valid groupings and filters: Queue, RoutingStepExpression
|
8338
8584
|
#
|
8585
|
+
# UI name: Not available
|
8586
|
+
#
|
8339
8587
|
# PERCENT\_NON\_TALK\_TIME
|
8340
8588
|
#
|
8341
8589
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8346,6 +8594,8 @@ module Aws::Connect
|
|
8346
8594
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8347
8595
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8348
8596
|
#
|
8597
|
+
# UI name: [Non-talk time percent][53]
|
8598
|
+
#
|
8349
8599
|
# PERCENT\_TALK\_TIME
|
8350
8600
|
#
|
8351
8601
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8356,6 +8606,8 @@ module Aws::Connect
|
|
8356
8606
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8357
8607
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8358
8608
|
#
|
8609
|
+
# UI name: [Talk time percent][54]
|
8610
|
+
#
|
8359
8611
|
# PERCENT\_TALK\_TIME\_AGENT
|
8360
8612
|
#
|
8361
8613
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8366,6 +8618,8 @@ module Aws::Connect
|
|
8366
8618
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8367
8619
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8368
8620
|
#
|
8621
|
+
# UI name: [Talk time agent percent][55]
|
8622
|
+
#
|
8369
8623
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
8370
8624
|
#
|
8371
8625
|
# : This metric is available only for contacts analyzed by Contact
|
@@ -8376,6 +8630,28 @@ module Aws::Connect
|
|
8376
8630
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8377
8631
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8378
8632
|
#
|
8633
|
+
# UI name: [Talk time customer percent][56]
|
8634
|
+
#
|
8635
|
+
# REOPENED\_CASE\_ACTIONS
|
8636
|
+
#
|
8637
|
+
# : Unit: Count
|
8638
|
+
#
|
8639
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
8640
|
+
#
|
8641
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8642
|
+
#
|
8643
|
+
# UI name: [Cases reopened][57]
|
8644
|
+
#
|
8645
|
+
# RESOLVED\_CASE\_ACTIONS
|
8646
|
+
#
|
8647
|
+
# : Unit: Count
|
8648
|
+
#
|
8649
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
8650
|
+
#
|
8651
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
8652
|
+
#
|
8653
|
+
# UI name: [Cases resolved][58]
|
8654
|
+
#
|
8379
8655
|
# SERVICE\_LEVEL
|
8380
8656
|
#
|
8381
8657
|
# : You can include up to 20 SERVICE\_LEVEL metrics in a request.
|
@@ -8388,12 +8664,16 @@ module Aws::Connect
|
|
8388
8664
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
8389
8665
|
# `LT` (for "Less than").
|
8390
8666
|
#
|
8667
|
+
# UI name: [Service level X][59]
|
8668
|
+
#
|
8391
8669
|
# STEP\_CONTACTS\_QUEUED
|
8392
8670
|
#
|
8393
8671
|
# : Unit: Count
|
8394
8672
|
#
|
8395
8673
|
# Valid groupings and filters: Queue, RoutingStepExpression
|
8396
8674
|
#
|
8675
|
+
# UI name: Not available
|
8676
|
+
#
|
8397
8677
|
# SUM\_AFTER\_CONTACT\_WORK\_TIME
|
8398
8678
|
#
|
8399
8679
|
# : Unit: Seconds
|
@@ -8401,6 +8681,8 @@ module Aws::Connect
|
|
8401
8681
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8402
8682
|
# Agent, Agent Hierarchy
|
8403
8683
|
#
|
8684
|
+
# UI name: [After contact work time][60]
|
8685
|
+
#
|
8404
8686
|
# SUM\_CONNECTING\_TIME\_AGENT
|
8405
8687
|
#
|
8406
8688
|
# : Unit: Seconds
|
@@ -8412,6 +8694,8 @@ module Aws::Connect
|
|
8412
8694
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8413
8695
|
# Agent, Agent Hierarchy
|
8414
8696
|
#
|
8697
|
+
# UI name: [Agent API connecting time][61]
|
8698
|
+
#
|
8415
8699
|
# <note markdown="1"> The `Negate` key in Metric Level Filters is not applicable for
|
8416
8700
|
# this metric.
|
8417
8701
|
#
|
@@ -8424,6 +8708,8 @@ module Aws::Connect
|
|
8424
8708
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8425
8709
|
# Agent, Agent Hierarchy
|
8426
8710
|
#
|
8711
|
+
# UI name: [Contact flow time][62]
|
8712
|
+
#
|
8427
8713
|
# SUM\_CONTACT\_TIME\_AGENT
|
8428
8714
|
#
|
8429
8715
|
# : Unit: Seconds
|
@@ -8431,6 +8717,8 @@ module Aws::Connect
|
|
8431
8717
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8432
8718
|
# Agent, Agent Hierarchy
|
8433
8719
|
#
|
8720
|
+
# UI name: [Agent on contact time][63]
|
8721
|
+
#
|
8434
8722
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
8435
8723
|
#
|
8436
8724
|
# : Unit: Count
|
@@ -8442,6 +8730,8 @@ module Aws::Connect
|
|
8442
8730
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
8443
8731
|
# `LT` (for "Less than").
|
8444
8732
|
#
|
8733
|
+
# UI name: [Contacts answered in X seconds][64]
|
8734
|
+
#
|
8445
8735
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
8446
8736
|
#
|
8447
8737
|
# : Unit: Count
|
@@ -8453,6 +8743,8 @@ module Aws::Connect
|
|
8453
8743
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
8454
8744
|
# `LT` (for "Less than").
|
8455
8745
|
#
|
8746
|
+
# UI name: [Contacts abandoned in X seconds][65]
|
8747
|
+
#
|
8456
8748
|
# SUM\_CONTACTS\_DISCONNECTED
|
8457
8749
|
#
|
8458
8750
|
# : Valid metric filter key: `DISCONNECT_REASON`
|
@@ -8462,6 +8754,8 @@ module Aws::Connect
|
|
8462
8754
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8463
8755
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
8464
8756
|
#
|
8757
|
+
# UI name: [Contact disconnected][66]
|
8758
|
+
#
|
8465
8759
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
8466
8760
|
#
|
8467
8761
|
# : Unit: Seconds
|
@@ -8469,6 +8763,8 @@ module Aws::Connect
|
|
8469
8763
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8470
8764
|
# Agent, Agent Hierarchy
|
8471
8765
|
#
|
8766
|
+
# UI name: [Error status time][67]
|
8767
|
+
#
|
8472
8768
|
# SUM\_HANDLE\_TIME
|
8473
8769
|
#
|
8474
8770
|
# : Unit: Seconds
|
@@ -8476,6 +8772,8 @@ module Aws::Connect
|
|
8476
8772
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8477
8773
|
# Agent, Agent Hierarchy
|
8478
8774
|
#
|
8775
|
+
# UI name: [Contact handle time][68]
|
8776
|
+
#
|
8479
8777
|
# SUM\_HOLD\_TIME
|
8480
8778
|
#
|
8481
8779
|
# : Unit: Count
|
@@ -8483,6 +8781,8 @@ module Aws::Connect
|
|
8483
8781
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8484
8782
|
# Agent, Agent Hierarchy
|
8485
8783
|
#
|
8784
|
+
# UI name: [Customer hold time][69]
|
8785
|
+
#
|
8486
8786
|
# SUM\_IDLE\_TIME\_AGENT
|
8487
8787
|
#
|
8488
8788
|
# : Unit: Seconds
|
@@ -8490,6 +8790,8 @@ module Aws::Connect
|
|
8490
8790
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
8491
8791
|
# Hierarchy
|
8492
8792
|
#
|
8793
|
+
# UI name: [Agent idle time][70]
|
8794
|
+
#
|
8493
8795
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
8494
8796
|
#
|
8495
8797
|
# : Unit: Seconds
|
@@ -8497,6 +8799,8 @@ module Aws::Connect
|
|
8497
8799
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8498
8800
|
# Agent, Agent Hierarchy
|
8499
8801
|
#
|
8802
|
+
# UI name: [Agent interaction and hold time][71]
|
8803
|
+
#
|
8500
8804
|
# SUM\_INTERACTION\_TIME
|
8501
8805
|
#
|
8502
8806
|
# : Unit: Seconds
|
@@ -8504,6 +8808,8 @@ module Aws::Connect
|
|
8504
8808
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8505
8809
|
# Agent, Agent Hierarchy
|
8506
8810
|
#
|
8811
|
+
# UI name: [Agent interaction time][72]
|
8812
|
+
#
|
8507
8813
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
8508
8814
|
#
|
8509
8815
|
# : Unit: Seconds
|
@@ -8511,6 +8817,8 @@ module Aws::Connect
|
|
8511
8817
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
8512
8818
|
# Hierarchy
|
8513
8819
|
#
|
8820
|
+
# UI name: [Non-Productive Time][73]
|
8821
|
+
#
|
8514
8822
|
# SUM\_ONLINE\_TIME\_AGENT
|
8515
8823
|
#
|
8516
8824
|
# : Unit: Seconds
|
@@ -8518,6 +8826,8 @@ module Aws::Connect
|
|
8518
8826
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
8519
8827
|
# Hierarchy
|
8520
8828
|
#
|
8829
|
+
# UI name: [Online time][74]
|
8830
|
+
#
|
8521
8831
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
8522
8832
|
#
|
8523
8833
|
# : Unit: Count
|
@@ -8525,10 +8835,85 @@ module Aws::Connect
|
|
8525
8835
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
8526
8836
|
# contact/segmentAttributes/connect:Subtype
|
8527
8837
|
#
|
8838
|
+
# UI name: [Callback attempts][75]
|
8839
|
+
#
|
8528
8840
|
#
|
8529
8841
|
#
|
8530
8842
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
8531
|
-
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
8843
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#abandonment-rate-historical
|
8844
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/regions.html#optimization_region
|
8845
|
+
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#adherent-time-historical
|
8846
|
+
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-answer-rate-historical
|
8847
|
+
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#non-adherent-time
|
8848
|
+
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-non-response
|
8849
|
+
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-nonresponse-no-abandon-historical
|
8850
|
+
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#occupancy-historical
|
8851
|
+
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#adherence-historical
|
8852
|
+
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#scheduled-time-historical
|
8853
|
+
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-abandon-time-historical
|
8854
|
+
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-active-time-historical
|
8855
|
+
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-acw-time-historical
|
8856
|
+
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-avg-agent-api-connecting-time
|
8857
|
+
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-pause-time-historical
|
8858
|
+
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contacts-case-historical
|
8859
|
+
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-case-resolution-time-historical
|
8860
|
+
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contact-duration-historical
|
8861
|
+
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-conversation-duration-historical
|
8862
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-greeting-time-agent-historical
|
8863
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-handle-time-historical
|
8864
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-customer-hold-time-historical
|
8865
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#avg-customer-hold-time-all-contacts-historical
|
8866
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-holds-historical
|
8867
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-customer-hold-time-historical
|
8868
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
8869
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-agent-historical
|
8870
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-time-agent-historical
|
8871
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##average-non-talk-time-historical
|
8872
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-answer-time-historical
|
8873
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-resolution-time-historical
|
8874
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-historical
|
8875
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-agent-historical
|
8876
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-customer-historical
|
8877
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##cases-created-historical
|
8878
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
8879
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
|
8880
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
|
8881
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
|
8882
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
|
8883
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
|
8884
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
|
8885
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
8886
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
8887
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
8888
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
8889
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
8890
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
8891
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
8892
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
8893
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
8894
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
8895
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
8896
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
8897
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
8898
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
8899
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historicall
|
8900
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
8901
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
8902
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
8903
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
8904
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
8905
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
8906
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
8907
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
8908
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
8909
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
8910
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
8911
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
8912
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
8913
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
8914
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
8915
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
8916
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
8532
8917
|
# @return [Array<Types::MetricV2>]
|
8533
8918
|
#
|
8534
8919
|
# @!attribute [rw] next_token
|
@@ -16213,6 +16598,17 @@ module Aws::Connect
|
|
16213
16598
|
# modified.
|
16214
16599
|
# @return [String]
|
16215
16600
|
#
|
16601
|
+
# @!attribute [rw] hierarchy_restricted_resources
|
16602
|
+
# The list of resources that a security profile applies hierarchy
|
16603
|
+
# restrictions to in Amazon Connect. Following are acceptable
|
16604
|
+
# ResourceNames: `User`.
|
16605
|
+
# @return [Array<String>]
|
16606
|
+
#
|
16607
|
+
# @!attribute [rw] allowed_access_control_hierarchy_group_id
|
16608
|
+
# The identifier of the hierarchy group that a security profile uses
|
16609
|
+
# to restrict access to resources in Amazon Connect.
|
16610
|
+
# @return [String]
|
16611
|
+
#
|
16216
16612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfile AWS API Documentation
|
16217
16613
|
#
|
16218
16614
|
class SecurityProfile < Struct.new(
|
@@ -16225,7 +16621,9 @@ module Aws::Connect
|
|
16225
16621
|
:allowed_access_control_tags,
|
16226
16622
|
:tag_restricted_resources,
|
16227
16623
|
:last_modified_time,
|
16228
|
-
:last_modified_region
|
16624
|
+
:last_modified_region,
|
16625
|
+
:hierarchy_restricted_resources,
|
16626
|
+
:allowed_access_control_hierarchy_group_id)
|
16229
16627
|
SENSITIVE = []
|
16230
16628
|
include Aws::Structure
|
16231
16629
|
end
|
@@ -16621,7 +17019,9 @@ module Aws::Connect
|
|
16621
17019
|
# @return [Types::ParticipantDetails]
|
16622
17020
|
#
|
16623
17021
|
# @!attribute [rw] initial_message
|
16624
|
-
# The initial message to be sent to the newly created chat.
|
17022
|
+
# The initial message to be sent to the newly created chat. If you
|
17023
|
+
# have a Lex bot in your flow, the initial message is not delivered to
|
17024
|
+
# the Lex bot.
|
16625
17025
|
# @return [Types::ChatMessage]
|
16626
17026
|
#
|
16627
17027
|
# @!attribute [rw] client_token
|
@@ -19624,6 +20024,17 @@ module Aws::Connect
|
|
19624
20024
|
# A list of the third-party application's metadata.
|
19625
20025
|
# @return [Array<Types::Application>]
|
19626
20026
|
#
|
20027
|
+
# @!attribute [rw] hierarchy_restricted_resources
|
20028
|
+
# The list of resources that a security profile applies hierarchy
|
20029
|
+
# restrictions to in Amazon Connect. Following are acceptable
|
20030
|
+
# ResourceNames: `User`.
|
20031
|
+
# @return [Array<String>]
|
20032
|
+
#
|
20033
|
+
# @!attribute [rw] allowed_access_control_hierarchy_group_id
|
20034
|
+
# The identifier of the hierarchy group that a security profile uses
|
20035
|
+
# to restrict access to resources in Amazon Connect.
|
20036
|
+
# @return [String]
|
20037
|
+
#
|
19627
20038
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfileRequest AWS API Documentation
|
19628
20039
|
#
|
19629
20040
|
class UpdateSecurityProfileRequest < Struct.new(
|
@@ -19633,7 +20044,9 @@ module Aws::Connect
|
|
19633
20044
|
:instance_id,
|
19634
20045
|
:allowed_access_control_tags,
|
19635
20046
|
:tag_restricted_resources,
|
19636
|
-
:applications
|
20047
|
+
:applications,
|
20048
|
+
:hierarchy_restricted_resources,
|
20049
|
+
:allowed_access_control_hierarchy_group_id)
|
19637
20050
|
SENSITIVE = []
|
19638
20051
|
include Aws::Structure
|
19639
20052
|
end
|
@@ -20322,6 +20735,13 @@ module Aws::Connect
|
|
20322
20735
|
|
20323
20736
|
# Contains information about the identity of a user.
|
20324
20737
|
#
|
20738
|
+
# <note markdown="1"> For Amazon Connect instances that are created with the
|
20739
|
+
# `EXISTING_DIRECTORY` identity management type, `FirstName`,
|
20740
|
+
# `LastName`, and `Email` cannot be updated from within Amazon Connect
|
20741
|
+
# because they are managed by the directory.
|
20742
|
+
#
|
20743
|
+
# </note>
|
20744
|
+
#
|
20325
20745
|
# @!attribute [rw] first_name
|
20326
20746
|
# The first name. This is required if you are using Amazon Connect or
|
20327
20747
|
# SAML for identity management.
|
@@ -20408,7 +20828,12 @@ module Aws::Connect
|
|
20408
20828
|
# @return [Boolean]
|
20409
20829
|
#
|
20410
20830
|
# @!attribute [rw] after_contact_work_time_limit
|
20411
|
-
# The After Call Work (ACW) timeout setting, in seconds.
|
20831
|
+
# The After Call Work (ACW) timeout setting, in seconds. This
|
20832
|
+
# parameter has a minimum value of 0 and a maximum value of 2,000,000
|
20833
|
+
# seconds (24 days). Enter 0 if you don't want to allocate a specific
|
20834
|
+
# amount of ACW time. It essentially means an indefinite amount of
|
20835
|
+
# time. When the conversation ends, ACW starts; the agent must choose
|
20836
|
+
# Close contact to end ACW.
|
20412
20837
|
#
|
20413
20838
|
# <note markdown="1"> When returned by a `SearchUsers` call, `AfterContactWorkTimeLimit`
|
20414
20839
|
# is returned in milliseconds.
|
@@ -20538,9 +20963,9 @@ module Aws::Connect
|
|
20538
20963
|
# A leaf node condition which can be used to specify a string
|
20539
20964
|
# condition.
|
20540
20965
|
#
|
20541
|
-
# The currently supported values for `FieldName` are `
|
20542
|
-
# `
|
20543
|
-
# `
|
20966
|
+
# The currently supported values for `FieldName` are `Username`,
|
20967
|
+
# `FirstName`, `LastName`, `RoutingProfileId`, `SecurityProfileId`,
|
20968
|
+
# `ResourceId`.
|
20544
20969
|
# @return [Types::StringCondition]
|
20545
20970
|
#
|
20546
20971
|
# @!attribute [rw] hierarchy_group_condition
|
@@ -20573,10 +20998,32 @@ module Aws::Connect
|
|
20573
20998
|
# operator.
|
20574
20999
|
# @return [Types::ControlPlaneTagFilter]
|
20575
21000
|
#
|
21001
|
+
# @!attribute [rw] user_attribute_filter
|
21002
|
+
# An object that can be used to specify Tag conditions or Hierarchy
|
21003
|
+
# Group conditions inside the SearchFilter.
|
21004
|
+
#
|
21005
|
+
# This accepts an `OR` of `AND` (List of List) input where:
|
21006
|
+
#
|
21007
|
+
# * The top level list specifies conditions that need to be applied
|
21008
|
+
# with `OR` operator.
|
21009
|
+
#
|
21010
|
+
# * The inner list specifies conditions that need to be applied with
|
21011
|
+
# `AND` operator.
|
21012
|
+
#
|
21013
|
+
# <note markdown="1"> Only one field can be populated. This object can’t be used along
|
21014
|
+
# with TagFilter. Request can either contain TagFilter or
|
21015
|
+
# UserAttributeFilter if SearchFilter is specified, combination of
|
21016
|
+
# both is not supported and such request will throw
|
21017
|
+
# AccessDeniedException.
|
21018
|
+
#
|
21019
|
+
# </note>
|
21020
|
+
# @return [Types::ControlPlaneUserAttributeFilter]
|
21021
|
+
#
|
20576
21022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserSearchFilter AWS API Documentation
|
20577
21023
|
#
|
20578
21024
|
class UserSearchFilter < Struct.new(
|
20579
|
-
:tag_filter
|
21025
|
+
:tag_filter,
|
21026
|
+
:user_attribute_filter)
|
20580
21027
|
SENSITIVE = []
|
20581
21028
|
include Aws::Structure
|
20582
21029
|
end
|