aws-sdk-s3 1.195.0 → 1.196.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6f1e4bd45b3b0142155dfe682f8c52238173b0f1befd4bece8f4cfb5862d7661
4
- data.tar.gz: 810fb51ebe4a491a0bdb217b965702b34e5f09be2c9c187ff2a18d015508b755
3
+ metadata.gz: 52142f91568fe72f865055a683d9cf9f4a86c0d6446f4c7b2ab491a5b37f2cd9
4
+ data.tar.gz: 06e34c3d319a400fe08d08b8aed7f49813f4cb99e6129f4eee6a2b8fdbc452a9
5
5
  SHA512:
6
- metadata.gz: 58e06a906db4fbb66d74bc6c2d9f47e2237a62923f604062b66001df6dc4a1f122215aa714ea590b647b5aac654cfb538c67e9e7f26e2bded4563623ba8593c6
7
- data.tar.gz: 75c4447eb6d61a98c805ee8e7f8889f7896628907b5e42294073015e02bd7465fd62cf4e91959be5d2dd0eee481f446eecbb91512a07448c3c042b04cdd1db9b
6
+ metadata.gz: a73af036ed37f5ed060d993d681e747ec554176bb09d5f4bbb77201b60280c23f47a69e5757cc9fb8f33f3e0bf971bb0fd065376a93f897990d053a157385a97
7
+ data.tar.gz: d0aac2333813cd782ec4f1d0699288fcc4ed720583883a17ae77f35ccd725b5f3471d931acc2c820928859665ee13c8c8efde428cb4e638840bdb4446bb2161c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.196.0 (2025-08-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.195.0 (2025-07-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.195.0
1
+ 1.196.0
@@ -137,8 +137,8 @@ module Aws::S3
137
137
  # class name or an instance of a plugin class.
138
138
  #
139
139
  # @option options [required, Aws::CredentialProvider] :credentials
140
- # Your AWS credentials used for authentication. This can be an instance of any one of the
141
- # following classes:
140
+ # Your AWS credentials used for authentication. This can be any class that includes and implements
141
+ # `Aws::CredentialProvider`, or instance of any one of the following classes:
142
142
  #
143
143
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
144
144
  # credentials.
@@ -166,8 +166,7 @@ module Aws::S3
166
166
  # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
167
167
  # from the Cognito Identity service.
168
168
  #
169
- # When `:credentials` are not configured directly, the following
170
- # locations will be searched for credentials:
169
+ # When `:credentials` are not configured directly, the following locations will be searched for credentials:
171
170
  #
172
171
  # * `Aws.config[:credentials]`
173
172
  #
@@ -181,12 +180,10 @@ module Aws::S3
181
180
  #
182
181
  # * `~/.aws/config`
183
182
  #
184
- # * EC2/ECS IMDS instance profile - When used by default, the timeouts
185
- # are very aggressive. Construct and pass an instance of
186
- # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
187
- # enable retries and extended timeouts. Instance profile credential
188
- # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
189
- # to `true`.
183
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
184
+ # Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
185
+ # enable retries and extended timeouts. Instance profile credential fetching can be disabled by
186
+ # setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
190
187
  #
191
188
  # @option options [required, String] :region
192
189
  # The AWS region to connect to. The configured `:region` is
@@ -476,8 +473,8 @@ module Aws::S3
476
473
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
477
474
  #
478
475
  # @option options [Aws::TokenProvider] :token_provider
479
- # Your Bearer token used for authentication. This can be an instance of any one of the
480
- # following classes:
476
+ # Your Bearer token used for authentication. This can be any class that includes and implements
477
+ # `Aws::TokenProvider`, or instance of any one of the following classes:
481
478
  #
482
479
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
483
480
  # tokens.
@@ -21738,7 +21735,7 @@ module Aws::S3
21738
21735
  tracer: tracer
21739
21736
  )
21740
21737
  context[:gem_name] = 'aws-sdk-s3'
21741
- context[:gem_version] = '1.195.0'
21738
+ context[:gem_version] = '1.196.0'
21742
21739
  Seahorse::Client::Request.new(handlers, context)
21743
21740
  end
21744
21741
 
data/lib/aws-sdk-s3.rb CHANGED
@@ -75,7 +75,7 @@ module Aws::S3
75
75
  autoload :ObjectVersion, 'aws-sdk-s3/object_version'
76
76
  autoload :EventStreams, 'aws-sdk-s3/event_streams'
77
77
 
78
- GEM_VERSION = '1.195.0'
78
+ GEM_VERSION = '1.196.0'
79
79
 
80
80
  end
81
81
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.195.0
4
+ version: 1.196.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services