aws-sdk-s3 1.227.0 → 1.228.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: 831799e011074750bd3c117869fe3b149fc8157b445882260efca9af75974324
4
- data.tar.gz: 4ff7b892dea83427c937112765abd00f4026e2e9b73d95370b945db3f9aa6850
3
+ metadata.gz: fe2533aad3235a6cf67c16f38d9805ec0aca46995678eb8deda7f08ab788ffba
4
+ data.tar.gz: 7b2bc5855ea45c2c60e51126c73576b3a15bcd61d949269c5660d5d92bc90f0d
5
5
  SHA512:
6
- metadata.gz: e812cb152a8322b8a1ee788e498077129658b6b65526d18749019336b91f02c11e3d386a202cafec08f6bbc3d6cfa0928450e84c9d5e6addbf838f3ba3f355ca
7
- data.tar.gz: 4b2fa156720de6a8c8ee14df23b96129a8b1c1cd273b173e73c6c0cb2815fb30ea4b0dd3efb17bec14ffc80ae6b8bcc680f3e23fb6f6a97498ae4c87a746796a
6
+ metadata.gz: f7c856929d54f29f463c253c333c58a5f14195813b639ce948df18256b6784c655db2ed2f7fc313f76d9447525e8b9caf82db87640e22c0d53f0e70a8bd3def6
7
+ data.tar.gz: e52b55c1f7f50ba07cdb6c191e6bf9b7d1ae60dfc04b92fcf7be8760711bb70733932580a43e1e074fb77008b3b3d612e71d9408266173c9c7b04124053d311e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.228.0 (2026-07-16)
5
+ ------------------
6
+
7
+ * Feature - Documentation update for removing the 30 day minimum restriction for transition to Standard-IA or OneZone-IA storage classes
8
+
4
9
  1.227.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.227.0
1
+ 1.228.0
@@ -22242,8 +22242,6 @@ module Aws::S3
22242
22242
  # : * To use the `UpdateObjectEncryption` operation, you must have the
22243
22243
  # following permissions:
22244
22244
  #
22245
- # * `s3:PutObject`
22246
- #
22247
22245
  # * `s3:UpdateObjectEncryption`
22248
22246
  #
22249
22247
  # * `kms:Encrypt`
@@ -24104,7 +24102,7 @@ module Aws::S3
24104
24102
  tracer: tracer
24105
24103
  )
24106
24104
  context[:gem_name] = 'aws-sdk-s3'
24107
- context[:gem_version] = '1.227.0'
24105
+ context[:gem_version] = '1.228.0'
24108
24106
  Seahorse::Client::Request.new(handlers, context)
24109
24107
  end
24110
24108
 
@@ -3483,7 +3483,12 @@ module Aws::S3
3483
3483
  end
3484
3484
 
3485
3485
  # @!attribute [rw] location
3486
- # A forward slash followed by the name of the bucket.
3486
+ # A forward slash followed by the name of the bucket for all account
3487
+ # regional namespace buckets and all global general purpose buckets
3488
+ # created in us-east-1. For example, `/amzn-s3-demo-bucket`. For
3489
+ # global general purpose buckets created in other Amazon Web Services
3490
+ # Regions, the Location field is the global endpoint URL. For example,
3491
+ # `http://amzn-s3-demo-bucket.s3.amazonaws.com/`.
3487
3492
  # @return [String]
3488
3493
  #
3489
3494
  # @!attribute [rw] bucket_arn
@@ -6128,8 +6133,17 @@ module Aws::S3
6128
6133
  include Aws::Structure
6129
6134
  end
6130
6135
 
6136
+ # <note markdown="1"> For information about using the Amazon S3 API—including error
6137
+ # handling—see the [Amazon S3 Developer Guide][1].
6138
+ #
6139
+ # </note>
6140
+ #
6131
6141
  # Container for all error elements.
6132
6142
  #
6143
+ #
6144
+ #
6145
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/developerguide/Welcome.html
6146
+ #
6133
6147
  # @!attribute [rw] key
6134
6148
  # The error key.
6135
6149
  # @return [String]
@@ -21175,15 +21189,12 @@ module Aws::S3
21175
21189
  #
21176
21190
  # @!attribute [rw] days
21177
21191
  # Indicates the number of days after creation when objects are
21178
- # transitioned to the specified storage class. If the specified
21179
- # storage class is `INTELLIGENT_TIERING`, `GLACIER_IR`, `GLACIER`, or
21180
- # `DEEP_ARCHIVE`, valid values are `0` or positive integers. If the
21181
- # specified storage class is `STANDARD_IA` or `ONEZONE_IA`, valid
21182
- # values are positive integers greater than `30`. Be aware that some
21183
- # storage classes have a minimum storage duration and that you're
21184
- # charged for transitioning objects before their minimum storage
21185
- # duration. For more information, see [ Constraints and considerations
21186
- # for transitions][1] in the *Amazon S3 User Guide*.
21192
+ # transitioned to the specified storage class. The value can be `0` or
21193
+ # any positive integer. Be aware that some storage classes have a
21194
+ # minimum storage duration and that you're charged for transitioning
21195
+ # objects before their minimum storage duration. For more information,
21196
+ # see [ Constraints and considerations for transitions][1] in the
21197
+ # *Amazon S3 User Guide*.
21187
21198
  #
21188
21199
  #
21189
21200
  #
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.227.0'
78
+ GEM_VERSION = '1.228.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.227.0
4
+ version: 1.228.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services