aws-sdk-connect 1.170.0 → 1.172.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: 69e7011582624331258aee22298a41058477a0b2d015584704ea47fbd4a3600c
4
- data.tar.gz: ef3a645d770a3edd794c2f442ce00def32266a34a1520a1f447fba8fed7d812e
3
+ metadata.gz: e8adc2890034db81d6a7d02534df3fecac7b2528bf2123f05a2af6a37bf197d4
4
+ data.tar.gz: 3e41b9102654fb325aca59652c13b5be6b68003cd6e589f67273fad0c61f71f7
5
5
  SHA512:
6
- metadata.gz: 28c9c2e7e6e19bb3994f4d00f86a2daff6ff79f3ca628fd9f26ace22eb2ef77b9f14ede5f49975f0d7c267d52a1b2a29df152b983325d0b3f46eeea46ed65340
7
- data.tar.gz: 4ad83dca3da8ac700227c94a93a3ea61c9e38661caecf8d7c772664e1a91e99a6b9c1a19cc8072c97fcb475ea870b1cb86d9a6fb1ade2ea27cbdb9195890a1ab
6
+ metadata.gz: c6d7c3f70c71130690254b61956e4f559fbf45b3ef795080abaed7f8aa3d5a5fe40064f4d6400db71db63036a92cd45a88f144ec2e38c21398835c4c8e6118ea
7
+ data.tar.gz: 79fe1dcc2815c8f94d534ae36286ca02534b0150ac24611fb6ec01d053ce2ce1b40d804c013216c5dacada99a0d8a6653dc5a6d944c083dcf36bb9ec13729d2b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.172.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - Release ReplicaConfiguration as part of DescribeInstance
8
+
9
+ 1.171.0 (2024-08-09)
10
+ ------------------
11
+
12
+ * Feature - This release supports adding RoutingCriteria via UpdateContactRoutingData public API.
13
+
4
14
  1.170.0 (2024-08-08)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.170.0
