aws-sdk-s3 1.102.0 → 1.112.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 +70 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/arn/access_point_arn.rb +6 -6
- data/lib/aws-sdk-s3/arn/multi_region_access_point_arn.rb +2 -3
- data/lib/aws-sdk-s3/arn/object_lambda_arn.rb +6 -6
- data/lib/aws-sdk-s3/arn/outpost_access_point_arn.rb +7 -6
- data/lib/aws-sdk-s3/bucket.rb +24 -6
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +4 -2
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +8 -2
- data/lib/aws-sdk-s3/bucket_notification.rb +15 -3
- data/lib/aws-sdk-s3/client.rb +468 -302
- data/lib/aws-sdk-s3/client_api.rb +19 -0
- data/lib/aws-sdk-s3/customizations/object.rb +74 -1
- data/lib/aws-sdk-s3/file_downloader.rb +1 -1
- data/lib/aws-sdk-s3/file_uploader.rb +5 -0
- data/lib/aws-sdk-s3/object.rb +24 -34
- data/lib/aws-sdk-s3/object_summary.rb +16 -16
- data/lib/aws-sdk-s3/object_version.rb +2 -12
- data/lib/aws-sdk-s3/plugins/accelerate.rb +7 -1
- data/lib/aws-sdk-s3/plugins/arn.rb +11 -24
- data/lib/aws-sdk-s3/plugins/bucket_dns.rb +1 -1
- data/lib/aws-sdk-s3/plugins/dualstack.rb +25 -31
- data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +6 -0
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +19 -4
- data/lib/aws-sdk-s3/presigned_post.rb +29 -17
- data/lib/aws-sdk-s3/resource.rb +18 -0
- data/lib/aws-sdk-s3/types.rb +322 -153
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +4 -4
data/lib/aws-sdk-s3/client.rb
CHANGED
@@ -27,6 +27,8 @@ 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'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
|
31
33
|
require 'aws-sdk-s3/plugins/accelerate.rb'
|
32
34
|
require 'aws-sdk-s3/plugins/arn.rb'
|
@@ -91,6 +93,8 @@ module Aws::S3
|
|
91
93
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
92
94
|
add_plugin(Aws::Plugins::TransferEncoding)
|
93
95
|
add_plugin(Aws::Plugins::HttpChecksum)
|
96
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
97
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
94
98
|
add_plugin(Aws::Plugins::Protocols::RestXml)
|
95
99
|
add_plugin(Aws::S3::Plugins::Accelerate)
|
96
100
|
add_plugin(Aws::S3::Plugins::ARN)
|
@@ -155,7 +159,9 @@ module Aws::S3
|
|
155
159
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
156
160
|
# are very aggressive. Construct and pass an instance of
|
157
161
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
158
|
-
# enable retries and extended timeouts.
|
162
|
+
# enable retries and extended timeouts. Instance profile credential
|
163
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
164
|
+
# to true.
|
159
165
|
#
|
160
166
|
# @option options [required, String] :region
|
161
167
|
# The AWS region to connect to. The configured `:region` is
|
@@ -216,6 +222,10 @@ module Aws::S3
|
|
216
222
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
217
223
|
# a clock skew correction and retry requests with skewed client clocks.
|
218
224
|
#
|
225
|
+
# @option options [String] :defaults_mode ("legacy")
|
226
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
227
|
+
# accepted modes and the configuration defaults that are included.
|
228
|
+
#
|
219
229
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
220
230
|
# Set to true to disable SDK automatically adding host prefix
|
221
231
|
# to default service endpoint when available.
|
@@ -359,9 +369,14 @@ module Aws::S3
|
|
359
369
|
# for all object operations. You must first enable accelerate for
|
360
370
|
# each bucket. [Go here for more information](http://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html).
|
361
371
|
#
|
362
|
-
# @option options [Boolean] :use_dualstack_endpoint
|
363
|
-
# When set to `true`,
|
364
|
-
#
|
372
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
373
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
374
|
+
# will be used if available.
|
375
|
+
#
|
376
|
+
# @option options [Boolean] :use_fips_endpoint
|
377
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
378
|
+
# When a `fips` region is used, the region is normalized and this config
|
379
|
+
# is set to `true`.
|
365
380
|
#
|
366
381
|
# @option options [Boolean] :validate_params (true)
|
367
382
|
# When `true`, request parameters are validated before
|
@@ -374,7 +389,7 @@ module Aws::S3
|
|
374
389
|
# seconds to wait when opening a HTTP session before raising a
|
375
390
|
# `Timeout::Error`.
|
376
391
|
#
|
377
|
-
# @option options [
|
392
|
+
# @option options [Float] :http_read_timeout (60) The default
|
378
393
|
# number of seconds to wait for response data. This value can
|
379
394
|
# safely be set per-request on the session.
|
380
395
|
#
|
@@ -390,6 +405,9 @@ module Aws::S3
|
|
390
405
|
# disables this behaviour. This value can safely be set per
|
391
406
|
# request on the session.
|
392
407
|
#
|
408
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
409
|
+
# in seconds.
|
410
|
+
#
|
393
411
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
394
412
|
# HTTP debug output will be sent to the `:logger`.
|
395
413
|
#
|
@@ -566,6 +584,11 @@ module Aws::S3
|
|
566
584
|
# prepared to retry the failed requests. For more information, see
|
567
585
|
# [Amazon S3 Error Best Practices][2].
|
568
586
|
#
|
587
|
+
# You cannot use `Content-Type: application/x-www-form-urlencoded` with
|
588
|
+
# Complete Multipart Upload requests. Also, if you do not provide a
|
589
|
+
# `Content-Type` header, `CompleteMultipartUpload` returns a 200 OK
|
590
|
+
# response.
|
591
|
+
#
|
569
592
|
# For more information about multipart uploads, see [Uploading Objects
|
570
593
|
# Using Multipart Upload][3].
|
571
594
|
#
|
@@ -886,11 +909,28 @@ module Aws::S3
|
|
886
909
|
# Control List (ACL) Overview][10] and [Managing ACLs Using the REST
|
887
910
|
# API][11].
|
888
911
|
#
|
912
|
+
# If the bucket that you're copying objects to uses the bucket owner
|
913
|
+
# enforced setting for S3 Object Ownership, ACLs are disabled and no
|
914
|
+
# longer affect permissions. Buckets that use this setting only accept
|
915
|
+
# PUT requests that don't specify an ACL or PUT requests that specify
|
916
|
+
# bucket owner full control ACLs, such as the
|
917
|
+
# `bucket-owner-full-control` canned ACL or an equivalent form of this
|
918
|
+
# ACL expressed in the XML format.
|
919
|
+
#
|
920
|
+
# For more information, see [ Controlling ownership of objects and
|
921
|
+
# disabling ACLs][12] in the *Amazon S3 User Guide*.
|
922
|
+
#
|
923
|
+
# <note markdown="1"> If your bucket uses the bucket owner enforced setting for Object
|
924
|
+
# Ownership, all objects written to the bucket by any account will be
|
925
|
+
# owned by the bucket owner.
|
926
|
+
#
|
927
|
+
# </note>
|
928
|
+
#
|
889
929
|
# **Storage Class Options**
|
890
930
|
#
|
891
931
|
# You can use the `CopyObject` action to change the storage class of an
|
892
932
|
# object that is already stored in Amazon S3 using the `StorageClass`
|
893
|
-
# parameter. For more information, see [Storage Classes][
|
933
|
+
# parameter. For more information, see [Storage Classes][13] in the
|
894
934
|
# *Amazon S3 User Guide*.
|
895
935
|
#
|
896
936
|
# **Versioning**
|
@@ -911,15 +951,15 @@ module Aws::S3
|
|
911
951
|
#
|
912
952
|
# If the source object's storage class is GLACIER, you must restore a
|
913
953
|
# copy of this object before you can use it as a source object for the
|
914
|
-
# copy operation. For more information, see [RestoreObject][
|
954
|
+
# copy operation. For more information, see [RestoreObject][14].
|
915
955
|
#
|
916
956
|
# The following operations are related to `CopyObject`\:
|
917
957
|
#
|
918
|
-
# * [PutObject][
|
958
|
+
# * [PutObject][15]
|
919
959
|
#
|
920
|
-
# * [GetObject][
|
960
|
+
# * [GetObject][16]
|
921
961
|
#
|
922
|
-
# For more information, see [Copying Objects][
|
962
|
+
# For more information, see [Copying Objects][17].
|
923
963
|
#
|
924
964
|
#
|
925
965
|
#
|
@@ -934,11 +974,12 @@ module Aws::S3
|
|
934
974
|
# [9]: https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html
|
935
975
|
# [10]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html
|
936
976
|
# [11]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-using-rest-api.html
|
937
|
-
# [12]: https://docs.aws.amazon.com/AmazonS3/latest/
|
938
|
-
# [13]: https://docs.aws.amazon.com/AmazonS3/latest/
|
939
|
-
# [14]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
940
|
-
# [15]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
941
|
-
# [16]: https://docs.aws.amazon.com/AmazonS3/latest/
|
977
|
+
# [12]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html
|
978
|
+
# [13]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html
|
979
|
+
# [14]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html
|
980
|
+
# [15]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html
|
981
|
+
# [16]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
|
982
|
+
# [17]: https://docs.aws.amazon.com/AmazonS3/latest/dev/CopyingObjectsExamples.html
|
942
983
|
#
|
943
984
|
# @option params [String] :acl
|
944
985
|
# The canned ACL to apply to the object.
|
@@ -1260,7 +1301,7 @@ module Aws::S3
|
|
1260
1301
|
# metadata_directive: "COPY", # accepts COPY, REPLACE
|
1261
1302
|
# tagging_directive: "COPY", # accepts COPY, REPLACE
|
1262
1303
|
# server_side_encryption: "AES256", # accepts AES256, aws:kms
|
1263
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
1304
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR
|
1264
1305
|
# website_redirect_location: "WebsiteRedirectLocation",
|
1265
1306
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
1266
1307
|
# sse_customer_key: "SSECustomerKey",
|
@@ -1333,22 +1374,33 @@ module Aws::S3
|
|
1333
1374
|
#
|
1334
1375
|
# </note>
|
1335
1376
|
#
|
1377
|
+
# **Access control lists (ACLs)**
|
1378
|
+
#
|
1336
1379
|
# When creating a bucket using this operation, you can optionally
|
1337
|
-
# specify the accounts or groups that should
|
1338
|
-
# permissions on the bucket.
|
1339
|
-
#
|
1380
|
+
# configure the bucket ACL to specify the accounts or groups that should
|
1381
|
+
# be granted specific permissions on the bucket.
|
1382
|
+
#
|
1383
|
+
# If your CreateBucket request sets bucket owner enforced for S3 Object
|
1384
|
+
# Ownership and specifies a bucket ACL that provides access to an
|
1385
|
+
# external Amazon Web Services account, your request fails with a `400`
|
1386
|
+
# error and returns the `InvalidBucketAclWithObjectOwnership` error
|
1387
|
+
# code. For more information, see [Controlling object ownership][5] in
|
1388
|
+
# the *Amazon S3 User Guide*.
|
1389
|
+
#
|
1390
|
+
# There are two ways to grant the appropriate permissions using the
|
1391
|
+
# request headers.
|
1340
1392
|
#
|
1341
1393
|
# * Specify a canned ACL using the `x-amz-acl` request header. Amazon S3
|
1342
1394
|
# supports a set of predefined ACLs, known as *canned ACLs*. Each
|
1343
1395
|
# canned ACL has a predefined set of grantees and permissions. For
|
1344
|
-
# more information, see [Canned ACL][
|
1396
|
+
# more information, see [Canned ACL][6].
|
1345
1397
|
#
|
1346
1398
|
# * Specify access permissions explicitly using the `x-amz-grant-read`,
|
1347
1399
|
# `x-amz-grant-write`, `x-amz-grant-read-acp`,
|
1348
1400
|
# `x-amz-grant-write-acp`, and `x-amz-grant-full-control` headers.
|
1349
1401
|
# These headers map to the set of permissions Amazon S3 supports in an
|
1350
1402
|
# ACL. For more information, see [Access control list (ACL)
|
1351
|
-
# overview][
|
1403
|
+
# overview][7].
|
1352
1404
|
#
|
1353
1405
|
# You specify each grantee as a type=value pair, where the type is one
|
1354
1406
|
# of the following:
|
@@ -1381,7 +1433,7 @@ module Aws::S3
|
|
1381
1433
|
# * South America (São Paulo)
|
1382
1434
|
#
|
1383
1435
|
# For a list of all the Amazon S3 supported Regions and endpoints,
|
1384
|
-
# see [Regions and Endpoints][
|
1436
|
+
# see [Regions and Endpoints][8] in the Amazon Web Services General
|
1385
1437
|
# Reference.
|
1386
1438
|
#
|
1387
1439
|
# </note>
|
@@ -1399,22 +1451,29 @@ module Aws::S3
|
|
1399
1451
|
#
|
1400
1452
|
# **Permissions**
|
1401
1453
|
#
|
1402
|
-
#
|
1403
|
-
#
|
1404
|
-
# specify access permissions explicitly through any other ACL, both
|
1405
|
-
# `s3:CreateBucket` and `s3:PutBucketAcl` permissions are needed. If the
|
1406
|
-
# ACL the `CreateBucket` request is private, only `s3:CreateBucket`
|
1407
|
-
# permission is needed.
|
1454
|
+
# In addition to `s3:CreateBucket`, the following permissions are
|
1455
|
+
# required when your CreateBucket includes specific headers:
|
1408
1456
|
#
|
1409
|
-
#
|
1410
|
-
#
|
1411
|
-
#
|
1457
|
+
# * **ACLs** - If your `CreateBucket` request specifies ACL permissions
|
1458
|
+
# and the ACL is public-read, public-read-write, authenticated-read,
|
1459
|
+
# or if you specify access permissions explicitly through any other
|
1460
|
+
# ACL, both `s3:CreateBucket` and `s3:PutBucketAcl` permissions are
|
1461
|
+
# needed. If the ACL the `CreateBucket` request is private or doesn't
|
1462
|
+
# specify any ACLs, only `s3:CreateBucket` permission is needed.
|
1463
|
+
#
|
1464
|
+
# * **Object Lock** - If `ObjectLockEnabledForBucket` is set to true in
|
1465
|
+
# your `CreateBucket` request, `s3:PutBucketObjectLockConfiguration`
|
1466
|
+
# and `s3:PutBucketVersioning` permissions are required.
|
1467
|
+
#
|
1468
|
+
# * **S3 Object Ownership** - If your CreateBucket request includes the
|
1469
|
+
# the `x-amz-object-ownership` header, `s3:PutBucketOwnershipControls`
|
1470
|
+
# permission is required.
|
1412
1471
|
#
|
1413
1472
|
# The following operations are related to `CreateBucket`\:
|
1414
1473
|
#
|
1415
|
-
# * [PutObject][
|
1474
|
+
# * [PutObject][9]
|
1416
1475
|
#
|
1417
|
-
# * [DeleteBucket][
|
1476
|
+
# * [DeleteBucket][10]
|
1418
1477
|
#
|
1419
1478
|
#
|
1420
1479
|
#
|
@@ -1422,11 +1481,12 @@ module Aws::S3
|
|
1422
1481
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateBucket.html
|
1423
1482
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingBucket.html#access-bucket-intro
|
1424
1483
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html
|
1425
|
-
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/
|
1426
|
-
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html
|
1427
|
-
# [7]: https://docs.aws.amazon.com/
|
1428
|
-
# [8]: https://docs.aws.amazon.com/
|
1429
|
-
# [9]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
1484
|
+
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html
|
1485
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL
|
1486
|
+
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html
|
1487
|
+
# [8]: https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
|
1488
|
+
# [9]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html
|
1489
|
+
# [10]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html
|
1430
1490
|
#
|
1431
1491
|
# @option params [String] :acl
|
1432
1492
|
# The canned ACL to apply to the bucket.
|
@@ -1460,6 +1520,24 @@ module Aws::S3
|
|
1460
1520
|
# Specifies whether you want S3 Object Lock to be enabled for the new
|
1461
1521
|
# bucket.
|
1462
1522
|
#
|
1523
|
+
# @option params [String] :object_ownership
|
1524
|
+
# The container element for object ownership for a bucket's ownership
|
1525
|
+
# controls.
|
1526
|
+
#
|
1527
|
+
# BucketOwnerPreferred - Objects uploaded to the bucket change ownership
|
1528
|
+
# to the bucket owner if the objects are uploaded with the
|
1529
|
+
# `bucket-owner-full-control` canned ACL.
|
1530
|
+
#
|
1531
|
+
# ObjectWriter - The uploading account will own the object if the object
|
1532
|
+
# is uploaded with the `bucket-owner-full-control` canned ACL.
|
1533
|
+
#
|
1534
|
+
# BucketOwnerEnforced - Access control lists (ACLs) are disabled and no
|
1535
|
+
# longer affect permissions. The bucket owner automatically owns and has
|
1536
|
+
# full control over every object in the bucket. The bucket only accepts
|
1537
|
+
# PUT requests that don't specify an ACL or bucket owner full control
|
1538
|
+
# ACLs, such as the `bucket-owner-full-control` canned ACL or an
|
1539
|
+
# equivalent form of this ACL expressed in the XML format.
|
1540
|
+
#
|
1463
1541
|
# @return [Types::CreateBucketOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1464
1542
|
#
|
1465
1543
|
# * {Types::CreateBucketOutput#location #location} => String
|
@@ -1508,6 +1586,7 @@ module Aws::S3
|
|
1508
1586
|
# grant_write: "GrantWrite",
|
1509
1587
|
# grant_write_acp: "GrantWriteACP",
|
1510
1588
|
# object_lock_enabled_for_bucket: false,
|
1589
|
+
# object_ownership: "BucketOwnerPreferred", # accepts BucketOwnerPreferred, ObjectWriter, BucketOwnerEnforced
|
1511
1590
|
# })
|
1512
1591
|
#
|
1513
1592
|
# @example Response structure
|
@@ -1562,15 +1641,14 @@ module Aws::S3
|
|
1562
1641
|
# You can optionally request server-side encryption. For server-side
|
1563
1642
|
# encryption, Amazon S3 encrypts your data as it writes it to disks in
|
1564
1643
|
# its data centers and decrypts it when you access it. You can provide
|
1565
|
-
# your own encryption key, or use Amazon Web Services
|
1566
|
-
#
|
1567
|
-
# Amazon S3-managed encryption keys. If you choose to provide your own
|
1644
|
+
# your own encryption key, or use Amazon Web Services KMS keys or Amazon
|
1645
|
+
# S3-managed encryption keys. If you choose to provide your own
|
1568
1646
|
# encryption key, the request headers you provide in [UploadPart][1] and
|
1569
1647
|
# [UploadPartCopy][6] requests must match the headers you used in the
|
1570
1648
|
# request to initiate the upload by using `CreateMultipartUpload`.
|
1571
1649
|
#
|
1572
1650
|
# To perform a multipart upload with encryption using an Amazon Web
|
1573
|
-
# Services KMS
|
1651
|
+
# Services KMS key, the requester must have permission to the
|
1574
1652
|
# `kms:Decrypt` and `kms:GenerateDataKey*` actions on the key. These
|
1575
1653
|
# permissions are required because Amazon S3 must decrypt and read data
|
1576
1654
|
# from the encrypted file parts before it completes the multipart
|
@@ -1578,11 +1656,10 @@ module Aws::S3
|
|
1578
1656
|
# permissions][7] in the *Amazon S3 User Guide*.
|
1579
1657
|
#
|
1580
1658
|
# If your Identity and Access Management (IAM) user or role is in the
|
1581
|
-
# same Amazon Web Services account as the
|
1582
|
-
#
|
1583
|
-
#
|
1584
|
-
#
|
1585
|
-
# role.
|
1659
|
+
# same Amazon Web Services account as the KMS key, then you must have
|
1660
|
+
# these permissions on the key policy. If your IAM user or role belongs
|
1661
|
+
# to a different account than the key, then you must have the
|
1662
|
+
# permissions on both the key policy and your IAM user or role.
|
1586
1663
|
#
|
1587
1664
|
# For more information, see [Protecting Data Using Server-Side
|
1588
1665
|
# Encryption][8].
|
@@ -1615,11 +1692,11 @@ module Aws::S3
|
|
1615
1692
|
# option you use depends on whether you want to use Amazon Web
|
1616
1693
|
# Services managed encryption keys or provide your own encryption key.
|
1617
1694
|
#
|
1618
|
-
# * Use encryption keys managed by Amazon S3 or customer
|
1619
|
-
#
|
1620
|
-
#
|
1621
|
-
#
|
1622
|
-
#
|
1695
|
+
# * Use encryption keys managed by Amazon S3 or customer managed key
|
1696
|
+
# stored in Amazon Web Services Key Management Service (Amazon Web
|
1697
|
+
# Services KMS) – If you want Amazon Web Services to manage the keys
|
1698
|
+
# used to encrypt data, specify the following headers in the
|
1699
|
+
# request.
|
1623
1700
|
#
|
1624
1701
|
# * x-amz-server-side-encryption
|
1625
1702
|
#
|
@@ -1629,7 +1706,7 @@ module Aws::S3
|
|
1629
1706
|
#
|
1630
1707
|
# <note markdown="1"> If you specify `x-amz-server-side-encryption:aws:kms`, but don't
|
1631
1708
|
# provide `x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3
|
1632
|
-
# uses the Amazon Web Services managed
|
1709
|
+
# uses the Amazon Web Services managed key in Amazon Web Services
|
1633
1710
|
# KMS to protect the data.
|
1634
1711
|
#
|
1635
1712
|
# </note>
|
@@ -1638,10 +1715,9 @@ module Aws::S3
|
|
1638
1715
|
# Services KMS fail if you don't make them with SSL or by using
|
1639
1716
|
# SigV4.
|
1640
1717
|
#
|
1641
|
-
# For more information about server-side encryption with
|
1642
|
-
#
|
1643
|
-
#
|
1644
|
-
# KMS][11].
|
1718
|
+
# For more information about server-side encryption with KMS key
|
1719
|
+
# (SSE-KMS), see [Protecting Data Using Server-Side Encryption with
|
1720
|
+
# KMS keys][11].
|
1645
1721
|
#
|
1646
1722
|
# * Use customer-provided encryption keys – If you want to manage your
|
1647
1723
|
# own encryption keys, provide all the following headers in the
|
@@ -1653,10 +1729,9 @@ module Aws::S3
|
|
1653
1729
|
#
|
1654
1730
|
# * x-amz-server-side-encryption-customer-key-MD5
|
1655
1731
|
#
|
1656
|
-
# For more information about server-side encryption with
|
1657
|
-
#
|
1658
|
-
#
|
1659
|
-
# KMS][11].
|
1732
|
+
# For more information about server-side encryption with KMS keys
|
1733
|
+
# (SSE-KMS), see [Protecting Data Using Server-Side Encryption with
|
1734
|
+
# KMS keys][11].
|
1660
1735
|
#
|
1661
1736
|
# Access-Control-List (ACL)-Specific Request Headers
|
1662
1737
|
#
|
@@ -1881,13 +1956,13 @@ module Aws::S3
|
|
1881
1956
|
# ensure that the encryption key was transmitted without error.
|
1882
1957
|
#
|
1883
1958
|
# @option params [String] :ssekms_key_id
|
1884
|
-
# Specifies the ID of the symmetric customer managed
|
1885
|
-
#
|
1886
|
-
#
|
1887
|
-
#
|
1888
|
-
#
|
1889
|
-
#
|
1890
|
-
#
|
1959
|
+
# Specifies the ID of the symmetric customer managed key to use for
|
1960
|
+
# object encryption. All GET and PUT requests for an object protected by
|
1961
|
+
# Amazon Web Services KMS will fail if not made via SSL or using SigV4.
|
1962
|
+
# For information about configuring using any of the officially
|
1963
|
+
# supported Amazon Web Services SDKs and Amazon Web Services CLI, see
|
1964
|
+
# [Specifying the Signature Version in Request Authentication][1] in the
|
1965
|
+
# *Amazon S3 User Guide*.
|
1891
1966
|
#
|
1892
1967
|
#
|
1893
1968
|
#
|
@@ -1990,7 +2065,7 @@ module Aws::S3
|
|
1990
2065
|
# "MetadataKey" => "MetadataValue",
|
1991
2066
|
# },
|
1992
2067
|
# server_side_encryption: "AES256", # accepts AES256, aws:kms
|
1993
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
2068
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR
|
1994
2069
|
# website_redirect_location: "WebsiteRedirectLocation",
|
1995
2070
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
1996
2071
|
# sse_customer_key: "SSECustomerKey",
|
@@ -2257,21 +2332,22 @@ module Aws::S3
|
|
2257
2332
|
#
|
2258
2333
|
# The S3 Intelligent-Tiering storage class is designed to optimize
|
2259
2334
|
# storage costs by automatically moving data to the most cost-effective
|
2260
|
-
# storage access tier, without
|
2261
|
-
# Intelligent-Tiering delivers automatic cost savings
|
2262
|
-
#
|
2263
|
-
#
|
2264
|
-
#
|
2265
|
-
#
|
2266
|
-
#
|
2335
|
+
# storage access tier, without performance impact or operational
|
2336
|
+
# overhead. S3 Intelligent-Tiering delivers automatic cost savings in
|
2337
|
+
# three low latency and high throughput access tiers. To get the lowest
|
2338
|
+
# storage cost on data that can be accessed in minutes to hours, you can
|
2339
|
+
# choose to activate additional archiving capabilities.
|
2340
|
+
#
|
2341
|
+
# The S3 Intelligent-Tiering storage class is the ideal storage class
|
2342
|
+
# for data with unknown, changing, or unpredictable access patterns,
|
2343
|
+
# independent of object size or retention period. If the size of an
|
2344
|
+
# object is less than 128 KB, it is not monitored and not eligible for
|
2267
2345
|
# auto-tiering. Smaller objects can be stored, but they are always
|
2268
|
-
# charged at the
|
2346
|
+
# charged at the Frequent Access tier rates in the S3
|
2269
2347
|
# Intelligent-Tiering storage class.
|
2270
2348
|
#
|
2271
|
-
#
|
2272
|
-
#
|
2273
|
-
# see [Storage class for automatically optimizing frequently and
|
2274
|
-
# infrequently accessed objects][1].
|
2349
|
+
# For more information, see [Storage class for automatically optimizing
|
2350
|
+
# frequently and infrequently accessed objects][1].
|
2275
2351
|
#
|
2276
2352
|
# Operations related to `DeleteBucketIntelligentTieringConfiguration`
|
2277
2353
|
# include:
|
@@ -3429,15 +3505,24 @@ module Aws::S3
|
|
3429
3505
|
# can return the ACL of the bucket without using an authorization
|
3430
3506
|
# header.
|
3431
3507
|
#
|
3508
|
+
# <note markdown="1"> If your bucket uses the bucket owner enforced setting for S3 Object
|
3509
|
+
# Ownership, requests to read ACLs are still supported and return the
|
3510
|
+
# `bucket-owner-full-control` ACL with the owner being the account that
|
3511
|
+
# created the bucket. For more information, see [ Controlling object
|
3512
|
+
# ownership and disabling ACLs][1] in the *Amazon S3 User Guide*.
|
3513
|
+
#
|
3514
|
+
# </note>
|
3515
|
+
#
|
3432
3516
|
# **Related Resources**
|
3433
3517
|
#
|
3434
|
-
# * [ListObjects][
|
3518
|
+
# * [ListObjects][2]
|
3435
3519
|
#
|
3436
3520
|
# ^
|
3437
3521
|
#
|
3438
3522
|
#
|
3439
3523
|
#
|
3440
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
3524
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html
|
3525
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjects.html
|
3441
3526
|
#
|
3442
3527
|
# @option params [required, String] :bucket
|
3443
3528
|
# Specifies the S3 bucket whose ACL is being requested.
|
@@ -3721,21 +3806,22 @@ module Aws::S3
|
|
3721
3806
|
#
|
3722
3807
|
# The S3 Intelligent-Tiering storage class is designed to optimize
|
3723
3808
|
# storage costs by automatically moving data to the most cost-effective
|
3724
|
-
# storage access tier, without
|
3725
|
-
# Intelligent-Tiering delivers automatic cost savings
|
3726
|
-
#
|
3727
|
-
#
|
3728
|
-
#
|
3729
|
-
#
|
3730
|
-
#
|
3809
|
+
# storage access tier, without performance impact or operational
|
3810
|
+
# overhead. S3 Intelligent-Tiering delivers automatic cost savings in
|
3811
|
+
# three low latency and high throughput access tiers. To get the lowest
|
3812
|
+
# storage cost on data that can be accessed in minutes to hours, you can
|
3813
|
+
# choose to activate additional archiving capabilities.
|
3814
|
+
#
|
3815
|
+
# The S3 Intelligent-Tiering storage class is the ideal storage class
|
3816
|
+
# for data with unknown, changing, or unpredictable access patterns,
|
3817
|
+
# independent of object size or retention period. If the size of an
|
3818
|
+
# object is less than 128 KB, it is not monitored and not eligible for
|
3731
3819
|
# auto-tiering. Smaller objects can be stored, but they are always
|
3732
|
-
# charged at the
|
3820
|
+
# charged at the Frequent Access tier rates in the S3
|
3733
3821
|
# Intelligent-Tiering storage class.
|
3734
3822
|
#
|
3735
|
-
#
|
3736
|
-
#
|
3737
|
-
# see [Storage class for automatically optimizing frequently and
|
3738
|
-
# infrequently accessed objects][1].
|
3823
|
+
# For more information, see [Storage class for automatically optimizing
|
3824
|
+
# frequently and infrequently accessed objects][1].
|
3739
3825
|
#
|
3740
3826
|
# Operations related to `GetBucketIntelligentTieringConfiguration`
|
3741
3827
|
# include:
|
@@ -3971,10 +4057,12 @@ module Aws::S3
|
|
3971
4057
|
# resp.rules[0].status #=> String, one of "Enabled", "Disabled"
|
3972
4058
|
# resp.rules[0].transition.date #=> Time
|
3973
4059
|
# resp.rules[0].transition.days #=> Integer
|
3974
|
-
# resp.rules[0].transition.storage_class #=> String, one of "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE"
|
4060
|
+
# resp.rules[0].transition.storage_class #=> String, one of "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "GLACIER_IR"
|
3975
4061
|
# resp.rules[0].noncurrent_version_transition.noncurrent_days #=> Integer
|
3976
|
-
# resp.rules[0].noncurrent_version_transition.storage_class #=> String, one of "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE"
|
4062
|
+
# resp.rules[0].noncurrent_version_transition.storage_class #=> String, one of "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "GLACIER_IR"
|
4063
|
+
# resp.rules[0].noncurrent_version_transition.newer_noncurrent_versions #=> Integer
|
3977
4064
|
# resp.rules[0].noncurrent_version_expiration.noncurrent_days #=> Integer
|
4065
|
+
# resp.rules[0].noncurrent_version_expiration.newer_noncurrent_versions #=> Integer
|
3978
4066
|
# resp.rules[0].abort_incomplete_multipart_upload.days_after_initiation #=> Integer
|
3979
4067
|
#
|
3980
4068
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketLifecycle AWS API Documentation
|
@@ -4092,19 +4180,25 @@ module Aws::S3
|
|
4092
4180
|
# resp.rules[0].filter.prefix #=> String
|
4093
4181
|
# resp.rules[0].filter.tag.key #=> String
|
4094
4182
|
# resp.rules[0].filter.tag.value #=> String
|
4183
|
+
# resp.rules[0].filter.object_size_greater_than #=> Integer
|
4184
|
+
# resp.rules[0].filter.object_size_less_than #=> Integer
|
4095
4185
|
# resp.rules[0].filter.and.prefix #=> String
|
4096
4186
|
# resp.rules[0].filter.and.tags #=> Array
|
4097
4187
|
# resp.rules[0].filter.and.tags[0].key #=> String
|
4098
4188
|
# resp.rules[0].filter.and.tags[0].value #=> String
|
4189
|
+
# resp.rules[0].filter.and.object_size_greater_than #=> Integer
|
4190
|
+
# resp.rules[0].filter.and.object_size_less_than #=> Integer
|
4099
4191
|
# resp.rules[0].status #=> String, one of "Enabled", "Disabled"
|
4100
4192
|
# resp.rules[0].transitions #=> Array
|
4101
4193
|
# resp.rules[0].transitions[0].date #=> Time
|
4102
4194
|
# resp.rules[0].transitions[0].days #=> Integer
|
4103
|
-
# resp.rules[0].transitions[0].storage_class #=> String, one of "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE"
|
4195
|
+
# resp.rules[0].transitions[0].storage_class #=> String, one of "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "GLACIER_IR"
|
4104
4196
|
# resp.rules[0].noncurrent_version_transitions #=> Array
|
4105
4197
|
# resp.rules[0].noncurrent_version_transitions[0].noncurrent_days #=> Integer
|
4106
|
-
# resp.rules[0].noncurrent_version_transitions[0].storage_class #=> String, one of "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE"
|
4198
|
+
# resp.rules[0].noncurrent_version_transitions[0].storage_class #=> String, one of "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "GLACIER_IR"
|
4199
|
+
# resp.rules[0].noncurrent_version_transitions[0].newer_noncurrent_versions #=> Integer
|
4107
4200
|
# resp.rules[0].noncurrent_version_expiration.noncurrent_days #=> Integer
|
4201
|
+
# resp.rules[0].noncurrent_version_expiration.newer_noncurrent_versions #=> Integer
|
4108
4202
|
# resp.rules[0].abort_incomplete_multipart_upload.days_after_initiation #=> Integer
|
4109
4203
|
#
|
4110
4204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketLifecycleConfiguration AWS API Documentation
|
@@ -4302,10 +4396,12 @@ module Aws::S3
|
|
4302
4396
|
# resp.metrics_configuration.filter.prefix #=> String
|
4303
4397
|
# resp.metrics_configuration.filter.tag.key #=> String
|
4304
4398
|
# resp.metrics_configuration.filter.tag.value #=> String
|
4399
|
+
# resp.metrics_configuration.filter.access_point_arn #=> String
|
4305
4400
|
# resp.metrics_configuration.filter.and.prefix #=> String
|
4306
4401
|
# resp.metrics_configuration.filter.and.tags #=> Array
|
4307
4402
|
# resp.metrics_configuration.filter.and.tags[0].key #=> String
|
4308
4403
|
# resp.metrics_configuration.filter.and.tags[0].value #=> String
|
4404
|
+
# resp.metrics_configuration.filter.and.access_point_arn #=> String
|
4309
4405
|
#
|
4310
4406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetricsConfiguration AWS API Documentation
|
4311
4407
|
#
|
@@ -4405,18 +4501,18 @@ module Aws::S3
|
|
4405
4501
|
#
|
4406
4502
|
# resp.topic_configuration.id #=> String
|
4407
4503
|
# resp.topic_configuration.events #=> Array
|
4408
|
-
# resp.topic_configuration.events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold"
|
4409
|
-
# resp.topic_configuration.event #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold"
|
4504
|
+
# resp.topic_configuration.events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold", "s3:ObjectRestore:Delete", "s3:LifecycleTransition", "s3:IntelligentTiering", "s3:ObjectAcl:Put", "s3:LifecycleExpiration:*", "s3:LifecycleExpiration:Delete", "s3:LifecycleExpiration:DeleteMarkerCreated", "s3:ObjectTagging:*", "s3:ObjectTagging:Put", "s3:ObjectTagging:Delete"
|
4505
|
+
# resp.topic_configuration.event #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold", "s3:ObjectRestore:Delete", "s3:LifecycleTransition", "s3:IntelligentTiering", "s3:ObjectAcl:Put", "s3:LifecycleExpiration:*", "s3:LifecycleExpiration:Delete", "s3:LifecycleExpiration:DeleteMarkerCreated", "s3:ObjectTagging:*", "s3:ObjectTagging:Put", "s3:ObjectTagging:Delete"
|
4410
4506
|
# resp.topic_configuration.topic #=> String
|
4411
4507
|
# resp.queue_configuration.id #=> String
|
4412
|
-
# resp.queue_configuration.event #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold"
|
4508
|
+
# resp.queue_configuration.event #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold", "s3:ObjectRestore:Delete", "s3:LifecycleTransition", "s3:IntelligentTiering", "s3:ObjectAcl:Put", "s3:LifecycleExpiration:*", "s3:LifecycleExpiration:Delete", "s3:LifecycleExpiration:DeleteMarkerCreated", "s3:ObjectTagging:*", "s3:ObjectTagging:Put", "s3:ObjectTagging:Delete"
|
4413
4509
|
# resp.queue_configuration.events #=> Array
|
4414
|
-
# resp.queue_configuration.events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold"
|
4510
|
+
# resp.queue_configuration.events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold", "s3:ObjectRestore:Delete", "s3:LifecycleTransition", "s3:IntelligentTiering", "s3:ObjectAcl:Put", "s3:LifecycleExpiration:*", "s3:LifecycleExpiration:Delete", "s3:LifecycleExpiration:DeleteMarkerCreated", "s3:ObjectTagging:*", "s3:ObjectTagging:Put", "s3:ObjectTagging:Delete"
|
4415
4511
|
# resp.queue_configuration.queue #=> String
|
4416
4512
|
# resp.cloud_function_configuration.id #=> String
|
4417
|
-
# resp.cloud_function_configuration.event #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold"
|
4513
|
+
# resp.cloud_function_configuration.event #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold", "s3:ObjectRestore:Delete", "s3:LifecycleTransition", "s3:IntelligentTiering", "s3:ObjectAcl:Put", "s3:LifecycleExpiration:*", "s3:LifecycleExpiration:Delete", "s3:LifecycleExpiration:DeleteMarkerCreated", "s3:ObjectTagging:*", "s3:ObjectTagging:Put", "s3:ObjectTagging:Delete"
|
4418
4514
|
# resp.cloud_function_configuration.events #=> Array
|
4419
|
-
# resp.cloud_function_configuration.events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold"
|
4515
|
+
# resp.cloud_function_configuration.events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold", "s3:ObjectRestore:Delete", "s3:LifecycleTransition", "s3:IntelligentTiering", "s3:ObjectAcl:Put", "s3:LifecycleExpiration:*", "s3:LifecycleExpiration:Delete", "s3:LifecycleExpiration:DeleteMarkerCreated", "s3:ObjectTagging:*", "s3:ObjectTagging:Put", "s3:ObjectTagging:Delete"
|
4420
4516
|
# resp.cloud_function_configuration.cloud_function #=> String
|
4421
4517
|
# resp.cloud_function_configuration.invocation_role #=> String
|
4422
4518
|
#
|
@@ -4470,6 +4566,7 @@ module Aws::S3
|
|
4470
4566
|
# * {Types::NotificationConfiguration#topic_configurations #topic_configurations} => Array<Types::TopicConfiguration>
|
4471
4567
|
# * {Types::NotificationConfiguration#queue_configurations #queue_configurations} => Array<Types::QueueConfiguration>
|
4472
4568
|
# * {Types::NotificationConfiguration#lambda_function_configurations #lambda_function_configurations} => Array<Types::LambdaFunctionConfiguration>
|
4569
|
+
# * {Types::NotificationConfiguration#event_bridge_configuration #event_bridge_configuration} => Types::EventBridgeConfiguration
|
4473
4570
|
#
|
4474
4571
|
# @example Request syntax with placeholder values
|
4475
4572
|
#
|
@@ -4484,7 +4581,7 @@ module Aws::S3
|
|
4484
4581
|
# resp.topic_configurations[0].id #=> String
|
4485
4582
|
# resp.topic_configurations[0].topic_arn #=> String
|
4486
4583
|
# resp.topic_configurations[0].events #=> Array
|
4487
|
-
# resp.topic_configurations[0].events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold"
|
4584
|
+
# resp.topic_configurations[0].events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold", "s3:ObjectRestore:Delete", "s3:LifecycleTransition", "s3:IntelligentTiering", "s3:ObjectAcl:Put", "s3:LifecycleExpiration:*", "s3:LifecycleExpiration:Delete", "s3:LifecycleExpiration:DeleteMarkerCreated", "s3:ObjectTagging:*", "s3:ObjectTagging:Put", "s3:ObjectTagging:Delete"
|
4488
4585
|
# resp.topic_configurations[0].filter.key.filter_rules #=> Array
|
4489
4586
|
# resp.topic_configurations[0].filter.key.filter_rules[0].name #=> String, one of "prefix", "suffix"
|
4490
4587
|
# resp.topic_configurations[0].filter.key.filter_rules[0].value #=> String
|
@@ -4492,7 +4589,7 @@ module Aws::S3
|
|
4492
4589
|
# resp.queue_configurations[0].id #=> String
|
4493
4590
|
# resp.queue_configurations[0].queue_arn #=> String
|
4494
4591
|
# resp.queue_configurations[0].events #=> Array
|
4495
|
-
# resp.queue_configurations[0].events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold"
|
4592
|
+
# resp.queue_configurations[0].events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold", "s3:ObjectRestore:Delete", "s3:LifecycleTransition", "s3:IntelligentTiering", "s3:ObjectAcl:Put", "s3:LifecycleExpiration:*", "s3:LifecycleExpiration:Delete", "s3:LifecycleExpiration:DeleteMarkerCreated", "s3:ObjectTagging:*", "s3:ObjectTagging:Put", "s3:ObjectTagging:Delete"
|
4496
4593
|
# resp.queue_configurations[0].filter.key.filter_rules #=> Array
|
4497
4594
|
# resp.queue_configurations[0].filter.key.filter_rules[0].name #=> String, one of "prefix", "suffix"
|
4498
4595
|
# resp.queue_configurations[0].filter.key.filter_rules[0].value #=> String
|
@@ -4500,7 +4597,7 @@ module Aws::S3
|
|
4500
4597
|
# resp.lambda_function_configurations[0].id #=> String
|
4501
4598
|
# resp.lambda_function_configurations[0].lambda_function_arn #=> String
|
4502
4599
|
# resp.lambda_function_configurations[0].events #=> Array
|
4503
|
-
# resp.lambda_function_configurations[0].events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold"
|
4600
|
+
# resp.lambda_function_configurations[0].events[0] #=> String, one of "s3:ReducedRedundancyLostObject", "s3:ObjectCreated:*", "s3:ObjectCreated:Put", "s3:ObjectCreated:Post", "s3:ObjectCreated:Copy", "s3:ObjectCreated:CompleteMultipartUpload", "s3:ObjectRemoved:*", "s3:ObjectRemoved:Delete", "s3:ObjectRemoved:DeleteMarkerCreated", "s3:ObjectRestore:*", "s3:ObjectRestore:Post", "s3:ObjectRestore:Completed", "s3:Replication:*", "s3:Replication:OperationFailedReplication", "s3:Replication:OperationNotTracked", "s3:Replication:OperationMissedThreshold", "s3:Replication:OperationReplicatedAfterThreshold", "s3:ObjectRestore:Delete", "s3:LifecycleTransition", "s3:IntelligentTiering", "s3:ObjectAcl:Put", "s3:LifecycleExpiration:*", "s3:LifecycleExpiration:Delete", "s3:LifecycleExpiration:DeleteMarkerCreated", "s3:ObjectTagging:*", "s3:ObjectTagging:Put", "s3:ObjectTagging:Delete"
|
4504
4601
|
# resp.lambda_function_configurations[0].filter.key.filter_rules #=> Array
|
4505
4602
|
# resp.lambda_function_configurations[0].filter.key.filter_rules[0].name #=> String, one of "prefix", "suffix"
|
4506
4603
|
# resp.lambda_function_configurations[0].filter.key.filter_rules[0].value #=> String
|
@@ -4517,7 +4614,7 @@ module Aws::S3
|
|
4517
4614
|
# Retrieves `OwnershipControls` for an Amazon S3 bucket. To use this
|
4518
4615
|
# operation, you must have the `s3:GetBucketOwnershipControls`
|
4519
4616
|
# permission. For more information about Amazon S3 permissions, see
|
4520
|
-
# [Specifying
|
4617
|
+
# [Specifying permissions in a policy][1].
|
4521
4618
|
#
|
4522
4619
|
# For information about Amazon S3 Object Ownership, see [Using Object
|
4523
4620
|
# Ownership][2].
|
@@ -4530,8 +4627,8 @@ module Aws::S3
|
|
4530
4627
|
#
|
4531
4628
|
#
|
4532
4629
|
#
|
4533
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
4534
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
4630
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html
|
4631
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html
|
4535
4632
|
#
|
4536
4633
|
# @option params [required, String] :bucket
|
4537
4634
|
# The name of the Amazon S3 bucket whose `OwnershipControls` you want to
|
@@ -4556,7 +4653,7 @@ module Aws::S3
|
|
4556
4653
|
# @example Response structure
|
4557
4654
|
#
|
4558
4655
|
# resp.ownership_controls.rules #=> Array
|
4559
|
-
# resp.ownership_controls.rules[0].object_ownership #=> String, one of "BucketOwnerPreferred", "ObjectWriter"
|
4656
|
+
# resp.ownership_controls.rules[0].object_ownership #=> String, one of "BucketOwnerPreferred", "ObjectWriter", "BucketOwnerEnforced"
|
4560
4657
|
#
|
4561
4658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketOwnershipControls AWS API Documentation
|
4562
4659
|
#
|
@@ -4805,7 +4902,7 @@ module Aws::S3
|
|
4805
4902
|
# resp.replication_configuration.rules[0].existing_object_replication.status #=> String, one of "Enabled", "Disabled"
|
4806
4903
|
# resp.replication_configuration.rules[0].destination.bucket #=> String
|
4807
4904
|
# resp.replication_configuration.rules[0].destination.account #=> String
|
4808
|
-
# resp.replication_configuration.rules[0].destination.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS"
|
4905
|
+
# resp.replication_configuration.rules[0].destination.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR"
|
4809
4906
|
# resp.replication_configuration.rules[0].destination.access_control_translation.owner #=> String, one of "Destination"
|
4810
4907
|
# resp.replication_configuration.rules[0].destination.encryption_configuration.replica_kms_key_id #=> String
|
4811
4908
|
# resp.replication_configuration.rules[0].destination.replication_time.status #=> String, one of "Enabled", "Disabled"
|
@@ -5163,10 +5260,9 @@ module Aws::S3
|
|
5163
5260
|
#
|
5164
5261
|
# Encryption request headers, like `x-amz-server-side-encryption`,
|
5165
5262
|
# should not be sent for GET requests if your object uses server-side
|
5166
|
-
# encryption with
|
5167
|
-
#
|
5168
|
-
#
|
5169
|
-
# HTTP 400 BadRequest error.
|
5263
|
+
# encryption with KMS keys (SSE-KMS) or server-side encryption with
|
5264
|
+
# Amazon S3–managed encryption keys (SSE-S3). If your object does use
|
5265
|
+
# these types of keys, you’ll get an HTTP 400 BadRequest error.
|
5170
5266
|
#
|
5171
5267
|
# If you encrypt an object by using server-side encryption with
|
5172
5268
|
# customer-provided encryption keys (SSE-C) when you store the object in
|
@@ -5207,8 +5303,10 @@ module Aws::S3
|
|
5207
5303
|
# By default, the GET action returns the current version of an object.
|
5208
5304
|
# To return a different version, use the `versionId` subresource.
|
5209
5305
|
#
|
5210
|
-
# <note markdown="1"> *
|
5211
|
-
# version of an object.
|
5306
|
+
# <note markdown="1"> * If you supply a `versionId`, you need the `s3:GetObjectVersion`
|
5307
|
+
# permission to access a specific version of an object. If you request
|
5308
|
+
# a specific version, you do not need to have the `s3:GetObject`
|
5309
|
+
# permission.
|
5212
5310
|
#
|
5213
5311
|
# * If the current version of the object is a delete marker, Amazon S3
|
5214
5312
|
# behaves as if the object was deleted and includes
|
@@ -5301,6 +5399,9 @@ module Aws::S3
|
|
5301
5399
|
# name. For more information about access point ARNs, see [Using access
|
5302
5400
|
# points][1] in the *Amazon S3 User Guide*.
|
5303
5401
|
#
|
5402
|
+
# When using an Object Lambda access point the hostname takes the form
|
5403
|
+
# *AccessPointName*-*AccountId*.s3-object-lambda.*Region*.amazonaws.com.
|
5404
|
+
#
|
5304
5405
|
# When using this action with Amazon S3 on Outposts, you must direct
|
5305
5406
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
5306
5407
|
# takes the form
|
@@ -5572,7 +5673,7 @@ module Aws::S3
|
|
5572
5673
|
# resp.sse_customer_key_md5 #=> String
|
5573
5674
|
# resp.ssekms_key_id #=> String
|
5574
5675
|
# resp.bucket_key_enabled #=> Boolean
|
5575
|
-
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS"
|
5676
|
+
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR"
|
5576
5677
|
# resp.request_charged #=> String, one of "requester"
|
5577
5678
|
# resp.replication_status #=> String, one of "COMPLETE", "PENDING", "FAILED", "REPLICA"
|
5578
5679
|
# resp.parts_count #=> Integer
|
@@ -5601,19 +5702,28 @@ module Aws::S3
|
|
5601
5702
|
# an object. To return ACL information about a different version, use
|
5602
5703
|
# the versionId subresource.
|
5603
5704
|
#
|
5705
|
+
# <note markdown="1"> If your bucket uses the bucket owner enforced setting for S3 Object
|
5706
|
+
# Ownership, requests to read ACLs are still supported and return the
|
5707
|
+
# `bucket-owner-full-control` ACL with the owner being the account that
|
5708
|
+
# created the bucket. For more information, see [ Controlling object
|
5709
|
+
# ownership and disabling ACLs][1] in the *Amazon S3 User Guide*.
|
5710
|
+
#
|
5711
|
+
# </note>
|
5712
|
+
#
|
5604
5713
|
# The following operations are related to `GetObjectAcl`\:
|
5605
5714
|
#
|
5606
|
-
# * [GetObject][
|
5715
|
+
# * [GetObject][2]
|
5607
5716
|
#
|
5608
|
-
# * [DeleteObject][
|
5717
|
+
# * [DeleteObject][3]
|
5609
5718
|
#
|
5610
|
-
# * [PutObject][
|
5719
|
+
# * [PutObject][4]
|
5611
5720
|
#
|
5612
5721
|
#
|
5613
5722
|
#
|
5614
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
5615
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
5616
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
5723
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html
|
5724
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
|
5725
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html
|
5726
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html
|
5617
5727
|
#
|
5618
5728
|
# @option params [required, String] :bucket
|
5619
5729
|
# The bucket name that contains the object for which to get the ACL
|
@@ -6390,10 +6500,9 @@ module Aws::S3
|
|
6390
6500
|
#
|
6391
6501
|
# <note markdown="1"> * Encryption request headers, like `x-amz-server-side-encryption`,
|
6392
6502
|
# should not be sent for GET requests if your object uses server-side
|
6393
|
-
# encryption with
|
6394
|
-
#
|
6395
|
-
#
|
6396
|
-
# HTTP 400 BadRequest error.
|
6503
|
+
# encryption with KMS keys (SSE-KMS) or server-side encryption with
|
6504
|
+
# Amazon S3–managed encryption keys (SSE-S3). If your object does use
|
6505
|
+
# these types of keys, you’ll get an HTTP 400 BadRequest error.
|
6397
6506
|
#
|
6398
6507
|
# * The last modified property in this case is the creation date of the
|
6399
6508
|
# object.
|
@@ -6498,18 +6607,8 @@ module Aws::S3
|
|
6498
6607
|
# The object key.
|
6499
6608
|
#
|
6500
6609
|
# @option params [String] :range
|
6501
|
-
#
|
6502
|
-
#
|
6503
|
-
# [http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35][1].
|
6504
|
-
#
|
6505
|
-
# <note markdown="1"> Amazon S3 doesn't support retrieving multiple ranges of data per
|
6506
|
-
# `GET` request.
|
6507
|
-
#
|
6508
|
-
# </note>
|
6509
|
-
#
|
6510
|
-
#
|
6511
|
-
#
|
6512
|
-
# [1]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35
|
6610
|
+
# Because `HeadObject` returns only the metadata for an object, this
|
6611
|
+
# parameter has no effect.
|
6513
6612
|
#
|
6514
6613
|
# @option params [String] :version_id
|
6515
6614
|
# VersionId used to reference a specific version of the object.
|
@@ -6654,7 +6753,7 @@ module Aws::S3
|
|
6654
6753
|
# resp.sse_customer_key_md5 #=> String
|
6655
6754
|
# resp.ssekms_key_id #=> String
|
6656
6755
|
# resp.bucket_key_enabled #=> Boolean
|
6657
|
-
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS"
|
6756
|
+
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR"
|
6658
6757
|
# resp.request_charged #=> String, one of "requester"
|
6659
6758
|
# resp.replication_status #=> String, one of "COMPLETE", "PENDING", "FAILED", "REPLICA"
|
6660
6759
|
# resp.parts_count #=> Integer
|
@@ -6779,21 +6878,22 @@ module Aws::S3
|
|
6779
6878
|
#
|
6780
6879
|
# The S3 Intelligent-Tiering storage class is designed to optimize
|
6781
6880
|
# storage costs by automatically moving data to the most cost-effective
|
6782
|
-
# storage access tier, without
|
6783
|
-
# Intelligent-Tiering delivers automatic cost savings
|
6784
|
-
#
|
6785
|
-
#
|
6786
|
-
#
|
6787
|
-
#
|
6788
|
-
#
|
6881
|
+
# storage access tier, without performance impact or operational
|
6882
|
+
# overhead. S3 Intelligent-Tiering delivers automatic cost savings in
|
6883
|
+
# three low latency and high throughput access tiers. To get the lowest
|
6884
|
+
# storage cost on data that can be accessed in minutes to hours, you can
|
6885
|
+
# choose to activate additional archiving capabilities.
|
6886
|
+
#
|
6887
|
+
# The S3 Intelligent-Tiering storage class is the ideal storage class
|
6888
|
+
# for data with unknown, changing, or unpredictable access patterns,
|
6889
|
+
# independent of object size or retention period. If the size of an
|
6890
|
+
# object is less than 128 KB, it is not monitored and not eligible for
|
6789
6891
|
# auto-tiering. Smaller objects can be stored, but they are always
|
6790
|
-
# charged at the
|
6892
|
+
# charged at the Frequent Access tier rates in the S3
|
6791
6893
|
# Intelligent-Tiering storage class.
|
6792
6894
|
#
|
6793
|
-
#
|
6794
|
-
#
|
6795
|
-
# see [Storage class for automatically optimizing frequently and
|
6796
|
-
# infrequently accessed objects][1].
|
6895
|
+
# For more information, see [Storage class for automatically optimizing
|
6896
|
+
# frequently and infrequently accessed objects][1].
|
6797
6897
|
#
|
6798
6898
|
# Operations related to `ListBucketIntelligentTieringConfigurations`
|
6799
6899
|
# include:
|
@@ -7041,10 +7141,12 @@ module Aws::S3
|
|
7041
7141
|
# resp.metrics_configuration_list[0].filter.prefix #=> String
|
7042
7142
|
# resp.metrics_configuration_list[0].filter.tag.key #=> String
|
7043
7143
|
# resp.metrics_configuration_list[0].filter.tag.value #=> String
|
7144
|
+
# resp.metrics_configuration_list[0].filter.access_point_arn #=> String
|
7044
7145
|
# resp.metrics_configuration_list[0].filter.and.prefix #=> String
|
7045
7146
|
# resp.metrics_configuration_list[0].filter.and.tags #=> Array
|
7046
7147
|
# resp.metrics_configuration_list[0].filter.and.tags[0].key #=> String
|
7047
7148
|
# resp.metrics_configuration_list[0].filter.and.tags[0].value #=> String
|
7149
|
+
# resp.metrics_configuration_list[0].filter.and.access_point_arn #=> String
|
7048
7150
|
#
|
7049
7151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListBucketMetricsConfigurations AWS API Documentation
|
7050
7152
|
#
|
@@ -7381,7 +7483,7 @@ module Aws::S3
|
|
7381
7483
|
# resp.uploads[0].upload_id #=> String
|
7382
7484
|
# resp.uploads[0].key #=> String
|
7383
7485
|
# resp.uploads[0].initiated #=> Time
|
7384
|
-
# resp.uploads[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS"
|
7486
|
+
# resp.uploads[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR"
|
7385
7487
|
# resp.uploads[0].owner.display_name #=> String
|
7386
7488
|
# resp.uploads[0].owner.id #=> String
|
7387
7489
|
# resp.uploads[0].initiator.id #=> String
|
@@ -7761,7 +7863,7 @@ module Aws::S3
|
|
7761
7863
|
# resp.contents[0].last_modified #=> Time
|
7762
7864
|
# resp.contents[0].etag #=> String
|
7763
7865
|
# resp.contents[0].size #=> Integer
|
7764
|
-
# resp.contents[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "OUTPOSTS"
|
7866
|
+
# resp.contents[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR"
|
7765
7867
|
# resp.contents[0].owner.display_name #=> String
|
7766
7868
|
# resp.contents[0].owner.id #=> String
|
7767
7869
|
# resp.name #=> String
|
@@ -7966,7 +8068,7 @@ module Aws::S3
|
|
7966
8068
|
# resp.contents[0].last_modified #=> Time
|
7967
8069
|
# resp.contents[0].etag #=> String
|
7968
8070
|
# resp.contents[0].size #=> Integer
|
7969
|
-
# resp.contents[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "OUTPOSTS"
|
8071
|
+
# resp.contents[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR"
|
7970
8072
|
# resp.contents[0].owner.display_name #=> String
|
7971
8073
|
# resp.contents[0].owner.id #=> String
|
7972
8074
|
# resp.name #=> String
|
@@ -8175,7 +8277,7 @@ module Aws::S3
|
|
8175
8277
|
# resp.initiator.display_name #=> String
|
8176
8278
|
# resp.owner.display_name #=> String
|
8177
8279
|
# resp.owner.id #=> String
|
8178
|
-
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS"
|
8280
|
+
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR"
|
8179
8281
|
# resp.request_charged #=> String, one of "requester"
|
8180
8282
|
#
|
8181
8283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListParts AWS API Documentation
|
@@ -8286,6 +8388,14 @@ module Aws::S3
|
|
8286
8388
|
# you have an existing application that updates a bucket ACL using the
|
8287
8389
|
# request body, then you can continue to use that approach.
|
8288
8390
|
#
|
8391
|
+
# If your bucket uses the bucket owner enforced setting for S3 Object
|
8392
|
+
# Ownership, ACLs are disabled and no longer affect permissions. You
|
8393
|
+
# must use policies to grant access to your bucket and the objects in
|
8394
|
+
# it. Requests to set ACLs or update ACLs fail and return the
|
8395
|
+
# `AccessControlListNotSupported` error code. Requests to read ACLs are
|
8396
|
+
# still supported. For more information, see [Controlling object
|
8397
|
+
# ownership][2] in the *Amazon S3 User Guide*.
|
8398
|
+
#
|
8289
8399
|
# **Access Permissions**
|
8290
8400
|
#
|
8291
8401
|
# You can set access permissions using one of the following methods:
|
@@ -8295,7 +8405,7 @@ module Aws::S3
|
|
8295
8405
|
# canned ACL has a predefined set of grantees and permissions. Specify
|
8296
8406
|
# the canned ACL name as the value of `x-amz-acl`. If you use this
|
8297
8407
|
# header, you cannot use other access control-specific headers in your
|
8298
|
-
# request. For more information, see [Canned ACL][
|
8408
|
+
# request. For more information, see [Canned ACL][3].
|
8299
8409
|
#
|
8300
8410
|
# * Specify access permissions explicitly with the `x-amz-grant-read`,
|
8301
8411
|
# `x-amz-grant-read-acp`, `x-amz-grant-write-acp`, and
|
@@ -8305,7 +8415,7 @@ module Aws::S3
|
|
8305
8415
|
# permission. If you use these ACL-specific headers, you cannot use
|
8306
8416
|
# the `x-amz-acl` header to set a canned ACL. These parameters map to
|
8307
8417
|
# the set of permissions that Amazon S3 supports in an ACL. For more
|
8308
|
-
# information, see [Access Control List (ACL) Overview][
|
8418
|
+
# information, see [Access Control List (ACL) Overview][4].
|
8309
8419
|
#
|
8310
8420
|
# You specify each grantee as a type=value pair, where the type is one
|
8311
8421
|
# of the following:
|
@@ -8338,7 +8448,7 @@ module Aws::S3
|
|
8338
8448
|
# * South America (São Paulo)
|
8339
8449
|
#
|
8340
8450
|
# For a list of all the Amazon S3 supported Regions and endpoints,
|
8341
|
-
# see [Regions and Endpoints][
|
8451
|
+
# see [Regions and Endpoints][5] in the Amazon Web Services General
|
8342
8452
|
# Reference.
|
8343
8453
|
#
|
8344
8454
|
# </note>
|
@@ -8401,28 +8511,29 @@ module Aws::S3
|
|
8401
8511
|
# * South America (São Paulo)
|
8402
8512
|
#
|
8403
8513
|
# For a list of all the Amazon S3 supported Regions and endpoints, see
|
8404
|
-
# [Regions and Endpoints][
|
8514
|
+
# [Regions and Endpoints][5] in the Amazon Web Services General
|
8405
8515
|
# Reference.
|
8406
8516
|
#
|
8407
8517
|
# </note>
|
8408
8518
|
#
|
8409
8519
|
# **Related Resources**
|
8410
8520
|
#
|
8411
|
-
# * [CreateBucket][
|
8521
|
+
# * [CreateBucket][6]
|
8412
8522
|
#
|
8413
|
-
# * [DeleteBucket][
|
8523
|
+
# * [DeleteBucket][7]
|
8414
8524
|
#
|
8415
|
-
# * [GetObjectAcl][
|
8525
|
+
# * [GetObjectAcl][8]
|
8416
8526
|
#
|
8417
8527
|
#
|
8418
8528
|
#
|
8419
8529
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3_ACLs_UsingACLs.html
|
8420
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
8421
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html
|
8422
|
-
# [4]: https://docs.aws.amazon.com/
|
8423
|
-
# [5]: https://docs.aws.amazon.com/
|
8424
|
-
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
8425
|
-
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
8530
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html
|
8531
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL
|
8532
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html
|
8533
|
+
# [5]: https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
|
8534
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html
|
8535
|
+
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html
|
8536
|
+
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAcl.html
|
8426
8537
|
#
|
8427
8538
|
# @option params [String] :acl
|
8428
8539
|
# The canned ACL to apply to the bucket.
|
@@ -8822,12 +8933,12 @@ module Aws::S3
|
|
8822
8933
|
# encryption and Amazon S3 Bucket Key for an existing bucket.
|
8823
8934
|
#
|
8824
8935
|
# Default encryption for a bucket can use server-side encryption with
|
8825
|
-
# Amazon S3-managed keys (SSE-S3) or
|
8826
|
-
#
|
8827
|
-
#
|
8828
|
-
#
|
8829
|
-
#
|
8830
|
-
#
|
8936
|
+
# Amazon S3-managed keys (SSE-S3) or customer managed keys (SSE-KMS). If
|
8937
|
+
# you specify default encryption using SSE-KMS, you can also configure
|
8938
|
+
# Amazon S3 Bucket Key. For information about default encryption, see
|
8939
|
+
# [Amazon S3 default bucket encryption][1] in the *Amazon S3 User
|
8940
|
+
# Guide*. For more information about S3 Bucket Keys, see [Amazon S3
|
8941
|
+
# Bucket Keys][2] in the *Amazon S3 User Guide*.
|
8831
8942
|
#
|
8832
8943
|
# This action requires Amazon Web Services Signature Version 4. For more
|
8833
8944
|
# information, see [ Authenticating Requests (Amazon Web Services
|
@@ -8859,10 +8970,10 @@ module Aws::S3
|
|
8859
8970
|
#
|
8860
8971
|
# @option params [required, String] :bucket
|
8861
8972
|
# Specifies default encryption for a bucket using server-side encryption
|
8862
|
-
# with Amazon S3-managed keys (SSE-S3) or customer
|
8863
|
-
#
|
8864
|
-
#
|
8865
|
-
#
|
8973
|
+
# with Amazon S3-managed keys (SSE-S3) or customer managed keys
|
8974
|
+
# (SSE-KMS). For information about the Amazon S3 default encryption
|
8975
|
+
# feature, see [Amazon S3 Default Bucket Encryption][1] in the *Amazon
|
8976
|
+
# S3 User Guide*.
|
8866
8977
|
#
|
8867
8978
|
#
|
8868
8979
|
#
|
@@ -8920,21 +9031,22 @@ module Aws::S3
|
|
8920
9031
|
#
|
8921
9032
|
# The S3 Intelligent-Tiering storage class is designed to optimize
|
8922
9033
|
# storage costs by automatically moving data to the most cost-effective
|
8923
|
-
# storage access tier, without
|
8924
|
-
# Intelligent-Tiering delivers automatic cost savings
|
8925
|
-
#
|
8926
|
-
#
|
8927
|
-
#
|
8928
|
-
#
|
8929
|
-
#
|
9034
|
+
# storage access tier, without performance impact or operational
|
9035
|
+
# overhead. S3 Intelligent-Tiering delivers automatic cost savings in
|
9036
|
+
# three low latency and high throughput access tiers. To get the lowest
|
9037
|
+
# storage cost on data that can be accessed in minutes to hours, you can
|
9038
|
+
# choose to activate additional archiving capabilities.
|
9039
|
+
#
|
9040
|
+
# The S3 Intelligent-Tiering storage class is the ideal storage class
|
9041
|
+
# for data with unknown, changing, or unpredictable access patterns,
|
9042
|
+
# independent of object size or retention period. If the size of an
|
9043
|
+
# object is less than 128 KB, it is not monitored and not eligible for
|
8930
9044
|
# auto-tiering. Smaller objects can be stored, but they are always
|
8931
|
-
# charged at the
|
9045
|
+
# charged at the Frequent Access tier rates in the S3
|
8932
9046
|
# Intelligent-Tiering storage class.
|
8933
9047
|
#
|
8934
|
-
#
|
8935
|
-
#
|
8936
|
-
# see [Storage class for automatically optimizing frequently and
|
8937
|
-
# infrequently accessed objects][1].
|
9048
|
+
# For more information, see [Storage class for automatically optimizing
|
9049
|
+
# frequently and infrequently accessed objects][1].
|
8938
9050
|
#
|
8939
9051
|
# Operations related to `PutBucketIntelligentTieringConfiguration`
|
8940
9052
|
# include:
|
@@ -9268,14 +9380,16 @@ module Aws::S3
|
|
9268
9380
|
# transition: {
|
9269
9381
|
# date: Time.now,
|
9270
9382
|
# days: 1,
|
9271
|
-
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE
|
9383
|
+
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, GLACIER_IR
|
9272
9384
|
# },
|
9273
9385
|
# noncurrent_version_transition: {
|
9274
9386
|
# noncurrent_days: 1,
|
9275
|
-
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE
|
9387
|
+
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, GLACIER_IR
|
9388
|
+
# newer_noncurrent_versions: 1,
|
9276
9389
|
# },
|
9277
9390
|
# noncurrent_version_expiration: {
|
9278
9391
|
# noncurrent_days: 1,
|
9392
|
+
# newer_noncurrent_versions: 1,
|
9279
9393
|
# },
|
9280
9394
|
# abort_incomplete_multipart_upload: {
|
9281
9395
|
# days_after_initiation: 1,
|
@@ -9437,6 +9551,8 @@ module Aws::S3
|
|
9437
9551
|
# key: "ObjectKey", # required
|
9438
9552
|
# value: "Value", # required
|
9439
9553
|
# },
|
9554
|
+
# object_size_greater_than: 1,
|
9555
|
+
# object_size_less_than: 1,
|
9440
9556
|
# and: {
|
9441
9557
|
# prefix: "Prefix",
|
9442
9558
|
# tags: [
|
@@ -9445,6 +9561,8 @@ module Aws::S3
|
|
9445
9561
|
# value: "Value", # required
|
9446
9562
|
# },
|
9447
9563
|
# ],
|
9564
|
+
# object_size_greater_than: 1,
|
9565
|
+
# object_size_less_than: 1,
|
9448
9566
|
# },
|
9449
9567
|
# },
|
9450
9568
|
# status: "Enabled", # required, accepts Enabled, Disabled
|
@@ -9452,17 +9570,19 @@ module Aws::S3
|
|
9452
9570
|
# {
|
9453
9571
|
# date: Time.now,
|
9454
9572
|
# days: 1,
|
9455
|
-
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE
|
9573
|
+
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, GLACIER_IR
|
9456
9574
|
# },
|
9457
9575
|
# ],
|
9458
9576
|
# noncurrent_version_transitions: [
|
9459
9577
|
# {
|
9460
9578
|
# noncurrent_days: 1,
|
9461
|
-
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE
|
9579
|
+
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, GLACIER_IR
|
9580
|
+
# newer_noncurrent_versions: 1,
|
9462
9581
|
# },
|
9463
9582
|
# ],
|
9464
9583
|
# noncurrent_version_expiration: {
|
9465
9584
|
# noncurrent_days: 1,
|
9585
|
+
# newer_noncurrent_versions: 1,
|
9466
9586
|
# },
|
9467
9587
|
# abort_incomplete_multipart_upload: {
|
9468
9588
|
# days_after_initiation: 1,
|
@@ -9492,6 +9612,12 @@ module Aws::S3
|
|
9492
9612
|
# The `Permissions` request element specifies the kind of access the
|
9493
9613
|
# grantee has to the logs.
|
9494
9614
|
#
|
9615
|
+
# If the target bucket for log delivery uses the bucket owner enforced
|
9616
|
+
# setting for S3 Object Ownership, you can't use the `Grantee` request
|
9617
|
+
# element to grant access to others. Permissions can only be granted
|
9618
|
+
# using policies. For more information, see [Permissions for server
|
9619
|
+
# access log delivery][1] in the *Amazon S3 User Guide*.
|
9620
|
+
#
|
9495
9621
|
# **Grantee Values**
|
9496
9622
|
#
|
9497
9623
|
# You can specify the person (grantee) to whom you're assigning access
|
@@ -9526,29 +9652,30 @@ module Aws::S3
|
|
9526
9652
|
# />`
|
9527
9653
|
#
|
9528
9654
|
# For more information about server access logging, see [Server Access
|
9529
|
-
# Logging][
|
9655
|
+
# Logging][2] in the *Amazon S3 User Guide*.
|
9530
9656
|
#
|
9531
|
-
# For more information about creating a bucket, see [CreateBucket][
|
9657
|
+
# For more information about creating a bucket, see [CreateBucket][3].
|
9532
9658
|
# For more information about returning the logging status of a bucket,
|
9533
|
-
# see [GetBucketLogging][
|
9659
|
+
# see [GetBucketLogging][4].
|
9534
9660
|
#
|
9535
9661
|
# The following operations are related to `PutBucketLogging`\:
|
9536
9662
|
#
|
9537
|
-
# * [PutObject][
|
9663
|
+
# * [PutObject][5]
|
9538
9664
|
#
|
9539
|
-
# * [DeleteBucket][
|
9665
|
+
# * [DeleteBucket][6]
|
9540
9666
|
#
|
9541
|
-
# * [CreateBucket][
|
9667
|
+
# * [CreateBucket][3]
|
9542
9668
|
#
|
9543
|
-
# * [GetBucketLogging][
|
9669
|
+
# * [GetBucketLogging][4]
|
9544
9670
|
#
|
9545
9671
|
#
|
9546
9672
|
#
|
9547
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
9548
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
9549
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
9550
|
-
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
9551
|
-
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
9673
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html#grant-log-delivery-permissions-general
|
9674
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerLogs.html
|
9675
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html
|
9676
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLogging.html
|
9677
|
+
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html
|
9678
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html
|
9552
9679
|
#
|
9553
9680
|
# @option params [required, String] :bucket
|
9554
9681
|
# The name of the bucket for which to set the logging parameters.
|
@@ -9652,7 +9779,7 @@ module Aws::S3
|
|
9652
9779
|
#
|
9653
9780
|
# * [DeleteBucketMetricsConfiguration][4]
|
9654
9781
|
#
|
9655
|
-
# * [
|
9782
|
+
# * [GetBucketMetricsConfiguration][5]
|
9656
9783
|
#
|
9657
9784
|
# * [ListBucketMetricsConfigurations][6]
|
9658
9785
|
#
|
@@ -9671,7 +9798,7 @@ module Aws::S3
|
|
9671
9798
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html
|
9672
9799
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/cloudwatch-monitoring.html
|
9673
9800
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketMetricsConfiguration.html
|
9674
|
-
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
9801
|
+
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketMetricsConfiguration.html
|
9675
9802
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketMetricsConfigurations.html
|
9676
9803
|
#
|
9677
9804
|
# @option params [required, String] :bucket
|
@@ -9703,6 +9830,7 @@ module Aws::S3
|
|
9703
9830
|
# key: "ObjectKey", # required
|
9704
9831
|
# value: "Value", # required
|
9705
9832
|
# },
|
9833
|
+
# access_point_arn: "AccessPointArn",
|
9706
9834
|
# and: {
|
9707
9835
|
# prefix: "Prefix",
|
9708
9836
|
# tags: [
|
@@ -9711,6 +9839,7 @@ module Aws::S3
|
|
9711
9839
|
# value: "Value", # required
|
9712
9840
|
# },
|
9713
9841
|
# ],
|
9842
|
+
# access_point_arn: "AccessPointArn",
|
9714
9843
|
# },
|
9715
9844
|
# },
|
9716
9845
|
# },
|
@@ -9761,20 +9890,20 @@ module Aws::S3
|
|
9761
9890
|
# notification_configuration: { # required
|
9762
9891
|
# topic_configuration: {
|
9763
9892
|
# id: "NotificationId",
|
9764
|
-
# events: ["s3:ReducedRedundancyLostObject"], # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold
|
9765
|
-
# event: "s3:ReducedRedundancyLostObject", # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold
|
9893
|
+
# events: ["s3:ReducedRedundancyLostObject"], # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold, s3:ObjectRestore:Delete, s3:LifecycleTransition, s3:IntelligentTiering, s3:ObjectAcl:Put, s3:LifecycleExpiration:*, s3:LifecycleExpiration:Delete, s3:LifecycleExpiration:DeleteMarkerCreated, s3:ObjectTagging:*, s3:ObjectTagging:Put, s3:ObjectTagging:Delete
|
9894
|
+
# event: "s3:ReducedRedundancyLostObject", # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold, s3:ObjectRestore:Delete, s3:LifecycleTransition, s3:IntelligentTiering, s3:ObjectAcl:Put, s3:LifecycleExpiration:*, s3:LifecycleExpiration:Delete, s3:LifecycleExpiration:DeleteMarkerCreated, s3:ObjectTagging:*, s3:ObjectTagging:Put, s3:ObjectTagging:Delete
|
9766
9895
|
# topic: "TopicArn",
|
9767
9896
|
# },
|
9768
9897
|
# queue_configuration: {
|
9769
9898
|
# id: "NotificationId",
|
9770
|
-
# event: "s3:ReducedRedundancyLostObject", # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold
|
9771
|
-
# events: ["s3:ReducedRedundancyLostObject"], # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold
|
9899
|
+
# event: "s3:ReducedRedundancyLostObject", # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold, s3:ObjectRestore:Delete, s3:LifecycleTransition, s3:IntelligentTiering, s3:ObjectAcl:Put, s3:LifecycleExpiration:*, s3:LifecycleExpiration:Delete, s3:LifecycleExpiration:DeleteMarkerCreated, s3:ObjectTagging:*, s3:ObjectTagging:Put, s3:ObjectTagging:Delete
|
9900
|
+
# events: ["s3:ReducedRedundancyLostObject"], # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold, s3:ObjectRestore:Delete, s3:LifecycleTransition, s3:IntelligentTiering, s3:ObjectAcl:Put, s3:LifecycleExpiration:*, s3:LifecycleExpiration:Delete, s3:LifecycleExpiration:DeleteMarkerCreated, s3:ObjectTagging:*, s3:ObjectTagging:Put, s3:ObjectTagging:Delete
|
9772
9901
|
# queue: "QueueArn",
|
9773
9902
|
# },
|
9774
9903
|
# cloud_function_configuration: {
|
9775
9904
|
# id: "NotificationId",
|
9776
|
-
# event: "s3:ReducedRedundancyLostObject", # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold
|
9777
|
-
# events: ["s3:ReducedRedundancyLostObject"], # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold
|
9905
|
+
# event: "s3:ReducedRedundancyLostObject", # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold, s3:ObjectRestore:Delete, s3:LifecycleTransition, s3:IntelligentTiering, s3:ObjectAcl:Put, s3:LifecycleExpiration:*, s3:LifecycleExpiration:Delete, s3:LifecycleExpiration:DeleteMarkerCreated, s3:ObjectTagging:*, s3:ObjectTagging:Put, s3:ObjectTagging:Delete
|
9906
|
+
# events: ["s3:ReducedRedundancyLostObject"], # accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold, s3:ObjectRestore:Delete, s3:LifecycleTransition, s3:IntelligentTiering, s3:ObjectAcl:Put, s3:LifecycleExpiration:*, s3:LifecycleExpiration:Delete, s3:LifecycleExpiration:DeleteMarkerCreated, s3:ObjectTagging:*, s3:ObjectTagging:Put, s3:ObjectTagging:Delete
|
9778
9907
|
# cloud_function: "CloudFunction",
|
9779
9908
|
# invocation_role: "CloudFunctionInvocationRole",
|
9780
9909
|
# },
|
@@ -9871,6 +10000,10 @@ module Aws::S3
|
|
9871
10000
|
# a different account, the request will fail with an HTTP `403 (Access
|
9872
10001
|
# Denied)` error.
|
9873
10002
|
#
|
10003
|
+
# @option params [Boolean] :skip_destination_validation
|
10004
|
+
# Skips validation of Amazon SQS, Amazon SNS, and Lambda destinations.
|
10005
|
+
# True or false value.
|
10006
|
+
#
|
9874
10007
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
9875
10008
|
#
|
9876
10009
|
#
|
@@ -9901,7 +10034,7 @@ module Aws::S3
|
|
9901
10034
|
# {
|
9902
10035
|
# id: "NotificationId",
|
9903
10036
|
# topic_arn: "TopicArn", # required
|
9904
|
-
# events: ["s3:ReducedRedundancyLostObject"], # required, accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold
|
10037
|
+
# events: ["s3:ReducedRedundancyLostObject"], # required, accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold, s3:ObjectRestore:Delete, s3:LifecycleTransition, s3:IntelligentTiering, s3:ObjectAcl:Put, s3:LifecycleExpiration:*, s3:LifecycleExpiration:Delete, s3:LifecycleExpiration:DeleteMarkerCreated, s3:ObjectTagging:*, s3:ObjectTagging:Put, s3:ObjectTagging:Delete
|
9905
10038
|
# filter: {
|
9906
10039
|
# key: {
|
9907
10040
|
# filter_rules: [
|
@@ -9918,7 +10051,7 @@ module Aws::S3
|
|
9918
10051
|
# {
|
9919
10052
|
# id: "NotificationId",
|
9920
10053
|
# queue_arn: "QueueArn", # required
|
9921
|
-
# events: ["s3:ReducedRedundancyLostObject"], # required, accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold
|
10054
|
+
# events: ["s3:ReducedRedundancyLostObject"], # required, accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold, s3:ObjectRestore:Delete, s3:LifecycleTransition, s3:IntelligentTiering, s3:ObjectAcl:Put, s3:LifecycleExpiration:*, s3:LifecycleExpiration:Delete, s3:LifecycleExpiration:DeleteMarkerCreated, s3:ObjectTagging:*, s3:ObjectTagging:Put, s3:ObjectTagging:Delete
|
9922
10055
|
# filter: {
|
9923
10056
|
# key: {
|
9924
10057
|
# filter_rules: [
|
@@ -9935,7 +10068,7 @@ module Aws::S3
|
|
9935
10068
|
# {
|
9936
10069
|
# id: "NotificationId",
|
9937
10070
|
# lambda_function_arn: "LambdaFunctionArn", # required
|
9938
|
-
# events: ["s3:ReducedRedundancyLostObject"], # required, accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold
|
10071
|
+
# events: ["s3:ReducedRedundancyLostObject"], # required, accepts s3:ReducedRedundancyLostObject, s3:ObjectCreated:*, s3:ObjectCreated:Put, s3:ObjectCreated:Post, s3:ObjectCreated:Copy, s3:ObjectCreated:CompleteMultipartUpload, s3:ObjectRemoved:*, s3:ObjectRemoved:Delete, s3:ObjectRemoved:DeleteMarkerCreated, s3:ObjectRestore:*, s3:ObjectRestore:Post, s3:ObjectRestore:Completed, s3:Replication:*, s3:Replication:OperationFailedReplication, s3:Replication:OperationNotTracked, s3:Replication:OperationMissedThreshold, s3:Replication:OperationReplicatedAfterThreshold, s3:ObjectRestore:Delete, s3:LifecycleTransition, s3:IntelligentTiering, s3:ObjectAcl:Put, s3:LifecycleExpiration:*, s3:LifecycleExpiration:Delete, s3:LifecycleExpiration:DeleteMarkerCreated, s3:ObjectTagging:*, s3:ObjectTagging:Put, s3:ObjectTagging:Delete
|
9939
10072
|
# filter: {
|
9940
10073
|
# key: {
|
9941
10074
|
# filter_rules: [
|
@@ -9948,8 +10081,11 @@ module Aws::S3
|
|
9948
10081
|
# },
|
9949
10082
|
# },
|
9950
10083
|
# ],
|
10084
|
+
# event_bridge_configuration: {
|
10085
|
+
# },
|
9951
10086
|
# },
|
9952
10087
|
# expected_bucket_owner: "AccountId",
|
10088
|
+
# skip_destination_validation: false,
|
9953
10089
|
# })
|
9954
10090
|
#
|
9955
10091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/PutBucketNotificationConfiguration AWS API Documentation
|
@@ -9964,10 +10100,10 @@ module Aws::S3
|
|
9964
10100
|
# Creates or modifies `OwnershipControls` for an Amazon S3 bucket. To
|
9965
10101
|
# use this operation, you must have the `s3:PutBucketOwnershipControls`
|
9966
10102
|
# permission. For more information about Amazon S3 permissions, see
|
9967
|
-
# [Specifying
|
10103
|
+
# [Specifying permissions in a policy][1].
|
9968
10104
|
#
|
9969
|
-
# For information about Amazon S3 Object Ownership, see [Using
|
9970
|
-
#
|
10105
|
+
# For information about Amazon S3 Object Ownership, see [Using object
|
10106
|
+
# ownership][2].
|
9971
10107
|
#
|
9972
10108
|
# The following operations are related to `PutBucketOwnershipControls`\:
|
9973
10109
|
#
|
@@ -9977,8 +10113,8 @@ module Aws::S3
|
|
9977
10113
|
#
|
9978
10114
|
#
|
9979
10115
|
#
|
9980
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
9981
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
10116
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/user-guide/using-with-s3-actions.html
|
10117
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/user-guide/about-object-ownership.html
|
9982
10118
|
#
|
9983
10119
|
# @option params [required, String] :bucket
|
9984
10120
|
# The name of the Amazon S3 bucket whose `OwnershipControls` you want to
|
@@ -9997,8 +10133,8 @@ module Aws::S3
|
|
9997
10133
|
# Denied)` error.
|
9998
10134
|
#
|
9999
10135
|
# @option params [required, Types::OwnershipControls] :ownership_controls
|
10000
|
-
# The `OwnershipControls` (BucketOwnerPreferred or
|
10001
|
-
# you want to apply to this Amazon S3 bucket.
|
10136
|
+
# The `OwnershipControls` (BucketOwnerEnforced, BucketOwnerPreferred, or
|
10137
|
+
# ObjectWriter) that you want to apply to this Amazon S3 bucket.
|
10002
10138
|
#
|
10003
10139
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
10004
10140
|
#
|
@@ -10011,7 +10147,7 @@ module Aws::S3
|
|
10011
10147
|
# ownership_controls: { # required
|
10012
10148
|
# rules: [ # required
|
10013
10149
|
# {
|
10014
|
-
# object_ownership: "BucketOwnerPreferred", # required, accepts BucketOwnerPreferred, ObjectWriter
|
10150
|
+
# object_ownership: "BucketOwnerPreferred", # required, accepts BucketOwnerPreferred, ObjectWriter, BucketOwnerEnforced
|
10015
10151
|
# },
|
10016
10152
|
# ],
|
10017
10153
|
# },
|
@@ -10143,13 +10279,12 @@ module Aws::S3
|
|
10143
10279
|
# **Handling Replication of Encrypted Objects**
|
10144
10280
|
#
|
10145
10281
|
# By default, Amazon S3 doesn't replicate objects that are stored at
|
10146
|
-
# rest using server-side encryption with
|
10147
|
-
#
|
10148
|
-
#
|
10149
|
-
# `
|
10150
|
-
#
|
10151
|
-
#
|
10152
|
-
# Web Services KMS][4].
|
10282
|
+
# rest using server-side encryption with KMS keys. To replicate Amazon
|
10283
|
+
# Web Services KMS-encrypted objects, add the following:
|
10284
|
+
# `SourceSelectionCriteria`, `SseKmsEncryptedObjects`, `Status`,
|
10285
|
+
# `EncryptionConfiguration`, and `ReplicaKmsKeyID`. For information
|
10286
|
+
# about replication configuration, see [Replicating Objects Created with
|
10287
|
+
# SSE Using KMS keys][4].
|
10153
10288
|
#
|
10154
10289
|
# For information on `PutBucketReplication` errors, see [List of
|
10155
10290
|
# replication-related error codes][5]
|
@@ -10285,7 +10420,7 @@ module Aws::S3
|
|
10285
10420
|
# destination: { # required
|
10286
10421
|
# bucket: "BucketName", # required
|
10287
10422
|
# account: "AccountId",
|
10288
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
10423
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR
|
10289
10424
|
# access_control_translation: {
|
10290
10425
|
# owner: "Destination", # required, accepts Destination
|
10291
10426
|
# },
|
@@ -10874,13 +11009,33 @@ module Aws::S3
|
|
10874
11009
|
# information, see [Access Control List (ACL) Overview][4] and [Managing
|
10875
11010
|
# ACLs Using the REST API][5].
|
10876
11011
|
#
|
11012
|
+
# If the bucket that you're uploading objects to uses the bucket owner
|
11013
|
+
# enforced setting for S3 Object Ownership, ACLs are disabled and no
|
11014
|
+
# longer affect permissions. Buckets that use this setting only accept
|
11015
|
+
# PUT requests that don't specify an ACL or PUT requests that specify
|
11016
|
+
# bucket owner full control ACLs, such as the
|
11017
|
+
# `bucket-owner-full-control` canned ACL or an equivalent form of this
|
11018
|
+
# ACL expressed in the XML format. PUT requests that contain other ACLs
|
11019
|
+
# (for example, custom grants to certain Amazon Web Services accounts)
|
11020
|
+
# fail and return a `400` error with the error code
|
11021
|
+
# `AccessControlListNotSupported`.
|
11022
|
+
#
|
11023
|
+
# For more information, see [ Controlling ownership of objects and
|
11024
|
+
# disabling ACLs][6] in the *Amazon S3 User Guide*.
|
11025
|
+
#
|
11026
|
+
# <note markdown="1"> If your bucket uses the bucket owner enforced setting for Object
|
11027
|
+
# Ownership, all objects written to the bucket by any account will be
|
11028
|
+
# owned by the bucket owner.
|
11029
|
+
#
|
11030
|
+
# </note>
|
11031
|
+
#
|
10877
11032
|
# **Storage Class Options**
|
10878
11033
|
#
|
10879
11034
|
# By default, Amazon S3 uses the STANDARD Storage Class to store newly
|
10880
11035
|
# created objects. The STANDARD storage class provides high durability
|
10881
11036
|
# and high availability. Depending on performance needs, you can specify
|
10882
11037
|
# a different Storage Class. Amazon S3 on Outposts only uses the
|
10883
|
-
# OUTPOSTS Storage Class. For more information, see [Storage Classes][
|
11038
|
+
# OUTPOSTS Storage Class. For more information, see [Storage Classes][7]
|
10884
11039
|
# in the *Amazon S3 User Guide*.
|
10885
11040
|
#
|
10886
11041
|
# **Versioning**
|
@@ -10892,14 +11047,14 @@ module Aws::S3
|
|
10892
11047
|
# object simultaneously, it stores all of the objects.
|
10893
11048
|
#
|
10894
11049
|
# For more information about versioning, see [Adding Objects to
|
10895
|
-
# Versioning Enabled Buckets][
|
10896
|
-
# versioning state of a bucket, see [GetBucketVersioning][
|
11050
|
+
# Versioning Enabled Buckets][8]. For information about returning the
|
11051
|
+
# versioning state of a bucket, see [GetBucketVersioning][9].
|
10897
11052
|
#
|
10898
11053
|
# **Related Resources**
|
10899
11054
|
#
|
10900
|
-
# * [CopyObject][
|
11055
|
+
# * [CopyObject][10]
|
10901
11056
|
#
|
10902
|
-
# * [DeleteObject][
|
11057
|
+
# * [DeleteObject][11]
|
10903
11058
|
#
|
10904
11059
|
#
|
10905
11060
|
#
|
@@ -10908,11 +11063,12 @@ module Aws::S3
|
|
10908
11063
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html
|
10909
11064
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html
|
10910
11065
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-using-rest-api.html
|
10911
|
-
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/
|
10912
|
-
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
10913
|
-
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/
|
10914
|
-
# [9]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
10915
|
-
# [10]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
11066
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html
|
11067
|
+
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html
|
11068
|
+
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/dev/AddingObjectstoVersioningEnabledBuckets.html
|
11069
|
+
# [9]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketVersioning.html
|
11070
|
+
# [10]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html
|
11071
|
+
# [11]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html
|
10916
11072
|
#
|
10917
11073
|
# @option params [String] :acl
|
10918
11074
|
# The canned ACL to apply to the object. For more information, see
|
@@ -11112,12 +11268,12 @@ module Aws::S3
|
|
11112
11268
|
# If `x-amz-server-side-encryption` is present and has the value of
|
11113
11269
|
# `aws:kms`, this header specifies the ID of the Amazon Web Services Key
|
11114
11270
|
# Management Service (Amazon Web Services KMS) symmetrical customer
|
11115
|
-
# managed
|
11116
|
-
#
|
11271
|
+
# managed key that was used for the object. If you specify
|
11272
|
+
# `x-amz-server-side-encryption:aws:kms`, but do not provide`
|
11117
11273
|
# x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
|
11118
|
-
# Amazon Web Services managed
|
11119
|
-
#
|
11120
|
-
#
|
11274
|
+
# Amazon Web Services managed key to protect the data. If the KMS key
|
11275
|
+
# does not exist in the same account issuing the command, you must use
|
11276
|
+
# the full ARN and not just the ID.
|
11121
11277
|
#
|
11122
11278
|
# @option params [String] :ssekms_encryption_context
|
11123
11279
|
# Specifies the Amazon Web Services KMS Encryption Context to use for
|
@@ -11341,7 +11497,7 @@ module Aws::S3
|
|
11341
11497
|
# "MetadataKey" => "MetadataValue",
|
11342
11498
|
# },
|
11343
11499
|
# server_side_encryption: "AES256", # accepts AES256, aws:kms
|
11344
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
11500
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR
|
11345
11501
|
# website_redirect_location: "WebsiteRedirectLocation",
|
11346
11502
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
11347
11503
|
# sse_customer_key: "SSECustomerKey",
|
@@ -11394,6 +11550,14 @@ module Aws::S3
|
|
11394
11550
|
# information, see [Access Control List (ACL) Overview][2] in the
|
11395
11551
|
# *Amazon S3 User Guide*.
|
11396
11552
|
#
|
11553
|
+
# If your bucket uses the bucket owner enforced setting for S3 Object
|
11554
|
+
# Ownership, ACLs are disabled and no longer affect permissions. You
|
11555
|
+
# must use policies to grant access to your bucket and the objects in
|
11556
|
+
# it. Requests to set ACLs or update ACLs fail and return the
|
11557
|
+
# `AccessControlListNotSupported` error code. Requests to read ACLs are
|
11558
|
+
# still supported. For more information, see [Controlling object
|
11559
|
+
# ownership][3] in the *Amazon S3 User Guide*.
|
11560
|
+
#
|
11397
11561
|
# **Access Permissions**
|
11398
11562
|
#
|
11399
11563
|
# You can set access permissions using one of the following methods:
|
@@ -11403,7 +11567,7 @@ module Aws::S3
|
|
11403
11567
|
# ACL has a predefined set of grantees and permissions. Specify the
|
11404
11568
|
# canned ACL name as the value of `x-amz-ac`l. If you use this header,
|
11405
11569
|
# you cannot use other access control-specific headers in your
|
11406
|
-
# request. For more information, see [Canned ACL][
|
11570
|
+
# request. For more information, see [Canned ACL][4].
|
11407
11571
|
#
|
11408
11572
|
# * Specify access permissions explicitly with the `x-amz-grant-read`,
|
11409
11573
|
# `x-amz-grant-read-acp`, `x-amz-grant-write-acp`, and
|
@@ -11446,7 +11610,7 @@ module Aws::S3
|
|
11446
11610
|
# * South America (São Paulo)
|
11447
11611
|
#
|
11448
11612
|
# For a list of all the Amazon S3 supported Regions and endpoints,
|
11449
|
-
# see [Regions and Endpoints][
|
11613
|
+
# see [Regions and Endpoints][5] in the Amazon Web Services General
|
11450
11614
|
# Reference.
|
11451
11615
|
#
|
11452
11616
|
# </note>
|
@@ -11507,7 +11671,7 @@ module Aws::S3
|
|
11507
11671
|
# * South America (São Paulo)
|
11508
11672
|
#
|
11509
11673
|
# For a list of all the Amazon S3 supported Regions and endpoints, see
|
11510
|
-
# [Regions and Endpoints][
|
11674
|
+
# [Regions and Endpoints][5] in the Amazon Web Services General
|
11511
11675
|
# Reference.
|
11512
11676
|
#
|
11513
11677
|
# </note>
|
@@ -11520,18 +11684,19 @@ module Aws::S3
|
|
11520
11684
|
#
|
11521
11685
|
# **Related Resources**
|
11522
11686
|
#
|
11523
|
-
# * [CopyObject][
|
11687
|
+
# * [CopyObject][6]
|
11524
11688
|
#
|
11525
|
-
# * [GetObject][
|
11689
|
+
# * [GetObject][7]
|
11526
11690
|
#
|
11527
11691
|
#
|
11528
11692
|
#
|
11529
11693
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#permissions
|
11530
11694
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html
|
11531
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/
|
11532
|
-
# [4]: https://docs.aws.amazon.com/
|
11533
|
-
# [5]: https://docs.aws.amazon.com/
|
11534
|
-
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
11695
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html
|
11696
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL
|
11697
|
+
# [5]: https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
|
11698
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html
|
11699
|
+
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
|
11535
11700
|
#
|
11536
11701
|
# @option params [String] :acl
|
11537
11702
|
# The canned ACL to apply to the object. For more information, see
|
@@ -12665,7 +12830,7 @@ module Aws::S3
|
|
12665
12830
|
# value: "MetadataValue",
|
12666
12831
|
# },
|
12667
12832
|
# ],
|
12668
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
12833
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR
|
12669
12834
|
# },
|
12670
12835
|
# },
|
12671
12836
|
# },
|
@@ -12698,10 +12863,11 @@ module Aws::S3
|
|
12698
12863
|
# This action is not supported by Amazon S3 on Outposts.
|
12699
12864
|
#
|
12700
12865
|
# For more information about Amazon S3 Select, see [Selecting Content
|
12701
|
-
# from Objects][1] in the *Amazon S3 User
|
12866
|
+
# from Objects][1] and [SELECT Command][2] in the *Amazon S3 User
|
12867
|
+
# Guide*.
|
12702
12868
|
#
|
12703
12869
|
# For more information about using SQL with Amazon S3 Select, see [ SQL
|
12704
|
-
# Reference for Amazon S3 Select and S3 Glacier Select][
|
12870
|
+
# Reference for Amazon S3 Select and S3 Glacier Select][3] in the
|
12705
12871
|
# *Amazon S3 User Guide*.
|
12706
12872
|
#
|
12707
12873
|
#
|
@@ -12710,7 +12876,7 @@ module Aws::S3
|
|
12710
12876
|
#
|
12711
12877
|
# You must have `s3:GetObject` permission for this operation. Amazon S3
|
12712
12878
|
# Select does not support anonymous access. For more information about
|
12713
|
-
# permissions, see [Specifying Permissions in a Policy][
|
12879
|
+
# permissions, see [Specifying Permissions in a Policy][4] in the
|
12714
12880
|
# *Amazon S3 User Guide*.
|
12715
12881
|
#
|
12716
12882
|
#
|
@@ -12737,71 +12903,71 @@ module Aws::S3
|
|
12737
12903
|
#
|
12738
12904
|
# For objects that are encrypted with customer-provided encryption
|
12739
12905
|
# keys (SSE-C), you must use HTTPS, and you must use the headers that
|
12740
|
-
# are documented in the [GetObject][
|
12906
|
+
# are documented in the [GetObject][5]. For more information about
|
12741
12907
|
# SSE-C, see [Server-Side Encryption (Using Customer-Provided
|
12742
|
-
# Encryption Keys)][
|
12908
|
+
# Encryption Keys)][6] in the *Amazon S3 User Guide*.
|
12743
12909
|
#
|
12744
12910
|
# For objects that are encrypted with Amazon S3 managed encryption
|
12745
|
-
# keys (SSE-S3) and
|
12746
|
-
#
|
12747
|
-
#
|
12748
|
-
#
|
12749
|
-
#
|
12750
|
-
# the *Amazon S3 User Guide*.
|
12911
|
+
# keys (SSE-S3) and Amazon Web Services KMS keys (SSE-KMS),
|
12912
|
+
# server-side encryption is handled transparently, so you don't need
|
12913
|
+
# to specify anything. For more information about server-side
|
12914
|
+
# encryption, including SSE-S3 and SSE-KMS, see [Protecting Data Using
|
12915
|
+
# Server-Side Encryption][7] in the *Amazon S3 User Guide*.
|
12751
12916
|
#
|
12752
12917
|
# **Working with the Response Body**
|
12753
12918
|
#
|
12754
12919
|
# Given the response size is unknown, Amazon S3 Select streams the
|
12755
12920
|
# response as a series of messages and includes a `Transfer-Encoding`
|
12756
12921
|
# header with `chunked` as its value in the response. For more
|
12757
|
-
# information, see [Appendix: SelectObjectContent Response][
|
12922
|
+
# information, see [Appendix: SelectObjectContent Response][8].
|
12758
12923
|
#
|
12759
12924
|
#
|
12760
12925
|
#
|
12761
12926
|
# **GetObject Support**
|
12762
12927
|
#
|
12763
12928
|
# The `SelectObjectContent` action does not support the following
|
12764
|
-
# `GetObject` functionality. For more information, see [GetObject][
|
12929
|
+
# `GetObject` functionality. For more information, see [GetObject][5].
|
12765
12930
|
#
|
12766
12931
|
# * `Range`\: Although you can specify a scan range for an Amazon S3
|
12767
|
-
# Select request (see [SelectObjectContentRequest - ScanRange][
|
12932
|
+
# Select request (see [SelectObjectContentRequest - ScanRange][9] in
|
12768
12933
|
# the request parameters), you cannot specify the range of bytes of an
|
12769
12934
|
# object to return.
|
12770
12935
|
#
|
12771
12936
|
# * GLACIER, DEEP\_ARCHIVE and REDUCED\_REDUNDANCY storage classes: You
|
12772
12937
|
# cannot specify the GLACIER, DEEP\_ARCHIVE, or `REDUCED_REDUNDANCY`
|
12773
12938
|
# storage classes. For more information, about storage classes see
|
12774
|
-
# [Storage Classes][
|
12939
|
+
# [Storage Classes][10] in the *Amazon S3 User Guide*.
|
12775
12940
|
#
|
12776
12941
|
#
|
12777
12942
|
#
|
12778
12943
|
# **Special Errors**
|
12779
12944
|
#
|
12780
12945
|
# For a list of special errors for this operation, see [List of SELECT
|
12781
|
-
# Object Content Error Codes][
|
12946
|
+
# Object Content Error Codes][11]
|
12782
12947
|
#
|
12783
12948
|
# **Related Resources**
|
12784
12949
|
#
|
12785
|
-
# * [GetObject][
|
12950
|
+
# * [GetObject][5]
|
12786
12951
|
#
|
12787
|
-
# * [GetBucketLifecycleConfiguration][
|
12952
|
+
# * [GetBucketLifecycleConfiguration][12]
|
12788
12953
|
#
|
12789
|
-
# * [PutBucketLifecycleConfiguration][
|
12954
|
+
# * [PutBucketLifecycleConfiguration][13]
|
12790
12955
|
#
|
12791
12956
|
#
|
12792
12957
|
#
|
12793
12958
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/selecting-content-from-objects.html
|
12794
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
12795
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
12796
|
-
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/
|
12797
|
-
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/
|
12798
|
-
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
12799
|
-
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/
|
12800
|
-
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
12801
|
-
# [9]: https://docs.aws.amazon.com/AmazonS3/latest/
|
12802
|
-
# [10]: https://docs.aws.amazon.com/AmazonS3/latest/
|
12803
|
-
# [11]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
12804
|
-
# [12]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
12959
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-glacier-select-sql-reference-select.html
|
12960
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-glacier-select-sql-reference.html
|
12961
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html
|
12962
|
+
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
|
12963
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html
|
12964
|
+
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/dev/serv-side-encryption.html
|
12965
|
+
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/RESTSelectObjectAppendix.html
|
12966
|
+
# [9]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_SelectObjectContent.html#AmazonS3-SelectObjectContent-request-ScanRange
|
12967
|
+
# [10]: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#storage-class-intro
|
12968
|
+
# [11]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#SelectObjectContentErrorCodeList
|
12969
|
+
# [12]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycleConfiguration.html
|
12970
|
+
# [13]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html
|
12805
12971
|
#
|
12806
12972
|
# @option params [required, String] :bucket
|
12807
12973
|
# The S3 bucket.
|
@@ -13742,9 +13908,9 @@ module Aws::S3
|
|
13742
13908
|
end
|
13743
13909
|
|
13744
13910
|
# Passes transformed objects to a `GetObject` operation when using
|
13745
|
-
# Object Lambda
|
13746
|
-
#
|
13747
|
-
#
|
13911
|
+
# Object Lambda access points. For information about Object Lambda
|
13912
|
+
# access points, see [Transforming objects with Object Lambda access
|
13913
|
+
# points][1] in the *Amazon S3 User Guide*.
|
13748
13914
|
#
|
13749
13915
|
# This operation supports metadata that can be returned by
|
13750
13916
|
# [GetObject][2], in addition to `RequestRoute`, `RequestToken`,
|
@@ -13766,8 +13932,8 @@ module Aws::S3
|
|
13766
13932
|
# identifiable information (PII) and decompress S3 objects. These Lambda
|
13767
13933
|
# functions are available in the Amazon Web Services Serverless
|
13768
13934
|
# Application Repository, and can be selected through the Amazon Web
|
13769
|
-
# Services Management Console when you create your Object Lambda
|
13770
|
-
#
|
13935
|
+
# Services Management Console when you create your Object Lambda access
|
13936
|
+
# point.
|
13771
13937
|
#
|
13772
13938
|
# Example 1: PII Access Control - This Lambda function uses Amazon
|
13773
13939
|
# Comprehend, a natural language processing (NLP) service using machine
|
@@ -13959,8 +14125,8 @@ module Aws::S3
|
|
13959
14125
|
#
|
13960
14126
|
# @option params [String] :ssekms_key_id
|
13961
14127
|
# If present, specifies the ID of the Amazon Web Services Key Management
|
13962
|
-
# Service (Amazon Web Services KMS) symmetric customer managed
|
13963
|
-
#
|
14128
|
+
# Service (Amazon Web Services KMS) symmetric customer managed key that
|
14129
|
+
# was used for stored in Amazon S3 object.
|
13964
14130
|
#
|
13965
14131
|
# @option params [String] :sse_customer_key_md5
|
13966
14132
|
# 128-bit MD5 digest of customer-provided encryption key used in Amazon
|
@@ -14024,7 +14190,7 @@ module Aws::S3
|
|
14024
14190
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
14025
14191
|
# ssekms_key_id: "SSEKMSKeyId",
|
14026
14192
|
# sse_customer_key_md5: "SSECustomerKeyMD5",
|
14027
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
14193
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR
|
14028
14194
|
# tag_count: 1,
|
14029
14195
|
# version_id: "ObjectVersionId",
|
14030
14196
|
# bucket_key_enabled: false,
|
@@ -14052,7 +14218,7 @@ module Aws::S3
|
|
14052
14218
|
params: params,
|
14053
14219
|
config: config)
|
14054
14220
|
context[:gem_name] = 'aws-sdk-s3'
|
14055
|
-
context[:gem_version] = '1.
|
14221
|
+
context[:gem_version] = '1.112.0'
|
14056
14222
|
Seahorse::Client::Request.new(handlers, context)
|
14057
14223
|
end
|
14058
14224
|
|