aws-sdk-connect 1.147.0 → 1.149.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ba3169b3583ecbb8ec5e659d706565b0fec0ce82c4e907ddcdd679d29aeb271c
4
- data.tar.gz: 1a8dd6e09cb2f4f37346cf3620e59abd766de713cb948e9ab40996494b596277
3
+ metadata.gz: dc5c18ebed7af49ce3209ea3442658f8dbce347771a92e2e88b4d7c56c10fc17
4
+ data.tar.gz: d65ea6ee77293d82bfddbdc87b7bcdb269e8a2d4f1d958ba96ce2e5cc2e385ae
5
5
  SHA512:
6
- metadata.gz: cefeb53af34a7d8d741b6223c2abae6e5e1e1c0ebcd86b4636a9a697a4645e9784d4696ba61b96fa0d38699a1f5d99abadaf92d75ea8b18d4208f1bba5556d65
7
- data.tar.gz: 96801acdb5d7d785fa460a84dc43eae0b78b1a671446ad1d31b106b640c18adfc7e32ca3dc4d9384cd7c7bfd9e48fee305f500e1afe3bd9062128d70784ad79e
6
+ metadata.gz: c501d69fbcbb39dbad7a9f5d756a95d25b7ac846f70ac18b1a29c85cb9b67e506d0e4979c7b70dbb9dbabc229b402b9381080b6946b4bb59afcc3f51c9001b13
7
+ data.tar.gz: cb99b135dfacc65d744ada6138ff861338682ecb9d5870336d51ed8203f1303162c1d2e1df061508deec29bba87f815a337f8089d0298fb9ca877c8a20c174dc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.149.0 (2024-01-18)
5
+ ------------------
6
+
7
+ * Feature - GetMetricDataV2 now supports 3 groupings
8
+
9
+ 1.148.0 (2024-01-12)
10
+ ------------------
11
+
12
+ * Feature - Supervisor Barge for Chat is now supported through the MonitorContact API.
13
+
4
14
  1.147.0 (2024-01-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.147.0
1
+ 1.149.0
@@ -2025,7 +2025,7 @@ module Aws::Connect
2025
2025
  # contact_id: "ContactId", # required
2026
2026
  # client_token: "ClientToken",
2027
2027
  # participant_details: { # required
2028
- # participant_role: "AGENT", # accepts AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT
2028
+ # participant_role: "AGENT", # accepts AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR
2029
2029
  # display_name: "DisplayName",
2030
2030
  # },
2031
2031
  # })
@@ -4742,12 +4742,12 @@ module Aws::Connect
4742
4742
  #
4743
4743
  # resp = client.describe_instance_attribute({
4744
4744
  # instance_id: "InstanceId", # required
4745
- # attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING
4745
+ # attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING
4746
4746
  # })
4747
4747
  #
4748
4748
  # @example Response structure
4749
4749
  #
4750
- # resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING"
4750
+ # resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING", "ENHANCED_CHAT_MONITORING"
4751
4751
  # resp.attribute.value #=> String
4752
4752
  #
4753
4753
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstanceAttribute AWS API Documentation
@@ -6170,11 +6170,18 @@ module Aws::Connect
6170
6170
  #
6171
6171
  # * Channels: 3 (VOICE, CHAT, and TASK channels are supported.)
6172
6172
  #
6173
+ # * RoutingStepExpressions: 50
6174
+ #
6173
6175
  # Metric data is retrieved only for the resources associated with the
6174
6176
  # queues or routing profiles, and by any channels included in the
6175
6177
  # filter. (You cannot filter by both queue AND routing profile.) You can
6176
6178
  # include both resource IDs and resource ARNs in the same request.
6177
6179
  #
6180
+ # When using the `RoutingStepExpression` filter, you need to pass
6181
+ # exactly one `QueueId`. The filter is also case sensitive so when using
6182
+ # the `RoutingStepExpression` filter, grouping by
6183
+ # `ROUTING_STEP_EXPRESSION` is required.
6184
+ #
6178
6185
  # Currently tagging is only supported on the resources that are passed
6179
6186
  # in the filter.
6180
6187
  #
@@ -6194,6 +6201,9 @@ module Aws::Connect
6194
6201
  # * If no `Grouping` is included in the request, a summary of metrics is
6195
6202
  # returned.
6196
6203
  #
6204
+ # * When using the `RoutingStepExpression` filter, group by
6205
+ # `ROUTING_STEP_EXPRESSION` is required.
6206
+ #
6197
6207
  # @option params [required, Array<Types::CurrentMetric>] :current_metrics
6198
6208
  # The metrics to retrieve. Specify the name and unit for each metric.
6199
6209
  # The following metrics are available. For a description of all the
@@ -6276,6 +6286,12 @@ module Aws::Connect
6276
6286
  #
6277
6287
  # The actual OLDEST\_CONTACT\_AGE is 24 seconds.
6278
6288
  #
6289
+ # When the filter `RoutingStepExpression` is used, this metric is
6290
+ # still calculated from enqueue time. For example, if a contact that
6291
+ # has been queued under `<Expression 1>` for 10 seconds has expired
6292
+ # and `<Expression 2>` becomes active, then `OLDEST_CONTACT_AGE` for
6293
+ # this queue will be counted starting from 10, not 0.
6294
+ #
6279
6295
  # Name in real-time metrics report: [Oldest][11]
6280
6296
  #
6281
6297
  # SLOTS\_ACTIVE
@@ -6666,6 +6682,9 @@ module Aws::Connect
6666
6682
  # both queue IDs and queue ARNs in the same request. VOICE, CHAT, and
6667
6683
  # TASK channels are supported.
6668
6684
  #
6685
+ # RoutingStepExpression is not a valid filter for GetMetricData and we
6686
+ # recommend switching to GetMetricDataV2 for more up-to-date features.
6687
+ #
6669
6688
  # <note markdown="1"> To filter by `Queues`, enter the queue ID/ARN, not the name of the
6670
6689
  # queue.
6671
6690
  #
@@ -6680,6 +6699,9 @@ module Aws::Connect
6680
6699
  # If no grouping is specified, a summary of metrics for all queues is
6681
6700
  # returned.
6682
6701
  #
6702
+ # RoutingStepExpression is not a valid filter for GetMetricData and we
6703
+ # recommend switching to GetMetricDataV2 for more up-to-date features.
6704
+ #
6683
6705
  # @option params [required, Array<Types::HistoricalMetric>] :historical_metrics
6684
6706
  # The metrics to retrieve. Specify the name, unit, and statistic for
6685
6707
  # each metric. The following historical metrics are available. For a
@@ -7009,6 +7031,8 @@ module Aws::Connect
7009
7031
  #
7010
7032
  # * Feature
7011
7033
  #
7034
+ # * Routing step expression
7035
+ #
7012
7036
  # At least one filter must be passed from queues, routing profiles,
7013
7037
  # agents, or user hierarchy groups.
7014
7038
  #
@@ -7022,7 +7046,8 @@ module Aws::Connect
7022
7046
  # `AGENT` \| `CHANNEL` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
7023
7047
  # `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
7024
7048
  # `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
7025
- # `FEATURE` \| `contact/segmentAttributes/connect:Subtype`
7049
+ # `FEATURE` \| `contact/segmentAttributes/connect:Subtype` \|
7050
+ # `ROUTING_STEP_EXPRESSION`
7026
7051
  #
7027
7052
  # * **Filter values**: A maximum of 100 filter values are supported in a
7028
7053
  # single request. VOICE, CHAT, and TASK are valid `filterValue` for
@@ -7039,6 +7064,11 @@ module Aws::Connect
7039
7064
  # `connect:WebRTC` are valid `filterValue` examples (not exhaustive)
7040
7065
  # for the `contact/segmentAttributes/connect:Subtype filter` key.
7041
7066
  #
7067
+ # `ROUTING_STEP_EXPRESSION` is a valid filter key with a filter value
7068
+ # up to 3000 length. This filter is case and order sensitive. JSON
7069
+ # string fields must be sorted in ascending order and JSON array order
7070
+ # should be kept as is.
7071
+ #
7042
7072
  #
7043
7073
  #
7044
7074
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-historical-metrics-report.html
@@ -7055,7 +7085,8 @@ module Aws::Connect
7055
7085
  # `CHANNEL` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
7056
7086
  # `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
7057
7087
  # `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE`,
7058
- # `contact/segmentAttributes/connect:Subtype`
7088
+ # `contact/segmentAttributes/connect:Subtype` \|
7089
+ # `ROUTING_STEP_EXPRESSION`
7059
7090
  #
7060
7091
  # @option params [required, Array<Types::MetricV2>] :metrics
7061
7092
  # The metrics to retrieve. Specify the name, groupings, and filters for
@@ -7220,7 +7251,8 @@ module Aws::Connect
7220
7251
  # : Unit: Seconds
7221
7252
  #
7222
7253
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7223
- # Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
7254
+ # Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
7255
+ # RoutingStepExpression
7224
7256
  #
7225
7257
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
7226
7258
  #
@@ -7358,7 +7390,8 @@ module Aws::Connect
7358
7390
  # : Unit: Count
7359
7391
  #
7360
7392
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7361
- # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7393
+ # Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
7394
+ # RoutingStepExpression
7362
7395
  #
7363
7396
  # CONTACTS\_CREATED
7364
7397
  #
@@ -7380,12 +7413,22 @@ module Aws::Connect
7380
7413
  # Valid metric filter key: `INITIATION_METHOD`, `DISCONNECT_REASON`
7381
7414
  #
7382
7415
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7383
- # Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype
7416
+ # Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
7417
+ # RoutingStepExpression
7384
7418
  #
7385
7419
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
7386
7420
  #
7387
7421
  # </note>
7388
7422
  #
7423
+ # CONTACTS\_HANDLED\_BY\_CONNECTED\_TO\_AGENT
7424
+ #
7425
+ # : Unit: Count
7426
+ #
7427
+ # Valid metric filter key: `INITIATION_METHOD`
7428
+ #
7429
+ # Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
7430
+ # contact/segmentAttributes/connect:Subtype
7431
+ #
7389
7432
  # CONTACTS\_HOLD\_ABANDONS
7390
7433
  #
7391
7434
  # : Unit: Count
@@ -7435,6 +7478,13 @@ module Aws::Connect
7435
7478
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7436
7479
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7437
7480
  #
7481
+ # CONTACTS\_QUEUED\_BY\_ENQUEUE
7482
+ #
7483
+ # : Unit: Count
7484
+ #
7485
+ # Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
7486
+ # contact/segmentAttributes/connect:Subtype
7487
+ #
7438
7488
  # CONTACTS\_RESOLVED\_IN\_X
7439
7489
  #
7440
7490
  # : Unit: Count
@@ -7478,6 +7528,18 @@ module Aws::Connect
7478
7528
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7479
7529
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7480
7530
  #
7531
+ # PERCENT\_CONTACTS\_STEP\_EXPIRED
7532
+ #
7533
+ # : Unit: Percent
7534
+ #
7535
+ # Valid groupings and filters: Queue, RoutingStepExpression
7536
+ #
7537
+ # PERCENT\_CONTACTS\_STEP\_JOINED
7538
+ #
7539
+ # : Unit: Percent
7540
+ #
7541
+ # Valid groupings and filters: Queue, RoutingStepExpression
7542
+ #
7481
7543
  # PERCENT\_NON\_TALK\_TIME
7482
7544
  #
7483
7545
  # : This metric is available only for contacts analyzed by Contact Lens
@@ -7530,6 +7592,12 @@ module Aws::Connect
7530
7592
  # 604800 (inclusive), in seconds. For `Comparison`, you must enter
7531
7593
  # `LT` (for "Less than").
7532
7594
  #
7595
+ # STEP\_CONTACTS\_QUEUED
7596
+ #
7597
+ # : Unit: Count
7598
+ #
7599
+ # Valid groupings and filters: Queue, RoutingStepExpression
7600
+ #
7533
7601
  # SUM\_AFTER\_CONTACT\_WORK\_TIME
7534
7602
  #
7535
7603
  # : Unit: Seconds
@@ -7872,7 +7940,10 @@ module Aws::Connect
7872
7940
  # distribution group.
7873
7941
  #
7874
7942
  # @option params [required, String] :id
7875
- # The identifier of the traffic distribution group.
7943
+ # The identifier of the traffic distribution group. This can be the ID
7944
+ # or the ARN if the API is being called in the Region where the traffic
7945
+ # distribution group was created. The ARN must be provided if the call
7946
+ # is from the replicated Region.
7876
7947
  #
7877
7948
  # @return [Types::GetTrafficDistributionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7878
7949
  #
@@ -8802,7 +8873,7 @@ module Aws::Connect
8802
8873
  # @example Response structure
8803
8874
  #
8804
8875
  # resp.attributes #=> Array
8805
- # resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING"
8876
+ # resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING", "ENHANCED_CHAT_MONITORING"
8806
8877
  # resp.attributes[0].value #=> String
8807
8878
  # resp.next_token #=> String
8808
8879
  #
@@ -9658,7 +9729,7 @@ module Aws::Connect
9658
9729
  # resp.segments #=> Array
9659
9730
  # resp.segments[0].transcript.id #=> String
9660
9731
  # resp.segments[0].transcript.participant_id #=> String
9661
- # resp.segments[0].transcript.participant_role #=> String, one of "AGENT", "CUSTOMER", "SYSTEM", "CUSTOM_BOT"
9732
+ # resp.segments[0].transcript.participant_role #=> String, one of "AGENT", "CUSTOMER", "SYSTEM", "CUSTOM_BOT", "SUPERVISOR"
9662
9733
  # resp.segments[0].transcript.display_name #=> String
9663
9734
  # resp.segments[0].transcript.content #=> String
9664
9735
  # resp.segments[0].transcript.content_type #=> String
@@ -9681,13 +9752,13 @@ module Aws::Connect
9681
9752
  # resp.segments[0].issues.issues_detected[0].transcript_items[0].character_offsets.end_offset_char #=> Integer
9682
9753
  # resp.segments[0].event.id #=> String
9683
9754
  # resp.segments[0].event.participant_id #=> String
9684
- # resp.segments[0].event.participant_role #=> String, one of "AGENT", "CUSTOMER", "SYSTEM", "CUSTOM_BOT"
9755
+ # resp.segments[0].event.participant_role #=> String, one of "AGENT", "CUSTOMER", "SYSTEM", "CUSTOM_BOT", "SUPERVISOR"
9685
9756
  # resp.segments[0].event.display_name #=> String
9686
9757
  # resp.segments[0].event.event_type #=> String
9687
9758
  # resp.segments[0].event.time.absolute_time #=> Time
9688
9759
  # resp.segments[0].attachments.id #=> String
9689
9760
  # resp.segments[0].attachments.participant_id #=> String
9690
- # resp.segments[0].attachments.participant_role #=> String, one of "AGENT", "CUSTOMER", "SYSTEM", "CUSTOM_BOT"
9761
+ # resp.segments[0].attachments.participant_role #=> String, one of "AGENT", "CUSTOMER", "SYSTEM", "CUSTOM_BOT", "SUPERVISOR"
9691
9762
  # resp.segments[0].attachments.display_name #=> String
9692
9763
  # resp.segments[0].attachments.attachments #=> Array
9693
9764
  # resp.segments[0].attachments.attachments[0].attachment_name #=> String
@@ -10691,7 +10762,8 @@ module Aws::Connect
10691
10762
  # @option params [Array<String>] :allowed_monitor_capabilities
10692
10763
  # Specify which monitoring actions the user is allowed to take. For
10693
10764
  # example, whether the user is allowed to escalate from silent
10694
- # monitoring to barge.
10765
+ # monitoring to barge. AllowedMonitorCapabilities is required if barge
10766
+ # is enabled.
10695
10767
  #
10696
10768
  # @option params [String] :client_token
10697
10769
  # A unique, case-sensitive identifier that you provide to ensure the
@@ -11147,7 +11219,7 @@ module Aws::Connect
11147
11219
  # transcript: {
11148
11220
  # criteria: [ # required
11149
11221
  # {
11150
- # participant_role: "AGENT", # required, accepts AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT
11222
+ # participant_role: "AGENT", # required, accepts AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR
11151
11223
  # search_text: ["SearchText"], # required
11152
11224
  # match_type: "MATCH_ALL", # required, accepts MATCH_ALL, MATCH_ANY
11153
11225
  # },
@@ -14454,7 +14526,7 @@ module Aws::Connect
14454
14526
  #
14455
14527
  # resp = client.update_instance_attribute({
14456
14528
  # instance_id: "InstanceId", # required
14457
- # attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING
14529
+ # attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING
14458
14530
  # value: "InstanceAttributeValue", # required
14459
14531
  # })
14460
14532
  #
@@ -16195,7 +16267,7 @@ module Aws::Connect
16195
16267
  params: params,
16196
16268
  config: config)
