aws-sdk-cloudwatchlogs 1.105.0 → 1.107.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatchlogs/client.rb +107 -24
- data/lib/aws-sdk-cloudwatchlogs/types.rb +34 -11
- data/lib/aws-sdk-cloudwatchlogs.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62c15304614fa28ce6ab147d2895bc78a93367488b3e5bcd87c5eff32341cabb
|
4
|
+
data.tar.gz: '0417995d810095732e854e3b32237c6cba45e19c8b77d8553db77fd7b669fa79'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4552a85c2505a4ba2fd743c6d11aabc58d1b2cd11a4b0b8db84bb58b390741419a32e1a22ae6ffb9856426d713af3c3f4e152c4259bff59e6109b9f46dffda6f
|
7
|
+
data.tar.gz: 73dc9b59d6927777f40f09b567d26d1714d068afa33b3dce3f3f59ab02ded656e151036781f6ec411d756cf0d5026fcc9b2c36eee15332e05ac83d9f499cbc75
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.107.0 (2025-01-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation-only update to address doc errors
|
8
|
+
|
9
|
+
1.106.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.105.0 (2024-12-13)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.107.0
|
@@ -268,11 +268,34 @@ module Aws::CloudWatchLogs
|
|
268
268
|
# Used when loading credentials from the shared credentials file
|
269
269
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
270
270
|
#
|
271
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
272
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
273
|
+
#
|
274
|
+
# * `when_supported` - (default) When set, a checksum will be
|
275
|
+
# calculated for all request payloads of operations modeled with the
|
276
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
277
|
+
# `requestAlgorithmMember` is modeled.
|
278
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
279
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
280
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
281
|
+
# is modeled and supplied.
|
282
|
+
#
|
271
283
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
272
284
|
# The minimum size in bytes that triggers compression for request
|
273
285
|
# bodies. The value must be non-negative integer value between 0
|
274
286
|
# and 10485780 bytes inclusive.
|
275
287
|
#
|
288
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
289
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
290
|
+
#
|
291
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
292
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
293
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
294
|
+
# are supported.
|
295
|
+
# * `when_required` - When set, checksum validation is not performed on
|
296
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
297
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
298
|
+
#
|
276
299
|
# @option options [Proc] :retry_backoff
|
277
300
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
278
301
|
# This option is only used in the `legacy` retry mode.
|
@@ -473,9 +496,10 @@ module Aws::CloudWatchLogs
|
|
473
496
|
# parameter or the `resourceIdentifier` parameter. You can't specify
|
474
497
|
# both of those parameters in the same operation.
|
475
498
|
#
|
476
|
-
# * Specify the `logGroupName` parameter to cause
|
477
|
-
#
|
478
|
-
# ingested after the key is associated are encrypted with that
|
499
|
+
# * Specify the `logGroupName` parameter to cause log events ingested
|
500
|
+
# into that log group to be encrypted with that key. Only the log
|
501
|
+
# events ingested after the key is associated are encrypted with that
|
502
|
+
# key.
|
479
503
|
#
|
480
504
|
# Associating a KMS key with a log group overrides any existing
|
481
505
|
# associations between the log group and a KMS key. After a KMS key is
|
@@ -759,6 +783,14 @@ module Aws::CloudWatchLogs
|
|
759
783
|
# specify a prefix to be used as the Amazon S3 key prefix for all
|
760
784
|
# exported objects.
|
761
785
|
#
|
786
|
+
# <note markdown="1"> We recommend that you don't regularly export to Amazon S3 as a way to
|
787
|
+
# continuously archive your logs. For that use case, we instaed
|
788
|
+
# recommend that you use subscriptions. For more information about
|
789
|
+
# subscriptions, see [Real-time processing of log data with
|
790
|
+
# subscriptions][3].
|
791
|
+
#
|
792
|
+
# </note>
|
793
|
+
#
|
762
794
|
# <note markdown="1"> Time-based sorting on chunks of log data inside an exported file is
|
763
795
|
# not guaranteed. You can sort the exported log field data by using
|
764
796
|
# Linux utilities.
|
@@ -769,6 +801,7 @@ module Aws::CloudWatchLogs
|
|
769
801
|
#
|
770
802
|
# [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeExportTasks.html
|
771
803
|
# [2]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_CancelExportTask.html
|
804
|
+
# [3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Subscriptions.html
|
772
805
|
#
|
773
806
|
# @option params [String] :task_name
|
774
807
|
# The name of the export task.
|
@@ -1189,7 +1222,7 @@ module Aws::CloudWatchLogs
|
|
1189
1222
|
req.send_request(options)
|
1190
1223
|
end
|
1191
1224
|
|
1192
|
-
# Deletes
|
1225
|
+
# Deletes a *delivery*. A delivery is a connection between a logical
|
1193
1226
|
# *delivery source* and a logical *delivery destination*. Deleting a
|
1194
1227
|
# delivery only deletes the connection between the delivery source and
|
1195
1228
|
# delivery destination. It does not delete the delivery destination or
|
@@ -1674,6 +1707,25 @@ module Aws::CloudWatchLogs
|
|
1674
1707
|
|
1675
1708
|
# Returns a list of all CloudWatch Logs account policies in the account.
|
1676
1709
|
#
|
1710
|
+
# To use this operation, you must be signed on with the correct
|
1711
|
+
# permissions depending on the type of policy that you are retrieving
|
1712
|
+
# information for.
|
1713
|
+
#
|
1714
|
+
# * To see data protection policies, you must have the
|
1715
|
+
# `logs:GetDataProtectionPolicy` and `logs:DescribeAccountPolicies`
|
1716
|
+
# permissions.
|
1717
|
+
#
|
1718
|
+
# * To see subscription filter policies, you must have the
|
1719
|
+
# `logs:DescrubeSubscriptionFilters` and
|
1720
|
+
# `logs:DescribeAccountPolicies` permissions.
|
1721
|
+
#
|
1722
|
+
# * To see transformer policies, you must have the `logs:GetTransformer`
|
1723
|
+
# and `logs:DescribeAccountPolicies` permissions.
|
1724
|
+
#
|
1725
|
+
# * To see field index policies, you must have the
|
1726
|
+
# `logs:DescribeIndexPolicies` and `logs:DescribeAccountPolicies`
|
1727
|
+
# permissions.
|
1728
|
+
#
|
1677
1729
|
# @option params [required, String] :policy_type
|
1678
1730
|
# Use this parameter to limit the returned policies to only the policies
|
1679
1731
|
# that match the policy type that you specify.
|
@@ -2326,8 +2378,8 @@ module Aws::CloudWatchLogs
|
|
2326
2378
|
# `logGroupIdentifier` or `logGroupName`. You must include one of these
|
2327
2379
|
# two parameters, but you can't include both.
|
2328
2380
|
#
|
2329
|
-
# This operation has a limit of
|
2330
|
-
#
|
2381
|
+
# This operation has a limit of 25 transactions per second, after which
|
2382
|
+
# transactions are throttled.
|
2331
2383
|
#
|
2332
2384
|
# If you are using CloudWatch cross-account observability, you can use
|
2333
2385
|
# this operation in a monitoring account and view data from the linked
|
@@ -4022,6 +4074,22 @@ module Aws::CloudWatchLogs
|
|
4022
4074
|
# policy, or field index policy that applies to all log groups or a
|
4023
4075
|
# subset of log groups in the account.
|
4024
4076
|
#
|
4077
|
+
# To use this operation, you must be signed on with the correct
|
4078
|
+
# permissions depending on the type of policy that you are creating.
|
4079
|
+
#
|
4080
|
+
# * To create a data protection policy, you must have the
|
4081
|
+
# `logs:PutDataProtectionPolicy` and `logs:PutAccountPolicy`
|
4082
|
+
# permissions.
|
4083
|
+
#
|
4084
|
+
# * To create a subscription filter policy, you must have the
|
4085
|
+
# `logs:PutSubscriptionFilter` and `logs:PutccountPolicy` permissions.
|
4086
|
+
#
|
4087
|
+
# * To create a transformer policy, you must have the
|
4088
|
+
# `logs:PutTransformer` and `logs:PutAccountPolicy` permissions.
|
4089
|
+
#
|
4090
|
+
# * To create a field index policy, you must have the
|
4091
|
+
# `logs:PutIndexPolicy` and `logs:PutAccountPolicy` permissions.
|
4092
|
+
#
|
4025
4093
|
# **Data protection policy**
|
4026
4094
|
#
|
4027
4095
|
# A data protection policy can help safeguard sensitive data that's
|
@@ -4499,9 +4567,10 @@ module Aws::CloudWatchLogs
|
|
4499
4567
|
# the resource that is actually sending the logs. For more
|
4500
4568
|
# information, see [PutDeliverySource][1].
|
4501
4569
|
#
|
4502
|
-
# * Use `PutDeliveryDestination` to create a *delivery destination
|
4503
|
-
#
|
4504
|
-
# destination
|
4570
|
+
# * Use `PutDeliveryDestination` to create a *delivery destination* in
|
4571
|
+
# the same account of the actual delivery destination. The delivery
|
4572
|
+
# destination that you create is a logical object that represents the
|
4573
|
+
# actual delivery destination.
|
4505
4574
|
#
|
4506
4575
|
# * If you are delivering logs cross-account, you must use
|
4507
4576
|
# [PutDeliveryDestinationPolicy][2] in the destination account to
|
@@ -4718,13 +4787,27 @@ module Aws::CloudWatchLogs
|
|
4718
4787
|
#
|
4719
4788
|
# * For Amazon Bedrock, the valid value is `APPLICATION_LOGS`.
|
4720
4789
|
#
|
4790
|
+
# * For CloudFront, the valid value is `ACCESS_LOGS`.
|
4791
|
+
#
|
4721
4792
|
# * For Amazon CodeWhisperer, the valid value is `EVENT_LOGS`.
|
4722
4793
|
#
|
4794
|
+
# * For Elemental MediaPackage, the valid values are
|
4795
|
+
# `EGRESS_ACCESS_LOGS` and `INGRESS_ACCESS_LOGS`.
|
4796
|
+
#
|
4797
|
+
# * For Elemental MediaTailor, the valid values are
|
4798
|
+
# `AD_DECISION_SERVER_LOGS`, `MANIFEST_SERVICE_LOGS`, and
|
4799
|
+
# `TRANSCODE_LOGS`.
|
4800
|
+
#
|
4723
4801
|
# * For IAM Identity Center, the valid value is `ERROR_LOGS`.
|
4724
4802
|
#
|
4803
|
+
# * For Amazon Q, the valid value is `EVENT_LOGS`.
|
4804
|
+
#
|
4805
|
+
# * For Amazon SES mail manager, the valid value is `APPLICATION_LOG`.
|
4806
|
+
#
|
4725
4807
|
# * For Amazon WorkMail, the valid values are `ACCESS_CONTROL_LOGS`,
|
4726
|
-
# `AUTHENTICATION_LOGS`, `WORKMAIL_AVAILABILITY_PROVIDER_LOGS`,
|
4727
|
-
# `WORKMAIL_MAILBOX_ACCESS_LOGS
|
4808
|
+
# `AUTHENTICATION_LOGS`, `WORKMAIL_AVAILABILITY_PROVIDER_LOGS`,
|
4809
|
+
# `WORKMAIL_MAILBOX_ACCESS_LOGS`, and
|
4810
|
+
# `WORKMAIL_PERSONAL_ACCESS_TOKEN_LOGS`.
|
4728
4811
|
#
|
4729
4812
|
# @option params [Hash<String,String>] :tags
|
4730
4813
|
# An optional list of key-value pairs to associate with the resource.
|
@@ -5181,12 +5264,12 @@ module Aws::CloudWatchLogs
|
|
5181
5264
|
# The maximum number of metric filters that can be associated with a log
|
5182
5265
|
# group is 100.
|
5183
5266
|
#
|
5184
|
-
# Using regular expressions
|
5185
|
-
#
|
5186
|
-
#
|
5267
|
+
# Using regular expressions in filter patterns is supported. For these
|
5268
|
+
# filters, there is a quota of two regular expression patterns within a
|
5269
|
+
# single filter pattern. There is also a quota of five regular
|
5187
5270
|
# expression patterns per log group. For more information about using
|
5188
|
-
# regular expressions in
|
5189
|
-
# metric filters, subscription filters, filter log events, and Live
|
5271
|
+
# regular expressions in filter patterns, see [ Filter pattern syntax
|
5272
|
+
# for metric filters, subscription filters, filter log events, and Live
|
5190
5273
|
# Tail][2].
|
5191
5274
|
#
|
5192
5275
|
# When you create a metric filter, you can also optionally assign a unit
|
@@ -5531,13 +5614,13 @@ module Aws::CloudWatchLogs
|
|
5531
5614
|
# it. If you are updating an existing filter, you must specify the
|
5532
5615
|
# correct name in `filterName`.
|
5533
5616
|
#
|
5534
|
-
# Using regular expressions
|
5535
|
-
#
|
5536
|
-
#
|
5537
|
-
#
|
5538
|
-
#
|
5539
|
-
#
|
5540
|
-
#
|
5617
|
+
# Using regular expressions in filter patterns is supported. For these
|
5618
|
+
# filters, there is a quotas of quota of two regular expression patterns
|
5619
|
+
# within a single filter pattern. There is also a quota of five regular
|
5620
|
+
# expression patterns per log group. For more information about using
|
5621
|
+
# regular expressions in filter patterns, see [ Filter pattern syntax
|
5622
|
+
# for metric filters, subscription filters, filter log events, and Live
|
5623
|
+
# Tail][3].
|
5541
5624
|
#
|
5542
5625
|
# To perform a `PutSubscriptionFilter` operation for any destination
|
5543
5626
|
# except a Lambda function, you must also have the `iam:PassRole`
|
@@ -6918,7 +7001,7 @@ module Aws::CloudWatchLogs
|
|
6918
7001
|
tracer: tracer
|
6919
7002
|
)
|
6920
7003
|
context[:gem_name] = 'aws-sdk-cloudwatchlogs'
|
6921
|
-
context[:gem_version] = '1.
|
7004
|
+
context[:gem_version] = '1.107.0'
|
6922
7005
|
Seahorse::Client::Request.new(handlers, context)
|
6923
7006
|
end
|
6924
7007
|
|
@@ -4949,12 +4949,12 @@ module Aws::CloudWatchLogs
|
|
4949
4949
|
# create the integration. This role must have the permissions
|
4950
4950
|
# necessary to access the OpenSearch Service collection to be able to
|
4951
4951
|
# create the dashboards. For more information about the permissions
|
4952
|
-
# needed, see [
|
4953
|
-
#
|
4952
|
+
# needed, see [Permissions that the integration needs][1] in the
|
4953
|
+
# CloudWatch Logs User Guide.
|
4954
4954
|
#
|
4955
4955
|
#
|
4956
4956
|
#
|
4957
|
-
# [1]: https://docs.aws.amazon.com/OpenSearch-Dashboards-CreateRole
|
4957
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/OpenSearch-Dashboards-CreateRole.html
|
4958
4958
|
# @return [String]
|
4959
4959
|
#
|
4960
4960
|
# @!attribute [rw] dashboard_viewer_principals
|
@@ -4962,8 +4962,12 @@ module Aws::CloudWatchLogs
|
|
4962
4962
|
# permission to for viewing the dashboards.
|
4963
4963
|
#
|
4964
4964
|
# In addition to specifying these users here, you must also grant them
|
4965
|
-
# the **
|
4966
|
-
# information, see
|
4965
|
+
# the **CloudWatchOpenSearchDashboardAccess** IAM policy. For more
|
4966
|
+
# information, see [IAM policies for users][1].
|
4967
|
+
#
|
4968
|
+
#
|
4969
|
+
#
|
4970
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/OpenSearch-Dashboards-UserRoles.html
|
4967
4971
|
# @return [Array<String>]
|
4968
4972
|
#
|
4969
4973
|
# @!attribute [rw] application_arn
|
@@ -5982,13 +5986,27 @@ module Aws::CloudWatchLogs
|
|
5982
5986
|
#
|
5983
5987
|
# * For Amazon Bedrock, the valid value is `APPLICATION_LOGS`.
|
5984
5988
|
#
|
5989
|
+
# * For CloudFront, the valid value is `ACCESS_LOGS`.
|
5990
|
+
#
|
5985
5991
|
# * For Amazon CodeWhisperer, the valid value is `EVENT_LOGS`.
|
5986
5992
|
#
|
5993
|
+
# * For Elemental MediaPackage, the valid values are
|
5994
|
+
# `EGRESS_ACCESS_LOGS` and `INGRESS_ACCESS_LOGS`.
|
5995
|
+
#
|
5996
|
+
# * For Elemental MediaTailor, the valid values are
|
5997
|
+
# `AD_DECISION_SERVER_LOGS`, `MANIFEST_SERVICE_LOGS`, and
|
5998
|
+
# `TRANSCODE_LOGS`.
|
5999
|
+
#
|
5987
6000
|
# * For IAM Identity Center, the valid value is `ERROR_LOGS`.
|
5988
6001
|
#
|
6002
|
+
# * For Amazon Q, the valid value is `EVENT_LOGS`.
|
6003
|
+
#
|
6004
|
+
# * For Amazon SES mail manager, the valid value is `APPLICATION_LOG`.
|
6005
|
+
#
|
5989
6006
|
# * For Amazon WorkMail, the valid values are `ACCESS_CONTROL_LOGS`,
|
5990
|
-
# `AUTHENTICATION_LOGS`, `WORKMAIL_AVAILABILITY_PROVIDER_LOGS`,
|
5991
|
-
# `WORKMAIL_MAILBOX_ACCESS_LOGS
|
6007
|
+
# `AUTHENTICATION_LOGS`, `WORKMAIL_AVAILABILITY_PROVIDER_LOGS`,
|
6008
|
+
# `WORKMAIL_MAILBOX_ACCESS_LOGS`, and
|
6009
|
+
# `WORKMAIL_PERSONAL_ACCESS_TOKEN_LOGS`.
|
5992
6010
|
# @return [String]
|
5993
6011
|
#
|
5994
6012
|
# @!attribute [rw] tags
|
@@ -7033,9 +7051,14 @@ module Aws::CloudWatchLogs
|
|
7033
7051
|
# @!attribute [rw] suffix_path
|
7034
7052
|
# This string allows re-configuring the S3 object prefix to contain
|
7035
7053
|
# either static or variable sections. The valid variables to use in
|
7036
|
-
# the suffix path will vary by each log source.
|
7037
|
-
#
|
7038
|
-
#
|
7054
|
+
# the suffix path will vary by each log source. To find the values
|
7055
|
+
# supported for the suffix path for each log source, use the
|
7056
|
+
# [DescribeConfigurationTemplates][1] operation and check the
|
7057
|
+
# `allowedSuffixPathFields` field in the response.
|
7058
|
+
#
|
7059
|
+
#
|
7060
|
+
#
|
7061
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeConfigurationTemplates.html
|
7039
7062
|
# @return [String]
|
7040
7063
|
#
|
7041
7064
|
# @!attribute [rw] enable_hive_compatible_path
|
@@ -7083,7 +7106,7 @@ module Aws::CloudWatchLogs
|
|
7083
7106
|
#
|
7084
7107
|
class ServiceUnavailableException < Aws::EmptyStructure; end
|
7085
7108
|
|
7086
|
-
#
|
7109
|
+
# This exception is returned if an unknown error occurs during a Live
|
7087
7110
|
# Tail session.
|
7088
7111
|
#
|
7089
7112
|
# @!attribute [rw] message
|
data/sig/client.rbs
CHANGED
@@ -42,7 +42,9 @@ module Aws
|
|
42
42
|
?max_attempts: Integer,
|
43
43
|
?output_event_stream_handler: Proc,
|
44
44
|
?profile: String,
|
45
|
+
?request_checksum_calculation: String,
|
45
46
|
?request_min_compression_size_bytes: Integer,
|
47
|
+
?response_checksum_validation: String,
|
46
48
|
?retry_backoff: Proc,
|
47
49
|
?retry_base_delay: Float,
|
48
50
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -42,7 +42,9 @@ module Aws
|
|
42
42
|
?max_attempts: Integer,
|
43
43
|
?output_event_stream_handler: Proc,
|
44
44
|
?profile: String,
|
45
|
+
?request_checksum_calculation: String,
|
45
46
|
?request_min_compression_size_bytes: Integer,
|
47
|
+
?response_checksum_validation: String,
|
46
48
|
?retry_backoff: Proc,
|
47
49
|
?retry_base_delay: Float,
|
48
50
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudwatchlogs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.107.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:
|
11
|
+
date: 2025-01-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.
|
22
|
+
version: 3.216.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.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|