aws-sdk-s3 1.121.0 → 1.123.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +48 -25
- data/lib/aws-sdk-s3/bucket_acl.rb +9 -3
- data/lib/aws-sdk-s3/bucket_cors.rb +12 -4
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +12 -4
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +12 -4
- data/lib/aws-sdk-s3/bucket_logging.rb +9 -3
- data/lib/aws-sdk-s3/bucket_notification.rb +9 -3
- data/lib/aws-sdk-s3/bucket_policy.rb +12 -4
- data/lib/aws-sdk-s3/bucket_request_payment.rb +9 -3
- data/lib/aws-sdk-s3/bucket_tagging.rb +12 -4
- data/lib/aws-sdk-s3/bucket_versioning.rb +15 -5
- data/lib/aws-sdk-s3/bucket_website.rb +12 -4
- data/lib/aws-sdk-s3/client.rb +1547 -1300
- data/lib/aws-sdk-s3/customizations/bucket.rb +3 -1
- data/lib/aws-sdk-s3/customizations/object.rb +28 -18
- data/lib/aws-sdk-s3/encryption/client.rb +6 -2
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +13 -9
- data/lib/aws-sdk-s3/encryptionV2/client.rb +6 -2
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +10 -6
- data/lib/aws-sdk-s3/file_downloader.rb +14 -12
- data/lib/aws-sdk-s3/file_uploader.rb +8 -6
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +5 -3
- data/lib/aws-sdk-s3/multipart_upload.rb +12 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +9 -3
- data/lib/aws-sdk-s3/object.rb +77 -48
- data/lib/aws-sdk-s3/object_acl.rb +9 -3
- data/lib/aws-sdk-s3/object_copier.rb +7 -5
- data/lib/aws-sdk-s3/object_summary.rb +63 -37
- data/lib/aws-sdk-s3/object_version.rb +21 -9
- data/lib/aws-sdk-s3/resource.rb +6 -2
- data/lib/aws-sdk-s3/types.rb +403 -263
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +4 -4
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -13,8 +13,8 @@ module Aws::S3
|
|
13
13
|
# Specifies the days since the initiation of an incomplete multipart
|
14
14
|
# upload that Amazon S3 will wait before permanently removing all parts
|
15
15
|
# of the upload. For more information, see [ Aborting Incomplete
|
16
|
-
# Multipart Uploads Using a Bucket Lifecycle
|
17
|
-
# S3 User Guide*.
|
16
|
+
# Multipart Uploads Using a Bucket Lifecycle Configuration][1] in the
|
17
|
+
# *Amazon S3 User Guide*.
|
18
18
|
#
|
19
19
|
#
|
20
20
|
#
|
@@ -58,14 +58,14 @@ module Aws::S3
|
|
58
58
|
# bucket name. For more information about access point ARNs, see
|
59
59
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
60
60
|
#
|
61
|
-
# When
|
61
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
62
62
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
63
63
|
# takes the form `
|
64
64
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
65
|
-
# When
|
66
|
-
# Services SDKs, you provide the Outposts
|
67
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
68
|
-
# [
|
65
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
66
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
67
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
68
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
69
69
|
#
|
70
70
|
#
|
71
71
|
#
|
@@ -474,7 +474,10 @@ module Aws::S3
|
|
474
474
|
# @!attribute [rw] comments
|
475
475
|
# A single character used to indicate that a row should be ignored
|
476
476
|
# when the character is present at the start of that row. You can
|
477
|
-
# specify any character to indicate a comment line.
|
477
|
+
# specify any character to indicate a comment line. The default
|
478
|
+
# character is `#`.
|
479
|
+
#
|
480
|
+
# Default: `#`
|
478
481
|
# @return [String]
|
479
482
|
#
|
480
483
|
# @!attribute [rw] quote_escape_character
|
@@ -708,14 +711,14 @@ module Aws::S3
|
|
708
711
|
# bucket name. For more information about access point ARNs, see
|
709
712
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
710
713
|
#
|
711
|
-
# When
|
714
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
712
715
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
713
716
|
# takes the form `
|
714
717
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
715
|
-
# When
|
716
|
-
# Services SDKs, you provide the Outposts
|
717
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
718
|
-
# [
|
718
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
719
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
720
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
721
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
719
722
|
#
|
720
723
|
#
|
721
724
|
#
|
@@ -802,11 +805,8 @@ module Aws::S3
|
|
802
805
|
# @return [String]
|
803
806
|
#
|
804
807
|
# @!attribute [rw] server_side_encryption
|
805
|
-
#
|
806
|
-
#
|
807
|
-
# initiate multipart upload request, the response includes this
|
808
|
-
# header. It confirms the encryption algorithm that Amazon S3 used to
|
809
|
-
# encrypt the object.
|
808
|
+
# The server-side encryption algorithm used when storing this object
|
809
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
810
810
|
# @return [String]
|
811
811
|
#
|
812
812
|
# @!attribute [rw] version_id
|
@@ -816,8 +816,8 @@ module Aws::S3
|
|
816
816
|
#
|
817
817
|
# @!attribute [rw] ssekms_key_id
|
818
818
|
# If present, specifies the ID of the Amazon Web Services Key
|
819
|
-
# Management Service (Amazon Web Services KMS) symmetric
|
820
|
-
# managed key that was used for the object.
|
819
|
+
# Management Service (Amazon Web Services KMS) symmetric encryption
|
820
|
+
# customer managed key that was used for the object.
|
821
821
|
# @return [String]
|
822
822
|
#
|
823
823
|
# @!attribute [rw] bucket_key_enabled
|
@@ -863,14 +863,14 @@ module Aws::S3
|
|
863
863
|
# bucket name. For more information about access point ARNs, see
|
864
864
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
865
865
|
#
|
866
|
-
# When
|
866
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
867
867
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
868
868
|
# takes the form `
|
869
869
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
870
|
-
# When
|
871
|
-
# Services SDKs, you provide the Outposts
|
872
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
873
|
-
# [
|
870
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
871
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
872
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
873
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
874
874
|
#
|
875
875
|
#
|
876
876
|
#
|
@@ -1172,7 +1172,7 @@ module Aws::S3
|
|
1172
1172
|
#
|
1173
1173
|
# @!attribute [rw] server_side_encryption
|
1174
1174
|
# The server-side encryption algorithm used when storing this object
|
1175
|
-
# in Amazon S3 (for example, AES256, aws:kms).
|
1175
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
1176
1176
|
# @return [String]
|
1177
1177
|
#
|
1178
1178
|
# @!attribute [rw] sse_customer_algorithm
|
@@ -1190,8 +1190,8 @@ module Aws::S3
|
|
1190
1190
|
#
|
1191
1191
|
# @!attribute [rw] ssekms_key_id
|
1192
1192
|
# If present, specifies the ID of the Amazon Web Services Key
|
1193
|
-
# Management Service (Amazon Web Services KMS) symmetric
|
1194
|
-
# managed key that was used for the object.
|
1193
|
+
# Management Service (Amazon Web Services KMS) symmetric encryption
|
1194
|
+
# customer managed key that was used for the object.
|
1195
1195
|
# @return [String]
|
1196
1196
|
#
|
1197
1197
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -1247,14 +1247,14 @@ module Aws::S3
|
|
1247
1247
|
# bucket name. For more information about access point ARNs, see
|
1248
1248
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
1249
1249
|
#
|
1250
|
-
# When
|
1250
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
1251
1251
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
1252
1252
|
# takes the form `
|
1253
1253
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
1254
|
-
# When
|
1255
|
-
# Services SDKs, you provide the Outposts
|
1256
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
1257
|
-
# [
|
1254
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
1255
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
1256
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
1257
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
1258
1258
|
#
|
1259
1259
|
#
|
1260
1260
|
#
|
@@ -1410,7 +1410,7 @@ module Aws::S3
|
|
1410
1410
|
#
|
1411
1411
|
# @!attribute [rw] server_side_encryption
|
1412
1412
|
# The server-side encryption algorithm used when storing this object
|
1413
|
-
# in Amazon S3 (for example, AES256, aws:kms).
|
1413
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
1414
1414
|
# @return [String]
|
1415
1415
|
#
|
1416
1416
|
# @!attribute [rw] storage_class
|
@@ -1430,7 +1430,9 @@ module Aws::S3
|
|
1430
1430
|
# If the bucket is configured as a website, redirects requests for
|
1431
1431
|
# this object to another object in the same bucket or to an external
|
1432
1432
|
# URL. Amazon S3 stores the value of this header in the object
|
1433
|
-
# metadata.
|
1433
|
+
# metadata. This value is unique to each object and is not copied when
|
1434
|
+
# using the `x-amz-metadata-directive` header. Instead, you may opt to
|
1435
|
+
# provide this header in combination with the directive.
|
1434
1436
|
# @return [String]
|
1435
1437
|
#
|
1436
1438
|
# @!attribute [rw] sse_customer_algorithm
|
@@ -1855,7 +1857,7 @@ module Aws::S3
|
|
1855
1857
|
# this header. The header indicates when the initiated multipart
|
1856
1858
|
# upload becomes eligible for an abort operation. For more
|
1857
1859
|
# information, see [ Aborting Incomplete Multipart Uploads Using a
|
1858
|
-
# Bucket Lifecycle
|
1860
|
+
# Bucket Lifecycle Configuration][1].
|
1859
1861
|
#
|
1860
1862
|
# The response also includes the `x-amz-abort-rule-id` header that
|
1861
1863
|
# provides the ID of the lifecycle configuration rule that defines
|
@@ -1885,14 +1887,14 @@ module Aws::S3
|
|
1885
1887
|
# bucket name. For more information about access point ARNs, see
|
1886
1888
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
1887
1889
|
#
|
1888
|
-
# When
|
1890
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
1889
1891
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
1890
1892
|
# takes the form `
|
1891
1893
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
1892
|
-
# When
|
1893
|
-
# Services SDKs, you provide the Outposts
|
1894
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
1895
|
-
# [
|
1894
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
1895
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
1896
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
1897
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
1896
1898
|
#
|
1897
1899
|
#
|
1898
1900
|
#
|
@@ -1910,7 +1912,7 @@ module Aws::S3
|
|
1910
1912
|
#
|
1911
1913
|
# @!attribute [rw] server_side_encryption
|
1912
1914
|
# The server-side encryption algorithm used when storing this object
|
1913
|
-
# in Amazon S3 (for example, AES256, aws:kms).
|
1915
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
1914
1916
|
# @return [String]
|
1915
1917
|
#
|
1916
1918
|
# @!attribute [rw] sse_customer_algorithm
|
@@ -1928,8 +1930,8 @@ module Aws::S3
|
|
1928
1930
|
#
|
1929
1931
|
# @!attribute [rw] ssekms_key_id
|
1930
1932
|
# If present, specifies the ID of the Amazon Web Services Key
|
1931
|
-
# Management Service (Amazon Web Services KMS) symmetric
|
1932
|
-
# managed key that was used for the object.
|
1933
|
+
# Management Service (Amazon Web Services KMS) symmetric encryption
|
1934
|
+
# customer managed key that was used for the object.
|
1933
1935
|
# @return [String]
|
1934
1936
|
#
|
1935
1937
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -1991,14 +1993,14 @@ module Aws::S3
|
|
1991
1993
|
# bucket name. For more information about access point ARNs, see
|
1992
1994
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
1993
1995
|
#
|
1994
|
-
# When
|
1996
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
1995
1997
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
1996
1998
|
# takes the form `
|
1997
1999
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
1998
|
-
# When
|
1999
|
-
# Services SDKs, you provide the Outposts
|
2000
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
2001
|
-
# [
|
2000
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
2001
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
2002
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
2003
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
2002
2004
|
#
|
2003
2005
|
#
|
2004
2006
|
#
|
@@ -2067,7 +2069,7 @@ module Aws::S3
|
|
2067
2069
|
#
|
2068
2070
|
# @!attribute [rw] server_side_encryption
|
2069
2071
|
# The server-side encryption algorithm used when storing this object
|
2070
|
-
# in Amazon S3 (for example, AES256, aws:kms).
|
2072
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
2071
2073
|
# @return [String]
|
2072
2074
|
#
|
2073
2075
|
# @!attribute [rw] storage_class
|
@@ -2110,13 +2112,13 @@ module Aws::S3
|
|
2110
2112
|
# @return [String]
|
2111
2113
|
#
|
2112
2114
|
# @!attribute [rw] ssekms_key_id
|
2113
|
-
# Specifies the ID of the symmetric customer managed key to
|
2114
|
-
# object encryption. All GET and PUT requests for an object
|
2115
|
-
# by Amazon Web Services KMS will fail if not made via SSL
|
2116
|
-
# SigV4. For information about configuring using any of the
|
2117
|
-
# supported Amazon Web Services SDKs and Amazon Web
|
2118
|
-
# [Specifying the Signature Version in Request
|
2119
|
-
# the *Amazon S3 User Guide*.
|
2115
|
+
# Specifies the ID of the symmetric encryption customer managed key to
|
2116
|
+
# use for object encryption. All GET and PUT requests for an object
|
2117
|
+
# protected by Amazon Web Services KMS will fail if not made via SSL
|
2118
|
+
# or using SigV4. For information about configuring using any of the
|
2119
|
+
# officially supported Amazon Web Services SDKs and Amazon Web
|
2120
|
+
# Services CLI, see [Specifying the Signature Version in Request
|
2121
|
+
# Authentication][1] in the *Amazon S3 User Guide*.
|
2120
2122
|
#
|
2121
2123
|
#
|
2122
2124
|
#
|
@@ -2413,7 +2415,9 @@ module Aws::S3
|
|
2413
2415
|
# @return [String]
|
2414
2416
|
#
|
2415
2417
|
# @!attribute [rw] id
|
2416
|
-
# The ID used to identify the metrics configuration.
|
2418
|
+
# The ID used to identify the metrics configuration. The ID has a 64
|
2419
|
+
# character limit and can only contain letters, numbers, periods,
|
2420
|
+
# dashes, and underscores.
|
2417
2421
|
# @return [String]
|
2418
2422
|
#
|
2419
2423
|
# @!attribute [rw] expected_bucket_owner
|
@@ -2658,14 +2662,14 @@ module Aws::S3
|
|
2658
2662
|
# bucket name. For more information about access point ARNs, see
|
2659
2663
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
2660
2664
|
#
|
2661
|
-
# When
|
2665
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
2662
2666
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
2663
2667
|
# takes the form `
|
2664
2668
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
2665
|
-
# When
|
2666
|
-
# Services SDKs, you provide the Outposts
|
2667
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
2668
|
-
# [
|
2669
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
2670
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
2671
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
2672
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
2669
2673
|
#
|
2670
2674
|
#
|
2671
2675
|
#
|
@@ -2751,14 +2755,14 @@ module Aws::S3
|
|
2751
2755
|
# bucket name. For more information about access point ARNs, see
|
2752
2756
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
2753
2757
|
#
|
2754
|
-
# When
|
2758
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
2755
2759
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
2756
2760
|
# takes the form `
|
2757
2761
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
2758
|
-
# When
|
2759
|
-
# Services SDKs, you provide the Outposts
|
2760
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
2761
|
-
# [
|
2762
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
2763
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
2764
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
2765
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
2762
2766
|
#
|
2763
2767
|
#
|
2764
2768
|
#
|
@@ -2829,14 +2833,14 @@ module Aws::S3
|
|
2829
2833
|
# bucket name. For more information about access point ARNs, see
|
2830
2834
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
2831
2835
|
#
|
2832
|
-
# When
|
2836
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
2833
2837
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
2834
2838
|
# takes the form `
|
2835
2839
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
2836
|
-
# When
|
2837
|
-
# Services SDKs, you provide the Outposts
|
2838
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
2839
|
-
# [
|
2840
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
2841
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
2842
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
2843
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
2840
2844
|
#
|
2841
2845
|
#
|
2842
2846
|
#
|
@@ -3049,15 +3053,16 @@ module Aws::S3
|
|
3049
3053
|
#
|
3050
3054
|
# @!attribute [rw] encryption_type
|
3051
3055
|
# The server-side encryption algorithm used when storing job results
|
3052
|
-
# in Amazon S3 (for example, AES256, aws:kms).
|
3056
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
3053
3057
|
# @return [String]
|
3054
3058
|
#
|
3055
3059
|
# @!attribute [rw] kms_key_id
|
3056
3060
|
# If the encryption type is `aws:kms`, this optional value specifies
|
3057
|
-
# the ID of the symmetric customer managed key to use for
|
3058
|
-
# of job results. Amazon S3 only supports symmetric
|
3059
|
-
# information, see [
|
3060
|
-
#
|
3061
|
+
# the ID of the symmetric encryption customer managed key to use for
|
3062
|
+
# encryption of job results. Amazon S3 only supports symmetric
|
3063
|
+
# encryption KMS keys. For more information, see [Asymmetric keys in
|
3064
|
+
# Amazon Web Services KMS][1] in the *Amazon Web Services Key
|
3065
|
+
# Management Service Developer Guide*.
|
3061
3066
|
#
|
3062
3067
|
#
|
3063
3068
|
#
|
@@ -3087,9 +3092,9 @@ module Aws::S3
|
|
3087
3092
|
# Amazon Web Services KMS key stored in Amazon Web Services Key
|
3088
3093
|
# Management Service (KMS) for the destination bucket. Amazon S3 uses
|
3089
3094
|
# this key to encrypt replica objects. Amazon S3 only supports
|
3090
|
-
# symmetric
|
3091
|
-
#
|
3092
|
-
#
|
3095
|
+
# symmetric encryption KMS keys. For more information, see [Asymmetric
|
3096
|
+
# keys in Amazon Web Services KMS][1] in the *Amazon Web Services Key
|
3097
|
+
# Management Service Developer Guide*.
|
3093
3098
|
#
|
3094
3099
|
#
|
3095
3100
|
#
|
@@ -3129,9 +3134,8 @@ module Aws::S3
|
|
3129
3134
|
# @!attribute [rw] code
|
3130
3135
|
# The error code is a string that uniquely identifies an error
|
3131
3136
|
# condition. It is meant to be read and understood by programs that
|
3132
|
-
# detect and handle errors by type.
|
3133
|
-
#
|
3134
|
-
# **Amazon S3 error codes**
|
3137
|
+
# detect and handle errors by type. The following is a list of Amazon
|
3138
|
+
# S3 error codes. For more information, see [Error responses][1].
|
3135
3139
|
#
|
3136
3140
|
# * * *Code:* AccessDenied
|
3137
3141
|
#
|
@@ -3370,7 +3374,7 @@ module Aws::S3
|
|
3370
3374
|
#
|
3371
3375
|
# * *Description:* The specified location constraint is not valid.
|
3372
3376
|
# For more information about Regions, see [How to Select a Region
|
3373
|
-
# for Your Buckets][
|
3377
|
+
# for Your Buckets][2].
|
3374
3378
|
#
|
3375
3379
|
# * *HTTP Status Code:* 400 Bad Request
|
3376
3380
|
#
|
@@ -3755,7 +3759,7 @@ module Aws::S3
|
|
3755
3759
|
#
|
3756
3760
|
# * *Description:* Your account is not signed up for the Amazon S3
|
3757
3761
|
# service. You must sign up before you can use Amazon S3. You can
|
3758
|
-
# sign up at the following URL: [Amazon S3][
|
3762
|
+
# sign up at the following URL: [Amazon S3][3]
|
3759
3763
|
#
|
3760
3764
|
# * *HTTP Status Code:* 403 Forbidden
|
3761
3765
|
#
|
@@ -3846,7 +3850,7 @@ module Aws::S3
|
|
3846
3850
|
# * *Description:* The request signature we calculated does not
|
3847
3851
|
# match the signature you provided. Check your Amazon Web Services
|
3848
3852
|
# secret access key and signing method. For more information, see
|
3849
|
-
# [REST Authentication][
|
3853
|
+
# [REST Authentication][4] and [SOAP Authentication][5] for
|
3850
3854
|
# details.
|
3851
3855
|
#
|
3852
3856
|
# * *HTTP Status Code:* 403 Forbidden
|
@@ -3855,7 +3859,7 @@ module Aws::S3
|
|
3855
3859
|
#
|
3856
3860
|
# * * *Code:* ServiceUnavailable
|
3857
3861
|
#
|
3858
|
-
# * *Description:*
|
3862
|
+
# * *Description:* Service is unable to handle request.
|
3859
3863
|
#
|
3860
3864
|
# * *HTTP Status Code:* 503 Service Unavailable
|
3861
3865
|
#
|
@@ -3925,10 +3929,11 @@ module Aws::S3
|
|
3925
3929
|
#
|
3926
3930
|
#
|
3927
3931
|
#
|
3928
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
3929
|
-
# [2]:
|
3930
|
-
# [3]:
|
3931
|
-
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
3932
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html
|
3933
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingBucket.html#access-bucket-intro
|
3934
|
+
# [3]: http://aws.amazon.com/s3
|
3935
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html
|
3936
|
+
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/dev/SOAPAuthentication.html
|
3932
3937
|
# @return [String]
|
3933
3938
|
#
|
3934
3939
|
# @!attribute [rw] message
|
@@ -3991,6 +3996,8 @@ module Aws::S3
|
|
3991
3996
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-what-is-isnot-replicated.html#existing-object-replication
|
3992
3997
|
#
|
3993
3998
|
# @!attribute [rw] status
|
3999
|
+
# Specifies whether Amazon S3 replicates existing source bucket
|
4000
|
+
# objects.
|
3994
4001
|
# @return [String]
|
3995
4002
|
#
|
3996
4003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ExistingObjectReplication AWS API Documentation
|
@@ -4080,6 +4087,20 @@ module Aws::S3
|
|
4080
4087
|
|
4081
4088
|
# @!attribute [rw] bucket
|
4082
4089
|
# Specifies the S3 bucket whose ACL is being requested.
|
4090
|
+
#
|
4091
|
+
# To use this API operation against an access point, provide the alias
|
4092
|
+
# of the access point in place of the bucket name.
|
4093
|
+
#
|
4094
|
+
# To use this API operation against an Object Lambda access point,
|
4095
|
+
# provide the alias of the Object Lambda access point in place of the
|
4096
|
+
# bucket name. If the Object Lambda access point alias in a request is
|
4097
|
+
# not valid, the error code `InvalidAccessPointAliasError` is
|
4098
|
+
# returned. For more information about `InvalidAccessPointAliasError`,
|
4099
|
+
# see [List of Error Codes][1].
|
4100
|
+
#
|
4101
|
+
#
|
4102
|
+
#
|
4103
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
|
4083
4104
|
# @return [String]
|
4084
4105
|
#
|
4085
4106
|
# @!attribute [rw] expected_bucket_owner
|
@@ -4149,6 +4170,20 @@ module Aws::S3
|
|
4149
4170
|
|
4150
4171
|
# @!attribute [rw] bucket
|
4151
4172
|
# The bucket name for which to get the cors configuration.
|
4173
|
+
#
|
4174
|
+
# To use this API operation against an access point, provide the alias
|
4175
|
+
# of the access point in place of the bucket name.
|
4176
|
+
#
|
4177
|
+
# To use this API operation against an Object Lambda access point,
|
4178
|
+
# provide the alias of the Object Lambda access point in place of the
|
4179
|
+
# bucket name. If the Object Lambda access point alias in a request is
|
4180
|
+
# not valid, the error code `InvalidAccessPointAliasError` is
|
4181
|
+
# returned. For more information about `InvalidAccessPointAliasError`,
|
4182
|
+
# see [List of Error Codes][1].
|
4183
|
+
#
|
4184
|
+
#
|
4185
|
+
#
|
4186
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
|
4152
4187
|
# @return [String]
|
4153
4188
|
#
|
4154
4189
|
# @!attribute [rw] expected_bucket_owner
|
@@ -4348,6 +4383,20 @@ module Aws::S3
|
|
4348
4383
|
|
4349
4384
|
# @!attribute [rw] bucket
|
4350
4385
|
# The name of the bucket for which to get the location.
|
4386
|
+
#
|
4387
|
+
# To use this API operation against an access point, provide the alias
|
4388
|
+
# of the access point in place of the bucket name.
|
4389
|
+
#
|
4390
|
+
# To use this API operation against an Object Lambda access point,
|
4391
|
+
# provide the alias of the Object Lambda access point in place of the
|
4392
|
+
# bucket name. If the Object Lambda access point alias in a request is
|
4393
|
+
# not valid, the error code `InvalidAccessPointAliasError` is
|
4394
|
+
# returned. For more information about `InvalidAccessPointAliasError`,
|
4395
|
+
# see [List of Error Codes][1].
|
4396
|
+
#
|
4397
|
+
#
|
4398
|
+
#
|
4399
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
|
4351
4400
|
# @return [String]
|
4352
4401
|
#
|
4353
4402
|
# @!attribute [rw] expected_bucket_owner
|
@@ -4420,7 +4469,9 @@ module Aws::S3
|
|
4420
4469
|
# @return [String]
|
4421
4470
|
#
|
4422
4471
|
# @!attribute [rw] id
|
4423
|
-
# The ID used to identify the metrics configuration.
|
4472
|
+
# The ID used to identify the metrics configuration. The ID has a 64
|
4473
|
+
# character limit and can only contain letters, numbers, periods,
|
4474
|
+
# dashes, and underscores.
|
4424
4475
|
# @return [String]
|
4425
4476
|
#
|
4426
4477
|
# @!attribute [rw] expected_bucket_owner
|
@@ -4442,6 +4493,20 @@ module Aws::S3
|
|
4442
4493
|
# @!attribute [rw] bucket
|
4443
4494
|
# The name of the bucket for which to get the notification
|
4444
4495
|
# configuration.
|
4496
|
+
#
|
4497
|
+
# To use this API operation against an access point, provide the alias
|
4498
|
+
# of the access point in place of the bucket name.
|
4499
|
+
#
|
4500
|
+
# To use this API operation against an Object Lambda access point,
|
4501
|
+
# provide the alias of the Object Lambda access point in place of the
|
4502
|
+
# bucket name. If the Object Lambda access point alias in a request is
|
4503
|
+
# not valid, the error code `InvalidAccessPointAliasError` is
|
4504
|
+
# returned. For more information about `InvalidAccessPointAliasError`,
|
4505
|
+
# see [List of Error Codes][1].
|
4506
|
+
#
|
4507
|
+
#
|
4508
|
+
#
|
4509
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
|
4445
4510
|
# @return [String]
|
4446
4511
|
#
|
4447
4512
|
# @!attribute [rw] expected_bucket_owner
|
@@ -4506,6 +4571,20 @@ module Aws::S3
|
|
4506
4571
|
|
4507
4572
|
# @!attribute [rw] bucket
|
4508
4573
|
# The bucket name for which to get the bucket policy.
|
4574
|
+
#
|
4575
|
+
# To use this API operation against an access point, provide the alias
|
4576
|
+
# of the access point in place of the bucket name.
|
4577
|
+
#
|
4578
|
+
# To use this API operation against an Object Lambda access point,
|
4579
|
+
# provide the alias of the Object Lambda access point in place of the
|
4580
|
+
# bucket name. If the Object Lambda access point alias in a request is
|
4581
|
+
# not valid, the error code `InvalidAccessPointAliasError` is
|
4582
|
+
# returned. For more information about `InvalidAccessPointAliasError`,
|
4583
|
+
# see [List of Error Codes][1].
|
4584
|
+
#
|
4585
|
+
#
|
4586
|
+
#
|
4587
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
|
4509
4588
|
# @return [String]
|
4510
4589
|
#
|
4511
4590
|
# @!attribute [rw] expected_bucket_owner
|
@@ -4939,14 +5018,14 @@ module Aws::S3
|
|
4939
5018
|
# bucket name. For more information about access point ARNs, see
|
4940
5019
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
4941
5020
|
#
|
4942
|
-
# When
|
5021
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
4943
5022
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
4944
5023
|
# takes the form `
|
4945
5024
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
4946
|
-
# When
|
4947
|
-
# Services SDKs, you provide the Outposts
|
4948
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
4949
|
-
# [
|
5025
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
5026
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
5027
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
5028
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
4950
5029
|
#
|
4951
5030
|
#
|
4952
5031
|
#
|
@@ -5291,7 +5370,7 @@ module Aws::S3
|
|
5291
5370
|
#
|
5292
5371
|
# @!attribute [rw] server_side_encryption
|
5293
5372
|
# The server-side encryption algorithm used when storing this object
|
5294
|
-
# in Amazon S3 (for example, AES256, aws:kms).
|
5373
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
5295
5374
|
# @return [String]
|
5296
5375
|
#
|
5297
5376
|
# @!attribute [rw] metadata
|
@@ -5313,8 +5392,8 @@ module Aws::S3
|
|
5313
5392
|
#
|
5314
5393
|
# @!attribute [rw] ssekms_key_id
|
5315
5394
|
# If present, specifies the ID of the Amazon Web Services Key
|
5316
|
-
# Management Service (Amazon Web Services KMS) symmetric
|
5317
|
-
# managed key that was used for the object.
|
5395
|
+
# Management Service (Amazon Web Services KMS) symmetric encryption
|
5396
|
+
# customer managed key that was used for the object.
|
5318
5397
|
# @return [String]
|
5319
5398
|
#
|
5320
5399
|
# @!attribute [rw] bucket_key_enabled
|
@@ -5421,14 +5500,14 @@ module Aws::S3
|
|
5421
5500
|
# When using an Object Lambda access point the hostname takes the form
|
5422
5501
|
# *AccessPointName*-*AccountId*.s3-object-lambda.*Region*.amazonaws.com.
|
5423
5502
|
#
|
5424
|
-
# When
|
5503
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
5425
5504
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
5426
5505
|
# takes the form `
|
5427
5506
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
5428
|
-
# When
|
5429
|
-
# Services SDKs, you provide the Outposts
|
5430
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
5431
|
-
# [
|
5507
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
5508
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
5509
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
5510
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
5432
5511
|
#
|
5433
5512
|
#
|
5434
5513
|
#
|
@@ -5463,7 +5542,7 @@ module Aws::S3
|
|
5463
5542
|
# @!attribute [rw] range
|
5464
5543
|
# Downloads the specified range bytes of an object. For more
|
5465
5544
|
# information about the HTTP Range header, see
|
5466
|
-
# [https://www.
|
5545
|
+
# [https://www.rfc-editor.org/rfc/rfc9110.html#name-range][1].
|
5467
5546
|
#
|
5468
5547
|
# <note markdown="1"> Amazon S3 doesn't support retrieving multiple ranges of data per
|
5469
5548
|
# `GET` request.
|
@@ -5472,7 +5551,7 @@ module Aws::S3
|
|
5472
5551
|
#
|
5473
5552
|
#
|
5474
5553
|
#
|
5475
|
-
# [1]: https://www.
|
5554
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc9110.html#name-range
|
5476
5555
|
# @return [String]
|
5477
5556
|
#
|
5478
5557
|
# @!attribute [rw] response_cache_control
|
@@ -5680,14 +5759,14 @@ module Aws::S3
|
|
5680
5759
|
# bucket name. For more information about access point ARNs, see
|
5681
5760
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
5682
5761
|
#
|
5683
|
-
# When
|
5762
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
5684
5763
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
5685
5764
|
# takes the form `
|
5686
5765
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
5687
|
-
# When
|
5688
|
-
# Services SDKs, you provide the Outposts
|
5689
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
5690
|
-
# [
|
5766
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
5767
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
5768
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
5769
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
5691
5770
|
#
|
5692
5771
|
#
|
5693
5772
|
#
|
@@ -5931,19 +6010,27 @@ module Aws::S3
|
|
5931
6010
|
# bucket name. For more information about access point ARNs, see
|
5932
6011
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
5933
6012
|
#
|
5934
|
-
# When
|
6013
|
+
# When you use this action with an Object Lambda access point, provide
|
6014
|
+
# the alias of the Object Lambda access point in place of the bucket
|
6015
|
+
# name. If the Object Lambda access point alias in a request is not
|
6016
|
+
# valid, the error code `InvalidAccessPointAliasError` is returned.
|
6017
|
+
# For more information about `InvalidAccessPointAliasError`, see [List
|
6018
|
+
# of Error Codes][2].
|
6019
|
+
#
|
6020
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
5935
6021
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
5936
6022
|
# takes the form `
|
5937
6023
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
5938
|
-
# When
|
5939
|
-
# Services SDKs, you provide the Outposts
|
5940
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
5941
|
-
# [
|
6024
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
6025
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
6026
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
6027
|
+
# [What is S3 on Outposts][3] in the *Amazon S3 User Guide*.
|
5942
6028
|
#
|
5943
6029
|
#
|
5944
6030
|
#
|
5945
6031
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
5946
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
6032
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
|
6033
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
5947
6034
|
# @return [String]
|
5948
6035
|
#
|
5949
6036
|
# @!attribute [rw] expected_bucket_owner
|
@@ -6120,11 +6207,8 @@ module Aws::S3
|
|
6120
6207
|
# @return [String]
|
6121
6208
|
#
|
6122
6209
|
# @!attribute [rw] server_side_encryption
|
6123
|
-
#
|
6124
|
-
#
|
6125
|
-
# the response includes this header with the value of the server-side
|
6126
|
-
# encryption algorithm used when storing this object in Amazon S3 (for
|
6127
|
-
# example, AES256, aws:kms).
|
6210
|
+
# The server-side encryption algorithm used when storing this object
|
6211
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
6128
6212
|
# @return [String]
|
6129
6213
|
#
|
6130
6214
|
# @!attribute [rw] metadata
|
@@ -6146,8 +6230,8 @@ module Aws::S3
|
|
6146
6230
|
#
|
6147
6231
|
# @!attribute [rw] ssekms_key_id
|
6148
6232
|
# If present, specifies the ID of the Amazon Web Services Key
|
6149
|
-
# Management Service (Amazon Web Services KMS) symmetric
|
6150
|
-
# managed key that was used for the object.
|
6233
|
+
# Management Service (Amazon Web Services KMS) symmetric encryption
|
6234
|
+
# customer managed key that was used for the object.
|
6151
6235
|
# @return [String]
|
6152
6236
|
#
|
6153
6237
|
# @!attribute [rw] bucket_key_enabled
|
@@ -6306,14 +6390,14 @@ module Aws::S3
|
|
6306
6390
|
# bucket name. For more information about access point ARNs, see
|
6307
6391
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
6308
6392
|
#
|
6309
|
-
# When
|
6393
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
6310
6394
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
6311
6395
|
# takes the form `
|
6312
6396
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
6313
|
-
# When
|
6314
|
-
# Services SDKs, you provide the Outposts
|
6315
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
6316
|
-
# [
|
6397
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
6398
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
6399
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
6400
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
6317
6401
|
#
|
6318
6402
|
#
|
6319
6403
|
#
|
@@ -6346,8 +6430,10 @@ module Aws::S3
|
|
6346
6430
|
# @return [String]
|
6347
6431
|
#
|
6348
6432
|
# @!attribute [rw] range
|
6349
|
-
#
|
6350
|
-
#
|
6433
|
+
# HeadObject returns only the metadata for an object. If the Range is
|
6434
|
+
# satisfiable, only the `ContentLength` is affected in the response.
|
6435
|
+
# If the Range is not satisfiable, S3 returns a `416 - Requested Range
|
6436
|
+
# Not Satisfiable` error.
|
6351
6437
|
# @return [String]
|
6352
6438
|
#
|
6353
6439
|
# @!attribute [rw] version_id
|
@@ -6843,12 +6929,12 @@ module Aws::S3
|
|
6843
6929
|
#
|
6844
6930
|
# @!attribute [rw] filter
|
6845
6931
|
# Specifies object key name filtering rules. For information about key
|
6846
|
-
# name filtering, see [Configuring
|
6847
|
-
# *Amazon S3 User Guide*.
|
6932
|
+
# name filtering, see [Configuring event notifications using object
|
6933
|
+
# key name filtering][1] in the *Amazon S3 User Guide*.
|
6848
6934
|
#
|
6849
6935
|
#
|
6850
6936
|
#
|
6851
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
6937
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/notification-how-to-filtering.html
|
6852
6938
|
# @return [Types::NotificationConfigurationFilter]
|
6853
6939
|
#
|
6854
6940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/LambdaFunctionConfiguration AWS API Documentation
|
@@ -6864,6 +6950,13 @@ module Aws::S3
|
|
6864
6950
|
|
6865
6951
|
# Container for lifecycle rules. You can add as many as 1000 rules.
|
6866
6952
|
#
|
6953
|
+
# For more information see, [Managing your storage lifecycle][1] in the
|
6954
|
+
# *Amazon S3 User Guide*.
|
6955
|
+
#
|
6956
|
+
#
|
6957
|
+
#
|
6958
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mgmt.html
|
6959
|
+
#
|
6867
6960
|
# @!attribute [rw] rules
|
6868
6961
|
# Specifies lifecycle configuration rules for an Amazon S3 bucket.
|
6869
6962
|
# @return [Array<Types::Rule>]
|
@@ -6878,9 +6971,17 @@ module Aws::S3
|
|
6878
6971
|
|
6879
6972
|
# Container for the expiration for the lifecycle of the object.
|
6880
6973
|
#
|
6974
|
+
# For more information see, [Managing your storage lifecycle][1] in the
|
6975
|
+
# *Amazon S3 User Guide*.
|
6976
|
+
#
|
6977
|
+
#
|
6978
|
+
#
|
6979
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mgmt.html
|
6980
|
+
#
|
6881
6981
|
# @!attribute [rw] date
|
6882
|
-
# Indicates at what date the object is to be moved or deleted.
|
6883
|
-
#
|
6982
|
+
# Indicates at what date the object is to be moved or deleted. The
|
6983
|
+
# date value must conform to the ISO 8601 format. The time is always
|
6984
|
+
# midnight UTC.
|
6884
6985
|
# @return [Time]
|
6885
6986
|
#
|
6886
6987
|
# @!attribute [rw] days
|
@@ -6907,6 +7008,13 @@ module Aws::S3
|
|
6907
7008
|
|
6908
7009
|
# A lifecycle rule for individual objects in an Amazon S3 bucket.
|
6909
7010
|
#
|
7011
|
+
# For more information see, [Managing your storage lifecycle][1] in the
|
7012
|
+
# *Amazon S3 User Guide*.
|
7013
|
+
#
|
7014
|
+
#
|
7015
|
+
#
|
7016
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mgmt.html
|
7017
|
+
#
|
6910
7018
|
# @!attribute [rw] expiration
|
6911
7019
|
# Specifies the expiration for the lifecycle of the object in the form
|
6912
7020
|
# of date, days and, whether the object has a delete marker.
|
@@ -6969,8 +7077,8 @@ module Aws::S3
|
|
6969
7077
|
# Specifies the days since the initiation of an incomplete multipart
|
6970
7078
|
# upload that Amazon S3 will wait before permanently removing all
|
6971
7079
|
# parts of the upload. For more information, see [ Aborting Incomplete
|
6972
|
-
# Multipart Uploads Using a Bucket Lifecycle
|
6973
|
-
# S3 User Guide*.
|
7080
|
+
# Multipart Uploads Using a Bucket Lifecycle Configuration][1] in the
|
7081
|
+
# *Amazon S3 User Guide*.
|
6974
7082
|
#
|
6975
7083
|
#
|
6976
7084
|
#
|
@@ -7430,14 +7538,14 @@ module Aws::S3
|
|
7430
7538
|
# bucket name. For more information about access point ARNs, see
|
7431
7539
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
7432
7540
|
#
|
7433
|
-
# When
|
7541
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
7434
7542
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
7435
7543
|
# takes the form `
|
7436
7544
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
7437
|
-
# When
|
7438
|
-
# Services SDKs, you provide the Outposts
|
7439
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
7440
|
-
# [
|
7545
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
7546
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
7547
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
7548
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
7441
7549
|
#
|
7442
7550
|
#
|
7443
7551
|
#
|
@@ -7787,14 +7895,14 @@ module Aws::S3
|
|
7787
7895
|
# bucket name. For more information about access point ARNs, see
|
7788
7896
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
7789
7897
|
#
|
7790
|
-
# When
|
7898
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
7791
7899
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
7792
7900
|
# takes the form `
|
7793
7901
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
7794
|
-
# When
|
7795
|
-
# Services SDKs, you provide the Outposts
|
7796
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
7797
|
-
# [
|
7902
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
7903
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
7904
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
7905
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
7798
7906
|
#
|
7799
7907
|
#
|
7800
7908
|
#
|
@@ -7880,14 +7988,14 @@ module Aws::S3
|
|
7880
7988
|
# bucket name. For more information about access point ARNs, see
|
7881
7989
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
7882
7990
|
#
|
7883
|
-
# When
|
7991
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
7884
7992
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
7885
7993
|
# takes the form `
|
7886
7994
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
7887
|
-
# When
|
7888
|
-
# Services SDKs, you provide the Outposts
|
7889
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
7890
|
-
# [
|
7995
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
7996
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
7997
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
7998
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
7891
7999
|
#
|
7892
8000
|
#
|
7893
8001
|
#
|
@@ -7946,8 +8054,8 @@ module Aws::S3
|
|
7946
8054
|
#
|
7947
8055
|
# @!attribute [rw] key_count
|
7948
8056
|
# KeyCount is the number of keys returned with this request. KeyCount
|
7949
|
-
# will always be less than or
|
7950
|
-
# 50 keys, your result will include
|
8057
|
+
# will always be less than or equal to the `MaxKeys` field. Say you
|
8058
|
+
# ask for 50 keys, your result will include 50 keys or fewer.
|
7951
8059
|
# @return [Integer]
|
7952
8060
|
#
|
7953
8061
|
# @!attribute [rw] continuation_token
|
@@ -7999,14 +8107,14 @@ module Aws::S3
|
|
7999
8107
|
# bucket name. For more information about access point ARNs, see
|
8000
8108
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
8001
8109
|
#
|
8002
|
-
# When
|
8110
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
8003
8111
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
8004
8112
|
# takes the form `
|
8005
8113
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
8006
|
-
# When
|
8007
|
-
# Services SDKs, you provide the Outposts
|
8008
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
8009
|
-
# [
|
8114
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
8115
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
8116
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
8117
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
8010
8118
|
#
|
8011
8119
|
#
|
8012
8120
|
#
|
@@ -8087,7 +8195,7 @@ module Aws::S3
|
|
8087
8195
|
# includes this header indicating when the initiated multipart upload
|
8088
8196
|
# will become eligible for abort operation. For more information, see
|
8089
8197
|
# [Aborting Incomplete Multipart Uploads Using a Bucket Lifecycle
|
8090
|
-
#
|
8198
|
+
# Configuration][1].
|
8091
8199
|
#
|
8092
8200
|
# The response will also include the `x-amz-abort-rule-id` header that
|
8093
8201
|
# will provide the ID of the lifecycle configuration rule that defines
|
@@ -8208,14 +8316,14 @@ module Aws::S3
|
|
8208
8316
|
# bucket name. For more information about access point ARNs, see
|
8209
8317
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
8210
8318
|
#
|
8211
|
-
# When
|
8319
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
8212
8320
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
8213
8321
|
# takes the form `
|
8214
8322
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
8215
|
-
# When
|
8216
|
-
# Services SDKs, you provide the Outposts
|
8217
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
8218
|
-
# [
|
8323
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
8324
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
8325
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
8326
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
8219
8327
|
#
|
8220
8328
|
#
|
8221
8329
|
#
|
@@ -8435,7 +8543,9 @@ module Aws::S3
|
|
8435
8543
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTMetricConfiguration.html
|
8436
8544
|
#
|
8437
8545
|
# @!attribute [rw] id
|
8438
|
-
# The ID used to identify the metrics configuration.
|
8546
|
+
# The ID used to identify the metrics configuration. The ID has a 64
|
8547
|
+
# character limit and can only contain letters, numbers, periods,
|
8548
|
+
# dashes, and underscores.
|
8439
8549
|
# @return [String]
|
8440
8550
|
#
|
8441
8551
|
# @!attribute [rw] filter
|
@@ -8705,12 +8815,12 @@ module Aws::S3
|
|
8705
8815
|
end
|
8706
8816
|
|
8707
8817
|
# Specifies object key name filtering rules. For information about key
|
8708
|
-
# name filtering, see [Configuring
|
8709
|
-
# *Amazon S3 User Guide*.
|
8818
|
+
# name filtering, see [Configuring event notifications using object key
|
8819
|
+
# name filtering][1] in the *Amazon S3 User Guide*.
|
8710
8820
|
#
|
8711
8821
|
#
|
8712
8822
|
#
|
8713
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
8823
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/notification-how-to-filtering.html
|
8714
8824
|
#
|
8715
8825
|
# @!attribute [rw] key
|
8716
8826
|
# A container for object key name prefix and suffix filtering rules.
|
@@ -9073,7 +9183,24 @@ module Aws::S3
|
|
9073
9183
|
# Container for the owner's display name and ID.
|
9074
9184
|
#
|
9075
9185
|
# @!attribute [rw] display_name
|
9076
|
-
# Container for the display name of the owner.
|
9186
|
+
# Container for the display name of the owner. This value is only
|
9187
|
+
# supported in the following Amazon Web Services Regions:
|
9188
|
+
#
|
9189
|
+
# * US East (N. Virginia)
|
9190
|
+
#
|
9191
|
+
# * US West (N. California)
|
9192
|
+
#
|
9193
|
+
# * US West (Oregon)
|
9194
|
+
#
|
9195
|
+
# * Asia Pacific (Singapore)
|
9196
|
+
#
|
9197
|
+
# * Asia Pacific (Sydney)
|
9198
|
+
#
|
9199
|
+
# * Asia Pacific (Tokyo)
|
9200
|
+
#
|
9201
|
+
# * Europe (Ireland)
|
9202
|
+
#
|
9203
|
+
# * South America (São Paulo)
|
9077
9204
|
# @return [String]
|
9078
9205
|
#
|
9079
9206
|
# @!attribute [rw] id
|
@@ -9578,10 +9705,14 @@ module Aws::S3
|
|
9578
9705
|
|
9579
9706
|
# @!attribute [rw] bucket
|
9580
9707
|
# Specifies default encryption for a bucket using server-side
|
9581
|
-
# encryption with
|
9582
|
-
#
|
9583
|
-
#
|
9584
|
-
#
|
9708
|
+
# encryption with different key options. By default, all buckets have
|
9709
|
+
# a default encryption configuration that uses server-side encryption
|
9710
|
+
# with Amazon S3 managed keys (SSE-S3). You can optionally configure
|
9711
|
+
# default encryption for a bucket by using server-side encryption with
|
9712
|
+
# an Amazon Web Services KMS key (SSE-KMS) or a customer-provided key
|
9713
|
+
# (SSE-C). For information about the bucket default encryption
|
9714
|
+
# feature, see [Amazon S3 Bucket Default Encryption][1] in the *Amazon
|
9715
|
+
# S3 User Guide*.
|
9585
9716
|
#
|
9586
9717
|
#
|
9587
9718
|
#
|
@@ -9834,7 +9965,9 @@ module Aws::S3
|
|
9834
9965
|
# @return [String]
|
9835
9966
|
#
|
9836
9967
|
# @!attribute [rw] id
|
9837
|
-
# The ID used to identify the metrics configuration.
|
9968
|
+
# The ID used to identify the metrics configuration. The ID has a 64
|
9969
|
+
# character limit and can only contain letters, numbers, periods,
|
9970
|
+
# dashes, and underscores.
|
9838
9971
|
# @return [String]
|
9839
9972
|
#
|
9840
9973
|
# @!attribute [rw] metrics_configuration
|
@@ -10457,14 +10590,14 @@ module Aws::S3
|
|
10457
10590
|
# bucket name. For more information about access point ARNs, see
|
10458
10591
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
10459
10592
|
#
|
10460
|
-
# When
|
10593
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
10461
10594
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
10462
10595
|
# takes the form `
|
10463
10596
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
10464
|
-
# When
|
10465
|
-
# Services SDKs, you provide the Outposts
|
10466
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
10467
|
-
# [
|
10597
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
10598
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
10599
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
10600
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
10468
10601
|
#
|
10469
10602
|
#
|
10470
10603
|
#
|
@@ -10770,10 +10903,8 @@ module Aws::S3
|
|
10770
10903
|
# @return [String]
|
10771
10904
|
#
|
10772
10905
|
# @!attribute [rw] server_side_encryption
|
10773
|
-
#
|
10774
|
-
#
|
10775
|
-
# request, the response includes this header. It confirms the
|
10776
|
-
# encryption algorithm that Amazon S3 used to encrypt the object.
|
10906
|
+
# The server-side encryption algorithm used when storing this object
|
10907
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
10777
10908
|
# @return [String]
|
10778
10909
|
#
|
10779
10910
|
# @!attribute [rw] version_id
|
@@ -10794,17 +10925,19 @@ module Aws::S3
|
|
10794
10925
|
# @return [String]
|
10795
10926
|
#
|
10796
10927
|
# @!attribute [rw] ssekms_key_id
|
10797
|
-
# If `x-amz-server-side-encryption` is
|
10798
|
-
#
|
10799
|
-
#
|
10800
|
-
# managed key that was used for the object.
|
10928
|
+
# If `x-amz-server-side-encryption` is has a valid value of `aws:kms`,
|
10929
|
+
# this header specifies the ID of the Amazon Web Services Key
|
10930
|
+
# Management Service (Amazon Web Services KMS) symmetric encryption
|
10931
|
+
# customer managed key that was used for the object.
|
10801
10932
|
# @return [String]
|
10802
10933
|
#
|
10803
10934
|
# @!attribute [rw] ssekms_encryption_context
|
10804
10935
|
# If present, specifies the Amazon Web Services KMS Encryption Context
|
10805
10936
|
# to use for object encryption. The value of this header is a
|
10806
10937
|
# base64-encoded UTF-8 string holding JSON with the encryption context
|
10807
|
-
# key-value pairs.
|
10938
|
+
# key-value pairs. This value is stored as object metadata and
|
10939
|
+
# automatically gets passed on to Amazon Web Services KMS for future
|
10940
|
+
# `GetObject` or `CopyObject` operations on this object.
|
10808
10941
|
# @return [String]
|
10809
10942
|
#
|
10810
10943
|
# @!attribute [rw] bucket_key_enabled
|
@@ -10865,14 +10998,14 @@ module Aws::S3
|
|
10865
10998
|
# bucket name. For more information about access point ARNs, see
|
10866
10999
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
10867
11000
|
#
|
10868
|
-
# When
|
11001
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
10869
11002
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
10870
11003
|
# takes the form `
|
10871
11004
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
10872
|
-
# When
|
10873
|
-
# Services SDKs, you provide the Outposts
|
10874
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
10875
|
-
# [
|
11005
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
11006
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
11007
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
11008
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
10876
11009
|
#
|
10877
11010
|
#
|
10878
11011
|
#
|
@@ -10893,11 +11026,11 @@ module Aws::S3
|
|
10893
11026
|
# @!attribute [rw] content_disposition
|
10894
11027
|
# Specifies presentational information for the object. For more
|
10895
11028
|
# information, see
|
10896
|
-
# [
|
11029
|
+
# [https://www.rfc-editor.org/rfc/rfc6266#section-4][1].
|
10897
11030
|
#
|
10898
11031
|
#
|
10899
11032
|
#
|
10900
|
-
# [1]:
|
11033
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc6266#section-4
|
10901
11034
|
# @return [String]
|
10902
11035
|
#
|
10903
11036
|
# @!attribute [rw] content_encoding
|
@@ -10905,11 +11038,11 @@ module Aws::S3
|
|
10905
11038
|
# thus what decoding mechanisms must be applied to obtain the
|
10906
11039
|
# media-type referenced by the Content-Type header field. For more
|
10907
11040
|
# information, see
|
10908
|
-
# [
|
11041
|
+
# [https://www.rfc-editor.org/rfc/rfc9110.html#field.content-encoding][1].
|
10909
11042
|
#
|
10910
11043
|
#
|
10911
11044
|
#
|
10912
|
-
# [1]:
|
11045
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc9110.html#field.content-encoding
|
10913
11046
|
# @return [String]
|
10914
11047
|
#
|
10915
11048
|
# @!attribute [rw] content_language
|
@@ -10920,11 +11053,11 @@ module Aws::S3
|
|
10920
11053
|
# Size of the body in bytes. This parameter is useful when the size of
|
10921
11054
|
# the body cannot be determined automatically. For more information,
|
10922
11055
|
# see
|
10923
|
-
# [
|
11056
|
+
# [https://www.rfc-editor.org/rfc/rfc9110.html#name-content-length][1].
|
10924
11057
|
#
|
10925
11058
|
#
|
10926
11059
|
#
|
10927
|
-
# [1]:
|
11060
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-length
|
10928
11061
|
# @return [Integer]
|
10929
11062
|
#
|
10930
11063
|
# @!attribute [rw] content_md5
|
@@ -10944,11 +11077,11 @@ module Aws::S3
|
|
10944
11077
|
# @!attribute [rw] content_type
|
10945
11078
|
# A standard MIME type describing the format of the contents. For more
|
10946
11079
|
# information, see
|
10947
|
-
# [
|
11080
|
+
# [https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type][1].
|
10948
11081
|
#
|
10949
11082
|
#
|
10950
11083
|
#
|
10951
|
-
# [1]:
|
11084
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type
|
10952
11085
|
# @return [String]
|
10953
11086
|
#
|
10954
11087
|
# @!attribute [rw] checksum_algorithm
|
@@ -11019,11 +11152,11 @@ module Aws::S3
|
|
11019
11152
|
# @!attribute [rw] expires
|
11020
11153
|
# The date and time at which the object is no longer cacheable. For
|
11021
11154
|
# more information, see
|
11022
|
-
# [
|
11155
|
+
# [https://www.rfc-editor.org/rfc/rfc7234#section-5.3][1].
|
11023
11156
|
#
|
11024
11157
|
#
|
11025
11158
|
#
|
11026
|
-
# [1]:
|
11159
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc7234#section-5.3
|
11027
11160
|
# @return [Time]
|
11028
11161
|
#
|
11029
11162
|
# @!attribute [rw] grant_full_control
|
@@ -11061,7 +11194,7 @@ module Aws::S3
|
|
11061
11194
|
#
|
11062
11195
|
# @!attribute [rw] server_side_encryption
|
11063
11196
|
# The server-side encryption algorithm used when storing this object
|
11064
|
-
# in Amazon S3 (for example, AES256, aws:kms).
|
11197
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
11065
11198
|
# @return [String]
|
11066
11199
|
#
|
11067
11200
|
# @!attribute [rw] storage_class
|
@@ -11125,9 +11258,9 @@ module Aws::S3
|
|
11125
11258
|
# @return [String]
|
11126
11259
|
#
|
11127
11260
|
# @!attribute [rw] ssekms_key_id
|
11128
|
-
# If `x-amz-server-side-encryption`
|
11129
|
-
#
|
11130
|
-
#
|
11261
|
+
# If `x-amz-server-side-encryption` has a valid value of `aws:kms`,
|
11262
|
+
# this header specifies the ID of the Amazon Web Services Key
|
11263
|
+
# Management Service (Amazon Web Services KMS) symmetric encryption
|
11131
11264
|
# customer managed key that was used for the object. If you specify
|
11132
11265
|
# `x-amz-server-side-encryption:aws:kms`, but do not provide`
|
11133
11266
|
# x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
|
@@ -11140,7 +11273,9 @@ module Aws::S3
|
|
11140
11273
|
# Specifies the Amazon Web Services KMS Encryption Context to use for
|
11141
11274
|
# object encryption. The value of this header is a base64-encoded
|
11142
11275
|
# UTF-8 string holding JSON with the encryption context key-value
|
11143
|
-
# pairs.
|
11276
|
+
# pairs. This value is stored as object metadata and automatically
|
11277
|
+
# gets passed on to Amazon Web Services KMS for future `GetObject` or
|
11278
|
+
# `CopyObject` operations on this object.
|
11144
11279
|
# @return [String]
|
11145
11280
|
#
|
11146
11281
|
# @!attribute [rw] bucket_key_enabled
|
@@ -11371,14 +11506,14 @@ module Aws::S3
|
|
11371
11506
|
# bucket name. For more information about access point ARNs, see
|
11372
11507
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
11373
11508
|
#
|
11374
|
-
# When
|
11509
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
11375
11510
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
11376
11511
|
# takes the form `
|
11377
11512
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
11378
|
-
# When
|
11379
|
-
# Services SDKs, you provide the Outposts
|
11380
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
11381
|
-
# [
|
11513
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
11514
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
11515
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
11516
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
11382
11517
|
#
|
11383
11518
|
#
|
11384
11519
|
#
|
@@ -11538,12 +11673,12 @@ module Aws::S3
|
|
11538
11673
|
#
|
11539
11674
|
# @!attribute [rw] filter
|
11540
11675
|
# Specifies object key name filtering rules. For information about key
|
11541
|
-
# name filtering, see [Configuring
|
11542
|
-
# *Amazon S3 User Guide*.
|
11676
|
+
# name filtering, see [Configuring event notifications using object
|
11677
|
+
# key name filtering][1] in the *Amazon S3 User Guide*.
|
11543
11678
|
#
|
11544
11679
|
#
|
11545
11680
|
#
|
11546
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
11681
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/notification-how-to-filtering.html
|
11547
11682
|
# @return [Types::NotificationConfigurationFilter]
|
11548
11683
|
#
|
11549
11684
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/QueueConfiguration AWS API Documentation
|
@@ -11807,6 +11942,13 @@ module Aws::S3
|
|
11807
11942
|
# @return [Types::SourceSelectionCriteria]
|
11808
11943
|
#
|
11809
11944
|
# @!attribute [rw] existing_object_replication
|
11945
|
+
# Optional configuration to replicate existing source bucket objects.
|
11946
|
+
# For more information, see [Replicating Existing Objects][1] in the
|
11947
|
+
# *Amazon S3 User Guide*.
|
11948
|
+
#
|
11949
|
+
#
|
11950
|
+
#
|
11951
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-what-is-isnot-replicated.html#existing-object-replication
|
11810
11952
|
# @return [Types::ExistingObjectReplication]
|
11811
11953
|
#
|
11812
11954
|
# @!attribute [rw] destination
|
@@ -12032,14 +12174,14 @@ module Aws::S3
|
|
12032
12174
|
# bucket name. For more information about access point ARNs, see
|
12033
12175
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
12034
12176
|
#
|
12035
|
-
# When
|
12177
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
12036
12178
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
12037
12179
|
# takes the form `
|
12038
12180
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
12039
|
-
# When
|
12040
|
-
# Services SDKs, you provide the Outposts
|
12041
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
12042
|
-
# [
|
12181
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
12182
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
12183
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
12184
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
12043
12185
|
#
|
12044
12186
|
#
|
12045
12187
|
#
|
@@ -12261,8 +12403,8 @@ module Aws::S3
|
|
12261
12403
|
# Specifies the days since the initiation of an incomplete multipart
|
12262
12404
|
# upload that Amazon S3 will wait before permanently removing all
|
12263
12405
|
# parts of the upload. For more information, see [ Aborting Incomplete
|
12264
|
-
# Multipart Uploads Using a Bucket Lifecycle
|
12265
|
-
# S3 User Guide*.
|
12406
|
+
# Multipart Uploads Using a Bucket Lifecycle Configuration][1] in the
|
12407
|
+
# *Amazon S3 User Guide*.
|
12266
12408
|
#
|
12267
12409
|
#
|
12268
12410
|
#
|
@@ -12354,8 +12496,8 @@ module Aws::S3
|
|
12354
12496
|
#
|
12355
12497
|
# @!attribute [rw] key_id
|
12356
12498
|
# Specifies the ID of the Amazon Web Services Key Management Service
|
12357
|
-
# (Amazon Web Services KMS) symmetric customer managed key
|
12358
|
-
# encrypting inventory reports.
|
12499
|
+
# (Amazon Web Services KMS) symmetric encryption customer managed key
|
12500
|
+
# to use for encrypting inventory reports.
|
12359
12501
|
# @return [String]
|
12360
12502
|
#
|
12361
12503
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/SSEKMS AWS API Documentation
|
@@ -12594,22 +12736,22 @@ module Aws::S3
|
|
12594
12736
|
# `aws:kms`.
|
12595
12737
|
#
|
12596
12738
|
# You can specify the key ID or the Amazon Resource Name (ARN) of the
|
12597
|
-
# KMS key.
|
12598
|
-
#
|
12599
|
-
# qualified KMS key ARN. For more information, see [Using encryption
|
12600
|
-
# for cross-account operations][1].
|
12739
|
+
# KMS key. If you use a key ID, you can run into a LogDestination
|
12740
|
+
# undeliverable error when creating a VPC flow log.
|
12601
12741
|
#
|
12602
|
-
#
|
12742
|
+
# If you are using encryption with cross-account or Amazon Web
|
12743
|
+
# Services service operations you must use a fully qualified KMS key
|
12744
|
+
# ARN. For more information, see [Using encryption for cross-account
|
12745
|
+
# operations][1].
|
12603
12746
|
#
|
12604
12747
|
# * Key ID: `1234abcd-12ab-34cd-56ef-1234567890ab`
|
12605
12748
|
#
|
12606
12749
|
# * Key ARN:
|
12607
12750
|
# `arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab`
|
12608
12751
|
#
|
12609
|
-
# Amazon S3 only supports symmetric KMS keys
|
12610
|
-
#
|
12611
|
-
#
|
12612
|
-
# Developer Guide*.
|
12752
|
+
# Amazon S3 only supports symmetric encryption KMS keys. For more
|
12753
|
+
# information, see [Asymmetric keys in Amazon Web Services KMS][2] in
|
12754
|
+
# the *Amazon Web Services Key Management Service Developer Guide*.
|
12613
12755
|
#
|
12614
12756
|
#
|
12615
12757
|
#
|
@@ -12925,12 +13067,12 @@ module Aws::S3
|
|
12925
13067
|
#
|
12926
13068
|
# @!attribute [rw] filter
|
12927
13069
|
# Specifies object key name filtering rules. For information about key
|
12928
|
-
# name filtering, see [Configuring
|
12929
|
-
# *Amazon S3 User Guide*.
|
13070
|
+
# name filtering, see [Configuring event notifications using object
|
13071
|
+
# key name filtering][1] in the *Amazon S3 User Guide*.
|
12930
13072
|
#
|
12931
13073
|
#
|
12932
13074
|
#
|
12933
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
13075
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/notification-how-to-filtering.html
|
12934
13076
|
# @return [Types::NotificationConfigurationFilter]
|
12935
13077
|
#
|
12936
13078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/TopicConfiguration AWS API Documentation
|
@@ -13029,7 +13171,7 @@ module Aws::S3
|
|
13029
13171
|
#
|
13030
13172
|
# @!attribute [rw] server_side_encryption
|
13031
13173
|
# The server-side encryption algorithm used when storing this object
|
13032
|
-
# in Amazon S3 (for example, AES256, aws:kms).
|
13174
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
13033
13175
|
# @return [String]
|
13034
13176
|
#
|
13035
13177
|
# @!attribute [rw] sse_customer_algorithm
|
@@ -13047,8 +13189,8 @@ module Aws::S3
|
|
13047
13189
|
#
|
13048
13190
|
# @!attribute [rw] ssekms_key_id
|
13049
13191
|
# If present, specifies the ID of the Amazon Web Services Key
|
13050
|
-
# Management Service (Amazon Web Services KMS) symmetric
|
13051
|
-
# managed key that was used for the object.
|
13192
|
+
# Management Service (Amazon Web Services KMS) symmetric encryption
|
13193
|
+
# customer managed key that was used for the object.
|
13052
13194
|
# @return [String]
|
13053
13195
|
#
|
13054
13196
|
# @!attribute [rw] bucket_key_enabled
|
@@ -13088,14 +13230,14 @@ module Aws::S3
|
|
13088
13230
|
# bucket name. For more information about access point ARNs, see
|
13089
13231
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
13090
13232
|
#
|
13091
|
-
# When
|
13233
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
13092
13234
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
13093
13235
|
# takes the form `
|
13094
13236
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
13095
|
-
# When
|
13096
|
-
# Services SDKs, you provide the Outposts
|
13097
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
13098
|
-
# [
|
13237
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
13238
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
13239
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
13240
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
13099
13241
|
#
|
13100
13242
|
#
|
13101
13243
|
#
|
@@ -13282,7 +13424,7 @@ module Aws::S3
|
|
13282
13424
|
|
13283
13425
|
# @!attribute [rw] server_side_encryption
|
13284
13426
|
# The server-side encryption algorithm used when storing this object
|
13285
|
-
# in Amazon S3 (for example, AES256, aws:kms).
|
13427
|
+
# in Amazon S3 (for example, AES256, `aws:kms`).
|
13286
13428
|
# @return [String]
|
13287
13429
|
#
|
13288
13430
|
# @!attribute [rw] etag
|
@@ -13356,8 +13498,8 @@ module Aws::S3
|
|
13356
13498
|
#
|
13357
13499
|
# @!attribute [rw] ssekms_key_id
|
13358
13500
|
# If present, specifies the ID of the Amazon Web Services Key
|
13359
|
-
# Management Service (Amazon Web Services KMS) symmetric
|
13360
|
-
# managed key was used for the object.
|
13501
|
+
# Management Service (Amazon Web Services KMS) symmetric encryption
|
13502
|
+
# customer managed key was used for the object.
|
13361
13503
|
# @return [String]
|
13362
13504
|
#
|
13363
13505
|
# @!attribute [rw] bucket_key_enabled
|
@@ -13404,14 +13546,14 @@ module Aws::S3
|
|
13404
13546
|
# bucket name. For more information about access point ARNs, see
|
13405
13547
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
13406
13548
|
#
|
13407
|
-
# When
|
13549
|
+
# When you use this action with Amazon S3 on Outposts, you must direct
|
13408
13550
|
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
13409
13551
|
# takes the form `
|
13410
13552
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
13411
|
-
# When
|
13412
|
-
# Services SDKs, you provide the Outposts
|
13413
|
-
# bucket name. For more information about S3 on Outposts ARNs, see
|
13414
|
-
# [
|
13553
|
+
# When you use this action with S3 on Outposts through the Amazon Web
|
13554
|
+
# Services SDKs, you provide the Outposts access point ARN in place of
|
13555
|
+
# the bucket name. For more information about S3 on Outposts ARNs, see
|
13556
|
+
# [What is S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
13415
13557
|
#
|
13416
13558
|
#
|
13417
13559
|
#
|
@@ -13651,9 +13793,7 @@ module Aws::S3
|
|
13651
13793
|
#
|
13652
13794
|
# @!attribute [rw] status_code
|
13653
13795
|
# The integer status code for an HTTP response of a corresponding
|
13654
|
-
# `GetObject` request.
|
13655
|
-
#
|
13656
|
-
# **Status Codes**
|
13796
|
+
# `GetObject` request. The following is a list of status codes.
|
13657
13797
|
#
|
13658
13798
|
# * `200 - OK`
|
13659
13799
|
#
|
@@ -13895,7 +14035,7 @@ module Aws::S3
|
|
13895
14035
|
#
|
13896
14036
|
# @!attribute [rw] server_side_encryption
|
13897
14037
|
# The server-side encryption algorithm used when storing requested
|
13898
|
-
# object in Amazon S3 (for example, AES256, aws:kms).
|
14038
|
+
# object in Amazon S3 (for example, AES256, `aws:kms`).
|
13899
14039
|
# @return [String]
|
13900
14040
|
#
|
13901
14041
|
# @!attribute [rw] sse_customer_algorithm
|
@@ -13906,8 +14046,8 @@ module Aws::S3
|
|
13906
14046
|
#
|
13907
14047
|
# @!attribute [rw] ssekms_key_id
|
13908
14048
|
# If present, specifies the ID of the Amazon Web Services Key
|
13909
|
-
# Management Service (Amazon Web Services KMS) symmetric
|
13910
|
-
# managed key that was used for stored in Amazon S3 object.
|
14049
|
+
# Management Service (Amazon Web Services KMS) symmetric encryption
|
14050
|
+
# customer managed key that was used for stored in Amazon S3 object.
|
13911
14051
|
# @return [String]
|
13912
14052
|
#
|
13913
14053
|
# @!attribute [rw] sse_customer_key_md5
|