1
+ 1.172.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::Connect
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::RestJson)
88
90
  add_plugin(Aws::Connect::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::Connect
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -1005,7 +1017,7 @@ module Aws::Connect
1005
1017
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
1006
1018
  #
1007
1019
  # @option params [required, String] :key
1008
- # A valid security key in PEM format.
1020
+ # A valid security key in PEM format as a String.
1009
1021
  #
1010
1022
  # @return [Types::AssociateSecurityKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1011
1023
  #
@@ -2007,6 +2019,9 @@ module Aws::Connect
2007
2019
  # Service (Amazon S3) or Amazon Kinesis. It also does not allow for any
2008
2020
  # configurations on features, such as Contact Lens for Amazon Connect.
2009
2021
  #
2022
+ # For more information, see [Create an Amazon Connect instance][1] in
2023
+ # the *Amazon Connect Administrator Guide*.
2024
+ #
2010
2025
  # Amazon Connect enforces a limit on the total number of instances that
2011
2026
  # you can create or delete in 30 days. If you exceed this limit, you
2012
2027
  # will get an error message indicating there has been an excessive
@@ -2014,6 +2029,10 @@ module Aws::Connect
2014
2029
  # days before you can restart creating and deleting instances in your
2015
2030
  # account.
2016
2031
  #
2032
+ #
2033
+ #
2034
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-instances.html
2035
+ #
2017
2036
  # @option params [String] :client_token
2018
2037
  # The idempotency token.
2019
2038
  #
@@ -2339,7 +2358,14 @@ module Aws::Connect
2339
2358
  end
2340
2359
 
2341
2360
  # Creates a new predefined attribute for the specified Amazon Connect
2342
- # instance.
2361
+ # instance. *Predefined attributes* are attributes in an Amazon Connect
2362
+ # instance that can be used to route contacts to an agent or pools of
2363
+ # agents within a queue. For more information, see [Create predefined
2364
+ # attributes for routing contacts to agents][1].
2365
+ #
2366
+ #
2367
+ #
2368
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
2343
2369
  #
2344
2370
  # @option params [required, String] :instance_id
2345
2371
  # The identifier of the Amazon Connect instance. You can find the
@@ -2854,6 +2880,16 @@ module Aws::Connect
2854
2880
 
2855
2881
  # Creates a security profile.
2856
2882
  #
2883
+ # For information about security profiles, see [Security Profiles][1] in
2884
+ # the *Amazon Connect Administrator Guide*. For a mapping of the API
2885
+ # name and user interface name of the security profile permissions, see
2886
+ # [List of security profile permissions][2].
2887
+ #
2888
+ #
2889
+ #
2890
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/connect-security-profiles.html
2891
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
2892
+ #
2857
2893
  # @option params [required, String] :security_profile_name
2858
2894
  # The name of the security profile.
2859
2895
  #
@@ -3883,7 +3919,9 @@ module Aws::Connect
3883
3919
  # This API is in preview release for Amazon Connect and is subject to
3884
3920
  # change.
3885
3921
  #
3886
- # Deletes the Amazon Connect instance.
3922
+ # Deletes the Amazon Connect instance. For more information, see [Delete
3923
+ # your Amazon Connect instance][1] in the *Amazon Connect Administrator
3924
+ # Guide*.
3887
3925
  #
3888
3926
  # Amazon Connect enforces a limit on the total number of instances that
3889
3927
  # you can create or delete in 30 days. If you exceed this limit, you
@@ -3892,6 +3930,10 @@ module Aws::Connect
3892
3930
  # days before you can restart creating and deleting instances in your
3893
3931
  # account.
3894
3932
  #
3933
+ #
3934
+ #
3935
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/delete-connect-instance.html
3936
+ #
3895
3937
  # @option params [required, String] :instance_id
3896
3938
  # The identifier of the Amazon Connect instance. You can [find the
3897
3939
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -4009,7 +4051,8 @@ module Aws::Connect
4009
4051
  req.send_request(options)
4010
4052
  end
4011
4053
 
4012
- # Deletes a queue.
4054
+ # Deletes a queue. It isn't possible to delete a queue by using the
4055
+ # Amazon Connect admin website.
4013
4056
  #
4014
4057
  # @option params [required, String] :instance_id
4015
4058
  # The identifier of the Amazon Connect instance. You can [find the
@@ -5060,6 +5103,7 @@ module Aws::Connect
5060
5103
  # @return [Types::DescribeInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5061
5104
  #
5062
5105
  # * {Types::DescribeInstanceResponse#instance #instance} => Types::Instance
5106
+ # * {Types::DescribeInstanceResponse#replication_configuration #replication_configuration} => Types::ReplicationConfiguration
5063
5107
  #
5064
5108
  # @example Request syntax with placeholder values
5065
5109
  #
@@ -5082,6 +5126,12 @@ module Aws::Connect
5082
5126
  # resp.instance.instance_access_url #=> String
5083
5127
  # resp.instance.tags #=> Hash
5084
5128
  # resp.instance.tags["TagKey"] #=> String
5129
+ # resp.replication_configuration.replication_status_summary_list #=> Array
5130
+ # resp.replication_configuration.replication_status_summary_list[0].region #=> String
5131
+ # resp.replication_configuration.replication_status_summary_list[0].replication_status #=> String, one of "INSTANCE_REPLICATION_COMPLETE", "INSTANCE_REPLICATION_IN_PROGRESS", "INSTANCE_REPLICATION_FAILED", "INSTANCE_REPLICA_DELETING", "INSTANCE_REPLICATION_DELETION_FAILED", "RESOURCE_REPLICATION_NOT_STARTED"
5132
+ # resp.replication_configuration.replication_status_summary_list[0].replication_status_reason #=> String
5133
+ # resp.replication_configuration.source_region #=> String
5134
+ # resp.replication_configuration.global_sign_in_endpoint #=> String
5085
5135
  #
5086
5136
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstance AWS API Documentation
5087
5137
  #
@@ -5242,7 +5292,14 @@ module Aws::Connect
5242
5292
  end
5243
5293
 
5244
5294
  # Describes a predefined attribute for the specified Amazon Connect
5245
- # instance.
5295
+ # instance. *Predefined attributes* are attributes in an Amazon Connect
5296
+ # instance that can be used to route contacts to an agent or pools of
5297
+ # agents within a queue. For more information, see [Create predefined
5298
+ # attributes for routing contacts to agents][1].
5299
+ #
5300
+ #
5301
+ #
5302
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
5246
5303
  #
5247
5304
  # @option params [required, String] :instance_id
5248
5305
  # The identifier of the Amazon Connect instance. You can find the
@@ -5559,7 +5616,17 @@ module Aws::Connect
5559
5616
  req.send_request(options)
5560
5617
  end
5561
5618
 
5562
- # Gets basic information about the security profle.
5619
+ # Gets basic information about the security profile.
5620
+ #
5621
+ # For information about security profiles, see [Security Profiles][1] in
5622
+ # the *Amazon Connect Administrator Guide*. For a mapping of the API
5623
+ # name and user interface name of the security profile permissions, see
5624
+ # [List of security profile permissions][2].
5625
+ #
5626
+ #
5627
+ #
5628
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/connect-security-profiles.html
5629
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
5563
5630
  #
5564
5631
  # @option params [required, String] :security_profile_id
5565
5632
  # The identifier for the security profle.
@@ -8501,7 +8568,7 @@ module Aws::Connect
8501
8568
  #
8502
8569
  # </note>
8503
8570
  #
8504
- # SUM\_CONTACTS\_ABANDONED
8571
+ # CONTACTS\_ABANDONED
8505
8572
  #
8506
8573
  # : Unit: Count
8507
8574
  #
@@ -10477,6 +10544,14 @@ module Aws::Connect
10477
10544
  end
10478
10545
 
10479
10546
  # Lists predefined attributes for the specified Amazon Connect instance.
10547
+ # *Predefined attributes* are attributes in an Amazon Connect instance
10548
+ # that can be used to route contacts to an agent or pools of agents
10549
+ # within a queue. For more information, see [Create predefined
10550
+ # attributes for routing contacts to agents][1].
10551
+ #
10552
+ #
10553
+ #
10554
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
10480
10555
  #
10481
10556
  # @option params [required, String] :instance_id
10482
10557
  # The identifier of the Amazon Connect instance. You can find the
@@ -11181,6 +11256,16 @@ module Aws::Connect
11181
11256
 
11182
11257
  # Lists the permissions granted to a security profile.
11183
11258
  #
11259
+ # For information about security profiles, see [Security Profiles][1] in
11260
+ # the *Amazon Connect Administrator Guide*. For a mapping of the API
11261
+ # name and user interface name of the security profile permissions, see
11262
+ # [List of security profile permissions][2].
11263
+ #
11264
+ #
11265
+ #
11266
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/connect-security-profiles.html
11267
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
11268
+ #
11184
11269
  # @option params [required, String] :security_profile_id
11185
11270
  # The identifier for the security profle.
11186
11271
  #
@@ -11239,11 +11324,14 @@ module Aws::Connect
11239
11324
  # specified Amazon Connect instance.
11240
11325
  #
11241
11326
  # For more information about security profiles, see [Security
11242
- # Profiles][1] in the *Amazon Connect Administrator Guide*.
11327
+ # Profiles][1] in the *Amazon Connect Administrator Guide*. For a
11328
+ # mapping of the API name and user interface name of the security
11329
+ # profile permissions, see [List of security profile permissions][2].
11243
11330
  #
11244
11331
  #
11245
11332
  #
11246
11333
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/connect-security-profiles.html
11334
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
11247
11335
  #
11248
11336
  # @option params [required, String] :instance_id
11249
11337
  # The identifier of the Amazon Connect instance. You can [find the
@@ -12809,7 +12897,15 @@ module Aws::Connect
12809
12897
  req.send_request(options)
12810
12898
  end
12811
12899
 
12812
- # Predefined attributes that meet certain criteria.
12900
+ # Searches predefined attributes that meet certain criteria. *Predefined
12901
+ # attributes* are attributes in an Amazon Connect instance that can be
12902
+ # used to route contacts to an agent or pools of agents within a queue.
12903
+ # For more information, see [Create predefined attributes for routing
12904
+ # contacts to agents][1].
12905
+ #
12906
+ #
12907
+ #
12908
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
12813
12909
  #
12814
12910
  # @option params [required, String] :instance_id
12815
12911
  # The identifier of the Amazon Connect instance. You can find the
@@ -13414,6 +13510,16 @@ module Aws::Connect
13414
13510
  # Searches security profiles in an Amazon Connect instance, with
13415
13511
  # optional filtering.
13416
13512
  #
13513
+ # For information about security profiles, see [Security Profiles][1] in
13514
+ # the *Amazon Connect Administrator Guide*. For a mapping of the API
13515
+ # name and user interface name of the security profile permissions, see
13516
+ # [List of security profile permissions][2].
13517
+ #
13518
+ #
13519
+ #
13520
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/connect-security-profiles.html
13521
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
13522
+ #
13417
13523
  # @option params [required, String] :instance_id
13418
13524
  # The identifier of the Amazon Connect instance. You can [find the
13419
13525
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -16091,6 +16197,10 @@ module Aws::Connect
16091
16197
  # other contacts in the queue by assigning them a higher priority, such
16092
16198
  # as 1 or 2.
16093
16199
  #
16200
+ # @option params [Types::RoutingCriteriaInput] :routing_criteria
16201
+ # Updates the routing criteria on the contact. These properties can be
16202
+ # used to change how a
 contact is routed within the queue.
16203
+ #
16094
16204
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
16095
16205
  #
16096
16206
  # @example Request syntax with placeholder values
@@ -16100,6 +16210,38 @@ module Aws::Connect
16100
16210
  # contact_id: "ContactId", # required
16101
16211
  # queue_time_adjustment_seconds: 1,
16102
16212
  # queue_priority: 1,
16213
+ # routing_criteria: {
16214
+ # steps: [
16215
+ # {
16216
+ # expiry: {
16217
+ # duration_in_seconds: 1,
16218
+ # },
16219
+ # expression: {
16220
+ # attribute_condition: {
16221
+ # name: "PredefinedAttributeName",
16222
+ # value: "ProficiencyValue",
16223
+ # proficiency_level: 1.0,
16224
+ # match_criteria: {
16225
+ # agents_criteria: {
16226
+ # agent_ids: ["AgentId"],
16227
+ # },
16228
+ # },
16229
+ # comparison_operator: "ComparisonOperator",
16230
+ # },
16231
+ # and_expression: [
16232
+ # {
16233
+ # # recursive Expression
16234
+ # },
16235
+ # ],
16236
+ # or_expression: [
16237
+ # {
16238
+ # # recursive Expression
16239
+ # },
16240
+ # ],
16241
+ # },
16242
+ # },
16243
+ # ],
16244
+ # },
16103
16245
  # })
16104
16246
  #
16105
16247
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactRoutingData AWS API Documentation
@@ -16666,7 +16808,14 @@ module Aws::Connect
16666
16808
  end
16667
16809
 
16668
16810
  # Updates a predefined attribute for the specified Amazon Connect
16669
- # instance.
16811
+ # instance. *Predefined attributes* are attributes in an Amazon Connect
16812
+ # instance that can be used to route contacts to an agent or pools of
16813
+ # agents within a queue. For more information, see [Create predefined
16814
+ # attributes for routing contacts to agents][1].
16815
+ #
16816
+ #
16817
+ #
16818
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
16670
16819
  #
16671
16820
  # @option params [required, String] :instance_id
16672
16821
  # The identifier of the Amazon Connect instance. You can find the
@@ -17406,6 +17555,16 @@ module Aws::Connect
17406
17555
 
17407
17556
  # Updates a security profile.
17408
17557
  #
17558
+ # For information about security profiles, see [Security Profiles][1] in
17559
+ # the *Amazon Connect Administrator Guide*. For a mapping of the API
17560
+ # name and user interface name of the security profile permissions, see
17561
+ # [List of security profile permissions][2].
17562
+ #
17563
+ #
17564
+ #
17565
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/connect-security-profiles.html
17566
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
17567
+ #
17409
17568
  # @option params [String] :description
17410
17569
  # The description of the security profile.
17411
17570
  #
@@ -18138,14 +18297,19 @@ module Aws::Connect
18138
18297
  # @api private
18139
18298
  def build_request(operation_name, params = {})
18140
18299
  handlers = @handlers.for(operation_name)
18300
+ tracer = config.telemetry_provider.tracer_provider.tracer(
18301
+ Aws::Telemetry.module_to_tracer_name('Aws::Connect')
18302
+ )
18141
18303
  context = Seahorse::Client::RequestContext.new(
18142
18304
  operation_name: operation_name,
18143
18305
  operation: config.api.operation(operation_name),
18144
18306
  client: self,
18145
18307
  params: params,
18146
- config: config)
18308
+ config: config,
18309
+ tracer: tracer
18310
+ )
18147
18311
  context[:gem_name] = 'aws-sdk-connect'