16197
16269
  context[:gem_name] = 'aws-sdk-connect'
16198
- context[:gem_version] = '1.147.0'
16270
+ context[:gem_version] = '1.149.0'
16199
16271
  Seahorse::Client::Request.new(handlers, context)
16200
16272
  end
16201
16273
 
@@ -6743,6 +6743,14 @@ module Aws::Connect
6743
6743
  #
6744
6744
  # @!attribute [rw] value
6745
6745
  # The note for an item (section or question) in a contact evaluation.
6746
+ #
6747
+ # <note markdown="1"> Even though a note in an evaluation can have up to 3072 chars, there
6748
+ # is also a limit on the total number of chars for all the notes in
6749
+ # the evaluation combined. Assuming there are N questions in the
6750
+ # evaluation being submitted, then the max char limit for all notes
6751
+ # combined is N x 1024.
6752
+ #
6753
+ # </note>
6746
6754
  # @return [String]
6747
6755
  #
6748
6756
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EvaluationNote AWS API Documentation
@@ -7056,11 +7064,18 @@ module Aws::Connect
7056
7064
  #
7057
7065
  # * Channels: 3 (VOICE, CHAT, and TASK channels are supported.)
7058
7066
  #
7067
+ # * RoutingStepExpressions: 50
7068
+ #
7059
7069
  # Metric data is retrieved only for the resources associated with the
