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
@@ -2726,6 +2726,15 @@ module Aws::Connect
|
|
2726
2726
|
# A list of third-party applications that the security profile will give
|
2727
2727
|
# access to.
|
2728
2728
|
#
|
2729
|
+
# @option params [Array<String>] :hierarchy_restricted_resources
|
2730
|
+
# The list of resources that a security profile applies hierarchy
|
2731
|
+
# restrictions to in Amazon Connect. Following are acceptable
|
2732
|
+
# ResourceNames: `User`.
|
2733
|
+
#
|
2734
|
+
# @option params [String] :allowed_access_control_hierarchy_group_id
|
2735
|
+
# The identifier of the hierarchy group that a security profile uses to
|
2736
|
+
# restrict access to resources in Amazon Connect.
|
2737
|
+
#
|
2729
2738
|
# @return [Types::CreateSecurityProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2730
2739
|
#
|
2731
2740
|
# * {Types::CreateSecurityProfileResponse#security_profile_id #security_profile_id} => String
|
@@ -2751,6 +2760,8 @@ module Aws::Connect
|
|
2751
2760
|
# application_permissions: ["Permission"],
|
2752
2761
|
# },
|
2753
2762
|
# ],
|
2763
|
+
# hierarchy_restricted_resources: ["HierarchyRestrictedResourceName"],
|
2764
|
+
# allowed_access_control_hierarchy_group_id: "HierarchyGroupId",
|
2754
2765
|
# })
|
2755
2766
|
#
|
2756
2767
|
# @example Response structure
|
@@ -3043,6 +3054,14 @@ module Aws::Connect
|
|
3043
3054
|
# you are using SAML for identity management, the user name can include
|
3044
3055
|
# up to 64 characters from \[a-zA-Z0-9\_-.\\@\]+.
|
3045
3056
|
#
|
3057
|
+
# Username can include @ only if used in an email format. For example:
|
3058
|
+
#
|
3059
|
+
# * Correct: testuser
|
3060
|
+
#
|
3061
|
+
# * Correct: testuser@example.com
|
3062
|
+
#
|
3063
|
+
# * Incorrect: testuser@example
|
3064
|
+
#
|
3046
3065
|
# @option params [String] :password
|
3047
3066
|
# The password for the user account. A password is required if you are
|
3048
3067
|
# using Amazon Connect for identity management. Otherwise, it is an
|
@@ -3813,6 +3832,24 @@ module Aws::Connect
|
|
3813
3832
|
|
3814
3833
|
# Deletes a quick connect.
|
3815
3834
|
#
|
3835
|
+
# After calling [DeleteUser][1], it's important to call
|
3836
|
+
# `DeleteQuickConnect` to delete any records related to the deleted
|
3837
|
+
# users. This will help you:
|
3838
|
+
#
|
3839
|
+
# * Avoid dangling resources that impact your service quotas.
|
3840
|
+
#
|
3841
|
+
# * Remove deleted users so they don't appear to agents as transfer
|
3842
|
+
# options.
|
3843
|
+
#
|
3844
|
+
# * Avoid the disruption of other Amazon Connect processes, such as
|
3845
|
+
# instance replication and syncing if you're using [Amazon Connect
|
3846
|
+
# Global Resiliency][2].
|
3847
|
+
#
|
3848
|
+
#
|
3849
|
+
#
|
3850
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteUser.html
|
3851
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-connect-global-resiliency.html
|
3852
|
+
#
|
3816
3853
|
# @option params [required, String] :instance_id
|
3817
3854
|
# The identifier of the Amazon Connect instance. You can [find the
|
3818
3855
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -4041,9 +4078,23 @@ module Aws::Connect
|
|
4041
4078
|
# account is deleted, see [Delete Users from Your Amazon Connect
|
4042
4079
|
# Instance][1] in the *Amazon Connect Administrator Guide*.
|
4043
4080
|
#
|
4081
|
+
# After calling DeleteUser, call [DeleteQuickConnect][2] to delete any
|
4082
|
+
# records related to the deleted users. This will help you:
|
4083
|
+
#
|
4084
|
+
# * Avoid dangling resources that impact your service quotas.
|
4085
|
+
#
|
4086
|
+
# * Remove deleted users so they don't appear to agents as transfer
|
4087
|
+
# options.
|
4088
|
+
#
|
4089
|
+
# * Avoid the disruption of other Amazon Connect processes, such as
|
4090
|
+
# instance replication and syncing if you're using [Amazon Connect
|
4091
|
+
# Global Resiliency][3].
|
4092
|
+
#
|
4044
4093
|
#
|
4045
4094
|
#
|
4046
4095
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/delete-users.html
|
4096
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteQuickConnect.html
|
4097
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-connect-global-resiliency.html
|
4047
4098
|
#
|
4048
4099
|
# @option params [required, String] :instance_id
|
4049
4100
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -5221,6 +5272,9 @@ module Aws::Connect
|
|
5221
5272
|
# resp.security_profile.tag_restricted_resources[0] #=> String
|
5222
5273
|
# resp.security_profile.last_modified_time #=> Time
|
5223
5274
|
# resp.security_profile.last_modified_region #=> String
|
5275
|
+
# resp.security_profile.hierarchy_restricted_resources #=> Array
|
5276
|
+
# resp.security_profile.hierarchy_restricted_resources[0] #=> String
|
5277
|
+
# resp.security_profile.allowed_access_control_hierarchy_group_id #=> String
|
5224
5278
|
#
|
5225
5279
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeSecurityProfile AWS API Documentation
|
5226
5280
|
#
|
@@ -7046,7 +7100,8 @@ module Aws::Connect
|
|
7046
7100
|
# `AGENT` \| `CHANNEL` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
|
7047
7101
|
# `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
|
7048
7102
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
7049
|
-
# `FEATURE` \| `
|
7103
|
+
# `FEATURE` \| `CASE_TEMPLATE_ARN` \| `CASE_STATUS` \|
|
7104
|
+
# `contact/segmentAttributes/connect:Subtype` \|
|
7050
7105
|
# `ROUTING_STEP_EXPRESSION`
|
7051
7106
|
#
|
7052
7107
|
# * **Filter values**: A maximum of 100 filter values are supported in a
|
@@ -7084,7 +7139,8 @@ module Aws::Connect
|
|
7084
7139
|
# Valid grouping keys: `QUEUE` \| `ROUTING_PROFILE` \| `AGENT` \|
|
7085
7140
|
# `CHANNEL` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
|
7086
7141
|
# `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
|
7087
|
-
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE
|
7142
|
+
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
|
7143
|
+
# `CASE_TEMPLATE_ARN` \| `CASE_STATUS` \|
|
7088
7144
|
# `contact/segmentAttributes/connect:Subtype` \|
|
7089
7145
|
# `ROUTING_STEP_EXPRESSION`
|
7090
7146
|
#
|
@@ -7101,16 +7157,20 @@ module Aws::Connect
|
|
7101
7157
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7102
7158
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
|
7103
7159
|
#
|
7160
|
+
# UI name: [Abandonment rate][2]
|
7161
|
+
#
|
7104
7162
|
# AGENT\_ADHERENT\_TIME
|
7105
7163
|
#
|
7106
7164
|
# : This metric is available only in Amazon Web Services Regions where
|
7107
|
-
# [Forecasting, capacity planning, and scheduling][
|
7165
|
+
# [Forecasting, capacity planning, and scheduling][3] is available.
|
7108
7166
|
#
|
7109
7167
|
# Unit: Seconds
|
7110
7168
|
#
|
7111
7169
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7112
7170
|
# Agent Hierarchy
|
7113
7171
|
#
|
7172
|
+
# UI name: [Adherent time][4]
|
7173
|
+
#
|
7114
7174
|
# AGENT\_ANSWER\_RATE
|
7115
7175
|
#
|
7116
7176
|
# : Unit: Percent
|
@@ -7118,6 +7178,8 @@ module Aws::Connect
|
|
7118
7178
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7119
7179
|
# Agent Hierarchy
|
7120
7180
|
#
|
7181
|
+
# UI name: [Agent answer rate][5]
|
7182
|
+
#
|
7121
7183
|
# AGENT\_NON\_ADHERENT\_TIME
|
7122
7184
|
#
|
7123
7185
|
# : Unit: Seconds
|
@@ -7125,6 +7187,8 @@ module Aws::Connect
|
|
7125
7187
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7126
7188
|
# Agent Hierarchy
|
7127
7189
|
#
|
7190
|
+
# UI name: [Non-adherent time][6]
|
7191
|
+
#
|
7128
7192
|
# AGENT\_NON\_RESPONSE
|
7129
7193
|
#
|
7130
7194
|
# : Unit: Count
|
@@ -7132,6 +7196,8 @@ module Aws::Connect
|
|
7132
7196
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7133
7197
|
# Agent Hierarchy
|
7134
7198
|
#
|
7199
|
+
# UI name: [Agent non-response][7]
|
7200
|
+
#
|
7135
7201
|
# AGENT\_NON\_RESPONSE\_WITHOUT\_CUSTOMER\_ABANDONS
|
7136
7202
|
#
|
7137
7203
|
# : Unit: Count
|
@@ -7142,32 +7208,40 @@ module Aws::Connect
|
|
7142
7208
|
# Data for this metric is available starting from October 1, 2023
|
7143
7209
|
# 0:00:00 GMT.
|
7144
7210
|
#
|
7211
|
+
# UI name: [Agent non-response without customer abandons][8]
|
7212
|
+
#
|
7145
7213
|
# AGENT\_OCCUPANCY
|
7146
7214
|
#
|
7147
7215
|
# : Unit: Percentage
|
7148
7216
|
#
|
7149
7217
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
7150
7218
|
#
|
7219
|
+
# UI name: [Occupancy][9]
|
7220
|
+
#
|
7151
7221
|
# AGENT\_SCHEDULE\_ADHERENCE
|
7152
7222
|
#
|
7153
7223
|
# : This metric is available only in Amazon Web Services Regions where
|
7154
|
-
# [Forecasting, capacity planning, and scheduling][
|
7224
|
+
# [Forecasting, capacity planning, and scheduling][3] is available.
|
7155
7225
|
#
|
7156
7226
|
# Unit: Percent
|
7157
7227
|
#
|
7158
7228
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7159
7229
|
# Agent Hierarchy
|
7160
7230
|
#
|
7231
|
+
# UI name: [Adherence][10]
|
7232
|
+
#
|
7161
7233
|
# AGENT\_SCHEDULED\_TIME
|
7162
7234
|
#
|
7163
7235
|
# : This metric is available only in Amazon Web Services Regions where
|
7164
|
-
# [Forecasting, capacity planning, and scheduling][
|
7236
|
+
# [Forecasting, capacity planning, and scheduling][3] is available.
|
7165
7237
|
#
|
7166
7238
|
# Unit: Seconds
|
7167
7239
|
#
|
7168
7240
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7169
7241
|
# Agent Hierarchy
|
7170
7242
|
#
|
7243
|
+
# UI name: [Scheduled time][11]
|
7244
|
+
#
|
7171
7245
|
# AVG\_ABANDON\_TIME
|
7172
7246
|
#
|
7173
7247
|
# : Unit: Seconds
|
@@ -7175,6 +7249,8 @@ module Aws::Connect
|
|
7175
7249
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7176
7250
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
|
7177
7251
|
#
|
7252
|
+
# UI name: [Average queue abandon time][12]
|
7253
|
+
#
|
7178
7254
|
# AVG\_ACTIVE\_TIME
|
7179
7255
|
#
|
7180
7256
|
# : Unit: Seconds
|
@@ -7182,6 +7258,8 @@ module Aws::Connect
|
|
7182
7258
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7183
7259
|
# Agent Hierarchy
|
7184
7260
|
#
|
7261
|
+
# UI name: [Average active time][13]
|
7262
|
+
#
|
7185
7263
|
# AVG\_AFTER\_CONTACT\_WORK\_TIME
|
7186
7264
|
#
|
7187
7265
|
# : Unit: Seconds
|
@@ -7191,6 +7269,8 @@ module Aws::Connect
|
|
7191
7269
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7192
7270
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
|
7193
7271
|
#
|
7272
|
+
# UI name: [Average after contact work time][14]
|
7273
|
+
#
|
7194
7274
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7195
7275
|
#
|
7196
7276
|
# </note>
|
@@ -7206,6 +7286,8 @@ module Aws::Connect
|
|
7206
7286
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7207
7287
|
# Agent Hierarchy
|
7208
7288
|
#
|
7289
|
+
# UI name: [Average agent API connecting time][15]
|
7290
|
+
#
|
7209
7291
|
# <note markdown="1"> The `Negate` key in Metric Level Filters is not applicable for this
|
7210
7292
|
# metric.
|
7211
7293
|
#
|
@@ -7218,6 +7300,28 @@ module Aws::Connect
|
|
7218
7300
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7219
7301
|
# Agent Hierarchy
|
7220
7302
|
#
|
7303
|
+
# UI name: [Average agent pause time][16]
|
7304
|
+
#
|
7305
|
+
# AVG\_CASE\_RELATED\_CONTACTS
|
7306
|
+
#
|
7307
|
+
# : Unit: Count
|
7308
|
+
#
|
7309
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
7310
|
+
#
|
7311
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
7312
|
+
#
|
7313
|
+
# UI name: [Average contacts per case][17]
|
7314
|
+
#
|
7315
|
+
# AVG\_CASE\_RESOLUTION\_TIME
|
7316
|
+
#
|
7317
|
+
# : Unit: Seconds
|
7318
|
+
#
|
7319
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
7320
|
+
#
|
7321
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
7322
|
+
#
|
7323
|
+
# UI name: [Average case resolution time][18]
|
7324
|
+
#
|
7221
7325
|
# AVG\_CONTACT\_DURATION
|
7222
7326
|
#
|
7223
7327
|
# : Unit: Seconds
|
@@ -7225,6 +7329,8 @@ module Aws::Connect
|
|
7225
7329
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7226
7330
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
|
7227
7331
|
#
|
7332
|
+
# UI name: [Average contact duration][19]
|
7333
|
+
#
|
7228
7334
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7229
7335
|
#
|
7230
7336
|
# </note>
|
@@ -7236,6 +7342,8 @@ module Aws::Connect
|
|
7236
7342
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7237
7343
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
|
7238
7344
|
#
|
7345
|
+
# UI name: [Average conversation duration][20]
|
7346
|
+
#
|
7239
7347
|
# AVG\_GREETING\_TIME\_AGENT
|
7240
7348
|
#
|
7241
7349
|
# : This metric is available only for contacts analyzed by Contact Lens
|
@@ -7246,6 +7354,8 @@ module Aws::Connect
|
|
7246
7354
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7247
7355
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7248
7356
|
#
|
7357
|
+
# UI name: [Average greeting time agent ][21]
|
7358
|
+
#
|
7249
7359
|
# AVG\_HANDLE\_TIME
|
7250
7360
|
#
|
7251
7361
|
# : Unit: Seconds
|
@@ -7254,6 +7364,8 @@ module Aws::Connect
|
|
7254
7364
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
7255
7365
|
# RoutingStepExpression
|
7256
7366
|
#
|
7367
|
+
# UI name: [Average handle time][22]
|
7368
|
+
#
|
7257
7369
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7258
7370
|
#
|
7259
7371
|
# </note>
|
@@ -7265,6 +7377,8 @@ module Aws::Connect
|
|
7265
7377
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7266
7378
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
|
7267
7379
|
#
|
7380
|
+
# UI name: [Average customer hold time][23]
|
7381
|
+
#
|
7268
7382
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7269
7383
|
#
|
7270
7384
|
# </note>
|
@@ -7276,6 +7390,8 @@ module Aws::Connect
|
|
7276
7390
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7277
7391
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7278
7392
|
#
|
7393
|
+
# UI name: [Average customer hold time all contacts][24]
|
7394
|
+
#
|
7279
7395
|
# AVG\_HOLDS
|
7280
7396
|
#
|
7281
7397
|
# : Unit: Count
|
@@ -7283,6 +7399,8 @@ module Aws::Connect
|
|
7283
7399
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7284
7400
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
|
7285
7401
|
#
|
7402
|
+
# UI name: [Average holds][25]
|
7403
|
+
#
|
7286
7404
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7287
7405
|
#
|
7288
7406
|
# </note>
|
@@ -7294,6 +7412,8 @@ module Aws::Connect
|
|
7294
7412
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7295
7413
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7296
7414
|
#
|
7415
|
+
# UI name: [Average agent interaction and customer hold time][26]
|
7416
|
+
#
|
7297
7417
|
# AVG\_INTERACTION\_TIME
|
7298
7418
|
#
|
7299
7419
|
# : Unit: Seconds
|
@@ -7303,6 +7423,8 @@ module Aws::Connect
|
|
7303
7423
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7304
7424
|
# Feature, contact/segmentAttributes/connect:Subtype
|
7305
7425
|
#
|
7426
|
+
# UI name: [Average agent interaction time][27]
|
7427
|
+
#
|
7306
7428
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7307
7429
|
#
|
7308
7430
|
# </note>
|
@@ -7317,6 +7439,8 @@ module Aws::Connect
|
|
7317
7439
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7318
7440
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7319
7441
|
#
|
7442
|
+
# UI name: [Average interruptions agent ][28]
|
7443
|
+
#
|
7320
7444
|
# AVG\_INTERRUPTION\_TIME\_AGENT
|
7321
7445
|
#
|
7322
7446
|
# : This metric is available only for contacts analyzed by Contact Lens
|
@@ -7327,6 +7451,8 @@ module Aws::Connect
|
|
7327
7451
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7328
7452
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7329
7453
|
#
|
7454
|
+
# UI name: [Average interruption time agent][29]
|
7455
|
+
#
|
7330
7456
|
# AVG\_NON\_TALK\_TIME
|
7331
7457
|
#
|
7332
7458
|
# : This metric is available only for contacts analyzed by Contact Lens
|
@@ -7337,6 +7463,8 @@ module Aws::Connect
|
|
7337
7463
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7338
7464
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7339
7465
|
#
|
7466
|
+
# UI name: [Average non-talk time][30]
|
7467
|
+
#
|
7340
7468
|
# AVG\_QUEUE\_ANSWER\_TIME
|
7341
7469
|
#
|
7342
7470
|
# : Unit: Seconds
|
@@ -7344,6 +7472,8 @@ module Aws::Connect
|
|
7344
7472
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7345
7473
|
# Feature, contact/segmentAttributes/connect:Subtype
|
7346
7474
|
#
|
7475
|
+
# UI name: [Average queue answer time][31]
|
7476
|
+
#
|
7347
7477
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7348
7478
|
#
|
7349
7479
|
# </note>
|
@@ -7355,6 +7485,8 @@ module Aws::Connect
|
|
7355
7485
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7356
7486
|
# contact/segmentAttributes/connect:Subtype
|
7357
7487
|
#
|
7488
|
+
# UI name: [Average resolution time][32]
|
7489
|
+
#
|
7358
7490
|
# AVG\_TALK\_TIME
|
7359
7491
|
#
|
7360
7492
|
# : This metric is available only for contacts analyzed by Contact Lens
|
@@ -7365,6 +7497,8 @@ module Aws::Connect
|
|
7365
7497
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7366
7498
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7367
7499
|
#
|
7500
|
+
# UI name: [Average talk time][33]
|
7501
|
+
#
|
7368
7502
|
# AVG\_TALK\_TIME\_AGENT
|
7369
7503
|
#
|
7370
7504
|
# : This metric is available only for contacts analyzed by Contact Lens
|
@@ -7375,6 +7509,8 @@ module Aws::Connect
|
|
7375
7509
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7376
7510
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7377
7511
|
#
|
7512
|
+
# UI name: [Average talk time agent][34]
|
7513
|
+
#
|
7378
7514
|
# AVG\_TALK\_TIME\_CUSTOMER
|
7379
7515
|
#
|
7380
7516
|
# : This metric is available only for contacts analyzed by Contact Lens
|
@@ -7385,6 +7521,18 @@ module Aws::Connect
|
|
7385
7521
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7386
7522
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7387
7523
|
#
|
7524
|
+
# UI name: [Average talk time customer][35]
|
7525
|
+
#
|
7526
|
+
# CASES\_CREATED
|
7527
|
+
#
|
7528
|
+
# : Unit: Count
|
7529
|
+
#
|
7530
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
7531
|
+
#
|
7532
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
7533
|
+
#
|
7534
|
+
# UI name: [Cases created][36]
|
7535
|
+
#
|
7388
7536
|
# CONTACTS\_ABANDONED
|
7389
7537
|
#
|
7390
7538
|
# : Unit: Count
|
@@ -7393,6 +7541,8 @@ module Aws::Connect
|
|
7393
7541
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
7394
7542
|
# RoutingStepExpression
|
7395
7543
|
#
|
7544
|
+
# UI name: [Contact abandoned][37]
|
7545
|
+
#
|
7396
7546
|
# CONTACTS\_CREATED
|
7397
7547
|
#
|
7398
7548
|
# : Unit: Count
|
@@ -7402,6 +7552,8 @@ module Aws::Connect
|
|
7402
7552
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7403
7553
|
# Feature, contact/segmentAttributes/connect:Subtype
|
7404
7554
|
#
|
7555
|
+
# UI name: [Contacts created][38]
|
7556
|
+
#
|
7405
7557
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7406
7558
|
#
|
7407
7559
|
# </note>
|
@@ -7416,6 +7568,8 @@ module Aws::Connect
|
|
7416
7568
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
|
7417
7569
|
# RoutingStepExpression
|
7418
7570
|
#
|
7571
|
+
# UI name: [API contacts handled][39]
|
7572
|
+
#
|
7419
7573
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7420
7574
|
#
|
7421
7575
|
# </note>
|
@@ -7429,6 +7583,8 @@ module Aws::Connect
|
|
7429
7583
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
7430
7584
|
# contact/segmentAttributes/connect:Subtype
|
7431
7585
|
#
|
7586
|
+
# UI name: [Contacts handled by Connected to agent][40]
|
7587
|
+
#
|
7432
7588
|
# CONTACTS\_HOLD\_ABANDONS
|
7433
7589
|
#
|
7434
7590
|
# : Unit: Count
|
@@ -7436,6 +7592,8 @@ module Aws::Connect
|
|
7436
7592
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7437
7593
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7438
7594
|
#
|
7595
|
+
# UI name: [Contacts hold disconnect][40]
|
7596
|
+
#
|
7439
7597
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
7440
7598
|
#
|
7441
7599
|
# : Unit: Count
|
@@ -7443,6 +7601,8 @@ module Aws::Connect
|
|
7443
7601
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7444
7602
|
# Agent Hierarchy
|
7445
7603
|
#
|
7604
|
+
# UI name: [Contacts hold agent disconnect][41]
|
7605
|
+
#
|
7446
7606
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
7447
7607
|
#
|
7448
7608
|
# : Unit: Count
|
@@ -7450,6 +7610,8 @@ module Aws::Connect
|
|
7450
7610
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7451
7611
|
# Agent Hierarchy
|
7452
7612
|
#
|
7613
|
+
# UI name: [Contacts hold customer disconnect][42]
|
7614
|
+
#
|
7453
7615
|
# CONTACTS\_PUT\_ON\_HOLD
|
7454
7616
|
#
|
7455
7617
|
# : Unit: Count
|
@@ -7457,6 +7619,8 @@ module Aws::Connect
|
|
7457
7619
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7458
7620
|
# Agent Hierarchy
|
7459
7621
|
#
|
7622
|
+
# UI name: [Contacts put on hold][42]
|
7623
|
+
#
|
7460
7624
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
7461
7625
|
#
|
7462
7626
|
# : Unit: Count
|
@@ -7464,6 +7628,8 @@ module Aws::Connect
|
|
7464
7628
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7465
7629
|
# Agent Hierarchy
|
7466
7630
|
#
|
7631
|
+
# UI name: [Contacts transferred out external][43]
|
7632
|
+
#
|
7467
7633
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
7468
7634
|
#
|
7469
7635
|
# : Unit: Percent
|
@@ -7471,6 +7637,8 @@ module Aws::Connect
|
|
7471
7637
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7472
7638
|
# Agent Hierarchy
|
7473
7639
|
#
|
7640
|
+
# UI name: [Contacts transferred out internal][44]
|
7641
|
+
#
|
7474
7642
|
# CONTACTS\_QUEUED
|
7475
7643
|
#
|
7476
7644
|
# : Unit: Count
|
@@ -7478,6 +7646,8 @@ module Aws::Connect
|
|
7478
7646
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7479
7647
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7480
7648
|
#
|
7649
|
+
# UI name: [Contacts queued][45]
|
7650
|
+
#
|
7481
7651
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
7482
7652
|
#
|
7483
7653
|
# : Unit: Count
|
@@ -7485,6 +7655,8 @@ module Aws::Connect
|
|
7485
7655
|
# Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
|
7486
7656
|
# contact/segmentAttributes/connect:Subtype
|
7487
7657
|
#
|
7658
|
+
# UI name: [Contacts queued by Enqueue][46]
|
7659
|
+
#
|
7488
7660
|
# CONTACTS\_RESOLVED\_IN\_X
|
7489
7661
|
#
|
7490
7662
|
# : Unit: Count
|
@@ -7496,6 +7668,8 @@ module Aws::Connect
|
|
7496
7668
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
7497
7669
|
# `LT` (for "Less than").
|
7498
7670
|
#
|
7671
|
+
# UI name: [Contacts resolved in X][47]
|
7672
|
+
#
|
7499
7673
|
# CONTACTS\_TRANSFERRED\_OUT
|
7500
7674
|
#
|
7501
7675
|
# : Unit: Count
|
@@ -7503,6 +7677,8 @@ module Aws::Connect
|
|
7503
7677
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7504
7678
|
# Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
|
7505
7679
|
#
|
7680
|
+
# UI name: [Contacts transferred out][48]
|
7681
|
+
#
|
7506
7682
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
7507
7683
|
#
|
7508
7684
|
# </note>
|
@@ -7514,6 +7690,8 @@ module Aws::Connect
|
|
7514
7690
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7515
7691
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7516
7692
|
#
|
7693
|
+
# UI name: [Contacts transferred out by agent][49]
|
7694
|
+
#
|
7517
7695
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
7518
7696
|
#
|
7519
7697
|
# : Unit: Count
|
@@ -7521,6 +7699,18 @@ module Aws::Connect
|
|
7521
7699
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7522
7700
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7523
7701
|
#
|
7702
|
+
# UI name: [Contacts transferred out queue][49]
|
7703
|
+
#
|
7704
|
+
# CURRENT\_CASES
|
7705
|
+
#
|
7706
|
+
# : Unit: Count
|
7707
|
+
#
|
7708
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
7709
|
+
#
|
7710
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
7711
|
+
#
|
7712
|
+
# UI name: [Current cases][50]
|
7713
|
+
#
|
7524
7714
|
# MAX\_QUEUED\_TIME
|
7525
7715
|
#
|
7526
7716
|
# : Unit: Seconds
|
@@ -7528,18 +7718,34 @@ module Aws::Connect
|
|
7528
7718
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7529
7719
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7530
7720
|
#
|
7721
|
+
# UI name: [Maximum queued time][51]
|
7722
|
+
#
|
7723
|
+
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
7724
|
+
#
|
7725
|
+
# : Unit: Percent
|
7726
|
+
#
|
7727
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
7728
|
+
#
|
7729
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
7730
|
+
#
|
7731
|
+
# UI name: [Cases resolved on first contact][52]
|
7732
|
+
#
|
7531
7733
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
7532
7734
|
#
|
7533
7735
|
# : Unit: Percent
|
7534
7736
|
#
|
7535
7737
|
# Valid groupings and filters: Queue, RoutingStepExpression
|
7536
7738
|
#
|
7739
|
+
# UI name: Not available
|
7740
|
+
#
|
7537
7741
|
# PERCENT\_CONTACTS\_STEP\_JOINED
|
7538
7742
|
#
|
7539
7743
|
# : Unit: Percent
|
7540
7744
|
#
|
7541
7745
|
# Valid groupings and filters: Queue, RoutingStepExpression
|
7542
7746
|
#
|
7747
|
+
# UI name: Not available
|
7748
|
+
#
|
7543
7749
|
# PERCENT\_NON\_TALK\_TIME
|
7544
7750
|
#
|
7545
7751
|
# : This metric is available only for contacts analyzed by Contact Lens
|
@@ -7550,6 +7756,8 @@ module Aws::Connect
|
|
7550
7756
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7551
7757
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7552
7758
|
#
|
7759
|
+
# UI name: [Non-talk time percent][53]
|
7760
|
+
#
|
7553
7761
|
# PERCENT\_TALK\_TIME
|
7554
7762
|
#
|
7555
7763
|
# : This metric is available only for contacts analyzed by Contact Lens
|
@@ -7560,6 +7768,8 @@ module Aws::Connect
|
|
7560
7768
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7561
7769
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7562
7770
|
#
|
7771
|
+
# UI name: [Talk time percent][54]
|
7772
|
+
#
|
7563
7773
|
# PERCENT\_TALK\_TIME\_AGENT
|
7564
7774
|
#
|
7565
7775
|
# : This metric is available only for contacts analyzed by Contact Lens
|
@@ -7570,6 +7780,8 @@ module Aws::Connect
|
|
7570
7780
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7571
7781
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7572
7782
|
#
|
7783
|
+
# UI name: [Talk time agent percent][55]
|
7784
|
+
#
|
7573
7785
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
7574
7786
|
#
|
7575
7787
|
# : This metric is available only for contacts analyzed by Contact Lens
|
@@ -7580,6 +7792,28 @@ module Aws::Connect
|
|
7580
7792
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7581
7793
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7582
7794
|
#
|
7795
|
+
# UI name: [Talk time customer percent][56]
|
7796
|
+
#
|
7797
|
+
# REOPENED\_CASE\_ACTIONS
|
7798
|
+
#
|
7799
|
+
# : Unit: Count
|
7800
|
+
#
|
7801
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
7802
|
+
#
|
7803
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
7804
|
+
#
|
7805
|
+
# UI name: [Cases reopened][57]
|
7806
|
+
#
|
7807
|
+
# RESOLVED\_CASE\_ACTIONS
|
7808
|
+
#
|
7809
|
+
# : Unit: Count
|
7810
|
+
#
|
7811
|
+
# Required filter key: CASE\_TEMPLATE\_ARN
|
7812
|
+
#
|
7813
|
+
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
7814
|
+
#
|
7815
|
+
# UI name: [Cases resolved][58]
|
7816
|
+
#
|
7583
7817
|
# SERVICE\_LEVEL
|
7584
7818
|
#
|
7585
7819
|
# : You can include up to 20 SERVICE\_LEVEL metrics in a request.
|
@@ -7592,12 +7826,16 @@ module Aws::Connect
|
|
7592
7826
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
7593
7827
|
# `LT` (for "Less than").
|
7594
7828
|
#
|
7829
|
+
# UI name: [Service level X][59]
|
7830
|
+
#
|
7595
7831
|
# STEP\_CONTACTS\_QUEUED
|
7596
7832
|
#
|
7597
7833
|
# : Unit: Count
|
7598
7834
|
#
|
7599
7835
|
# Valid groupings and filters: Queue, RoutingStepExpression
|
7600
7836
|
#
|
7837
|
+
# UI name: Not available
|
7838
|
+
#
|
7601
7839
|
# SUM\_AFTER\_CONTACT\_WORK\_TIME
|
7602
7840
|
#
|
7603
7841
|
# : Unit: Seconds
|
@@ -7605,6 +7843,8 @@ module Aws::Connect
|
|
7605
7843
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7606
7844
|
# Agent Hierarchy
|
7607
7845
|
#
|
7846
|
+
# UI name: [After contact work time][60]
|
7847
|
+
#
|
7608
7848
|
# SUM\_CONNECTING\_TIME\_AGENT
|
7609
7849
|
#
|
7610
7850
|
# : Unit: Seconds
|
@@ -7616,6 +7856,8 @@ module Aws::Connect
|
|
7616
7856
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7617
7857
|
# Agent Hierarchy
|
7618
7858
|
#
|
7859
|
+
# UI name: [Agent API connecting time][61]
|
7860
|
+
#
|
7619
7861
|
# <note markdown="1"> The `Negate` key in Metric Level Filters is not applicable for this
|
7620
7862
|
# metric.
|
7621
7863
|
#
|
@@ -7628,6 +7870,8 @@ module Aws::Connect
|
|
7628
7870
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7629
7871
|
# Agent Hierarchy
|
7630
7872
|
#
|
7873
|
+
# UI name: [Contact flow time][62]
|
7874
|
+
#
|
7631
7875
|
# SUM\_CONTACT\_TIME\_AGENT
|
7632
7876
|
#
|
7633
7877
|
# : Unit: Seconds
|
@@ -7635,6 +7879,8 @@ module Aws::Connect
|
|
7635
7879
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7636
7880
|
# Agent Hierarchy
|
7637
7881
|
#
|
7882
|
+
# UI name: [Agent on contact time][63]
|
7883
|
+
#
|
7638
7884
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
7639
7885
|
#
|
7640
7886
|
# : Unit: Count
|
@@ -7646,6 +7892,8 @@ module Aws::Connect
|
|
7646
7892
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
7647
7893
|
# `LT` (for "Less than").
|
7648
7894
|
#
|
7895
|
+
# UI name: [Contacts answered in X seconds][64]
|
7896
|
+
#
|
7649
7897
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
7650
7898
|
#
|
7651
7899
|
# : Unit: Count
|
@@ -7657,6 +7905,8 @@ module Aws::Connect
|
|
7657
7905
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
7658
7906
|
# `LT` (for "Less than").
|
7659
7907
|
#
|
7908
|
+
# UI name: [Contacts abandoned in X seconds][65]
|
7909
|
+
#
|
7660
7910
|
# SUM\_CONTACTS\_DISCONNECTED
|
7661
7911
|
#
|
7662
7912
|
# : Valid metric filter key: `DISCONNECT_REASON`
|
@@ -7666,6 +7916,8 @@ module Aws::Connect
|
|
7666
7916
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7667
7917
|
# Agent Hierarchy, contact/segmentAttributes/connect:Subtype
|
7668
7918
|
#
|
7919
|
+
# UI name: [Contact disconnected][66]
|
7920
|
+
#
|
7669
7921
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
7670
7922
|
#
|
7671
7923
|
# : Unit: Seconds
|
@@ -7673,6 +7925,8 @@ module Aws::Connect
|
|
7673
7925
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7674
7926
|
# Agent Hierarchy
|
7675
7927
|
#
|
7928
|
+
# UI name: [Error status time][67]
|
7929
|
+
#
|
7676
7930
|
# SUM\_HANDLE\_TIME
|
7677
7931
|
#
|
7678
7932
|
# : Unit: Seconds
|
@@ -7680,6 +7934,8 @@ module Aws::Connect
|
|
7680
7934
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7681
7935
|
# Agent Hierarchy
|
7682
7936
|
#
|
7937
|
+
# UI name: [Contact handle time][68]
|
7938
|
+
#
|
7683
7939
|
# SUM\_HOLD\_TIME
|
7684
7940
|
#
|
7685
7941
|
# : Unit: Count
|
@@ -7687,12 +7943,16 @@ module Aws::Connect
|
|
7687
7943
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7688
7944
|
# Agent Hierarchy
|
7689
7945
|
#
|
7946
|
+
# UI name: [Customer hold time][69]
|
7947
|
+
#
|
7690
7948
|
# SUM\_IDLE\_TIME\_AGENT
|
7691
7949
|
#
|
7692
7950
|
# : Unit: Seconds
|
7693
7951
|
#
|
7694
7952
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
7695
7953
|
#
|
7954
|
+
# UI name: [Agent idle time][70]
|
7955
|
+
#
|
7696
7956
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
7697
7957
|
#
|
7698
7958
|
# : Unit: Seconds
|
@@ -7700,6 +7960,8 @@ module Aws::Connect
|
|
7700
7960
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7701
7961
|
# Agent Hierarchy
|
7702
7962
|
#
|
7963
|
+
# UI name: [Agent interaction and hold time][71]
|
7964
|
+
#
|
7703
7965
|
# SUM\_INTERACTION\_TIME
|
7704
7966
|
#
|
7705
7967
|
# : Unit: Seconds
|
@@ -7707,18 +7969,24 @@ module Aws::Connect
|
|
7707
7969
|
# Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
|
7708
7970
|
# Agent Hierarchy
|
7709
7971
|
#
|
7972
|
+
# UI name: [Agent interaction time][72]
|
7973
|
+
#
|
7710
7974
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
7711
7975
|
#
|
7712
7976
|
# : Unit: Seconds
|
7713
7977
|
#
|
7714
7978
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
7715
7979
|
#
|
7980
|
+
# UI name: [Non-Productive Time][73]
|
7981
|
+
#
|
7716
7982
|
# SUM\_ONLINE\_TIME\_AGENT
|
7717
7983
|
#
|
7718
7984
|
# : Unit: Seconds
|
7719
7985
|
#
|
7720
7986
|
# Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
|
7721
7987
|
#
|
7988
|
+
# UI name: [Online time][74]
|
7989
|
+
#
|
7722
7990
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
7723
7991
|
#
|
7724
7992
|
# : Unit: Count
|
@@ -7726,10 +7994,85 @@ module Aws::Connect
|
|
7726
7994
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
7727
7995
|
# contact/segmentAttributes/connect:Subtype
|
7728
7996
|
#
|
7997
|
+
# UI name: [Callback attempts][75]
|
7998
|
+
#
|
7729
7999
|
#
|
7730
8000
|
#
|
7731
8001
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
7732
|
-
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
8002
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#abandonment-rate-historical
|
8003
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/regions.html#optimization_region
|
8004
|
+
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#adherent-time-historical
|
8005
|
+
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-answer-rate-historical
|
8006
|
+
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#non-adherent-time
|
8007
|
+
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-non-response
|
8008
|
+
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-nonresponse-no-abandon-historical
|
8009
|
+
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#occupancy-historical
|
8010
|
+
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#adherence-historical
|
8011
|
+
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#scheduled-time-historical
|
8012
|
+
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-abandon-time-historical
|
8013
|
+
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-active-time-historical
|
8014
|
+
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-acw-time-historical
|
8015
|
+
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-avg-agent-api-connecting-time
|
8016
|
+
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-pause-time-historical
|
8017
|
+
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contacts-case-historical
|
8018
|
+
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-case-resolution-time-historical
|
8019
|
+
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-contact-duration-historical
|
8020
|
+
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-conversation-duration-historical
|
8021
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-greeting-time-agent-historical
|
8022
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-handle-time-historical
|
8023
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-customer-hold-time-historical
|
8024
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#avg-customer-hold-time-all-contacts-historical
|
8025
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-holds-historical
|
8026
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-customer-hold-time-historical
|
8027
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-agent-interaction-time-historical
|
8028
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-agent-historical
|
8029
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-interruptions-time-agent-historical
|
8030
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##average-non-talk-time-historical
|
8031
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-queue-answer-time-historical
|
8032
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-resolution-time-historical
|
8033
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-historical
|
8034
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-agent-historical
|
8035
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#average-talk-time-customer-historical
|
8036
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html##cases-created-historical
|
8037
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-historical
|
8038
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-created-historical
|
8039
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#api-contacts-handled-historical
|
8040
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-handled-by-connected-to-agent-historical
|
8041
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-agent-disconnect-historical
|
8042
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-hold-customer-disconnect-historical
|
8043
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-external-historical
|
8044
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-internal-historical
|
8045
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-historical
|
8046
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-queued-by-enqueue-historical
|
8047
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical
|
8048
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-historical
|
8049
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-transferred-out-by-agent-historical
|
8050
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#current-cases-historical
|
8051
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#maximum-queued-time-historical
|
8052
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-first-contact-historical
|
8053
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ntt-historical
|
8054
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#tt-historical
|
8055
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttagent-historical
|
8056
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#ttcustomer-historical
|
8057
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-reopened-historical
|
8058
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#cases-resolved-historicall
|
8059
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical
|
8060
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#acw-historical
|
8061
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#htm-agent-api-connecting-time
|
8062
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-flow-time-historical
|
8063
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-on-contact-time-historical
|
8064
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical
|
8065
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical
|
8066
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-disconnected-historical
|
8067
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#error-status-time-historical
|
8068
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contact-handle-time-historical
|
8069
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#customer-hold-time-historical
|
8070
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-idle-time-historica
|
8071
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-hold-time-historical
|
8072
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#agent-interaction-time-historical
|
8073
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#npt-historical
|
8074
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#online-time-historical
|
8075
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#callback-attempts-historical
|
7733
8076
|
#
|
7734
8077
|
# @option params [String] :next_token
|
7735
8078
|
# The token for the next set of results. Use the value returned in the
|
@@ -8470,7 +8813,8 @@ module Aws::Connect
|
|
8470
8813
|
# change.
|
8471
8814
|
#
|
8472
8815
|
# For the specified `referenceTypes`, returns a list of references
|
8473
|
-
# associated with the contact.
|
8816
|
+
# associated with the contact. *References* are links to documents that
|
8817
|
+
# are related to a contact, such as emails, attachments, or URLs.
|
8474
8818
|
#
|
8475
8819
|
# @option params [required, String] :instance_id
|
8476
8820
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -12154,6 +12498,42 @@ module Aws::Connect
|
|
12154
12498
|
# tag_value: "String",
|
12155
12499
|
# },
|
12156
12500
|
# },
|
12501
|
+
# user_attribute_filter: {
|
12502
|
+
# or_conditions: [
|
12503
|
+
# {
|
12504
|
+
# tag_conditions: [
|
12505
|
+
# {
|
12506
|
+
# tag_key: "String",
|
12507
|
+
# tag_value: "String",
|
12508
|
+
# },
|
12509
|
+
# ],
|
12510
|
+
# hierarchy_group_condition: {
|
12511
|
+
# value: "String",
|
12512
|
+
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
12513
|
+
# },
|
12514
|
+
# },
|
12515
|
+
# ],
|
12516
|
+
# and_condition: {
|
12517
|
+
# tag_conditions: [
|
12518
|
+
# {
|
12519
|
+
# tag_key: "String",
|
12520
|
+
# tag_value: "String",
|
12521
|
+
# },
|
12522
|
+
# ],
|
12523
|
+
# hierarchy_group_condition: {
|
12524
|
+
# value: "String",
|
12525
|
+
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
12526
|
+
# },
|
12527
|
+
# },
|
12528
|
+
# tag_condition: {
|
12529
|
+
# tag_key: "String",
|
12530
|
+
# tag_value: "String",
|
12531
|
+
# },
|
12532
|
+
# hierarchy_group_condition: {
|
12533
|
+
# value: "String",
|
12534
|
+
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
12535
|
+
# },
|
12536
|
+
# },
|
12157
12537
|
# },
|
12158
12538
|
# search_criteria: {
|
12159
12539
|
# or_conditions: [
|
@@ -12430,7 +12810,9 @@ module Aws::Connect
|
|
12430
12810
|
# Information identifying the participant.
|
12431
12811
|
#
|
12432
12812
|
# @option params [Types::ChatMessage] :initial_message
|
12433
|
-
# The initial message to be sent to the newly created chat.
|
12813
|
+
# The initial message to be sent to the newly created chat. If you have
|
12814
|
+
# a Lex bot in your flow, the initial message is not delivered to the
|
12815
|
+
# Lex bot.
|
12434
12816
|
#
|
12435
12817
|
# @option params [String] :client_token
|
12436
12818
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -13242,8 +13624,9 @@ module Aws::Connect
|
|
13242
13624
|
req.send_request(options)
|
13243
13625
|
end
|
13244
13626
|
|
13245
|
-
# Ends the specified contact.
|
13246
|
-
# that use the following initiation
|
13627
|
+
# Ends the specified contact. Use this API to stop queued callbacks. It
|
13628
|
+
# does not work for voice contacts that use the following initiation
|
13629
|
+
# methods:
|
13247
13630
|
#
|
13248
13631
|
# * DISCONNECT
|
13249
13632
|
#
|
@@ -13251,8 +13634,8 @@ module Aws::Connect
|
|
13251
13634
|
#
|
13252
13635
|
# * QUEUE\_TRANSFER
|
13253
13636
|
#
|
13254
|
-
# Chat and task contacts
|
13255
|
-
#
|
13637
|
+
# Chat and task contacts can be terminated in any state, regardless of
|
13638
|
+
# initiation method.
|
13256
13639
|
#
|
13257
13640
|
# @option params [required, String] :contact_id
|
13258
13641
|
# The ID of the contact.
|
@@ -15572,6 +15955,15 @@ module Aws::Connect
|
|
15572
15955
|
#
|
15573
15956
|
# A list of the third-party application's metadata.
|
15574
15957
|
#
|
15958
|
+
# @option params [Array<String>] :hierarchy_restricted_resources
|
15959
|
+
# The list of resources that a security profile applies hierarchy
|
15960
|
+
# restrictions to in Amazon Connect. Following are acceptable
|
15961
|
+
# ResourceNames: `User`.
|
15962
|
+
#
|
15963
|
+
# @option params [String] :allowed_access_control_hierarchy_group_id
|
15964
|
+
# The identifier of the hierarchy group that a security profile uses to
|
15965
|
+
# restrict access to resources in Amazon Connect.
|
15966
|
+
#
|
15575
15967
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
15576
15968
|
#
|
15577
15969
|
# @example Request syntax with placeholder values
|
@@ -15591,6 +15983,8 @@ module Aws::Connect
|
|
15591
15983
|
# application_permissions: ["Permission"],
|
15592
15984
|
# },
|
15593
15985
|
# ],
|
15986
|
+
# hierarchy_restricted_resources: ["HierarchyRestrictedResourceName"],
|
15987
|
+
# allowed_access_control_hierarchy_group_id: "HierarchyGroupId",
|
15594
15988
|
# })
|
15595
15989
|
#
|
15596
15990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfile AWS API Documentation
|
@@ -16267,7 +16661,7 @@ module Aws::Connect
|
|
16267
16661
|
params: params,
|
16268
16662
|
config: config)
|
16269
16663
|
context[:gem_name] = 'aws-sdk-connect'
|
16270
|
-
context[:gem_version] = '1.
|
16664
|
+
context[:gem_version] = '1.152.0'
|
16271
16665
|
Seahorse::Client::Request.new(handlers, context)
|
16272
16666
|
end
|
16273
16667
|
|