aws-sdk-s3 1.93.1 → 1.97.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 +40 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3.rb +1 -1
- data/lib/aws-sdk-s3/arn/access_point_arn.rb +5 -0
- data/lib/aws-sdk-s3/arn/object_lambda_arn.rb +5 -0
- data/lib/aws-sdk-s3/bucket.rb +12 -11
- data/lib/aws-sdk-s3/bucket_acl.rb +4 -2
- data/lib/aws-sdk-s3/bucket_logging.rb +1 -2
- data/lib/aws-sdk-s3/client.rb +237 -228
- data/lib/aws-sdk-s3/customizations/object.rb +30 -11
- data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +2 -2
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +2 -2
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +1 -1
- data/lib/aws-sdk-s3/file_downloader.rb +6 -1
- data/lib/aws-sdk-s3/multipart_upload.rb +3 -3
- data/lib/aws-sdk-s3/multipart_upload_part.rb +2 -2
- data/lib/aws-sdk-s3/object.rb +19 -20
- data/lib/aws-sdk-s3/object_acl.rb +5 -3
- data/lib/aws-sdk-s3/object_summary.rb +18 -19
- data/lib/aws-sdk-s3/object_version.rb +4 -4
- data/lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb +1 -1
- data/lib/aws-sdk-s3/presigner.rb +12 -3
- data/lib/aws-sdk-s3/resource.rb +4 -2
- data/lib/aws-sdk-s3/types.rb +140 -143
- metadata +5 -6
@@ -247,7 +247,7 @@ module Aws::S3
|
|
247
247
|
# request. Bucket owners need not specify this parameter in their
|
248
248
|
# requests. For information about downloading objects from requester
|
249
249
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
250
|
-
# in the *Amazon S3
|
250
|
+
# in the *Amazon S3 User Guide*.
|
251
251
|
#
|
252
252
|
#
|
253
253
|
#
|
@@ -347,7 +347,7 @@ module Aws::S3
|
|
347
347
|
# request. Bucket owners need not specify this parameter in their
|
348
348
|
# requests. For information about downloading objects from requester
|
349
349
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
350
|
-
# in the *Amazon S3
|
350
|
+
# in the *Amazon S3 User Guide*.
|
351
351
|
#
|
352
352
|
#
|
353
353
|
#
|
@@ -431,7 +431,7 @@ module Aws::S3
|
|
431
431
|
# request. Bucket owners need not specify this parameter in their
|
432
432
|
# requests. For information about downloading objects from requester
|
433
433
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
434
|
-
# in the *Amazon S3
|
434
|
+
# in the *Amazon S3 User Guide*.
|
435
435
|
#
|
436
436
|
#
|
437
437
|
#
|
@@ -536,7 +536,7 @@ module Aws::S3
|
|
536
536
|
# request. Bucket owners need not specify this parameter in their
|
537
537
|
# requests. For information about downloading objects from requester
|
538
538
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
539
|
-
# in the *Amazon S3
|
539
|
+
# in the *Amazon S3 User Guide*.
|
540
540
|
#
|
541
541
|
#
|
542
542
|
#
|
@@ -11,7 +11,7 @@ module Aws
|
|
11
11
|
@handler.call(context).on(200) do |response|
|
12
12
|
response.data = S3::Types::GetBucketLocationOutput.new
|
13
13
|
xml = context.http_response.body_contents
|
14
|
-
matches = xml.match(
|
14
|
+
matches = xml.match(/<LocationConstraint.*?>(.+?)<\/LocationConstraint>/)
|
15
15
|
response.data[:location_constraint] = matches ? matches[1] : ''
|
16
16
|
end
|
17
17
|
end
|
data/lib/aws-sdk-s3/presigner.rb
CHANGED
@@ -138,6 +138,7 @@ module Aws
|
|
138
138
|
|
139
139
|
req = @client.build_request(method, params)
|
140
140
|
use_bucket_as_hostname(req) if virtual_host
|
141
|
+
handle_presigned_url_context(req)
|
141
142
|
|
142
143
|
x_amz_headers = sign_but_dont_send(
|
143
144
|
req, expires_in, scheme, time, unsigned_headers, hoist
|
@@ -183,6 +184,17 @@ module Aws
|
|
183
184
|
end
|
184
185
|
end
|
185
186
|
|
187
|
+
# Used for excluding presigned_urls from API request count.
|
188
|
+
#
|
189
|
+
# Store context information as early as possible, to allow
|
190
|
+
# handlers to perform decisions based on this flag if need.
|
191
|
+
def handle_presigned_url_context(req)
|
192
|
+
req.handle(step: :initialize, priority: 98) do |context|
|
193
|
+
context[:presigned_url] = true
|
194
|
+
@handler.call(context)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
186
198
|
# @param [Seahorse::Client::Request] req
|
187
199
|
def sign_but_dont_send(
|
188
200
|
req, expires_in, scheme, time, unsigned_headers, hoist = true
|
@@ -242,9 +254,6 @@ module Aws
|
|
242
254
|
time: time
|
243
255
|
).to_s
|
244
256
|
|
245
|
-
# Used for excluding presigned_urls from API request count
|
246
|
-
context[:presigned_url] = true
|
247
|
-
|
248
257
|
Seahorse::Client::Response.new(context: context, data: url)
|
249
258
|
end
|
250
259
|
# Return the headers
|
data/lib/aws-sdk-s3/resource.rb
CHANGED
@@ -65,8 +65,10 @@ module Aws::S3
|
|
65
65
|
# @option options [String] :grant_read_acp
|
66
66
|
# Allows grantee to read the bucket ACL.
|
67
67
|
# @option options [String] :grant_write
|
68
|
-
# Allows grantee to create
|
69
|
-
#
|
68
|
+
# Allows grantee to create new objects in the bucket.
|
69
|
+
#
|
70
|
+
# For the bucket and object owners of existing objects, also allows
|
71
|
+
# deletions and overwrites of those objects.
|
70
72
|
# @option options [String] :grant_write_acp
|
71
73
|
# Allows grantee to write the ACL for the applicable bucket.
|
72
74
|
# @option options [Boolean] :object_lock_enabled_for_bucket
|
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -73,8 +73,8 @@ module Aws::S3
|
|
73
73
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
74
74
|
# When using this action with an access point through the AWS SDKs,
|
75
75
|
# you provide the access point ARN in place of the bucket name. For
|
76
|
-
# more information about access point ARNs, see [Using
|
77
|
-
#
|
76
|
+
# more information about access point ARNs, see [Using access
|
77
|
+
# points][1] in the *Amazon S3 User Guide*.
|
78
78
|
#
|
79
79
|
# When using this action with Amazon S3 on Outposts, you must direct
|
80
80
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -104,7 +104,7 @@ module Aws::S3
|
|
104
104
|
# request. Bucket owners need not specify this parameter in their
|
105
105
|
# requests. For information about downloading objects from requester
|
106
106
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
107
|
-
# in the *Amazon S3
|
107
|
+
# in the *Amazon S3 User Guide*.
|
108
108
|
#
|
109
109
|
#
|
110
110
|
#
|
@@ -209,8 +209,7 @@ module Aws::S3
|
|
209
209
|
#
|
210
210
|
# @!attribute [rw] owner
|
211
211
|
# Specifies the replica ownership. For default and valid values, see
|
212
|
-
# [PUT bucket replication][1] in the *Amazon
|
213
|
-
# API Reference*.
|
212
|
+
# [PUT bucket replication][1] in the *Amazon S3 API Reference*.
|
214
213
|
#
|
215
214
|
#
|
216
215
|
#
|
@@ -590,8 +589,7 @@ module Aws::S3
|
|
590
589
|
# @!attribute [rw] logging_enabled
|
591
590
|
# Describes where logs are stored and the prefix that Amazon S3
|
592
591
|
# assigns to all log object keys for a bucket. For more information,
|
593
|
-
# see [PUT Bucket logging][1] in the *Amazon
|
594
|
-
# API Reference*.
|
592
|
+
# see [PUT Bucket logging][1] in the *Amazon S3 API Reference*.
|
595
593
|
#
|
596
594
|
#
|
597
595
|
#
|
@@ -924,8 +922,8 @@ module Aws::S3
|
|
924
922
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
925
923
|
# When using this action with an access point through the AWS SDKs,
|
926
924
|
# you provide the access point ARN in place of the bucket name. For
|
927
|
-
# more information about access point ARNs, see [Using
|
928
|
-
#
|
925
|
+
# more information about access point ARNs, see [Using access
|
926
|
+
# points][1] in the *Amazon S3 User Guide*.
|
929
927
|
#
|
930
928
|
# When using this action with Amazon S3 on Outposts, you must direct
|
931
929
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -1048,7 +1046,7 @@ module Aws::S3
|
|
1048
1046
|
# request. Bucket owners need not specify this parameter in their
|
1049
1047
|
# requests. For information about downloading objects from requester
|
1050
1048
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
1051
|
-
# in the *Amazon S3
|
1049
|
+
# in the *Amazon S3 User Guide*.
|
1052
1050
|
#
|
1053
1051
|
#
|
1054
1052
|
#
|
@@ -1326,8 +1324,8 @@ module Aws::S3
|
|
1326
1324
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
1327
1325
|
# When using this action with an access point through the AWS SDKs,
|
1328
1326
|
# you provide the access point ARN in place of the bucket name. For
|
1329
|
-
# more information about access point ARNs, see [Using
|
1330
|
-
#
|
1327
|
+
# more information about access point ARNs, see [Using access
|
1328
|
+
# points][1] in the *Amazon S3 User Guide*.
|
1331
1329
|
#
|
1332
1330
|
# When using this action with Amazon S3 on Outposts, you must direct
|
1333
1331
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -1490,7 +1488,7 @@ module Aws::S3
|
|
1490
1488
|
# and high availability. Depending on performance needs, you can
|
1491
1489
|
# specify a different Storage Class. Amazon S3 on Outposts only uses
|
1492
1490
|
# the OUTPOSTS Storage Class. For more information, see [Storage
|
1493
|
-
# Classes][1] in the *Amazon S3
|
1491
|
+
# Classes][1] in the *Amazon S3 User Guide*.
|
1494
1492
|
#
|
1495
1493
|
#
|
1496
1494
|
#
|
@@ -1529,7 +1527,7 @@ module Aws::S3
|
|
1529
1527
|
# made via SSL or using SigV4. For information about configuring using
|
1530
1528
|
# any of the officially supported AWS SDKs and AWS CLI, see
|
1531
1529
|
# [Specifying the Signature Version in Request Authentication][1] in
|
1532
|
-
# the *Amazon S3
|
1530
|
+
# the *Amazon S3 User Guide*.
|
1533
1531
|
#
|
1534
1532
|
#
|
1535
1533
|
#
|
@@ -1574,7 +1572,7 @@ module Aws::S3
|
|
1574
1572
|
# request. Bucket owners need not specify this parameter in their
|
1575
1573
|
# requests. For information about downloading objects from requester
|
1576
1574
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
1577
|
-
# in the *Amazon S3
|
1575
|
+
# in the *Amazon S3 User Guide*.
|
1578
1576
|
#
|
1579
1577
|
#
|
1580
1578
|
#
|
@@ -1781,8 +1779,10 @@ module Aws::S3
|
|
1781
1779
|
# @return [String]
|
1782
1780
|
#
|
1783
1781
|
# @!attribute [rw] grant_write
|
1784
|
-
# Allows grantee to create
|
1785
|
-
#
|
1782
|
+
# Allows grantee to create new objects in the bucket.
|
1783
|
+
#
|
1784
|
+
# For the bucket and object owners of existing objects, also allows
|
1785
|
+
# deletions and overwrites of those objects.
|
1786
1786
|
# @return [String]
|
1787
1787
|
#
|
1788
1788
|
# @!attribute [rw] grant_write_acp
|
@@ -1843,8 +1843,8 @@ module Aws::S3
|
|
1843
1843
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
1844
1844
|
# When using this action with an access point through the AWS SDKs,
|
1845
1845
|
# you provide the access point ARN in place of the bucket name. For
|
1846
|
-
# more information about access point ARNs, see [Using
|
1847
|
-
#
|
1846
|
+
# more information about access point ARNs, see [Using access
|
1847
|
+
# points][1] in the *Amazon S3 User Guide*.
|
1848
1848
|
#
|
1849
1849
|
# When using this action with Amazon S3 on Outposts, you must direct
|
1850
1850
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -1981,8 +1981,8 @@ module Aws::S3
|
|
1981
1981
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
1982
1982
|
# When using this action with an access point through the AWS SDKs,
|
1983
1983
|
# you provide the access point ARN in place of the bucket name. For
|
1984
|
-
# more information about access point ARNs, see [Using
|
1985
|
-
#
|
1984
|
+
# more information about access point ARNs, see [Using access
|
1985
|
+
# points][1] in the *Amazon S3 User Guide*.
|
1986
1986
|
#
|
1987
1987
|
# When using this action with Amazon S3 on Outposts, you must direct
|
1988
1988
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -2069,7 +2069,7 @@ module Aws::S3
|
|
2069
2069
|
# and high availability. Depending on performance needs, you can
|
2070
2070
|
# specify a different Storage Class. Amazon S3 on Outposts only uses
|
2071
2071
|
# the OUTPOSTS Storage Class. For more information, see [Storage
|
2072
|
-
# Classes][1] in the *Amazon S3
|
2072
|
+
# Classes][1] in the *Amazon S3 User Guide*.
|
2073
2073
|
#
|
2074
2074
|
#
|
2075
2075
|
#
|
@@ -2108,8 +2108,7 @@ module Aws::S3
|
|
2108
2108
|
# protected by AWS KMS will fail if not made via SSL or using SigV4.
|
2109
2109
|
# For information about configuring using any of the officially
|
2110
2110
|
# supported AWS SDKs and AWS CLI, see [Specifying the Signature
|
2111
|
-
# Version in Request Authentication][1] in the *Amazon S3
|
2112
|
-
# Guide*.
|
2111
|
+
# Version in Request Authentication][1] in the *Amazon S3 User Guide*.
|
2113
2112
|
#
|
2114
2113
|
#
|
2115
2114
|
#
|
@@ -2137,7 +2136,7 @@ module Aws::S3
|
|
2137
2136
|
# request. Bucket owners need not specify this parameter in their
|
2138
2137
|
# requests. For information about downloading objects from requester
|
2139
2138
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
2140
|
-
# in the *Amazon S3
|
2139
|
+
# in the *Amazon S3 User Guide*.
|
2141
2140
|
#
|
2142
2141
|
#
|
2143
2142
|
#
|
@@ -2785,8 +2784,8 @@ module Aws::S3
|
|
2785
2784
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
2786
2785
|
# When using this action with an access point through the AWS SDKs,
|
2787
2786
|
# you provide the access point ARN in place of the bucket name. For
|
2788
|
-
# more information about access point ARNs, see [Using
|
2789
|
-
#
|
2787
|
+
# more information about access point ARNs, see [Using access
|
2788
|
+
# points][1] in the *Amazon S3 User Guide*.
|
2790
2789
|
#
|
2791
2790
|
# When using this action with Amazon S3 on Outposts, you must direct
|
2792
2791
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -2823,7 +2822,7 @@ module Aws::S3
|
|
2823
2822
|
# request. Bucket owners need not specify this parameter in their
|
2824
2823
|
# requests. For information about downloading objects from requester
|
2825
2824
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
2826
|
-
# in the *Amazon S3
|
2825
|
+
# in the *Amazon S3 User Guide*.
|
2827
2826
|
#
|
2828
2827
|
#
|
2829
2828
|
#
|
@@ -2887,8 +2886,8 @@ module Aws::S3
|
|
2887
2886
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
2888
2887
|
# When using this action with an access point through the AWS SDKs,
|
2889
2888
|
# you provide the access point ARN in place of the bucket name. For
|
2890
|
-
# more information about access point ARNs, see [Using
|
2891
|
-
#
|
2889
|
+
# more information about access point ARNs, see [Using access
|
2890
|
+
# points][1] in the *Amazon S3 User Guide*.
|
2892
2891
|
#
|
2893
2892
|
# When using this action with Amazon S3 on Outposts, you must direct
|
2894
2893
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -2985,8 +2984,8 @@ module Aws::S3
|
|
2985
2984
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
2986
2985
|
# When using this action with an access point through the AWS SDKs,
|
2987
2986
|
# you provide the access point ARN in place of the bucket name. For
|
2988
|
-
# more information about access point ARNs, see [Using
|
2989
|
-
#
|
2987
|
+
# more information about access point ARNs, see [Using access
|
2988
|
+
# points][1] in the *Amazon S3 User Guide*.
|
2990
2989
|
#
|
2991
2990
|
# When using this action with Amazon S3 on Outposts, you must direct
|
2992
2991
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -3019,7 +3018,7 @@ module Aws::S3
|
|
3019
3018
|
# request. Bucket owners need not specify this parameter in their
|
3020
3019
|
# requests. For information about downloading objects from requester
|
3021
3020
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
3022
|
-
# in the *Amazon S3
|
3021
|
+
# in the *Amazon S3 User Guide*.
|
3023
3022
|
#
|
3024
3023
|
#
|
3025
3024
|
#
|
@@ -3157,7 +3156,7 @@ module Aws::S3
|
|
3157
3156
|
# `AccessControlTranslation` property, this is the account ID of the
|
3158
3157
|
# destination bucket owner. For more information, see [Replication
|
3159
3158
|
# Additional Configuration: Changing the Replica Owner][1] in the
|
3160
|
-
# *Amazon
|
3159
|
+
# *Amazon S3 User Guide*.
|
3161
3160
|
#
|
3162
3161
|
#
|
3163
3162
|
#
|
@@ -3170,8 +3169,7 @@ module Aws::S3
|
|
3170
3169
|
# storage class of the source object to create the object replica.
|
3171
3170
|
#
|
3172
3171
|
# For valid values, see the `StorageClass` element of the [PUT Bucket
|
3173
|
-
# replication][1] action in the *Amazon
|
3174
|
-
# Reference*.
|
3172
|
+
# replication][1] action in the *Amazon S3 API Reference*.
|
3175
3173
|
#
|
3176
3174
|
#
|
3177
3175
|
#
|
@@ -3239,7 +3237,7 @@ module Aws::S3
|
|
3239
3237
|
# If the encryption type is `aws:kms`, this optional value specifies
|
3240
3238
|
# the ID of the symmetric customer managed AWS KMS CMK to use for
|
3241
3239
|
# encryption of job results. Amazon S3 only supports symmetric CMKs.
|
3242
|
-
# For more information, see [Using
|
3240
|
+
# For more information, see [Using symmetric and asymmetric keys][1]
|
3243
3241
|
# in the *AWS Key Management Service Developer Guide*.
|
3244
3242
|
#
|
3245
3243
|
#
|
@@ -3273,12 +3271,12 @@ module Aws::S3
|
|
3273
3271
|
# }
|
3274
3272
|
#
|
3275
3273
|
# @!attribute [rw] replica_kms_key_id
|
3276
|
-
# Specifies the ID (Key ARN or Alias ARN) of the customer managed
|
3277
|
-
#
|
3278
|
-
#
|
3279
|
-
#
|
3280
|
-
#
|
3281
|
-
#
|
3274
|
+
# Specifies the ID (Key ARN or Alias ARN) of the customer managed AWS
|
3275
|
+
# KMS key stored in AWS Key Management Service (KMS) for the
|
3276
|
+
# destination bucket. Amazon S3 uses this key to encrypt replica
|
3277
|
+
# objects. Amazon S3 only supports symmetric, customer managed KMS
|
3278
|
+
# keys. For more information, see [Using symmetric and asymmetric
|
3279
|
+
# keys][1] in the *AWS Key Management Service Developer Guide*.
|
3282
3280
|
#
|
3283
3281
|
#
|
3284
3282
|
#
|
@@ -4166,7 +4164,7 @@ module Aws::S3
|
|
4166
4164
|
|
4167
4165
|
# Optional configuration to replicate existing source bucket objects.
|
4168
4166
|
# For more information, see [Replicating Existing Objects][1] in the
|
4169
|
-
# *Amazon S3
|
4167
|
+
# *Amazon S3 User Guide*.
|
4170
4168
|
#
|
4171
4169
|
#
|
4172
4170
|
#
|
@@ -4647,8 +4645,7 @@ module Aws::S3
|
|
4647
4645
|
# @!attribute [rw] logging_enabled
|
4648
4646
|
# Describes where logs are stored and the prefix that Amazon S3
|
4649
4647
|
# assigns to all log object keys for a bucket. For more information,
|
4650
|
-
# see [PUT Bucket logging][1] in the *Amazon
|
4651
|
-
# API Reference*.
|
4648
|
+
# see [PUT Bucket logging][1] in the *Amazon S3 API Reference*.
|
4652
4649
|
#
|
4653
4650
|
#
|
4654
4651
|
#
|
@@ -5152,8 +5149,8 @@ module Aws::S3
|
|
5152
5149
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5153
5150
|
# When using this action with an access point through the AWS SDKs,
|
5154
5151
|
# you provide the access point ARN in place of the bucket name. For
|
5155
|
-
# more information about access point ARNs, see [Using
|
5156
|
-
#
|
5152
|
+
# more information about access point ARNs, see [Using access
|
5153
|
+
# points][1] in the *Amazon S3 User Guide*.
|
5157
5154
|
#
|
5158
5155
|
#
|
5159
5156
|
#
|
@@ -5173,7 +5170,7 @@ module Aws::S3
|
|
5173
5170
|
# request. Bucket owners need not specify this parameter in their
|
5174
5171
|
# requests. For information about downloading objects from requester
|
5175
5172
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
5176
|
-
# in the *Amazon S3
|
5173
|
+
# in the *Amazon S3 User Guide*.
|
5177
5174
|
#
|
5178
5175
|
#
|
5179
5176
|
#
|
@@ -5231,8 +5228,8 @@ module Aws::S3
|
|
5231
5228
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5232
5229
|
# When using this action with an access point through the AWS SDKs,
|
5233
5230
|
# you provide the access point ARN in place of the bucket name. For
|
5234
|
-
# more information about access point ARNs, see [Using
|
5235
|
-
#
|
5231
|
+
# more information about access point ARNs, see [Using access
|
5232
|
+
# points][1] in the *Amazon S3 User Guide*.
|
5236
5233
|
#
|
5237
5234
|
#
|
5238
5235
|
#
|
@@ -5254,7 +5251,7 @@ module Aws::S3
|
|
5254
5251
|
# request. Bucket owners need not specify this parameter in their
|
5255
5252
|
# requests. For information about downloading objects from requester
|
5256
5253
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
5257
|
-
# in the *Amazon S3
|
5254
|
+
# in the *Amazon S3 User Guide*.
|
5258
5255
|
#
|
5259
5256
|
#
|
5260
5257
|
#
|
@@ -5308,8 +5305,8 @@ module Aws::S3
|
|
5308
5305
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5309
5306
|
# When using this action with an access point through the AWS SDKs,
|
5310
5307
|
# you provide the access point ARN in place of the bucket name. For
|
5311
|
-
# more information about access point ARNs, see [Using
|
5312
|
-
#
|
5308
|
+
# more information about access point ARNs, see [Using access
|
5309
|
+
# points][1] in the *Amazon S3 User Guide*.
|
5313
5310
|
#
|
5314
5311
|
#
|
5315
5312
|
#
|
@@ -5568,8 +5565,8 @@ module Aws::S3
|
|
5568
5565
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5569
5566
|
# When using this action with an access point through the AWS SDKs,
|
5570
5567
|
# you provide the access point ARN in place of the bucket name. For
|
5571
|
-
# more information about access point ARNs, see [Using
|
5572
|
-
#
|
5568
|
+
# more information about access point ARNs, see [Using access
|
5569
|
+
# points][1] in the *Amazon S3 User Guide*.
|
5573
5570
|
#
|
5574
5571
|
# When using this action with Amazon S3 on Outposts, you must direct
|
5575
5572
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -5677,7 +5674,7 @@ module Aws::S3
|
|
5677
5674
|
# request. Bucket owners need not specify this parameter in their
|
5678
5675
|
# requests. For information about downloading objects from requester
|
5679
5676
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
5680
|
-
# in the *Amazon S3
|
5677
|
+
# in the *Amazon S3 User Guide*.
|
5681
5678
|
#
|
5682
5679
|
#
|
5683
5680
|
#
|
@@ -5757,8 +5754,8 @@ module Aws::S3
|
|
5757
5754
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5758
5755
|
# When using this action with an access point through the AWS SDKs,
|
5759
5756
|
# you provide the access point ARN in place of the bucket name. For
|
5760
|
-
# more information about access point ARNs, see [Using
|
5761
|
-
#
|
5757
|
+
# more information about access point ARNs, see [Using access
|
5758
|
+
# points][1] in the *Amazon S3 User Guide*.
|
5762
5759
|
#
|
5763
5760
|
#
|
5764
5761
|
#
|
@@ -5780,7 +5777,7 @@ module Aws::S3
|
|
5780
5777
|
# request. Bucket owners need not specify this parameter in their
|
5781
5778
|
# requests. For information about downloading objects from requester
|
5782
5779
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
5783
|
-
# in the *Amazon S3
|
5780
|
+
# in the *Amazon S3 User Guide*.
|
5784
5781
|
#
|
5785
5782
|
#
|
5786
5783
|
#
|
@@ -5844,8 +5841,8 @@ module Aws::S3
|
|
5844
5841
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5845
5842
|
# When using this action with an access point through the AWS SDKs,
|
5846
5843
|
# you provide the access point ARN in place of the bucket name. For
|
5847
|
-
# more information about access point ARNs, see [Using
|
5848
|
-
#
|
5844
|
+
# more information about access point ARNs, see [Using access
|
5845
|
+
# points][1] in the *Amazon S3 User Guide*.
|
5849
5846
|
#
|
5850
5847
|
# When using this action with Amazon S3 on Outposts, you must direct
|
5851
5848
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -5882,7 +5879,7 @@ module Aws::S3
|
|
5882
5879
|
# request. Bucket owners need not specify this parameter in their
|
5883
5880
|
# requests. For information about downloading objects from requester
|
5884
5881
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
5885
|
-
# in the *Amazon S3
|
5882
|
+
# in the *Amazon S3 User Guide*.
|
5886
5883
|
#
|
5887
5884
|
#
|
5888
5885
|
#
|
@@ -5943,7 +5940,7 @@ module Aws::S3
|
|
5943
5940
|
# request. Bucket owners need not specify this parameter in their
|
5944
5941
|
# requests. For information about downloading objects from requester
|
5945
5942
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
5946
|
-
# in the *Amazon S3
|
5943
|
+
# in the *Amazon S3 User Guide*.
|
5947
5944
|
#
|
5948
5945
|
#
|
5949
5946
|
#
|
@@ -6152,8 +6149,8 @@ module Aws::S3
|
|
6152
6149
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
6153
6150
|
# When using this action with an access point through the AWS SDKs,
|
6154
6151
|
# you provide the access point ARN in place of the bucket name. For
|
6155
|
-
# more information about access point ARNs, see [Using
|
6156
|
-
#
|
6152
|
+
# more information about access point ARNs, see [Using access
|
6153
|
+
# points][1] in the *Amazon S3 User Guide*.
|
6157
6154
|
#
|
6158
6155
|
# When using this action with Amazon S3 on Outposts, you must direct
|
6159
6156
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -6488,8 +6485,8 @@ module Aws::S3
|
|
6488
6485
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
6489
6486
|
# When using this action with an access point through the AWS SDKs,
|
6490
6487
|
# you provide the access point ARN in place of the bucket name. For
|
6491
|
-
# more information about access point ARNs, see [Using
|
6492
|
-
#
|
6488
|
+
# more information about access point ARNs, see [Using access
|
6489
|
+
# points][1] in the *Amazon S3 User Guide*.
|
6493
6490
|
#
|
6494
6491
|
# When using this action with Amazon S3 on Outposts, you must direct
|
6495
6492
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -6573,7 +6570,7 @@ module Aws::S3
|
|
6573
6570
|
# request. Bucket owners need not specify this parameter in their
|
6574
6571
|
# requests. For information about downloading objects from requester
|
6575
6572
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
6576
|
-
# in the *Amazon S3
|
6573
|
+
# in the *Amazon S3 User Guide*.
|
6577
6574
|
#
|
6578
6575
|
#
|
6579
6576
|
#
|
@@ -6898,8 +6895,8 @@ module Aws::S3
|
|
6898
6895
|
end
|
6899
6896
|
|
6900
6897
|
# Specifies the inventory configuration for an Amazon S3 bucket. For
|
6901
|
-
# more information, see [GET Bucket inventory][1] in the *Amazon
|
6902
|
-
#
|
6898
|
+
# more information, see [GET Bucket inventory][1] in the *Amazon S3 API
|
6899
|
+
# Reference*.
|
6903
6900
|
#
|
6904
6901
|
#
|
6905
6902
|
#
|
@@ -6930,7 +6927,7 @@ module Aws::S3
|
|
6930
6927
|
# },
|
6931
6928
|
# id: "InventoryId", # required
|
6932
6929
|
# included_object_versions: "All", # required, accepts All, Current
|
6933
|
-
# optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus, IntelligentTieringAccessTier
|
6930
|
+
# optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus, IntelligentTieringAccessTier, BucketKeyStatus
|
6934
6931
|
# schedule: { # required
|
6935
6932
|
# frequency: "Daily", # required, accepts Daily, Weekly
|
6936
6933
|
# },
|
@@ -7980,8 +7977,8 @@ module Aws::S3
|
|
7980
7977
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
7981
7978
|
# When using this action with an access point through the AWS SDKs,
|
7982
7979
|
# you provide the access point ARN in place of the bucket name. For
|
7983
|
-
# more information about access point ARNs, see [Using
|
7984
|
-
#
|
7980
|
+
# more information about access point ARNs, see [Using access
|
7981
|
+
# points][1] in the *Amazon S3 User Guide*.
|
7985
7982
|
#
|
7986
7983
|
# When using this action with Amazon S3 on Outposts, you must direct
|
7987
7984
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -8365,8 +8362,8 @@ module Aws::S3
|
|
8365
8362
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
8366
8363
|
# When using this action with an access point through the AWS SDKs,
|
8367
8364
|
# you provide the access point ARN in place of the bucket name. For
|
8368
|
-
# more information about access point ARNs, see [Using
|
8369
|
-
#
|
8365
|
+
# more information about access point ARNs, see [Using access
|
8366
|
+
# points][1] in the *Amazon S3 User Guide*.
|
8370
8367
|
#
|
8371
8368
|
# When using this action with Amazon S3 on Outposts, you must direct
|
8372
8369
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -8456,8 +8453,8 @@ module Aws::S3
|
|
8456
8453
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
8457
8454
|
# When using this action with an access point through the AWS SDKs,
|
8458
8455
|
# you provide the access point ARN in place of the bucket name. For
|
8459
|
-
# more information about access point ARNs, see [Using
|
8460
|
-
#
|
8456
|
+
# more information about access point ARNs, see [Using access
|
8457
|
+
# points][1] in the *Amazon S3 User Guide*.
|
8461
8458
|
#
|
8462
8459
|
# When using this action with Amazon S3 on Outposts, you must direct
|
8463
8460
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -8591,8 +8588,8 @@ module Aws::S3
|
|
8591
8588
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
8592
8589
|
# When using this action with an access point through the AWS SDKs,
|
8593
8590
|
# you provide the access point ARN in place of the bucket name. For
|
8594
|
-
# more information about access point ARNs, see [Using
|
8595
|
-
#
|
8591
|
+
# more information about access point ARNs, see [Using access
|
8592
|
+
# points][1] in the *Amazon S3 User Guide*.
|
8596
8593
|
#
|
8597
8594
|
# When using this action with Amazon S3 on Outposts, you must direct
|
8598
8595
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -8806,8 +8803,8 @@ module Aws::S3
|
|
8806
8803
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
8807
8804
|
# When using this action with an access point through the AWS SDKs,
|
8808
8805
|
# you provide the access point ARN in place of the bucket name. For
|
8809
|
-
# more information about access point ARNs, see [Using
|
8810
|
-
#
|
8806
|
+
# more information about access point ARNs, see [Using access
|
8807
|
+
# points][1] in the *Amazon S3 User Guide*.
|
8811
8808
|
#
|
8812
8809
|
# When using this action with Amazon S3 on Outposts, you must direct
|
8813
8810
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -8847,7 +8844,7 @@ module Aws::S3
|
|
8847
8844
|
# request. Bucket owners need not specify this parameter in their
|
8848
8845
|
# requests. For information about downloading objects from requester
|
8849
8846
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
8850
|
-
# in the *Amazon S3
|
8847
|
+
# in the *Amazon S3 User Guide*.
|
8851
8848
|
#
|
8852
8849
|
#
|
8853
8850
|
#
|
@@ -8876,8 +8873,7 @@ module Aws::S3
|
|
8876
8873
|
|
8877
8874
|
# Describes where logs are stored and the prefix that Amazon S3 assigns
|
8878
8875
|
# to all log object keys for a bucket. For more information, see [PUT
|
8879
|
-
# Bucket logging][1] in the *Amazon
|
8880
|
-
# Reference*.
|
8876
|
+
# Bucket logging][1] in the *Amazon S3 API Reference*.
|
8881
8877
|
#
|
8882
8878
|
#
|
8883
8879
|
#
|
@@ -9031,8 +9027,8 @@ module Aws::S3
|
|
9031
9027
|
# If you're updating an existing metrics configuration, note that this
|
9032
9028
|
# is a full replacement of the existing metrics configuration. If you
|
9033
9029
|
# don't include the elements you want to keep, they are erased. For
|
9034
|
-
# more information, see [ PUT Bucket metrics][1] in the *Amazon
|
9035
|
-
#
|
9030
|
+
# more information, see [ PUT Bucket metrics][1] in the *Amazon S3 API
|
9031
|
+
# Reference*.
|
9036
9032
|
#
|
9037
9033
|
#
|
9038
9034
|
#
|
@@ -9204,8 +9200,7 @@ module Aws::S3
|
|
9204
9200
|
# Specifies the number of days an object is noncurrent before Amazon
|
9205
9201
|
# S3 can perform the associated action. For information about the
|
9206
9202
|
# noncurrent days calculations, see [How Amazon S3 Calculates When an
|
9207
|
-
# Object Became Noncurrent][1] in the *Amazon
|
9208
|
-
# Developer Guide*.
|
9203
|
+
# Object Became Noncurrent][1] in the *Amazon S3 User Guide*.
|
9209
9204
|
#
|
9210
9205
|
#
|
9211
9206
|
#
|
@@ -10159,8 +10154,10 @@ module Aws::S3
|
|
10159
10154
|
# @return [String]
|
10160
10155
|
#
|
10161
10156
|
# @!attribute [rw] grant_write
|
10162
|
-
# Allows grantee to create
|
10163
|
-
#
|
10157
|
+
# Allows grantee to create new objects in the bucket.
|
10158
|
+
#
|
10159
|
+
# For the bucket and object owners of existing objects, also allows
|
10160
|
+
# deletions and overwrites of those objects.
|
10164
10161
|
# @return [String]
|
10165
10162
|
#
|
10166
10163
|
# @!attribute [rw] grant_write_acp
|
@@ -10473,7 +10470,7 @@ module Aws::S3
|
|
10473
10470
|
# },
|
10474
10471
|
# id: "InventoryId", # required
|
10475
10472
|
# included_object_versions: "All", # required, accepts All, Current
|
10476
|
-
# optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus, IntelligentTieringAccessTier
|
10473
|
+
# optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus, IntelligentTieringAccessTier, BucketKeyStatus
|
10477
10474
|
# schedule: { # required
|
10478
10475
|
# frequency: "Daily", # required, accepts Daily, Weekly
|
10479
10476
|
# },
|
@@ -11456,8 +11453,8 @@ module Aws::S3
|
|
11456
11453
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
11457
11454
|
# When using this action with an access point through the AWS SDKs,
|
11458
11455
|
# you provide the access point ARN in place of the bucket name. For
|
11459
|
-
# more information about access point ARNs, see [Using
|
11460
|
-
#
|
11456
|
+
# more information about access point ARNs, see [Using access
|
11457
|
+
# points][1] in the *Amazon S3 User Guide*.
|
11461
11458
|
#
|
11462
11459
|
#
|
11463
11460
|
#
|
@@ -11498,8 +11495,10 @@ module Aws::S3
|
|
11498
11495
|
# @return [String]
|
11499
11496
|
#
|
11500
11497
|
# @!attribute [rw] grant_write
|
11501
|
-
# Allows grantee to create
|
11502
|
-
#
|
11498
|
+
# Allows grantee to create new objects in the bucket.
|
11499
|
+
#
|
11500
|
+
# For the bucket and object owners of existing objects, also allows
|
11501
|
+
# deletions and overwrites of those objects.
|
11503
11502
|
# @return [String]
|
11504
11503
|
#
|
11505
11504
|
# @!attribute [rw] grant_write_acp
|
@@ -11517,8 +11516,8 @@ module Aws::S3
|
|
11517
11516
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
11518
11517
|
# When using this action with an access point through the AWS SDKs,
|
11519
11518
|
# you provide the access point ARN in place of the bucket name. For
|
11520
|
-
# more information about access point ARNs, see [Using
|
11521
|
-
#
|
11519
|
+
# more information about access point ARNs, see [Using access
|
11520
|
+
# points][1] in the *Amazon S3 User Guide*.
|
11522
11521
|
#
|
11523
11522
|
# When using this action with Amazon S3 on Outposts, you must direct
|
11524
11523
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -11540,7 +11539,7 @@ module Aws::S3
|
|
11540
11539
|
# request. Bucket owners need not specify this parameter in their
|
11541
11540
|
# requests. For information about downloading objects from requester
|
11542
11541
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
11543
|
-
# in the *Amazon S3
|
11542
|
+
# in the *Amazon S3 User Guide*.
|
11544
11543
|
#
|
11545
11544
|
#
|
11546
11545
|
#
|
@@ -11615,8 +11614,8 @@ module Aws::S3
|
|
11615
11614
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
11616
11615
|
# When using this action with an access point through the AWS SDKs,
|
11617
11616
|
# you provide the access point ARN in place of the bucket name. For
|
11618
|
-
# more information about access point ARNs, see [Using
|
11619
|
-
#
|
11617
|
+
# more information about access point ARNs, see [Using access
|
11618
|
+
# points][1] in the *Amazon S3 User Guide*.
|
11620
11619
|
#
|
11621
11620
|
#
|
11622
11621
|
#
|
@@ -11637,7 +11636,7 @@ module Aws::S3
|
|
11637
11636
|
# request. Bucket owners need not specify this parameter in their
|
11638
11637
|
# requests. For information about downloading objects from requester
|
11639
11638
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
11640
|
-
# in the *Amazon S3
|
11639
|
+
# in the *Amazon S3 User Guide*.
|
11641
11640
|
#
|
11642
11641
|
#
|
11643
11642
|
#
|
@@ -11724,7 +11723,7 @@ module Aws::S3
|
|
11724
11723
|
# request. Bucket owners need not specify this parameter in their
|
11725
11724
|
# requests. For information about downloading objects from requester
|
11726
11725
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
11727
|
-
# in the *Amazon S3
|
11726
|
+
# in the *Amazon S3 User Guide*.
|
11728
11727
|
#
|
11729
11728
|
#
|
11730
11729
|
#
|
@@ -11906,8 +11905,8 @@ module Aws::S3
|
|
11906
11905
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
11907
11906
|
# When using this action with an access point through the AWS SDKs,
|
11908
11907
|
# you provide the access point ARN in place of the bucket name. For
|
11909
|
-
# more information about access point ARNs, see [Using
|
11910
|
-
#
|
11908
|
+
# more information about access point ARNs, see [Using access
|
11909
|
+
# points][1] in the *Amazon S3 User Guide*.
|
11911
11910
|
#
|
11912
11911
|
# When using this action with Amazon S3 on Outposts, you must direct
|
11913
11912
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -12049,7 +12048,7 @@ module Aws::S3
|
|
12049
12048
|
# and high availability. Depending on performance needs, you can
|
12050
12049
|
# specify a different Storage Class. Amazon S3 on Outposts only uses
|
12051
12050
|
# the OUTPOSTS Storage Class. For more information, see [Storage
|
12052
|
-
# Classes][1] in the *Amazon S3
|
12051
|
+
# Classes][1] in the *Amazon S3 User Guide*.
|
12053
12052
|
#
|
12054
12053
|
#
|
12055
12054
|
#
|
@@ -12107,14 +12106,12 @@ module Aws::S3
|
|
12107
12106
|
# If `x-amz-server-side-encryption` is present and has the value of
|
12108
12107
|
# `aws:kms`, this header specifies the ID of the AWS Key Management
|
12109
12108
|
# Service (AWS KMS) symmetrical customer managed customer master key
|
12110
|
-
# (CMK) that was used for the object.
|
12111
|
-
#
|
12112
|
-
# If the value of `x-amz-server-side-encryption` is `aws:kms`, this
|
12113
|
-
# header specifies the ID of the symmetric customer managed AWS KMS
|
12114
|
-
# CMK that will be used for the object. If you specify
|
12109
|
+
# (CMK) that was used for the object. If you specify
|
12115
12110
|
# `x-amz-server-side-encryption:aws:kms`, but do not provide`
|
12116
12111
|
# x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the AWS
|
12117
|
-
# managed CMK in AWS to protect the data.
|
12112
|
+
# managed CMK in AWS to protect the data. If the KMS key does not
|
12113
|
+
# exist in the same account issuing the command, you must use the full
|
12114
|
+
# ARN and not just the ID.
|
12118
12115
|
# @return [String]
|
12119
12116
|
#
|
12120
12117
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -12138,7 +12135,7 @@ module Aws::S3
|
|
12138
12135
|
# request. Bucket owners need not specify this parameter in their
|
12139
12136
|
# requests. For information about downloading objects from requester
|
12140
12137
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
12141
|
-
# in the *Amazon S3
|
12138
|
+
# in the *Amazon S3 User Guide*.
|
12142
12139
|
#
|
12143
12140
|
#
|
12144
12141
|
#
|
@@ -12156,7 +12153,7 @@ module Aws::S3
|
|
12156
12153
|
#
|
12157
12154
|
# @!attribute [rw] object_lock_retain_until_date
|
12158
12155
|
# The date and time when you want this object's Object Lock to
|
12159
|
-
# expire.
|
12156
|
+
# expire. Must be formatted as a timestamp parameter.
|
12160
12157
|
# @return [Time]
|
12161
12158
|
#
|
12162
12159
|
# @!attribute [rw] object_lock_legal_hold_status
|
@@ -12253,8 +12250,8 @@ module Aws::S3
|
|
12253
12250
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
12254
12251
|
# When using this action with an access point through the AWS SDKs,
|
12255
12252
|
# you provide the access point ARN in place of the bucket name. For
|
12256
|
-
# more information about access point ARNs, see [Using
|
12257
|
-
#
|
12253
|
+
# more information about access point ARNs, see [Using access
|
12254
|
+
# points][1] in the *Amazon S3 User Guide*.
|
12258
12255
|
#
|
12259
12256
|
#
|
12260
12257
|
#
|
@@ -12275,7 +12272,7 @@ module Aws::S3
|
|
12275
12272
|
# request. Bucket owners need not specify this parameter in their
|
12276
12273
|
# requests. For information about downloading objects from requester
|
12277
12274
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
12278
|
-
# in the *Amazon S3
|
12275
|
+
# in the *Amazon S3 User Guide*.
|
12279
12276
|
#
|
12280
12277
|
#
|
12281
12278
|
#
|
@@ -12361,8 +12358,8 @@ module Aws::S3
|
|
12361
12358
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
12362
12359
|
# When using this action with an access point through the AWS SDKs,
|
12363
12360
|
# you provide the access point ARN in place of the bucket name. For
|
12364
|
-
# more information about access point ARNs, see [Using
|
12365
|
-
#
|
12361
|
+
# more information about access point ARNs, see [Using access
|
12362
|
+
# points][1] in the *Amazon S3 User Guide*.
|
12366
12363
|
#
|
12367
12364
|
# When using this action with Amazon S3 on Outposts, you must direct
|
12368
12365
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -12409,7 +12406,7 @@ module Aws::S3
|
|
12409
12406
|
# request. Bucket owners need not specify this parameter in their
|
12410
12407
|
# requests. For information about downloading objects from requester
|
12411
12408
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
12412
|
-
# in the *Amazon S3
|
12409
|
+
# in the *Amazon S3 User Guide*.
|
12413
12410
|
#
|
12414
12411
|
#
|
12415
12412
|
#
|
@@ -13341,8 +13338,8 @@ module Aws::S3
|
|
13341
13338
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
13342
13339
|
# When using this action with an access point through the AWS SDKs,
|
13343
13340
|
# you provide the access point ARN in place of the bucket name. For
|
13344
|
-
# more information about access point ARNs, see [Using
|
13345
|
-
#
|
13341
|
+
# more information about access point ARNs, see [Using access
|
13342
|
+
# points][1] in the *Amazon S3 User Guide*.
|
13346
13343
|
#
|
13347
13344
|
# When using this action with Amazon S3 on Outposts, you must direct
|
13348
13345
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -13376,7 +13373,7 @@ module Aws::S3
|
|
13376
13373
|
# request. Bucket owners need not specify this parameter in their
|
13377
13374
|
# requests. For information about downloading objects from requester
|
13378
13375
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
13379
|
-
# in the *Amazon S3
|
13376
|
+
# in the *Amazon S3 User Guide*.
|
13380
13377
|
#
|
13381
13378
|
#
|
13382
13379
|
#
|
@@ -13586,8 +13583,8 @@ module Aws::S3
|
|
13586
13583
|
|
13587
13584
|
# Specifies lifecycle rules for an Amazon S3 bucket. For more
|
13588
13585
|
# information, see [Put Bucket Lifecycle Configuration][1] in the
|
13589
|
-
# *Amazon
|
13590
|
-
#
|
13586
|
+
# *Amazon S3 API Reference*. For examples, see [Put Bucket Lifecycle
|
13587
|
+
# Configuration Examples][2].
|
13591
13588
|
#
|
13592
13589
|
#
|
13593
13590
|
#
|
@@ -14146,8 +14143,8 @@ module Aws::S3
|
|
14146
14143
|
# Describes the default server-side encryption to apply to new objects
|
14147
14144
|
# in the bucket. If a PUT Object request doesn't specify any
|
14148
14145
|
# server-side encryption, this default encryption will be applied. For
|
14149
|
-
# more information, see [PUT Bucket encryption][1] in the *Amazon
|
14150
|
-
#
|
14146
|
+
# more information, see [PUT Bucket encryption][1] in the *Amazon S3 API
|
14147
|
+
# Reference*.
|
14151
14148
|
#
|
14152
14149
|
#
|
14153
14150
|
#
|
@@ -14166,13 +14163,13 @@ module Aws::S3
|
|
14166
14163
|
# @return [String]
|
14167
14164
|
#
|
14168
14165
|
# @!attribute [rw] kms_master_key_id
|
14169
|
-
# AWS Key Management Service (KMS) customer
|
14166
|
+
# AWS Key Management Service (KMS) customer AWS KMS key ID to use for
|
14170
14167
|
# the default encryption. This parameter is allowed if and only if
|
14171
14168
|
# `SSEAlgorithm` is set to `aws:kms`.
|
14172
14169
|
#
|
14173
14170
|
# You can specify the key ID or the Amazon Resource Name (ARN) of the
|
14174
|
-
#
|
14175
|
-
# operations, you must use a fully qualified
|
14171
|
+
# KMS key. However, if you are using encryption with cross-account
|
14172
|
+
# operations, you must use a fully qualified KMS key ARN. For more
|
14176
14173
|
# information, see [Using encryption for cross-account operations][1].
|
14177
14174
|
#
|
14178
14175
|
# **For example:**
|
@@ -14182,9 +14179,9 @@ module Aws::S3
|
|
14182
14179
|
# * Key ARN:
|
14183
14180
|
# `arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab`
|
14184
14181
|
#
|
14185
|
-
# Amazon S3 only supports symmetric
|
14186
|
-
# more information, see [Using
|
14187
|
-
# the *AWS Key Management Service Developer Guide*.
|
14182
|
+
# Amazon S3 only supports symmetric KMS keys and not asymmetric KMS
|
14183
|
+
# keys. For more information, see [Using symmetric and asymmetric
|
14184
|
+
# keys][2] in the *AWS Key Management Service Developer Guide*.
|
14188
14185
|
#
|
14189
14186
|
#
|
14190
14187
|
#
|
@@ -14335,8 +14332,8 @@ module Aws::S3
|
|
14335
14332
|
#
|
14336
14333
|
# @!attribute [rw] status
|
14337
14334
|
# Specifies whether Amazon S3 replicates objects created with
|
14338
|
-
# server-side encryption using
|
14339
|
-
#
|
14335
|
+
# server-side encryption using an AWS KMS key stored in AWS Key
|
14336
|
+
# Management Service.
|
14340
14337
|
# @return [String]
|
14341
14338
|
#
|
14342
14339
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/SseKmsEncryptedObjects AWS API Documentation
|
@@ -14833,8 +14830,8 @@ module Aws::S3
|
|
14833
14830
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
14834
14831
|
# When using this action with an access point through the AWS SDKs,
|
14835
14832
|
# you provide the access point ARN in place of the bucket name. For
|
14836
|
-
# more information about access point ARNs, see [Using
|
14837
|
-
#
|
14833
|
+
# more information about access point ARNs, see [Using access
|
14834
|
+
# points][1] in the *Amazon S3 User Guide*.
|
14838
14835
|
#
|
14839
14836
|
# When using this action with Amazon S3 on Outposts, you must direct
|
14840
14837
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -14982,7 +14979,7 @@ module Aws::S3
|
|
14982
14979
|
# request. Bucket owners need not specify this parameter in their
|
14983
14980
|
# requests. For information about downloading objects from requester
|
14984
14981
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
14985
|
-
# in the *Amazon S3
|
14982
|
+
# in the *Amazon S3 User Guide*.
|
14986
14983
|
#
|
14987
14984
|
#
|
14988
14985
|
#
|
@@ -15110,8 +15107,8 @@ module Aws::S3
|
|
15110
15107
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
15111
15108
|
# When using this action with an access point through the AWS SDKs,
|
15112
15109
|
# you provide the access point ARN in place of the bucket name. For
|
15113
|
-
# more information about access point ARNs, see [Using
|
15114
|
-
#
|
15110
|
+
# more information about access point ARNs, see [Using access
|
15111
|
+
# points][1] in the *Amazon S3 User Guide*.
|
15115
15112
|
#
|
15116
15113
|
# When using this action with Amazon S3 on Outposts, you must direct
|
15117
15114
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
@@ -15179,7 +15176,7 @@ module Aws::S3
|
|
15179
15176
|
# request. Bucket owners need not specify this parameter in their
|
15180
15177
|
# requests. For information about downloading objects from requester
|
15181
15178
|
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
15182
|
-
# in the *Amazon S3
|
15179
|
+
# in the *Amazon S3 User Guide*.
|
15183
15180
|
#
|
15184
15181
|
#
|
15185
15182
|
#
|
@@ -15212,8 +15209,8 @@ module Aws::S3
|
|
15212
15209
|
end
|
15213
15210
|
|
15214
15211
|
# Describes the versioning state of an Amazon S3 bucket. For more
|
15215
|
-
# information, see [PUT Bucket versioning][1] in the *Amazon
|
15216
|
-
#
|
15212
|
+
# information, see [PUT Bucket versioning][1] in the *Amazon S3 API
|
15213
|
+
# Reference*.
|
15217
15214
|
#
|
15218
15215
|
#
|
15219
15216
|
#
|