7060
7070
  # queues or routing profiles, and by any channels included in the
7061
7071
  # filter. (You cannot filter by both queue AND routing profile.) You
7062
7072
  # can include both resource IDs and resource ARNs in the same request.
7063
7073
  #
7074
+ # When using the `RoutingStepExpression` filter, you need to pass
7075
+ # exactly one `QueueId`. The filter is also case sensitive so when
7076
+ # using the `RoutingStepExpression` filter, grouping by
7077
+ # `ROUTING_STEP_EXPRESSION` is required.
7078
+ #
7064
7079
  # Currently tagging is only supported on the resources that are passed
7065
7080
  # in the filter.
7066
7081
  # @return [Types::Filters]
@@ -7080,6 +7095,9 @@ module Aws::Connect
7080
7095
  #
7081
7096
  # * If no `Grouping` is included in the request, a summary of metrics
7082
7097
  # is returned.
7098
+ #
7099
+ # * When using the `RoutingStepExpression` filter, group by
7100
+ # `ROUTING_STEP_EXPRESSION` is required.
7083
7101
  # @return [Array<String>]
7084
7102
  #
7085
7103
  # @!attribute [rw] current_metrics
@@ -7164,6 +7182,12 @@ module Aws::Connect
7164
7182
  #
7165
7183
  # The actual OLDEST\_CONTACT\_AGE is 24 seconds.