18148
- context[:gem_version] = '1.170.0'
18312
+ context[:gem_version] = '1.172.0'
18149
18313
  Seahorse::Client::Request.new(handlers, context)
18150
18314
  end
18151
18315
 
@@ -534,6 +534,7 @@ module Aws::Connect
534
534
  GetTaskTemplateResponse = Shapes::StructureShape.new(name: 'GetTaskTemplateResponse')
535
535
  GetTrafficDistributionRequest = Shapes::StructureShape.new(name: 'GetTrafficDistributionRequest')
536
536
  GetTrafficDistributionResponse = Shapes::StructureShape.new(name: 'GetTrafficDistributionResponse')
537
+ GlobalSignInEndpoint = Shapes::StringShape.new(name: 'GlobalSignInEndpoint')
537
538
  Grouping = Shapes::StringShape.new(name: 'Grouping')
538
539
  GroupingV2 = Shapes::StringShape.new(name: 'GroupingV2')
539
540
  Groupings = Shapes::ListShape.new(name: 'Groupings')
@@ -594,6 +595,7 @@ module Aws::Connect
594
595
  InstanceAttributeValue = Shapes::StringShape.new(name: 'InstanceAttributeValue')
595
596
  InstanceId = Shapes::StringShape.new(name: 'InstanceId')
