aws-sdk-qldb 1.22.0 → 1.23.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: c0ae019605845d5430d5539735cb3eadec0703c226e66e1e69a3a2a765965f6f
4
- data.tar.gz: aa607479738b134125d416274d32e961639b04d1a572dfaabce51fed760a5283
3
+ metadata.gz: c86dfc91c9e13a2fcba5ed5ad728c90977431f0fe8c34cb6ab12ce94369b3420
4
+ data.tar.gz: '09fab663a44e6e3da2f449e793e3afbeb5f7d38bfa2dba4d735f5847e1212b39'
5
5
  SHA512:
6
- metadata.gz: 8f6797ca4494f31fa65dca498d47649877ea84d2b17d2420768b083b3a96c28bfde7dc482d42b34f42dcce78da1f9dea1c357e43c110ddd102d0c6cbad164218
7
- data.tar.gz: 15fbb7d6d9d2e39f2d004f2a57429db633500c8313575ca77542b3348fbf35cfd63dabe836e15b65755dec5e7cae11fd80af68023b7b38faa8e18e73de05680d
6
+ metadata.gz: a76efa1be04cd2d6e0ce18fc3b7752ae0f15d584531ac7a3fbb40731d551e8120237bca7d48d30734920a129ce77c9aa500963183097977ab6b27c7af30787d8
7
+ data.tar.gz: 6a7000dee82a21635f22857dedf3e119a208b5fb431eff08fdbbbcd7d2794cf6343121fb78b056e31c422a4f1c30499c38c452422523e6d9f6630f63085a5897
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Amazon QLDB now supports journal exports in JSON and Ion Binary formats. This release adds an optional OutputFormat parameter to the ExportJournalToS3 API.
8
+
4
9
  1.22.0 (2021-11-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::QLDB
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
80
 
@@ -175,6 +177,10 @@ module Aws::QLDB
175
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
178
  # a clock skew correction and retry requests with skewed client clocks.
177
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
178
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
185
  # Set to true to disable SDK automatically adding host prefix
180
186
  # to default service endpoint when available.
@@ -297,7 +303,7 @@ module Aws::QLDB
297
303
  # seconds to wait when opening a HTTP session before raising a
298
304
  # `Timeout::Error`.
299
305
  #
300
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
301
307
  # number of seconds to wait for response data. This value can
302
308
  # safely be set per-request on the session.
303
309
  #
@@ -313,6 +319,9 @@ module Aws::QLDB
313
319
  # disables this behaviour. This value can safely be set per
314
320
  # request on the session.
315
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
316
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
317
326
  # HTTP debug output will be sent to the `:logger`.
318
327
  #
@@ -376,11 +385,13 @@ module Aws::QLDB
376
385
  req.send_request(options)
377
386
  end
378
387
 
379
- # Creates a new ledger in your account in the current Region.
388
+ # Creates a new ledger in your Amazon Web Services account in the
389
+ # current Region.
380
390
  #
381
391
  # @option params [required, String] :name
382
392
  # The name of the ledger that you want to create. The name must be
383
- # unique among all of the ledgers in your account in the current Region.
393
+ # unique among all of the ledgers in your Amazon Web Services account in
394
+ # the current Region.
384
395
  #
385
396
  # Naming constraints for ledger names are defined in [Quotas in Amazon
386
397
  # QLDB][1] in the *Amazon QLDB Developer Guide*.
@@ -460,7 +471,7 @@ module Aws::QLDB
460
471
  # To specify a customer managed KMS key, you can use its key ID, Amazon
461
472
  # Resource Name (ARN), alias name, or alias ARN. When using an alias
462
473
  # name, prefix it with `"alias/"`. To specify a key in a different
463
- # account, you must use the key ARN or alias ARN.
474
+ # Amazon Web Services account, you must use the key ARN or alias ARN.
464
475
  #
465
476
  # For example:
466
477
  #
@@ -653,6 +664,7 @@ module Aws::QLDB
653
664
  # resp.export_description.s3_export_configuration.encryption_configuration.object_encryption_type #=> String, one of "SSE_KMS", "SSE_S3", "NO_ENCRYPTION"
654
665
  # resp.export_description.s3_export_configuration.encryption_configuration.kms_key_arn #=> String
655
666
  # resp.export_description.role_arn #=> String
667
+ # resp.export_description.output_format #=> String, one of "ION_BINARY", "ION_TEXT", "JSON"
656
668
  #
657
669
  # @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/DescribeJournalS3Export AWS API Documentation
658
670
  #
@@ -707,8 +719,17 @@ module Aws::QLDB
707
719
  end
708
720
 
709
721
  # Exports journal contents within a date and time range from a ledger
710
- # into a specified Amazon Simple Storage Service (Amazon S3) bucket. The
711
- # data is written as files in Amazon Ion format.
722
+ # into a specified Amazon Simple Storage Service (Amazon S3) bucket. A
723
+ # journal export job can write the data objects in either the text or
724
+ # binary representation of Amazon Ion format, or in *JSON Lines* text
725
+ # format.
726
+ #
727
+ # In JSON Lines format, each journal block in the exported data object
728
+ # is a valid JSON object that is delimited by a newline. You can use
729
+ # this format to easily integrate JSON exports with analytics tools such
730
+ # as Glue and Amazon Athena because these services can parse
731
+ # newline-delimited JSON automatically. For more information about the
732
+ # format, see [JSON Lines][1].
712
733
  #
713
734
  # If the ledger with the given `Name` doesn't exist, then throws
714
735
  # `ResourceNotFoundException`.
@@ -720,6 +741,10 @@ module Aws::QLDB
720
741
  # ledger. Beyond this limit, journal export requests throw
721
742
  # `LimitExceededException`.
722
743
  #
744
+ #
745
+ #
746
+ # [1]: https://jsonlines.org/
747
+ #
723
748
  # @option params [required, String] :name
724
749
  # The name of the ledger.
725
750
  #
@@ -759,8 +784,16 @@ module Aws::QLDB
759
784
  # * Write objects into your Amazon Simple Storage Service (Amazon S3)
760
785
  # bucket.
761
786
  #
762
- # * (Optional) Use your customer master key (CMK) in Key Management
763
- # Service (KMS) for server-side encryption of your exported data.
787
+ # * (Optional) Use your customer managed key in Key Management Service
788
+ # (KMS) for server-side encryption of your exported data.
789
+ #
790
+ # To pass a role to QLDB when requesting a journal export, you must have
791
+ # permissions to perform the `iam:PassRole` action on the IAM role
792
+ # resource. This is required for all journal export requests.
793
+ #
794
+ # @option params [String] :output_format
795
+ # The output format of your exported journal data. If this parameter is
796
+ # not specified, the exported data defaults to `ION_TEXT` format.
764
797
  #
765
798
  # @return [Types::ExportJournalToS3Response] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
766
799
  #
@@ -781,6 +814,7 @@ module Aws::QLDB
781
814
  # },
782
815
  # },
783
816
  # role_arn: "Arn", # required
817
+ # output_format: "ION_BINARY", # accepts ION_BINARY, ION_TEXT, JSON
784
818
  # })
785
819
  #
786
820
  # @example Response structure
@@ -1024,7 +1058,8 @@ module Aws::QLDB
1024
1058
  end
1025
1059
 
1026
1060
  # Returns an array of journal export job descriptions for all ledgers
1027
- # that are associated with the current account and Region.
1061
+ # that are associated with the current Amazon Web Services account and
1062
+ # Region.
1028
1063
  #
1029
1064
  # This action returns a maximum of `MaxResults` items, and is paginated
1030
1065
  # so that you can retrieve all the items by calling
@@ -1077,6 +1112,7 @@ module Aws::QLDB
1077
1112
  # resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.object_encryption_type #=> String, one of "SSE_KMS", "SSE_S3", "NO_ENCRYPTION"
1078
1113
  # resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.kms_key_arn #=> String
1079
1114
  # resp.journal_s3_exports[0].role_arn #=> String
1115
+ # resp.journal_s3_exports[0].output_format #=> String, one of "ION_BINARY", "ION_TEXT", "JSON"
1080
1116
  # resp.next_token #=> String
1081
1117
  #
1082
1118
  # @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/ListJournalS3Exports AWS API Documentation
@@ -1146,6 +1182,7 @@ module Aws::QLDB
1146
1182
  # resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.object_encryption_type #=> String, one of "SSE_KMS", "SSE_S3", "NO_ENCRYPTION"
1147
1183
  # resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.kms_key_arn #=> String
1148
1184
  # resp.journal_s3_exports[0].role_arn #=> String
1185
+ # resp.journal_s3_exports[0].output_format #=> String, one of "ION_BINARY", "ION_TEXT", "JSON"
1149
1186
  # resp.next_token #=> String
1150
1187
  #
1151
1188
  # @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/ListJournalS3ExportsForLedger AWS API Documentation
@@ -1158,7 +1195,7 @@ module Aws::QLDB
1158
1195
  end
1159
1196
 
1160
1197
  # Returns an array of ledger summaries that are associated with the
1161
- # current account and Region.
1198
+ # current Amazon Web Services account and Region.
1162
1199
  #
1163
1200
  # This action returns a maximum of 100 items and is paginated so that
1164
1201
  # you can retrieve all the items by calling `ListLedgers` multiple
@@ -1250,6 +1287,10 @@ module Aws::QLDB
1250
1287
  # permissions for a journal stream to write data records to a Kinesis
1251
1288
  # Data Streams resource.
1252
1289
  #
1290
+ # To pass a role to QLDB when requesting a journal stream, you must have
1291
+ # permissions to perform the `iam:PassRole` action on the IAM role
1292
+ # resource. This is required for all journal stream requests.
1293
+ #
1253
1294
  # @option params [Hash<String,String>] :tags
1254
1295
  # The key-value pairs to add as tags to the stream that you want to
1255
1296
  # create. Tag keys are case sensitive. Tag values are case sensitive and
@@ -1432,7 +1473,7 @@ module Aws::QLDB
1432
1473
  # To specify a customer managed KMS key, you can use its key ID, Amazon
1433
1474
  # Resource Name (ARN), alias name, or alias ARN. When using an alias
1434
1475
  # name, prefix it with `"alias/"`. To specify a key in a different
1435
- # account, you must use the key ARN or alias ARN.
1476
+ # Amazon Web Services account, you must use the key ARN or alias ARN.
1436
1477
  #
1437
1478
  # For example:
1438
1479
  #
@@ -1580,7 +1621,7 @@ module Aws::QLDB
1580
1621
  params: params,
1581
1622
  config: config)