7166
7184
  #
7185
+ # When the filter `RoutingStepExpression` is used, this metric is
7186
+ # still calculated from enqueue time. For example, if a contact that
7187
+ # has been queued under `<Expression 1>` for 10 seconds has expired
7188
+ # and `<Expression 2>` becomes active, then `OLDEST_CONTACT_AGE` for
7189
+ # this queue will be counted starting from 10, not 0.
7190
+ #
7167
7191
  # Name in real-time metrics report: [Oldest][11]
7168
7192
  #
7169
7193
  # SLOTS\_ACTIVE
@@ -7475,6 +7499,9 @@ module Aws::Connect
7475
7499
  # both queue IDs and queue ARNs in the same request. VOICE, CHAT, and
7476
7500
  # TASK channels are supported.
7477
7501
  #
7502
+ # RoutingStepExpression is not a valid filter for GetMetricData and we
7503
+ # recommend switching to GetMetricDataV2 for more up-to-date features.
7504
+ #
7478
7505
  # <note markdown="1"> To filter by `Queues`, enter the queue ID/ARN, not the name of the
7479
7506
  # queue.
7480
7507
  #
@@ -7489,6 +7516,9 @@ module Aws::Connect
7489
7516
  #
7490
7517
  # If no grouping is specified, a summary of metrics for all queues is
7491
7518
  # returned.
7519
+ #
7520
+ # RoutingStepExpression is not a valid filter for GetMetricData and we
7521
+ # recommend switching to GetMetricDataV2 for more up-to-date features.
7492
7522
  # @return [Array<String>]
7493
7523
  #
7494
7524
  # @!attribute [rw] historical_metrics
@@ -7786,6 +7816,8 @@ module Aws::Connect
7786
7816
  #
7787
7817
  # * Feature
7788
7818
  #
7819
+ # * Routing step expression
7820
+ #
7789
7821
  # At least one filter must be passed from queues, routing profiles,
7790
7822
  # agents, or user hierarchy groups.
7791
7823
  #
@@ -7799,7 +7831,8 @@ module Aws::Connect
7799
7831
  # `AGENT` \| `CHANNEL` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
7800
7832
  # `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
7801
7833
  # `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE` \|
7802
- # `FEATURE` \| `contact/segmentAttributes/connect:Subtype`
7834
+ # `FEATURE` \| `contact/segmentAttributes/connect:Subtype` \|
7835
+ # `ROUTING_STEP_EXPRESSION`
7803
7836
  #
7804
7837
  # * **Filter values**: A maximum of 100 filter values are supported in
7805
7838
  # a single request. VOICE, CHAT, and TASK are valid `filterValue`