596
597
  InstanceIdOrArn = Shapes::StringShape.new(name: 'InstanceIdOrArn')
598
+ InstanceReplicationStatus = Shapes::StringShape.new(name: 'InstanceReplicationStatus')
597
599
  InstanceStatus = Shapes::StringShape.new(name: 'InstanceStatus')
598
600
  InstanceStatusReason = Shapes::StructureShape.new(name: 'InstanceStatusReason')
599
601
  InstanceStorageConfig = Shapes::StructureShape.new(name: 'InstanceStorageConfig')
@@ -957,6 +959,10 @@ module Aws::Connect
957
959
  ReleasePhoneNumberRequest = Shapes::StructureShape.new(name: 'ReleasePhoneNumberRequest')
958
960
  ReplicateInstanceRequest = Shapes::StructureShape.new(name: 'ReplicateInstanceRequest')
959
961
  ReplicateInstanceResponse = Shapes::StructureShape.new(name: 'ReplicateInstanceResponse')
962
+ ReplicationConfiguration = Shapes::StructureShape.new(name: 'ReplicationConfiguration')
963
+ ReplicationStatusReason = Shapes::StringShape.new(name: 'ReplicationStatusReason')
964
+ ReplicationStatusSummary = Shapes::StructureShape.new(name: 'ReplicationStatusSummary')
965
+ ReplicationStatusSummaryList = Shapes::ListShape.new(name: 'ReplicationStatusSummaryList')
960
966
  RequestIdentifier = Shapes::StringShape.new(name: 'RequestIdentifier')
961
967
  RequiredFieldInfo = Shapes::StructureShape.new(name: 'RequiredFieldInfo')
962
968
  RequiredTaskTemplateFields = Shapes::ListShape.new(name: 'RequiredTaskTemplateFields')
@@ -974,6 +980,10 @@ module Aws::Connect
974
980
  ResumeContactRequest = Shapes::StructureShape.new(name: 'ResumeContactRequest')
975
981
  ResumeContactResponse = Shapes::StructureShape.new(name: 'ResumeContactResponse')
976
982
  RoutingCriteria = Shapes::StructureShape.new(name: 'RoutingCriteria')
983
+ RoutingCriteriaInput = Shapes::StructureShape.new(name: 'RoutingCriteriaInput')
984
+ RoutingCriteriaInputStep = Shapes::StructureShape.new(name: 'RoutingCriteriaInputStep')
985
+ RoutingCriteriaInputStepExpiry = Shapes::StructureShape.new(name: 'RoutingCriteriaInputStepExpiry')
986
+ RoutingCriteriaInputSteps = Shapes::ListShape.new(name: 'RoutingCriteriaInputSteps')
977
987
  RoutingCriteriaStepStatus = Shapes::StringShape.new(name: 'RoutingCriteriaStepStatus')