1582
1623
  context[:gem_name] = 'aws-sdk-qldb'
1583
- context[:gem_version] = '1.22.0'
1624
+ context[:gem_version] = '1.23.0'
1584
1625
  Seahorse::Client::Request.new(handlers, context)
1585
1626
  end
1586
1627
 
@@ -66,6 +66,7 @@ module Aws::QLDB
66
66
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
67
67
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
68
68
  NextToken = Shapes::StringShape.new(name: 'NextToken')
69
+ OutputFormat = Shapes::StringShape.new(name: 'OutputFormat')
69
70
  ParameterName = Shapes::StringShape.new(name: 'ParameterName')
70
71
  PermissionsMode = Shapes::StringShape.new(name: 'PermissionsMode')
71
72
  ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
@@ -156,6 +157,7 @@ module Aws::QLDB
156
157
  ExportJournalToS3Request.add_member(:exclusive_end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ExclusiveEndTime"))
157
158
  ExportJournalToS3Request.add_member(:s3_export_configuration, Shapes::ShapeRef.new(shape: S3ExportConfiguration, required: true, location_name: "S3ExportConfiguration"))
158
159
  ExportJournalToS3Request.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "RoleArn"))
160
+ ExportJournalToS3Request.add_member(:output_format, Shapes::ShapeRef.new(shape: OutputFormat, location_name: "OutputFormat"))
159
161
  ExportJournalToS3Request.struct_class = Types::ExportJournalToS3Request