@@ -7816,6 +7849,11 @@ module Aws::Connect
7816
7849
  # `connect:WebRTC` are valid `filterValue` examples (not exhaustive)
7817
7850
  # for the `contact/segmentAttributes/connect:Subtype filter` key.
7818
7851
  #
7852
+ # `ROUTING_STEP_EXPRESSION` is a valid filter key with a filter
7853
+ # value up to 3000 length. This filter is case and order sensitive.
7854
+ # JSON string fields must be sorted in ascending order and JSON
7855
+ # array order should be kept as is.
7856
+ #
7819
7857
  #
7820
7858
  #
7821
7859
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-historical-metrics-report.html
@@ -7833,7 +7871,8 @@ module Aws::Connect
7833
7871
  # `CHANNEL` \| `AGENT_HIERARCHY_LEVEL_ONE` \|
7834
7872
  # `AGENT_HIERARCHY_LEVEL_TWO` \| `AGENT_HIERARCHY_LEVEL_THREE` \|
7835
7873
  # `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE`,
7836
- # `contact/segmentAttributes/connect:Subtype`
7874
+ # `contact/segmentAttributes/connect:Subtype` \|
7875
+ # `ROUTING_STEP_EXPRESSION`
7837
7876
  # @return [Array<String>]
7838
7877
  #
7839
7878
  # @!attribute [rw] metrics
@@ -8006,7 +8045,7 @@ module Aws::Connect
8006
8045
  #
8007
8046
  # Valid groupings and filters: Queue, Channel, Routing Profile,
8008
8047
  # Agent, Agent Hierarchy, Feature,
8009
- # contact/segmentAttributes/connect:Subtype
8048
+ # contact/segmentAttributes/connect:Subtype, RoutingStepExpression
8010
8049
  #
8011
8050
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
8012
8051
  #
@@ -8146,7 +8185,8 @@ module Aws::Connect
8146
8185
  # : Unit: Count
8147
8186
  #
8148
8187
  # Valid groupings and filters: Queue, Channel, Routing Profile,
8149
- # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
8188
+ # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
8189
+ # RoutingStepExpression
8150
8190
  #
8151
8191
  # CONTACTS\_CREATED
8152
8192
  #
@@ -8169,12 +8209,21 @@ module Aws::Connect
8169
8209
  #
8170
8210
  # Valid groupings and filters: Queue, Channel, Routing Profile,
8171
8211
  # Agent, Agent Hierarchy, Feature,
8172
- # contact/segmentAttributes/connect:Subtype
8212
+ # contact/segmentAttributes/connect:Subtype, RoutingStepExpression
8173
8213
  #
8174
8214
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
8175
8215
  #
8176
8216
  # </note>
8177
8217
  #
8218
+ # CONTACTS\_HANDLED\_BY\_CONNECTED\_TO\_AGENT
8219
+ #
8220
+ # : Unit: Count
8221
+ #
8222
+ # Valid metric filter key: `INITIATION_METHOD`
8223
+ #
8224
+ # Valid groupings and filters: Queue, Channel, Agent, Agent
8225
+ # Hierarchy, contact/segmentAttributes/connect:Subtype
8226
+ #
8178
8227
  # CONTACTS\_HOLD\_ABANDONS
8179
8228
  #
8180
8229
  # : Unit: Count
@@ -8224,6 +8273,13 @@ module Aws::Connect
8224
8273
  # Valid groupings and filters: Queue, Channel, Routing Profile,
8225
8274
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
8226
8275
  #
8276
+ # CONTACTS\_QUEUED\_BY\_ENQUEUE
8277
+ #
8278
+ # : Unit: Count
8279
+ #
8280
+ # Valid groupings and filters: Queue, Channel, Agent, Agent
8281
+ # Hierarchy, contact/segmentAttributes/connect:Subtype
8282
+ #
8227
8283
  # CONTACTS\_RESOLVED\_IN\_X
8228
8284
  #
8229
8285
  # : Unit: Count
@@ -8268,6 +8324,18 @@ module Aws::Connect
8268
8324
  # Valid groupings and filters: Queue, Channel, Routing Profile,
8269
8325
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
8270
8326
  #
8327
+ # PERCENT\_CONTACTS\_STEP\_EXPIRED
8328
+ #
8329
+ # : Unit: Percent
8330
+ #
8331
+ # Valid groupings and filters: Queue, RoutingStepExpression
8332
+ #
8333
+ # PERCENT\_CONTACTS\_STEP\_JOINED
8334
+ #
8335
+ # : Unit: Percent
8336
+ #
8337
+ # Valid groupings and filters: Queue, RoutingStepExpression
8338
+ #
8271
8339
  # PERCENT\_NON\_TALK\_TIME
8272
8340
  #
8273
8341
  # : This metric is available only for contacts analyzed by Contact
@@ -8320,6 +8388,12 @@ module Aws::Connect
8320
8388
  # 604800 (inclusive), in seconds. For `Comparison`, you must enter
8321
8389
  # `LT` (for "Less than").
8322
8390
  #
8391
+ # STEP\_CONTACTS\_QUEUED
8392
+ #
8393
+ # : Unit: Count
8394
+ #
8395
+ # Valid groupings and filters: Queue, RoutingStepExpression
8396
+ #
8323
8397
  # SUM\_AFTER\_CONTACT\_WORK\_TIME
8324
8398
  #
8325
8399
  # : Unit: Seconds
@@ -8661,7 +8735,10 @@ module Aws::Connect
8661
8735
  end
8662
8736
 
8663
8737
  # @!attribute [rw] id
8664
- # The identifier of the traffic distribution group.
8738
+ # The identifier of the traffic distribution group. This can be the ID
8739
+ # or the ARN if the API is being called in the Region where the
8740
+ # traffic distribution group was created. The ARN must be provided if
8741
+ # the call is from the replicated Region.
8665
8742
  # @return [String]
8666
8743
  #
8667
8744
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetTrafficDistributionRequest AWS API Documentation
@@ -12573,7 +12650,8 @@ module Aws::Connect
12573
12650
  # @!attribute [rw] allowed_monitor_capabilities
12574
12651
  # Specify which monitoring actions the user is allowed to take. For
12575
12652
  # example, whether the user is allowed to escalate from silent
12576
- # monitoring to barge.
12653
+ # monitoring to barge. AllowedMonitorCapabilities is required if barge
12654
+ # is enabled.
12577
12655
  # @return [Array<String>]
12578
12656
  #
12579
12657
  # @!attribute [rw] client_token
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connect/customizations'
52
52
  # @!group service
53
53
  module Aws::Connect
54
54
 
55
- GEM_VERSION = '1.147.0'
55
+ GEM_VERSION = '1.149.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.147.0
4
+ version: 1.149.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-05 00:00:00.000000000 Z
11
+ date: 2024-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -72,7 +72,7 @@ licenses:
72
72
  metadata:
73
73
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connect
74
74
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connect/CHANGELOG.md
75
- post_install_message:
75
+ post_install_message:
76
76
  rdoc_options: []
77
77
  require_paths:
78
78
  - lib
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
90
+ rubygems_version: 3.4.10
91
+ signing_key:
92
92
  specification_version: 4
93
93
  summary: AWS SDK for Ruby - Amazon Connect
94
94
  test_files: []