978
988
  RoutingExpression = Shapes::StringShape.new(name: 'RoutingExpression')
979
989
  RoutingExpressions = Shapes::ListShape.new(name: 'RoutingExpressions')
@@ -2511,6 +2521,7 @@ module Aws::Connect
2511
2521
  DescribeInstanceRequest.struct_class = Types::DescribeInstanceRequest
2512
2522
 
2513
2523
  DescribeInstanceResponse.add_member(:instance, Shapes::ShapeRef.new(shape: Instance, location_name: "Instance"))
2524
+ DescribeInstanceResponse.add_member(:replication_configuration, Shapes::ShapeRef.new(shape: ReplicationConfiguration, location_name: "ReplicationConfiguration"))
2514
2525
  DescribeInstanceResponse.struct_class = Types::DescribeInstanceResponse
2515
2526
 
2516
2527
  DescribeInstanceStorageConfigRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
@@ -4396,6 +4407,18 @@ module Aws::Connect
4396
4407
  ReplicateInstanceResponse.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
4397
4408
  ReplicateInstanceResponse.struct_class = Types::ReplicateInstanceResponse
4398
4409
 
4410
+ ReplicationConfiguration.add_member(:replication_status_summary_list, Shapes::ShapeRef.new(shape: ReplicationStatusSummaryList, location_name: "ReplicationStatusSummaryList"))
4411
+ ReplicationConfiguration.add_member(:source_region, Shapes::ShapeRef.new(shape: AwsRegion, location_name: "SourceRegion"))
4412
+ ReplicationConfiguration.add_member(:global_sign_in_endpoint, Shapes::ShapeRef.new(shape: GlobalSignInEndpoint, location_name: "GlobalSignInEndpoint"))
4413
+ ReplicationConfiguration.struct_class = Types::ReplicationConfiguration
4414
+
4415
+ ReplicationStatusSummary.add_member(:region, Shapes::ShapeRef.new(shape: AwsRegion, location_name: "Region"))
4416
+ ReplicationStatusSummary.add_member(:replication_status, Shapes::ShapeRef.new(shape: InstanceReplicationStatus, location_name: "ReplicationStatus"))
4417
+ ReplicationStatusSummary.add_member(:replication_status_reason, Shapes::ShapeRef.new(shape: ReplicationStatusReason, location_name: "ReplicationStatusReason"))
4418
+ ReplicationStatusSummary.struct_class = Types::ReplicationStatusSummary
4419
+
4420
+ ReplicationStatusSummaryList.member = Shapes::ShapeRef.new(shape: ReplicationStatusSummary)
4421
+
4399
4422
  RequiredFieldInfo.add_member(:id, Shapes::ShapeRef.new(shape: TaskTemplateFieldIdentifier, location_name: "Id"))
4400
4423
  RequiredFieldInfo.struct_class = Types::RequiredFieldInfo
4401
4424
 
@@ -4439,6 +4462,18 @@ module Aws::Connect
4439
4462
  RoutingCriteria.add_member(:index, Shapes::ShapeRef.new(shape: Index, location_name: "Index"))
4440
4463
  RoutingCriteria.struct_class = Types::RoutingCriteria
4441
4464
 
4465
+ RoutingCriteriaInput.add_member(:steps, Shapes::ShapeRef.new(shape: RoutingCriteriaInputSteps, location_name: "Steps"))
4466
+ RoutingCriteriaInput.struct_class = Types::RoutingCriteriaInput
4467
+
4468
+ RoutingCriteriaInputStep.add_member(:expiry, Shapes::ShapeRef.new(shape: RoutingCriteriaInputStepExpiry, location_name: "Expiry"))
4469
+ RoutingCriteriaInputStep.add_member(:expression, Shapes::ShapeRef.new(shape: Expression, location_name: "Expression"))
4470
+ RoutingCriteriaInputStep.struct_class = Types::RoutingCriteriaInputStep
4471
+
4472
+ RoutingCriteriaInputStepExpiry.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: DurationInSeconds, location_name: "DurationInSeconds"))
4473
+ RoutingCriteriaInputStepExpiry.struct_class = Types::RoutingCriteriaInputStepExpiry
4474
+
4475
+ RoutingCriteriaInputSteps.member = Shapes::ShapeRef.new(shape: RoutingCriteriaInputStep)
4476
+
4442
4477
  RoutingExpressions.member = Shapes::ShapeRef.new(shape: RoutingExpression)
4443
4478
 
4444
4479
  RoutingProfile.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
@@ -5306,6 +5341,7 @@ module Aws::Connect
5306
5341
  UpdateContactRoutingDataRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location: "uri", location_name: "ContactId"))
5307
5342
  UpdateContactRoutingDataRequest.add_member(:queue_time_adjustment_seconds, Shapes::ShapeRef.new(shape: QueueTimeAdjustmentSeconds, location_name: "QueueTimeAdjustmentSeconds"))
5308
5343
  UpdateContactRoutingDataRequest.add_member(:queue_priority, Shapes::ShapeRef.new(shape: QueuePriority, location_name: "QueuePriority"))