160
162
 
161
163
  ExportJournalToS3Response.add_member(:export_id, Shapes::ShapeRef.new(shape: UniqueId, required: true, location_name: "ExportId"))
@@ -214,6 +216,7 @@ module Aws::QLDB
214
216
  JournalS3ExportDescription.add_member(:exclusive_end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ExclusiveEndTime"))
215
217
  JournalS3ExportDescription.add_member(:s3_export_configuration, Shapes::ShapeRef.new(shape: S3ExportConfiguration, required: true, location_name: "S3ExportConfiguration"))
216
218
  JournalS3ExportDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "RoleArn"))
219
+ JournalS3ExportDescription.add_member(:output_format, Shapes::ShapeRef.new(shape: OutputFormat, location_name: "OutputFormat"))
217
220
  JournalS3ExportDescription.struct_class = Types::JournalS3ExportDescription
218
221
 
219
222
  JournalS3ExportList.member = Shapes::ShapeRef.new(shape: JournalS3ExportDescription)
@@ -63,8 +63,8 @@ module Aws::QLDB
63
63
  #
64
64
  # @!attribute [rw] name
65
65
  # The name of the ledger that you want to create. The name must be
66
- # unique among all of the ledgers in your account in the current
67
- # Region.
66
+ # unique among all of the ledgers in your Amazon Web Services account
67
+ # in the current Region.
68
68
  #
69
69
  # Naming constraints for ledger names are defined in [Quotas in Amazon
70
70
  # QLDB][1] in the *Amazon QLDB Developer Guide*.
@@ -148,7 +148,8 @@ module Aws::QLDB
148
148
  # To specify a customer managed KMS key, you can use its key ID,
149
149
  # Amazon Resource Name (ARN), alias name, or alias ARN. When using an
150
150
  # alias name, prefix it with `"alias/"`. To specify a key in a
151
- # different account, you must use the key ARN or alias ARN.
151
+ # different Amazon Web Services account, you must use the key ARN or
152
+ # alias ARN.
152
153
  #
153
154
  # For example:
154
155
  #
@@ -419,6 +420,7 @@ module Aws::QLDB
419
420
  # },
420
421
  # },
421
422
  # role_arn: "Arn", # required
423
+ # output_format: "ION_BINARY", # accepts ION_BINARY, ION_TEXT, JSON
422
424
  # }
423
425
  #
424
426
  # @!attribute [rw] name
@@ -464,8 +466,17 @@ module Aws::QLDB
464
466
  # * Write objects into your Amazon Simple Storage Service (Amazon S3)
465
467
  # bucket.
466
468
  #
467
- # * (Optional) Use your customer master key (CMK) in Key Management
468
- # Service (KMS) for server-side encryption of your exported data.
469
+ # * (Optional) Use your customer managed key in Key Management Service
470
+ # (KMS) for server-side encryption of your exported data.
471
+ #
472
+ # To pass a role to QLDB when requesting a journal export, you must
473
+ # have permissions to perform the `iam:PassRole` action on the IAM
474
+ # role resource. This is required for all journal export requests.
475
+ # @return [String]
476
+ #
477
+ # @!attribute [rw] output_format
478
+ # The output format of your exported journal data. If this parameter
479
+ # is not specified, the exported data defaults to `ION_TEXT` format.
469
480
  # @return [String]
470
481
  #
471
482
  # @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/ExportJournalToS3Request AWS API Documentation
@@ -475,7 +486,8 @@ module Aws::QLDB
475
486
  :inclusive_start_time,
476
487
  :exclusive_end_time,
477
488
  :s3_export_configuration,
478
- :role_arn)
489
+ :role_arn,
490
+ :output_format)
479
491
  SENSITIVE = []
480
492
  include Aws::Structure
481
493
  end
@@ -788,12 +800,12 @@ module Aws::QLDB
788
800
  #
789
801
  # @!attribute [rw] inclusive_start_time
790
802
  # The inclusive start date and time for the range of journal contents
791
- # that are specified in the original export request.
803
+ # that was specified in the original export request.
792
804
  # @return [Time]
793
805
  #
794
806
  # @!attribute [rw] exclusive_end_time
795
807
  # The exclusive end date and time for the range of journal contents
796
- # that are specified in the original export request.
808
+ # that was specified in the original export request.
797
809
  # @return [Time]
798
810
  #
799
811
  # @!attribute [rw] s3_export_configuration
@@ -808,8 +820,12 @@ module Aws::QLDB
808
820
  # * Write objects into your Amazon Simple Storage Service (Amazon S3)
809
821
  # bucket.
810
822
  #
811
- # * (Optional) Use your customer master key (CMK) in Key Management
812
- # Service (KMS) for server-side encryption of your exported data.
823
+ # * (Optional) Use your customer managed key in Key Management Service
824
+ # (KMS) for server-side encryption of your exported data.
825
+ # @return [String]
826
+ #
827
+ # @!attribute [rw] output_format
828
+ # The output format of the exported journal data.
813
829
  # @return [String]
814
830
  #
815
831
  # @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/JournalS3ExportDescription AWS API Documentation
@@ -822,7 +838,8 @@ module Aws::QLDB
822
838
  :inclusive_start_time,
823
839
  :exclusive_end_time,
824
840
  :s3_export_configuration,
825
- :role_arn)
841
+ :role_arn,
842
+ :output_format)
826
843
  SENSITIVE = []
827
844
  include Aws::Structure
828
845
  end
@@ -1129,7 +1146,8 @@ module Aws::QLDB
1129
1146
 
1130
1147
  # @!attribute [rw] journal_s3_exports
1131
1148
  # The array of journal export job descriptions for all ledgers that
1132
- # are associated with the current account and Region.
1149
+ # are associated with the current Amazon Web Services account and
1150
+ # Region.
1133
1151
  # @return [Array<Types::JournalS3ExportDescription>]
1134
1152
  #
1135
1153
  # @!attribute [rw] next_token
@@ -1181,7 +1199,7 @@ module Aws::QLDB
1181
1199
 
1182
1200
  # @!attribute [rw] ledgers
1183
1201
  # The array of ledger summaries that are associated with the current
1184
- # account and Region.
1202
+ # Amazon Web Services account and Region.
1185
1203
  # @return [Array<Types::LedgerSummary>]
1186
1204
  #
1187
1205
  # @!attribute [rw] next_token
@@ -1356,9 +1374,8 @@ module Aws::QLDB
1356
1374
  # @return [String]
1357
1375
  #
1358
1376
  # @!attribute [rw] kms_key_arn
1359
- # The Amazon Resource Name (ARN) of a symmetric customer master key
1360
- # (CMK) in Key Management Service (KMS). Amazon S3 does not support
1361
- # asymmetric CMKs.
1377
+ # The Amazon Resource Name (ARN) of a symmetric key in Key Management
1378
+ # Service (KMS). Amazon S3 does not support asymmetric KMS keys.
1362
1379
  #
1363
1380
  # You must provide a `KmsKeyArn` if you specify `SSE_KMS` as the
1364
1381
  # `ObjectEncryptionType`.
@@ -1466,6 +1483,10 @@ module Aws::QLDB
1466
1483
  # The Amazon Resource Name (ARN) of the IAM role that grants QLDB
1467
1484
  # permissions for a journal stream to write data records to a Kinesis
1468
1485
  # Data Streams resource.
1486
+ #
1487
+ # To pass a role to QLDB when requesting a journal stream, you must
1488
+ # have permissions to perform the `iam:PassRole` action on the IAM
1489
+ # role resource. This is required for all journal stream requests.
1469
1490
  # @return [String]
1470
1491
  #
1471
1492
  # @!attribute [rw] tags
@@ -1737,7 +1758,8 @@ module Aws::QLDB
1737
1758
  # To specify a customer managed KMS key, you can use its key ID,
1738
1759
  # Amazon Resource Name (ARN), alias name, or alias ARN. When using an
1739
1760
  # alias name, prefix it with `"alias/"`. To specify a key in a
1740
- # different account, you must use the key ARN or alias ARN.
1761
+ # different Amazon Web Services account, you must use the key ARN or
1762
+ # alias ARN.
1741
1763
  #
1742
1764
  # For example:
1743
1765
  #
data/lib/aws-sdk-qldb.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-qldb/customizations'
48
48
  # @!group service
49
49
  module Aws::QLDB
50
50
 
51
- GEM_VERSION = '1.22.0'
51
+ GEM_VERSION = '1.23.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-qldb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.23.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: 2021-11-30 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.122.0
22
+ version: 3.125.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.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement