aws-sdk-connect 1.148.0 → 1.149.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d77c30e9a42174e28833a5cb2103f2007286daaf29a95d6da9b142e270c32bc1
4
- data.tar.gz: 032a27a751d59b47044d2ff7f60ee37f6d744ae65ca511d100e40c012b273729
3
+ metadata.gz: dc5c18ebed7af49ce3209ea3442658f8dbce347771a92e2e88b4d7c56c10fc17
4
+ data.tar.gz: d65ea6ee77293d82bfddbdc87b7bcdb269e8a2d4f1d958ba96ce2e5cc2e385ae
5
5
  SHA512:
6
- metadata.gz: 93dde24bed223d33736022b33f128696562b06380231dd99d2051272a4e50eabdc2ceb1c41004a8fddc4b887e98765ed41be6e470327c0e7cc328d27d4338586
7
- data.tar.gz: d659128d5e2c35f2309ba884d9e51580ad4f5ddd10c51738e1d86dd1afd2ef1928382606a7a4fb5288079fa8f3c34903f4a804c71c5a66a85e4c82518e089121
6
+ metadata.gz: c501d69fbcbb39dbad7a9f5d756a95d25b7ac846f70ac18b1a29c85cb9b67e506d0e4979c7b70dbb9dbabc229b402b9381080b6946b4bb59afcc3f51c9001b13
7
+ data.tar.gz: cb99b135dfacc65d744ada6138ff861338682ecb9d5870336d51ed8203f1303162c1d2e1df061508deec29bba87f815a337f8089d0298fb9ca877c8a20c174dc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.148.0 (2024-01-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.148.0
1
+ 1.149.0
@@ -6177,8 +6177,10 @@ module Aws::Connect
6177
6177
  # filter. (You cannot filter by both queue AND routing profile.) You can
6178
6178
  # include both resource IDs and resource ARNs in the same request.
6179
6179
  #
6180
- # When using `RoutingStepExpression`, you need to pass exactly one
6181
- # `QueueId`.
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.
6182
6184
  #
6183
6185
  # Currently tagging is only supported on the resources that are passed
6184
6186
  # in the filter.
@@ -7062,8 +7064,10 @@ module Aws::Connect
7062
7064
  # `connect:WebRTC` are valid `filterValue` examples (not exhaustive)
7063
7065
  # for the `contact/segmentAttributes/connect:Subtype filter` key.
7064
7066
  #
7065
- # ROUTING\_STEP\_EXPRESSION is a valid filter key with a filter value
7066
- # up to 3000 length.
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.
7067
7071
  #
7068
7072
  #
7069
7073
  #
@@ -7416,6 +7420,15 @@ module Aws::Connect
7416
7420
  #
7417
7421
  # </note>
7418
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
+ #
7419
7432
  # CONTACTS\_HOLD\_ABANDONS
7420
7433
  #
7421
7434
  # : Unit: Count
@@ -7465,6 +7478,13 @@ module Aws::Connect
7465
7478
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7466
7479
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7467
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
+ #
7468
7488
  # CONTACTS\_RESOLVED\_IN\_X
7469
7489
  #
7470
7490
  # : Unit: Count
@@ -7920,7 +7940,10 @@ module Aws::Connect
7920
7940
  # distribution group.
7921
7941
  #
7922
7942
  # @option params [required, String] :id
7923
- # 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.
7924
7947
  #
7925
7948
  # @return [Types::GetTrafficDistributionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7926
7949
  #
@@ -16244,7 +16267,7 @@ module Aws::Connect
16244
16267
  params: params,
16245
16268
  config: config)
16246
16269
  context[:gem_name] = 'aws-sdk-connect'
16247
- context[:gem_version] = '1.148.0'
16270
+ context[:gem_version] = '1.149.0'
16248
16271
  Seahorse::Client::Request.new(handlers, context)
16249
16272
  end
16250
16273
 
@@ -7071,8 +7071,10 @@ module Aws::Connect
7071
7071
  # filter. (You cannot filter by both queue AND routing profile.) You
7072
7072
  # can include both resource IDs and resource ARNs in the same request.
7073
7073
  #
7074
- # When using `RoutingStepExpression`, you need to pass exactly one
7075
- # `QueueId`.
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.
7076
7078
  #
7077
7079
  # Currently tagging is only supported on the resources that are passed
7078
7080
  # in the filter.
@@ -7847,8 +7849,10 @@ module Aws::Connect
7847
7849
  # `connect:WebRTC` are valid `filterValue` examples (not exhaustive)
7848
7850
  # for the `contact/segmentAttributes/connect:Subtype filter` key.
7849
7851
  #
7850
- # ROUTING\_STEP\_EXPRESSION is a valid filter key with a filter
7851
- # value up to 3000 length.
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.
7852
7856
  #
7853
7857
  #
7854
7858
  #
@@ -8211,6 +8215,15 @@ module Aws::Connect
8211
8215
  #
8212
8216
  # </note>
8213
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
+ #
8214
8227
  # CONTACTS\_HOLD\_ABANDONS
8215
8228
  #
8216
8229
  # : Unit: Count
@@ -8260,6 +8273,13 @@ module Aws::Connect
8260
8273
  # Valid groupings and filters: Queue, Channel, Routing Profile,
8261
8274
  # Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype
8262
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
+ #
8263
8283
  # CONTACTS\_RESOLVED\_IN\_X
8264
8284
  #
8265
8285
  # : Unit: Count
@@ -8715,7 +8735,10 @@ module Aws::Connect
8715
8735
  end
8716
8736
 
8717
8737
  # @!attribute [rw] id
8718
- # 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.
8719
8742
  # @return [String]
8720
8743
  #
8721
8744
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetTrafficDistributionRequest AWS API Documentation
@@ -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.148.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.148.0
4
+ version: 1.149.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-12 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