5344
+ UpdateContactRoutingDataRequest.add_member(:routing_criteria, Shapes::ShapeRef.new(shape: RoutingCriteriaInput, location_name: "RoutingCriteria"))
5309
5345
  UpdateContactRoutingDataRequest.struct_class = Types::UpdateContactRoutingDataRequest
5310
5346
 
5311
5347
  UpdateContactRoutingDataResponse.struct_class = Types::UpdateContactRoutingDataResponse
@@ -456,11 +456,11 @@ module Aws::Connect
456
456
  end
457
457
 
458
458
  # Can be used to define a list of preferred agents to target the contact
459
- # within the queue. Note that agents must have the queue in their
460
- # routing profile in order to be offered the contact.
459
+ # to within the queue.Note that agents must have the queue in their
460
+ # routing profile in order to be offered thecontact.
461
461
  #
462
462
  # @!attribute [rw] agent_ids
463
- # An object to specify a list of agents, by Agent ID.
463
+ # An object to specify a list of agents, by user ID.
464
464
  # @return [Array<String>]
465
465
  #
466
466
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentsCriteria AWS API Documentation
@@ -959,7 +959,7 @@ module Aws::Connect
959
959
  # @return [String]
960
960
  #
961
961
  # @!attribute [rw] key
962
- # A valid security key in PEM format.
962
+ # A valid security key in PEM format as a String.
963
963
  # @return [String]
964
964
  #
965
965
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateSecurityKeyRequest AWS API Documentation
@@ -5967,10 +5967,25 @@ module Aws::Connect
5967
5967
  # The name of the instance.
5968
5968
  # @return [Types::Instance]
5969
5969
  #
5970
+ # @!attribute [rw] replication_configuration
5971
+ # Status information about the replication process. This field is
5972
+ # included only when you are using the [ReplicateInstance][1] API to
5973
+ # replicate an Amazon Connect instance across Amazon Web Services
5974
+ # Regions. For information about replicating Amazon Connect instances,
5975
+ # see [Create a replica of your existing Amazon Connect instance][2]
5976
+ # in the *Amazon Connect Administrator Guide*.
5977
+ #
5978
+ #
5979
+ #
5980
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ReplicateInstance.html
5981
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/create-replica-connect-instance.html
5982
+ # @return [Types::ReplicationConfiguration]
5983
+ #
5970
5984
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstanceResponse AWS API Documentation
5971
5985
  #
5972
5986
  class DescribeInstanceResponse < Struct.new(
5973
- :instance)
5987
+ :instance,
5988
+ :replication_configuration)
5974
5989
  SENSITIVE = []
5975
5990
  include Aws::Structure
5976
5991
  end
@@ -10117,7 +10132,7 @@ module Aws::Connect
10117
10132
  #
10118
10133
  # </note>
10119
10134
  #
10120
- # SUM\_CONTACTS\_ABANDONED
10135
+ # CONTACTS\_ABANDONED
10121
10136
  #
10122
10137
  # : Unit: Count
10123
10138
  #
@@ -14313,10 +14328,10 @@ module Aws::Connect
14313
14328
  include Aws::Structure
14314
14329
  end
14315
14330
 
14316
- # An object to define `AgentsCriteria`.
14331
+ # An object to define AgentsCriteria.
14317
14332
  #
14318
14333
  # @!attribute [rw] agents_criteria
14319
- # An object to define `AgentIds`.
14334
+ # An object to define agentIds.
14320
14335
  # @return [Types::AgentsCriteria]
14321
14336
  #
14322
14337
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/MatchCriteria AWS API Documentation
@@ -16594,6 +16609,92 @@ module Aws::Connect
16594
16609
  include Aws::Structure
16595
16610
  end
16596
16611
 
16612
+ # Details about the status of the replication of a source Amazon Connect
16613
+ # instance across Amazon Web Services Regions. Use these details to
16614
+ # understand the general status of a given replication. For information
16615
+ # about why a replication process may fail, see [Why a ReplicateInstance
16616
+ # call fails][1] in the *Create a replica of your existing Amazon
16617
+ # Connect instance* topic in the *Amazon Connect Administrator Guide*.
16618
+ #
16619
+ #
16620
+ #
16621
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-replica-connect-instance.html#why-replicateinstance-fails
16622
+ #
16623
+ # @!attribute [rw] replication_status_summary_list
16624
+ # A list of replication status summaries. The summaries contain
16625
+ # details about the replication of configuration information for
16626
+ # Amazon Connect resources, for each Amazon Web Services Region.
16627
+ # @return [Array<Types::ReplicationStatusSummary>]
16628
+ #
16629
+ # @!attribute [rw] source_region
16630
+ # The Amazon Web Services Region where the source Amazon Connect
16631
+ # instance was created. This is the Region where the
16632
+ # [ReplicateInstance][1] API was called to start the replication
16633
+ # process.
16634
+ #
16635
+ #
16636
+ #
16637
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ReplicateInstance.html
16638
+ # @return [String]
16639
+ #
16640
+ # @!attribute [rw] global_sign_in_endpoint
16641
+ # The URL that is used to sign-in to your Amazon Connect instance
16642
+ # according to your traffic distribution group configuration. For more
16643
+ # information about sign-in and traffic distribution groups, see
16644
+ # [Important things to know][1] in the *Create traffic distribution
16645
+ # groups* topic in the *Amazon Connect Administrator Guide*.
16646
+ #
16647
+ #
16648
+ #
16649
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-traffic-distribution-groups.html
16650
+ # @return [String]
16651
+ #
16652
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ReplicationConfiguration AWS API Documentation
16653
+ #
16654
+ class ReplicationConfiguration < Struct.new(
16655
+ :replication_status_summary_list,
16656
+ :source_region,
16657
+ :global_sign_in_endpoint)
16658
+ SENSITIVE = []
16659
+ include Aws::Structure
16660
+ end
16661
+
16662
+ # Status information about the replication process, where you use the
16663
+ # [ReplicateInstance][1] API to create a replica of your Amazon Connect
16664
+ # instance in another Amazon Web Services Region. For more information,
16665
+ # see [Set up Amazon Connect Global Resiliency][2] in the *Amazon
16666
+ # Connect Administrator Guide*.
16667
+ #
16668
+ #
16669
+ #
16670
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ReplicateInstance.html
16671
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/setup-connect-global-resiliency.html
16672
+ #
16673
+ # @!attribute [rw] region
16674
+ # The Amazon Web Services Region. This can be either the source or the
16675
+ # replica Region, depending where it appears in the summary list.
16676
+ # @return [String]
16677
+ #
16678
+ # @!attribute [rw] replication_status
16679
+ # The state of the replication.
16680
+ # @return [String]
16681
+ #
16682
+ # @!attribute [rw] replication_status_reason
16683
+ # A description of the replication status. Use this information to
16684
+ # resolve any issues that are preventing the successful replication of
16685
+ # your Amazon Connect instance to another Region.
16686
+ # @return [String]
16687
+ #
16688
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ReplicationStatusSummary AWS API Documentation
16689
+ #
16690
+ class ReplicationStatusSummary < Struct.new(
16691
+ :region,
16692
+ :replication_status,
16693
+ :replication_status_reason)
16694
+ SENSITIVE = []
16695
+ include Aws::Structure
16696
+ end
16697
+
16597
16698
  # Information about a required field.
16598
16699
  #
16599
16700
  # @!attribute [rw] id
@@ -16777,6 +16878,61 @@ module Aws::Connect
16777
16878
  include Aws::Structure
16778
16879
  end
16779
16880
 
16881
+ # An object to define the RoutingCriteria.
16882
+ #
16883
+ # @!attribute [rw] steps
16884
+ # When Amazon Connect does not find an available agent meeting the
16885
+ # requirements in a step for
 a given step duration, the routing
16886
+ # criteria will move on to the next step sequentially until a
 join is
16887
+ # completed with an agent. When all steps are exhausted, the contact
16888
+ # will be offered to any agent in the queue.
16889
+ # @return [Array<Types::RoutingCriteriaInputStep>]
16890
+ #
16891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingCriteriaInput AWS API Documentation
16892
+ #
16893
+ class RoutingCriteriaInput < Struct.new(
16894
+ :steps)
16895
+ SENSITIVE = []
16896
+ include Aws::Structure
16897
+ end
16898
+
16899
+ # Step defines the list of agents to be routed or route based on the
16900
+ # agent requirements such as ProficiencyLevel, Name, or Value.
16901
+ #
16902
+ # @!attribute [rw] expiry
16903
+ # An object to specify the expiration of a routing step.
16904
+ # @return [Types::RoutingCriteriaInputStepExpiry]
16905
+ #
16906
+ # @!attribute [rw] expression
16907
+ # A tagged union to specify expression for a routing step.
16908
+ # @return [Types::Expression]
16909
+ #
16910
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingCriteriaInputStep AWS API Documentation
16911
+ #
16912
+ class RoutingCriteriaInputStep < Struct.new(
16913
+ :expiry,
16914
+ :expression)
16915
+ SENSITIVE = []
16916
+ include Aws::Structure
16917
+ end
16918
+
16919
+ # Specify whether this routing criteria step should apply for only a
16920
+ # limited amount of time,
 or if it should never expire.
16921
+ #
16922
+ # @!attribute [rw] duration_in_seconds
16923
+ # The number of seconds that the contact will be routed only to agents
16924
+ # matching this routing
 step, if expiry was configured for this
16925
+ # routing step.
16926
+ # @return [Integer]
16927
+ #
16928
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingCriteriaInputStepExpiry AWS API Documentation
16929
+ #
16930
+ class RoutingCriteriaInputStepExpiry < Struct.new(
16931
+ :duration_in_seconds)
16932
+ SENSITIVE = []
16933
+ include Aws::Structure
16934
+ end
16935
+
16780
16936
  # Contains information about a routing profile.
16781
16937
  #
16782
16938
  # @!attribute [rw] instance_id
@@ -21337,13 +21493,19 @@ module Aws::Connect
21337
21493
  # such as 1 or 2.
21338
21494
  # @return [Integer]
21339
21495
  #
21496
+ # @!attribute [rw] routing_criteria
21497
+ # Updates the routing criteria on the contact. These properties can be
21498
+ # used to change how a
 contact is routed within the queue.
21499
+ # @return [Types::RoutingCriteriaInput]
21500
+ #
21340
21501
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactRoutingDataRequest AWS API Documentation
21341
21502
  #
21342
21503
  class UpdateContactRoutingDataRequest < Struct.new(
21343
21504
  :instance_id,
21344
21505
  :contact_id,
21345
21506
  :queue_time_adjustment_seconds,
21346
- :queue_priority)
21507
+ :queue_priority,
21508
+ :routing_criteria)
21347
21509
  SENSITIVE = []
21348
21510
  include Aws::Structure
21349
21511
  end
@@ -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.170.0'
55
+ GEM_VERSION = '1.172.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
@@ -1293,6 +1294,7 @@ module Aws
1293
1294
  interface _DescribeInstanceResponseSuccess
1294
1295
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstanceResponse]
1295
1296
  def instance: () -> Types::Instance
1297
+ def replication_configuration: () -> Types::ReplicationConfiguration
1296
1298
  end
1297
1299
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_instance-instance_method
1298
1300
  def describe_instance: (
@@ -3800,7 +3802,35 @@ module Aws
3800
3802
  instance_id: ::String,
3801
3803
  contact_id: ::String,
3802
3804
  ?queue_time_adjustment_seconds: ::Integer,
3803
- ?queue_priority: ::Integer
3805
+ ?queue_priority: ::Integer,
3806
+ ?routing_criteria: {
3807
+ steps: Array[
3808
+ {
3809
+ expiry: {
3810
+ duration_in_seconds: ::Integer?
3811
+ }?,
3812
+ expression: {
3813
+ attribute_condition: {
3814
+ name: ::String?,
3815
+ value: ::String?,
3816
+ proficiency_level: ::Float?,
3817
+ match_criteria: {
3818
+ agents_criteria: {
3819
+ agent_ids: Array[::String]?
3820
+ }?
3821
+ }?,
3822
+ comparison_operator: ::String?
3823
+ }?,
3824
+ and_expression: Array[
3825
+ untyped,
3826
+ ]?,
3827
+ or_expression: Array[
3828
+ untyped,
3829
+ ]?
3830
+ }?
3831
+ },
3832
+ ]?
3833
+ }
3804
3834
  ) -> _UpdateContactRoutingDataResponseSuccess
3805
3835
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactRoutingDataResponseSuccess
3806
3836
 
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -1474,6 +1474,7 @@ module Aws::Connect
1474
1474
 
1475
1475
  class DescribeInstanceResponse
1476
1476
  attr_accessor instance: Types::Instance
1477
+ attr_accessor replication_configuration: Types::ReplicationConfiguration
1477
1478
  SENSITIVE: []
1478
1479
  end
1479
1480
 
@@ -3883,6 +3884,20 @@ module Aws::Connect
3883
3884
  SENSITIVE: []
3884
3885
  end
3885
3886
 
3887
+ class ReplicationConfiguration
3888
+ attr_accessor replication_status_summary_list: ::Array[Types::ReplicationStatusSummary]
3889
+ attr_accessor source_region: ::String
3890
+ attr_accessor global_sign_in_endpoint: ::String
3891
+ SENSITIVE: []
3892
+ end
3893
+
3894
+ class ReplicationStatusSummary
3895
+ attr_accessor region: ::String
3896
+ attr_accessor replication_status: ("INSTANCE_REPLICATION_COMPLETE" | "INSTANCE_REPLICATION_IN_PROGRESS" | "INSTANCE_REPLICATION_FAILED" | "INSTANCE_REPLICA_DELETING" | "INSTANCE_REPLICATION_DELETION_FAILED" | "RESOURCE_REPLICATION_NOT_STARTED")
3897
+ attr_accessor replication_status_reason: ::String
3898
+ SENSITIVE: []
3899
+ end
3900
+
3886
3901
  class RequiredFieldInfo
3887
3902
  attr_accessor id: Types::TaskTemplateFieldIdentifier
3888
3903
  SENSITIVE: []
@@ -3942,6 +3957,22 @@ module Aws::Connect
3942
3957
  SENSITIVE: []
3943
3958
  end
3944
3959
 
3960
+ class RoutingCriteriaInput
3961
+ attr_accessor steps: ::Array[Types::RoutingCriteriaInputStep]
3962
+ SENSITIVE: []
3963
+ end
3964
+
3965
+ class RoutingCriteriaInputStep
3966
+ attr_accessor expiry: Types::RoutingCriteriaInputStepExpiry
3967
+ attr_accessor expression: Types::Expression
3968
+ SENSITIVE: []
3969
+ end
3970
+
3971
+ class RoutingCriteriaInputStepExpiry
3972
+ attr_accessor duration_in_seconds: ::Integer
3973
+ SENSITIVE: []
3974
+ end
3975
+
3945
3976
  class RoutingProfile
3946
3977
  attr_accessor instance_id: ::String
3947
3978
  attr_accessor name: ::String
@@ -5004,6 +5035,7 @@ module Aws::Connect
5004
5035
  attr_accessor contact_id: ::String
5005
5036
  attr_accessor queue_time_adjustment_seconds: ::Integer
5006
5037
  attr_accessor queue_priority: ::Integer
5038
+ attr_accessor routing_criteria: Types::RoutingCriteriaInput
5007
5039
  SENSITIVE: []
5008
5040
  end
5009
5041
 
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.170.0
4
+ version: 1.172.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-08-08 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement