aws-sdk-s3 1.179.0 → 1.181.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 +32 -35
- data/lib/aws-sdk-s3/bucket_acl.rb +1 -1
- data/lib/aws-sdk-s3/bucket_cors.rb +1 -1
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +1 -1
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +1 -1
- data/lib/aws-sdk-s3/bucket_logging.rb +1 -1
- data/lib/aws-sdk-s3/bucket_policy.rb +6 -6
- data/lib/aws-sdk-s3/bucket_request_payment.rb +1 -1
- data/lib/aws-sdk-s3/bucket_tagging.rb +1 -1
- data/lib/aws-sdk-s3/bucket_versioning.rb +3 -3
- data/lib/aws-sdk-s3/bucket_website.rb +1 -1
- data/lib/aws-sdk-s3/client.rb +563 -543
- data/lib/aws-sdk-s3/client_api.rb +1 -0
- data/lib/aws-sdk-s3/endpoint_provider.rb +260 -277
- data/lib/aws-sdk-s3/multipart_upload.rb +10 -10
- data/lib/aws-sdk-s3/multipart_upload_part.rb +23 -23
- data/lib/aws-sdk-s3/object.rb +66 -77
- data/lib/aws-sdk-s3/object_summary.rb +54 -72
- data/lib/aws-sdk-s3/object_version.rb +6 -15
- data/lib/aws-sdk-s3/resource.rb +1 -1
- data/lib/aws-sdk-s3/types.rb +482 -450
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +1 -1
- data/sig/client.rbs +3 -2
- data/sig/object.rbs +3 -0
- data/sig/resource.rbs +1 -1
- data/sig/types.rbs +3 -2
- metadata +2 -2
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -59,7 +59,7 @@ module Aws::S3
|
|
59
59
|
# requests are not supported. Directory bucket names must be unique in
|
60
60
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
61
61
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
62
|
-
#
|
62
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
63
63
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
64
64
|
# *Amazon S3 User Guide*.
|
65
65
|
#
|
@@ -79,14 +79,14 @@ module Aws::S3
|
|
79
79
|
#
|
80
80
|
# </note>
|
81
81
|
#
|
82
|
-
# **S3 on Outposts** - When you use this action with
|
83
|
-
#
|
84
|
-
#
|
82
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
83
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
84
|
+
# Outposts hostname takes the form `
|
85
85
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
86
|
-
# When you use this action with S3 on Outposts
|
87
|
-
#
|
88
|
-
#
|
89
|
-
#
|
86
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
87
|
+
# must be the Outposts access point ARN or the access point alias. For
|
88
|
+
# more information about S3 on Outposts, see [What is S3 on
|
89
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
90
90
|
#
|
91
91
|
#
|
92
92
|
#
|
@@ -655,7 +655,7 @@ module Aws::S3
|
|
655
655
|
# Contains all the possible checksum or digest values for an object.
|
656
656
|
#
|
657
657
|
# @!attribute [rw] checksum_crc32
|
658
|
-
# The Base64 encoded, 32-bit `
|
658
|
+
# The Base64 encoded, 32-bit `CRC32 checksum` of the object. This
|
659
659
|
# checksum is only be present if the checksum was uploaded with the
|
660
660
|
# object. When you use an API operation on an object that was uploaded
|
661
661
|
# using multipart uploads, this value may not be a direct checksum
|
@@ -670,7 +670,7 @@ module Aws::S3
|
|
670
670
|
# @return [String]
|
671
671
|
#
|
672
672
|
# @!attribute [rw] checksum_crc32c
|
673
|
-
# The Base64 encoded, 32-bit `
|
673
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the object. This
|
674
674
|
# checksum is only present if the checksum was uploaded with the
|
675
675
|
# object. When you use an API operation on an object that was uploaded
|
676
676
|
# using multipart uploads, this value may not be a direct checksum
|
@@ -685,10 +685,10 @@ module Aws::S3
|
|
685
685
|
# @return [String]
|
686
686
|
#
|
687
687
|
# @!attribute [rw] checksum_crc64nvme
|
688
|
-
# The Base64 encoded, 64-bit `
|
689
|
-
# checksum is present if the object was uploaded with the `
|
688
|
+
# The Base64 encoded, 64-bit `CRC64NVME` checksum of the object. This
|
689
|
+
# checksum is present if the object was uploaded with the `CRC64NVME`
|
690
690
|
# checksum algorithm, or if the object was uploaded without a checksum
|
691
|
-
# (and Amazon S3 added the default checksum, `
|
691
|
+
# (and Amazon S3 added the default checksum, `CRC64NVME`, to the
|
692
692
|
# uploaded object). For more information, see [Checking object
|
693
693
|
# integrity][1] in the *Amazon S3 User Guide*.
|
694
694
|
#
|
@@ -698,7 +698,7 @@ module Aws::S3
|
|
698
698
|
# @return [String]
|
699
699
|
#
|
700
700
|
# @!attribute [rw] checksum_sha1
|
701
|
-
# The Base64 encoded, 160-bit `
|
701
|
+
# The Base64 encoded, 160-bit `SHA1` digest of the object. This will
|
702
702
|
# only be present if the object was uploaded with the object. When you
|
703
703
|
# use the API operation on an object that was uploaded using multipart
|
704
704
|
# uploads, this value may not be a direct checksum value of the full
|
@@ -713,14 +713,14 @@ module Aws::S3
|
|
713
713
|
# @return [String]
|
714
714
|
#
|
715
715
|
# @!attribute [rw] checksum_sha256
|
716
|
-
# The Base64 encoded, 256-bit `
|
717
|
-
#
|
718
|
-
#
|
719
|
-
#
|
720
|
-
#
|
721
|
-
#
|
722
|
-
#
|
723
|
-
#
|
716
|
+
# The Base64 encoded, 256-bit `SHA256` digest of the object. This will
|
717
|
+
# only be present if the object was uploaded with the object. When you
|
718
|
+
# use an API operation on an object that was uploaded using multipart
|
719
|
+
# uploads, this value may not be a direct checksum value of the full
|
720
|
+
# object. Instead, it's a calculation based on the checksum values of
|
721
|
+
# each individual part. For more information about how checksums are
|
722
|
+
# calculated with multipart uploads, see [ Checking object
|
723
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
724
724
|
#
|
725
725
|
#
|
726
726
|
#
|
@@ -849,7 +849,7 @@ module Aws::S3
|
|
849
849
|
# @return [String]
|
850
850
|
#
|
851
851
|
# @!attribute [rw] checksum_crc32
|
852
|
-
# The Base64 encoded, 32-bit `
|
852
|
+
# The Base64 encoded, 32-bit `CRC32 checksum` of the object. This
|
853
853
|
# checksum is only be present if the checksum was uploaded with the
|
854
854
|
# object. When you use an API operation on an object that was uploaded
|
855
855
|
# using multipart uploads, this value may not be a direct checksum
|
@@ -864,7 +864,7 @@ module Aws::S3
|
|
864
864
|
# @return [String]
|
865
865
|
#
|
866
866
|
# @!attribute [rw] checksum_crc32c
|
867
|
-
# The Base64 encoded, 32-bit `
|
867
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the object. This
|
868
868
|
# checksum is only present if the checksum was uploaded with the
|
869
869
|
# object. When you use an API operation on an object that was uploaded
|
870
870
|
# using multipart uploads, this value may not be a direct checksum
|
@@ -881,8 +881,8 @@ module Aws::S3
|
|
881
881
|
# @!attribute [rw] checksum_crc64nvme
|
882
882
|
# This header can be used as a data integrity check to verify that the
|
883
883
|
# data received is the same data that was originally sent. This header
|
884
|
-
# specifies the Base64 encoded, 64-bit `
|
885
|
-
# object. The `
|
884
|
+
# specifies the Base64 encoded, 64-bit `CRC64NVME` checksum of the
|
885
|
+
# object. The `CRC64NVME` checksum is always a full object checksum.
|
886
886
|
# For more information, see [Checking object integrity in the Amazon
|
887
887
|
# S3 User Guide][1].
|
888
888
|
#
|
@@ -892,7 +892,7 @@ module Aws::S3
|
|
892
892
|
# @return [String]
|
893
893
|
#
|
894
894
|
# @!attribute [rw] checksum_sha1
|
895
|
-
# The Base64 encoded, 160-bit `
|
895
|
+
# The Base64 encoded, 160-bit `SHA1` digest of the object. This will
|
896
896
|
# only be present if the object was uploaded with the object. When you
|
897
897
|
# use the API operation on an object that was uploaded using multipart
|
898
898
|
# uploads, this value may not be a direct checksum value of the full
|
@@ -907,14 +907,14 @@ module Aws::S3
|
|
907
907
|
# @return [String]
|
908
908
|
#
|
909
909
|
# @!attribute [rw] checksum_sha256
|
910
|
-
# The Base64 encoded, 256-bit `
|
911
|
-
#
|
912
|
-
#
|
913
|
-
#
|
914
|
-
#
|
915
|
-
#
|
916
|
-
#
|
917
|
-
#
|
910
|
+
# The Base64 encoded, 256-bit `SHA256` digest of the object. This will
|
911
|
+
# only be present if the object was uploaded with the object. When you
|
912
|
+
# use an API operation on an object that was uploaded using multipart
|
913
|
+
# uploads, this value may not be a direct checksum value of the full
|
914
|
+
# object. Instead, it's a calculation based on the checksum values of
|
915
|
+
# each individual part. For more information about how checksums are
|
916
|
+
# calculated with multipart uploads, see [ Checking object
|
917
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
918
918
|
#
|
919
919
|
#
|
920
920
|
#
|
@@ -1001,7 +1001,7 @@ module Aws::S3
|
|
1001
1001
|
# requests are not supported. Directory bucket names must be unique in
|
1002
1002
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
1003
1003
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
1004
|
-
#
|
1004
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
1005
1005
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
1006
1006
|
# *Amazon S3 User Guide*.
|
1007
1007
|
#
|
@@ -1021,14 +1021,14 @@ module Aws::S3
|
|
1021
1021
|
#
|
1022
1022
|
# </note>
|
1023
1023
|
#
|
1024
|
-
# **S3 on Outposts** - When you use this action with
|
1025
|
-
#
|
1026
|
-
#
|
1024
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
1025
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
1026
|
+
# Outposts hostname takes the form `
|
1027
1027
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
1028
|
-
# When you use this action with S3 on Outposts
|
1029
|
-
#
|
1030
|
-
#
|
1031
|
-
#
|
1028
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
1029
|
+
# must be the Outposts access point ARN or the access point alias. For
|
1030
|
+
# more information about S3 on Outposts, see [What is S3 on
|
1031
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
1032
1032
|
#
|
1033
1033
|
#
|
1034
1034
|
#
|
@@ -1052,9 +1052,9 @@ module Aws::S3
|
|
1052
1052
|
# @!attribute [rw] checksum_crc32
|
1053
1053
|
# This header can be used as a data integrity check to verify that the
|
1054
1054
|
# data received is the same data that was originally sent. This header
|
1055
|
-
# specifies the Base64 encoded, 32-bit `
|
1056
|
-
#
|
1057
|
-
#
|
1055
|
+
# specifies the Base64 encoded, 32-bit `CRC32` checksum of the object.
|
1056
|
+
# For more information, see [Checking object integrity][1] in the
|
1057
|
+
# *Amazon S3 User Guide*.
|
1058
1058
|
#
|
1059
1059
|
#
|
1060
1060
|
#
|
@@ -1064,7 +1064,7 @@ module Aws::S3
|
|
1064
1064
|
# @!attribute [rw] checksum_crc32c
|
1065
1065
|
# This header can be used as a data integrity check to verify that the
|
1066
1066
|
# data received is the same data that was originally sent. This header
|
1067
|
-
# specifies the Base64 encoded, 32-bit `
|
1067
|
+
# specifies the Base64 encoded, 32-bit `CRC32C` checksum of the
|
1068
1068
|
# object. For more information, see [Checking object integrity][1] in
|
1069
1069
|
# the *Amazon S3 User Guide*.
|
1070
1070
|
#
|
@@ -1076,8 +1076,8 @@ module Aws::S3
|
|
1076
1076
|
# @!attribute [rw] checksum_crc64nvme
|
1077
1077
|
# This header can be used as a data integrity check to verify that the
|
1078
1078
|
# data received is the same data that was originally sent. This header
|
1079
|
-
# specifies the Base64 encoded, 64-bit `
|
1080
|
-
# object. The `
|
1079
|
+
# specifies the Base64 encoded, 64-bit `CRC64NVME` checksum of the
|
1080
|
+
# object. The `CRC64NVME` checksum is always a full object checksum.
|
1081
1081
|
# For more information, see [Checking object integrity in the Amazon
|
1082
1082
|
# S3 User Guide][1].
|
1083
1083
|
#
|
@@ -1089,7 +1089,7 @@ module Aws::S3
|
|
1089
1089
|
# @!attribute [rw] checksum_sha1
|
1090
1090
|
# This header can be used as a data integrity check to verify that the
|
1091
1091
|
# data received is the same data that was originally sent. This header
|
1092
|
-
# specifies the Base64 encoded, 160-bit `
|
1092
|
+
# specifies the Base64 encoded, 160-bit `SHA1` digest of the object.
|
1093
1093
|
# For more information, see [Checking object integrity][1] in the
|
1094
1094
|
# *Amazon S3 User Guide*.
|
1095
1095
|
#
|
@@ -1101,9 +1101,9 @@ module Aws::S3
|
|
1101
1101
|
# @!attribute [rw] checksum_sha256
|
1102
1102
|
# This header can be used as a data integrity check to verify that the
|
1103
1103
|
# data received is the same data that was originally sent. This header
|
1104
|
-
# specifies the Base64 encoded, 256-bit `
|
1105
|
-
#
|
1106
|
-
#
|
1104
|
+
# specifies the Base64 encoded, 256-bit `SHA256` digest of the object.
|
1105
|
+
# For more information, see [Checking object integrity][1] in the
|
1106
|
+
# *Amazon S3 User Guide*.
|
1107
1107
|
#
|
1108
1108
|
#
|
1109
1109
|
#
|
@@ -1292,9 +1292,9 @@ module Aws::S3
|
|
1292
1292
|
# @return [String]
|
1293
1293
|
#
|
1294
1294
|
# @!attribute [rw] checksum_crc32
|
1295
|
-
# The Base64 encoded, 32-bit `
|
1295
|
+
# The Base64 encoded, 32-bit `CRC32` checksum of the part. This
|
1296
1296
|
# checksum is present if the multipart upload request was created with
|
1297
|
-
# the `
|
1297
|
+
# the `CRC32` checksum algorithm. For more information, see [Checking
|
1298
1298
|
# object integrity][1] in the *Amazon S3 User Guide*.
|
1299
1299
|
#
|
1300
1300
|
#
|
@@ -1303,10 +1303,10 @@ module Aws::S3
|
|
1303
1303
|
# @return [String]
|
1304
1304
|
#
|
1305
1305
|
# @!attribute [rw] checksum_crc32c
|
1306
|
-
# The Base64 encoded, 32-bit `
|
1306
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the part. This
|
1307
1307
|
# checksum is present if the multipart upload request was created with
|
1308
|
-
# the `
|
1309
|
-
#
|
1308
|
+
# the `CRC32C` checksum algorithm. For more information, see [Checking
|
1309
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
1310
1310
|
#
|
1311
1311
|
#
|
1312
1312
|
#
|
@@ -1314,11 +1314,11 @@ module Aws::S3
|
|
1314
1314
|
# @return [String]
|
1315
1315
|
#
|
1316
1316
|
# @!attribute [rw] checksum_crc64nvme
|
1317
|
-
# The Base64 encoded, 64-bit `
|
1317
|
+
# The Base64 encoded, 64-bit `CRC64NVME` checksum of the part. This
|
1318
1318
|
# checksum is present if the multipart upload request was created with
|
1319
|
-
# the `
|
1320
|
-
#
|
1321
|
-
#
|
1319
|
+
# the `CRC64NVME` checksum algorithm to the uploaded object). For more
|
1320
|
+
# information, see [Checking object integrity][1] in the *Amazon S3
|
1321
|
+
# User Guide*.
|
1322
1322
|
#
|
1323
1323
|
#
|
1324
1324
|
#
|
@@ -1326,9 +1326,9 @@ module Aws::S3
|
|
1326
1326
|
# @return [String]
|
1327
1327
|
#
|
1328
1328
|
# @!attribute [rw] checksum_sha1
|
1329
|
-
# The Base64 encoded, 160-bit `
|
1329
|
+
# The Base64 encoded, 160-bit `SHA1` checksum of the part. This
|
1330
1330
|
# checksum is present if the multipart upload request was created with
|
1331
|
-
# the `
|
1331
|
+
# the `SHA1` checksum algorithm. For more information, see [Checking
|
1332
1332
|
# object integrity][1] in the *Amazon S3 User Guide*.
|
1333
1333
|
#
|
1334
1334
|
#
|
@@ -1337,10 +1337,10 @@ module Aws::S3
|
|
1337
1337
|
# @return [String]
|
1338
1338
|
#
|
1339
1339
|
# @!attribute [rw] checksum_sha256
|
1340
|
-
# The Base64 encoded, 256-bit `
|
1340
|
+
# The Base64 encoded, 256-bit `SHA256` checksum of the part. This
|
1341
1341
|
# checksum is present if the multipart upload request was created with
|
1342
|
-
# the `
|
1343
|
-
#
|
1342
|
+
# the `SHA256` checksum algorithm. For more information, see [Checking
|
1343
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
1344
1344
|
#
|
1345
1345
|
#
|
1346
1346
|
#
|
@@ -1577,7 +1577,7 @@ module Aws::S3
|
|
1577
1577
|
# requests are not supported. Directory bucket names must be unique in
|
1578
1578
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
1579
1579
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
1580
|
-
#
|
1580
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
1581
1581
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
1582
1582
|
# *Amazon S3 User Guide*.
|
1583
1583
|
#
|
@@ -1605,14 +1605,19 @@ module Aws::S3
|
|
1605
1605
|
#
|
1606
1606
|
# </note>
|
1607
1607
|
#
|
1608
|
-
# **S3 on Outposts** - When you use this action with
|
1609
|
-
#
|
1610
|
-
#
|
1608
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
1609
|
+
# you must use the Outpost bucket access point ARN or the access point
|
1610
|
+
# alias for the destination bucket. You can only copy objects within
|
1611
|
+
# the same Outpost bucket. It's not supported to copy objects across
|
1612
|
+
# different Amazon Web Services Outposts, between buckets on the same
|
1613
|
+
# Outposts, or between Outposts buckets and any other bucket types.
|
1614
|
+
# For more information about S3 on Outposts, see [What is S3 on
|
1615
|
+
# Outposts?][3] in the *S3 on Outposts guide*. When you use this
|
1616
|
+
# action with S3 on Outposts through the REST API, you must direct
|
1617
|
+
# requests to the S3 on Outposts hostname, in the format `
|
1611
1618
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
1612
|
-
#
|
1613
|
-
#
|
1614
|
-
# the bucket name. For more information about S3 on Outposts ARNs, see
|
1615
|
-
# [What is S3 on Outposts?][3] in the *Amazon S3 User Guide*.
|
1619
|
+
# The hostname isn't required when you use the Amazon Web Services
|
1620
|
+
# CLI or SDKs.
|
1616
1621
|
#
|
1617
1622
|
#
|
1618
1623
|
#
|
@@ -2129,21 +2134,17 @@ module Aws::S3
|
|
2129
2134
|
# Signature Version in Request Authentication][1] in the *Amazon S3
|
2130
2135
|
# User Guide*.
|
2131
2136
|
#
|
2132
|
-
# **Directory buckets** -
|
2133
|
-
# `x-amz-server-side-encryption`
|
2134
|
-
# x-amz-server-side-encryption-aws-kms-key-id`
|
2135
|
-
#
|
2136
|
-
#
|
2137
|
-
#
|
2138
|
-
#
|
2139
|
-
#
|
2140
|
-
#
|
2141
|
-
#
|
2142
|
-
#
|
2143
|
-
# of the KMS key isn't supported. Your SSE-KMS configuration can only
|
2144
|
-
# support 1 [customer managed key][2] per directory bucket for the
|
2145
|
-
# lifetime of the bucket. The [Amazon Web Services managed key][3]
|
2146
|
-
# (`aws/s3`) isn't supported.
|
2137
|
+
# **Directory buckets** - To encrypt data using SSE-KMS, it's
|
2138
|
+
# recommended to specify the `x-amz-server-side-encryption` header to
|
2139
|
+
# `aws:kms`. Then, the `x-amz-server-side-encryption-aws-kms-key-id`
|
2140
|
+
# header implicitly uses the bucket's default KMS customer managed
|
2141
|
+
# key ID. If you want to explicitly set the `
|
2142
|
+
# x-amz-server-side-encryption-aws-kms-key-id` header, it must match
|
2143
|
+
# the bucket's default customer managed key (using key ID or ARN, not
|
2144
|
+
# alias). Your SSE-KMS configuration can only support 1 [customer
|
2145
|
+
# managed key][2] per directory bucket's lifetime. The [Amazon Web
|
2146
|
+
# Services managed key][3] (`aws/s3`) isn't supported. Incorrect key
|
2147
|
+
# specification results in an HTTP `400 Bad Request` error.
|
2147
2148
|
#
|
2148
2149
|
#
|
2149
2150
|
#
|
@@ -2428,7 +2429,7 @@ module Aws::S3
|
|
2428
2429
|
# @return [String]
|
2429
2430
|
#
|
2430
2431
|
# @!attribute [rw] checksum_crc32
|
2431
|
-
# The Base64 encoded, 32-bit `
|
2432
|
+
# The Base64 encoded, 32-bit `CRC32` checksum of the object. This
|
2432
2433
|
# checksum is only present if the object was uploaded with the object.
|
2433
2434
|
# For more information, see [ Checking object integrity][1] in the
|
2434
2435
|
# *Amazon S3 User Guide*.
|
@@ -2439,7 +2440,7 @@ module Aws::S3
|
|
2439
2440
|
# @return [String]
|
2440
2441
|
#
|
2441
2442
|
# @!attribute [rw] checksum_crc32c
|
2442
|
-
# The Base64 encoded, 32-bit `
|
2443
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the object. This
|
2443
2444
|
# will only be present if the object was uploaded with the object. For
|
2444
2445
|
# more information, see [ Checking object integrity][1] in the *Amazon
|
2445
2446
|
# S3 User Guide*.
|
@@ -2450,11 +2451,11 @@ module Aws::S3
|
|
2450
2451
|
# @return [String]
|
2451
2452
|
#
|
2452
2453
|
# @!attribute [rw] checksum_crc64nvme
|
2453
|
-
# The Base64 encoded, 64-bit `
|
2454
|
+
# The Base64 encoded, 64-bit `CRC64NVME` checksum of the object. This
|
2454
2455
|
# checksum is present if the object being copied was uploaded with the
|
2455
|
-
# `
|
2456
|
+
# `CRC64NVME` checksum algorithm, or if the object was uploaded
|
2456
2457
|
# without a checksum (and Amazon S3 added the default checksum,
|
2457
|
-
# `
|
2458
|
+
# `CRC64NVME`, to the uploaded object). For more information, see
|
2458
2459
|
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
2459
2460
|
#
|
2460
2461
|
#
|
@@ -2463,7 +2464,7 @@ module Aws::S3
|
|
2463
2464
|
# @return [String]
|
2464
2465
|
#
|
2465
2466
|
# @!attribute [rw] checksum_sha1
|
2466
|
-
# The Base64 encoded, 160-bit `
|
2467
|
+
# The Base64 encoded, 160-bit `SHA1` digest of the object. This will
|
2467
2468
|
# only be present if the object was uploaded with the object. For more
|
2468
2469
|
# information, see [ Checking object integrity][1] in the *Amazon S3
|
2469
2470
|
# User Guide*.
|
@@ -2474,10 +2475,10 @@ module Aws::S3
|
|
2474
2475
|
# @return [String]
|
2475
2476
|
#
|
2476
2477
|
# @!attribute [rw] checksum_sha256
|
2477
|
-
# The Base64 encoded, 256-bit `
|
2478
|
-
#
|
2479
|
-
#
|
2480
|
-
#
|
2478
|
+
# The Base64 encoded, 256-bit `SHA256` digest of the object. This will
|
2479
|
+
# only be present if the object was uploaded with the object. For more
|
2480
|
+
# information, see [ Checking object integrity][1] in the *Amazon S3
|
2481
|
+
# User Guide*.
|
2481
2482
|
#
|
2482
2483
|
#
|
2483
2484
|
#
|
@@ -2512,7 +2513,7 @@ module Aws::S3
|
|
2512
2513
|
# @!attribute [rw] checksum_crc32
|
2513
2514
|
# This header can be used as a data integrity check to verify that the
|
2514
2515
|
# data received is the same data that was originally sent. This header
|
2515
|
-
# specifies the Base64 encoded, 32-bit `
|
2516
|
+
# specifies the Base64 encoded, 32-bit `CRC32` checksum of the part.
|
2516
2517
|
# For more information, see [Checking object integrity][1] in the
|
2517
2518
|
# *Amazon S3 User Guide*.
|
2518
2519
|
#
|
@@ -2524,7 +2525,7 @@ module Aws::S3
|
|
2524
2525
|
# @!attribute [rw] checksum_crc32c
|
2525
2526
|
# This header can be used as a data integrity check to verify that the
|
2526
2527
|
# data received is the same data that was originally sent. This header
|
2527
|
-
# specifies the Base64 encoded, 32-bit `
|
2528
|
+
# specifies the Base64 encoded, 32-bit `CRC32C` checksum of the part.
|
2528
2529
|
# For more information, see [Checking object integrity][1] in the
|
2529
2530
|
# *Amazon S3 User Guide*.
|
2530
2531
|
#
|
@@ -2534,11 +2535,11 @@ module Aws::S3
|
|
2534
2535
|
# @return [String]
|
2535
2536
|
#
|
2536
2537
|
# @!attribute [rw] checksum_crc64nvme
|
2537
|
-
# The Base64 encoded, 64-bit `
|
2538
|
+
# The Base64 encoded, 64-bit `CRC64NVME` checksum of the part. This
|
2538
2539
|
# checksum is present if the multipart upload request was created with
|
2539
|
-
# the `
|
2540
|
-
#
|
2541
|
-
#
|
2540
|
+
# the `CRC64NVME` checksum algorithm to the uploaded object). For more
|
2541
|
+
# information, see [Checking object integrity][1] in the *Amazon S3
|
2542
|
+
# User Guide*.
|
2542
2543
|
#
|
2543
2544
|
#
|
2544
2545
|
#
|
@@ -2548,7 +2549,7 @@ module Aws::S3
|
|
2548
2549
|
# @!attribute [rw] checksum_sha1
|
2549
2550
|
# This header can be used as a data integrity check to verify that the
|
2550
2551
|
# data received is the same data that was originally sent. This header
|
2551
|
-
# specifies the Base64 encoded, 160-bit `
|
2552
|
+
# specifies the Base64 encoded, 160-bit `SHA1` checksum of the part.
|
2552
2553
|
# For more information, see [Checking object integrity][1] in the
|
2553
2554
|
# *Amazon S3 User Guide*.
|
2554
2555
|
#
|
@@ -2560,9 +2561,9 @@ module Aws::S3
|
|
2560
2561
|
# @!attribute [rw] checksum_sha256
|
2561
2562
|
# This header can be used as a data integrity check to verify that the
|
2562
2563
|
# data received is the same data that was originally sent. This header
|
2563
|
-
# specifies the Base64 encoded, 256-bit `
|
2564
|
-
#
|
2565
|
-
#
|
2564
|
+
# specifies the Base64 encoded, 256-bit `SHA256` checksum of the part.
|
2565
|
+
# For more information, see [Checking object integrity][1] in the
|
2566
|
+
# *Amazon S3 User Guide*.
|
2566
2567
|
#
|
2567
2568
|
#
|
2568
2569
|
#
|
@@ -2590,11 +2591,14 @@ module Aws::S3
|
|
2590
2591
|
# choose a Region to optimize latency, minimize costs, or address
|
2591
2592
|
# regulatory requirements. For example, if you reside in Europe, you
|
2592
2593
|
# will probably find it advantageous to create buckets in the Europe
|
2593
|
-
# (Ireland) Region.
|
2594
|
-
# in the *Amazon S3 User Guide*.
|
2594
|
+
# (Ireland) Region.
|
2595
2595
|
#
|
2596
2596
|
# If you don't specify a Region, the bucket is created in the US East
|
2597
|
-
# (N. Virginia) Region (us-east-1) by default.
|
2597
|
+
# (N. Virginia) Region (us-east-1) by default. Configurations using
|
2598
|
+
# the value `EU` will create a bucket in `eu-west-1`.
|
2599
|
+
#
|
2600
|
+
# For a list of the valid values for all of the Amazon Web Services
|
2601
|
+
# Regions, see [Regions and Endpoints][1].
|
2598
2602
|
#
|
2599
2603
|
# <note markdown="1"> This functionality is not supported for directory buckets.
|
2600
2604
|
#
|
@@ -2602,17 +2606,17 @@ module Aws::S3
|
|
2602
2606
|
#
|
2603
2607
|
#
|
2604
2608
|
#
|
2605
|
-
# [1]: https://docs.aws.amazon.com/
|
2609
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
|
2606
2610
|
# @return [String]
|
2607
2611
|
#
|
2608
2612
|
# @!attribute [rw] location
|
2609
2613
|
# Specifies the location where the bucket will be created.
|
2610
2614
|
#
|
2611
2615
|
# <b>Directory buckets </b> - The location type is Availability Zone
|
2612
|
-
# or Local Zone.
|
2613
|
-
# must be
|
2614
|
-
#
|
2615
|
-
#
|
2616
|
+
# or Local Zone. To use the Local Zone location type, your account
|
2617
|
+
# must be enabled for Dedicated Local Zones. Otherwise, you get an
|
2618
|
+
# HTTP `403 Forbidden` error with the error code `AccessDenied`. To
|
2619
|
+
# learn more, see [Enable accounts for Dedicated Local Zones][1] in
|
2616
2620
|
# the *Amazon S3 User Guide*.
|
2617
2621
|
#
|
2618
2622
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
@@ -3006,7 +3010,7 @@ module Aws::S3
|
|
3006
3010
|
# requests are not supported. Directory bucket names must be unique in
|
3007
3011
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
3008
3012
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
3009
|
-
#
|
3013
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
3010
3014
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
3011
3015
|
# *Amazon S3 User Guide*.
|
3012
3016
|
#
|
@@ -3026,14 +3030,14 @@ module Aws::S3
|
|
3026
3030
|
#
|
3027
3031
|
# </note>
|
3028
3032
|
#
|
3029
|
-
# **S3 on Outposts** - When you use this action with
|
3030
|
-
#
|
3031
|
-
#
|
3033
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
3034
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
3035
|
+
# Outposts hostname takes the form `
|
3032
3036
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
3033
|
-
# When you use this action with S3 on Outposts
|
3034
|
-
#
|
3035
|
-
#
|
3036
|
-
#
|
3037
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
3038
|
+
# must be the Outposts access point ARN or the access point alias. For
|
3039
|
+
# more information about S3 on Outposts, see [What is S3 on
|
3040
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
3037
3041
|
#
|
3038
3042
|
#
|
3039
3043
|
#
|
@@ -3471,21 +3475,17 @@ module Aws::S3
|
|
3471
3475
|
# `x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
|
3472
3476
|
# Amazon Web Services managed key (`aws/s3`) to protect the data.
|
3473
3477
|
#
|
3474
|
-
# **Directory buckets** -
|
3475
|
-
# `x-amz-server-side-encryption`
|
3476
|
-
# x-amz-server-side-encryption-aws-kms-key-id`
|
3477
|
-
#
|
3478
|
-
#
|
3479
|
-
#
|
3480
|
-
#
|
3481
|
-
#
|
3482
|
-
#
|
3483
|
-
#
|
3484
|
-
#
|
3485
|
-
# of the KMS key isn't supported. Your SSE-KMS configuration can only
|
3486
|
-
# support 1 [customer managed key][1] per directory bucket for the
|
3487
|
-
# lifetime of the bucket. The [Amazon Web Services managed key][2]
|
3488
|
-
# (`aws/s3`) isn't supported.
|
3478
|
+
# **Directory buckets** - To encrypt data using SSE-KMS, it's
|
3479
|
+
# recommended to specify the `x-amz-server-side-encryption` header to
|
3480
|
+
# `aws:kms`. Then, the `x-amz-server-side-encryption-aws-kms-key-id`
|
3481
|
+
# header implicitly uses the bucket's default KMS customer managed
|
3482
|
+
# key ID. If you want to explicitly set the `
|
3483
|
+
# x-amz-server-side-encryption-aws-kms-key-id` header, it must match
|
3484
|
+
# the bucket's default customer managed key (using key ID or ARN, not
|
3485
|
+
# alias). Your SSE-KMS configuration can only support 1 [customer
|
3486
|
+
# managed key][1] per directory bucket's lifetime. The [Amazon Web
|
3487
|
+
# Services managed key][2] (`aws/s3`) isn't supported. Incorrect key
|
3488
|
+
# specification results in an HTTP `400 Bad Request` error.
|
3489
3489
|
#
|
3490
3490
|
#
|
3491
3491
|
#
|
@@ -3720,7 +3720,7 @@ module Aws::S3
|
|
3720
3720
|
#
|
3721
3721
|
#
|
3722
3722
|
#
|
3723
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/
|
3723
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/serv-side-encryption.html
|
3724
3724
|
# @return [String]
|
3725
3725
|
#
|
3726
3726
|
# @!attribute [rw] ssekms_key_id
|
@@ -3734,8 +3734,8 @@ module Aws::S3
|
|
3734
3734
|
# must use the full Key ARN not the Key ID.
|
3735
3735
|
#
|
3736
3736
|
# Your SSE-KMS configuration can only support 1 [customer managed
|
3737
|
-
# key][1] per directory bucket
|
3738
|
-
#
|
3737
|
+
# key][1] per directory bucket's lifetime. The [Amazon Web Services
|
3738
|
+
# managed key][2] (`aws/s3`) isn't supported.
|
3739
3739
|
#
|
3740
3740
|
#
|
3741
3741
|
#
|
@@ -4238,7 +4238,7 @@ module Aws::S3
|
|
4238
4238
|
# Information about the delete marker.
|
4239
4239
|
#
|
4240
4240
|
# @!attribute [rw] owner
|
4241
|
-
# The account that created the delete marker
|
4241
|
+
# The account that created the delete marker.
|
4242
4242
|
# @return [Types::Owner]
|
4243
4243
|
#
|
4244
4244
|
# @!attribute [rw] key
|
@@ -4314,10 +4314,16 @@ module Aws::S3
|
|
4314
4314
|
# deleted was (true) or was not (false) a delete marker before
|
4315
4315
|
# deletion. In a simple DELETE, this header indicates whether (true)
|
4316
4316
|
# or not (false) the current version of the object is a delete marker.
|
4317
|
+
# To learn more about delete markers, see [Working with delete
|
4318
|
+
# markers][1].
|
4317
4319
|
#
|
4318
4320
|
# <note markdown="1"> This functionality is not supported for directory buckets.
|
4319
4321
|
#
|
4320
4322
|
# </note>
|
4323
|
+
#
|
4324
|
+
#
|
4325
|
+
#
|
4326
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeleteMarker.html
|
4321
4327
|
# @return [Boolean]
|
4322
4328
|
#
|
4323
4329
|
# @!attribute [rw] version_id
|
@@ -4357,7 +4363,7 @@ module Aws::S3
|
|
4357
4363
|
# requests are not supported. Directory bucket names must be unique in
|
4358
4364
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
4359
4365
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
4360
|
-
#
|
4366
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
4361
4367
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4362
4368
|
# *Amazon S3 User Guide*.
|
4363
4369
|
#
|
@@ -4377,14 +4383,14 @@ module Aws::S3
|
|
4377
4383
|
#
|
4378
4384
|
# </note>
|
4379
4385
|
#
|
4380
|
-
# **S3 on Outposts** - When you use this action with
|
4381
|
-
#
|
4382
|
-
#
|
4386
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
4387
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
4388
|
+
# Outposts hostname takes the form `
|
4383
4389
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
4384
|
-
# When you use this action with S3 on Outposts
|
4385
|
-
#
|
4386
|
-
#
|
4387
|
-
#
|
4390
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
4391
|
+
# must be the Outposts access point ARN or the access point alias. For
|
4392
|
+
# more information about S3 on Outposts, see [What is S3 on
|
4393
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
4388
4394
|
#
|
4389
4395
|
#
|
4390
4396
|
#
|
@@ -4467,7 +4473,7 @@ module Aws::S3
|
|
4467
4473
|
#
|
4468
4474
|
#
|
4469
4475
|
#
|
4470
|
-
# [1]: https://
|
4476
|
+
# [1]: https://tools.ietf.org/html/rfc7232
|
4471
4477
|
# @return [String]
|
4472
4478
|
#
|
4473
4479
|
# @!attribute [rw] if_match_last_modified_time
|
@@ -4542,14 +4548,14 @@ module Aws::S3
|
|
4542
4548
|
# bucket name. For more information about access point ARNs, see
|
4543
4549
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
4544
4550
|
#
|
4545
|
-
# **S3 on Outposts** - When you use this action with
|
4546
|
-
#
|
4547
|
-
#
|
4551
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
4552
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
4553
|
+
# Outposts hostname takes the form `
|
4548
4554
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
4549
|
-
# When you use this action with S3 on Outposts
|
4550
|
-
#
|
4551
|
-
#
|
4552
|
-
#
|
4555
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
4556
|
+
# must be the Outposts access point ARN or the access point alias. For
|
4557
|
+
# more information about S3 on Outposts, see [What is S3 on
|
4558
|
+
# Outposts?][2] in the *Amazon S3 User Guide*.
|
4553
4559
|
#
|
4554
4560
|
#
|
4555
4561
|
#
|
@@ -4622,7 +4628,7 @@ module Aws::S3
|
|
4622
4628
|
# requests are not supported. Directory bucket names must be unique in
|
4623
4629
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
4624
4630
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
4625
|
-
#
|
4631
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
4626
4632
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4627
4633
|
# *Amazon S3 User Guide*.
|
4628
4634
|
#
|
@@ -4642,14 +4648,14 @@ module Aws::S3
|
|
4642
4648
|
#
|
4643
4649
|
# </note>
|
4644
4650
|
#
|
4645
|
-
# **S3 on Outposts** - When you use this action with
|
4646
|
-
#
|
4647
|
-
#
|
4651
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
4652
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
4653
|
+
# Outposts hostname takes the form `
|
4648
4654
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
4649
|
-
# When you use this action with S3 on Outposts
|
4650
|
-
#
|
4651
|
-
#
|
4652
|
-
#
|
4655
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
4656
|
+
# must be the Outposts access point ARN or the access point alias. For
|
4657
|
+
# more information about S3 on Outposts, see [What is S3 on
|
4658
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
4653
4659
|
#
|
4654
4660
|
#
|
4655
4661
|
#
|
@@ -4733,15 +4739,15 @@ module Aws::S3
|
|
4733
4739
|
# For the `x-amz-checksum-algorithm ` header, replace ` algorithm `
|
4734
4740
|
# with the supported algorithm from the following list:
|
4735
4741
|
#
|
4736
|
-
# * `
|
4742
|
+
# * `CRC32`
|
4737
4743
|
#
|
4738
|
-
# * `
|
4744
|
+
# * `CRC32C`
|
4739
4745
|
#
|
4740
|
-
# * `
|
4746
|
+
# * `CRC64NVME`
|
4741
4747
|
#
|
4742
|
-
# * `
|
4748
|
+
# * `SHA1`
|
4743
4749
|
#
|
4744
|
-
# * `
|
4750
|
+
# * `SHA256`
|
4745
4751
|
#
|
4746
4752
|
# For more information, see [Checking object integrity][1] in the
|
4747
4753
|
# *Amazon S3 User Guide*.
|
@@ -4813,10 +4819,16 @@ module Aws::S3
|
|
4813
4819
|
# deleted was (true) or was not (false) a delete marker before
|
4814
4820
|
# deletion. In a simple DELETE, this header indicates whether (true)
|
4815
4821
|
# or not (false) the current version of the object is a delete marker.
|
4822
|
+
# To learn more about delete markers, see [Working with delete
|
4823
|
+
# markers][1].
|
4816
4824
|
#
|
4817
4825
|
# <note markdown="1"> This functionality is not supported for directory buckets.
|
4818
4826
|
#
|
4819
4827
|
# </note>
|
4828
|
+
#
|
4829
|
+
#
|
4830
|
+
#
|
4831
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeleteMarker.html
|
4820
4832
|
# @return [Boolean]
|
4821
4833
|
#
|
4822
4834
|
# @!attribute [rw] delete_marker_version_id
|
@@ -6363,8 +6375,10 @@ module Aws::S3
|
|
6363
6375
|
# @!attribute [rw] location_constraint
|
6364
6376
|
# Specifies the Region where the bucket resides. For a list of all the
|
6365
6377
|
# Amazon S3 supported location constraints by Region, see [Regions and
|
6366
|
-
# Endpoints][1].
|
6367
|
-
#
|
6378
|
+
# Endpoints][1].
|
6379
|
+
#
|
6380
|
+
# Buckets in Region `us-east-1` have a LocationConstraint of `null`.
|
6381
|
+
# Buckets with a LocationConstraint of `EU` reside in `eu-west-1`.
|
6368
6382
|
#
|
6369
6383
|
#
|
6370
6384
|
#
|
@@ -7018,11 +7032,16 @@ module Aws::S3
|
|
7018
7032
|
# @!attribute [rw] delete_marker
|
7019
7033
|
# Specifies whether the object retrieved was (`true`) or was not
|
7020
7034
|
# (`false`) a delete marker. If `false`, this response header does not
|
7021
|
-
# appear in the response.
|
7035
|
+
# appear in the response. To learn more about delete markers, see
|
7036
|
+
# [Working with delete markers][1].
|
7022
7037
|
#
|
7023
7038
|
# <note markdown="1"> This functionality is not supported for directory buckets.
|
7024
7039
|
#
|
7025
7040
|
# </note>
|
7041
|
+
#
|
7042
|
+
#
|
7043
|
+
#
|
7044
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeleteMarker.html
|
7026
7045
|
# @return [Boolean]
|
7027
7046
|
#
|
7028
7047
|
# @!attribute [rw] last_modified
|
@@ -7162,7 +7181,7 @@ module Aws::S3
|
|
7162
7181
|
# requests are not supported. Directory bucket names must be unique in
|
7163
7182
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
7164
7183
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
7165
|
-
#
|
7184
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
7166
7185
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
7167
7186
|
# *Amazon S3 User Guide*.
|
7168
7187
|
#
|
@@ -7182,14 +7201,14 @@ module Aws::S3
|
|
7182
7201
|
#
|
7183
7202
|
# </note>
|
7184
7203
|
#
|
7185
|
-
# **S3 on Outposts** - When you use this action with
|
7186
|
-
#
|
7187
|
-
#
|
7204
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
7205
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
7206
|
+
# Outposts hostname takes the form `
|
7188
7207
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
7189
|
-
# When you use this action with S3 on Outposts
|
7190
|
-
#
|
7191
|
-
#
|
7192
|
-
#
|
7208
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
7209
|
+
# must be the Outposts access point ARN or the access point alias. For
|
7210
|
+
# more information about S3 on Outposts, see [What is S3 on
|
7211
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
7193
7212
|
#
|
7194
7213
|
#
|
7195
7214
|
#
|
@@ -7499,7 +7518,7 @@ module Aws::S3
|
|
7499
7518
|
# @return [String]
|
7500
7519
|
#
|
7501
7520
|
# @!attribute [rw] checksum_crc32
|
7502
|
-
# The Base64 encoded, 32-bit `
|
7521
|
+
# The Base64 encoded, 32-bit `CRC32` checksum of the object. This
|
7503
7522
|
# checksum is only present if the object was uploaded with the object.
|
7504
7523
|
# For more information, see [ Checking object integrity][1] in the
|
7505
7524
|
# *Amazon S3 User Guide*.
|
@@ -7510,7 +7529,7 @@ module Aws::S3
|
|
7510
7529
|
# @return [String]
|
7511
7530
|
#
|
7512
7531
|
# @!attribute [rw] checksum_crc32c
|
7513
|
-
# The Base64 encoded, 32-bit `
|
7532
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the object. This
|
7514
7533
|
# will only be present if the object was uploaded with the object. For
|
7515
7534
|
# more information, see [ Checking object integrity][1] in the *Amazon
|
7516
7535
|
# S3 User Guide*.
|
@@ -7521,7 +7540,7 @@ module Aws::S3
|
|
7521
7540
|
# @return [String]
|
7522
7541
|
#
|
7523
7542
|
# @!attribute [rw] checksum_crc64nvme
|
7524
|
-
# The Base64 encoded, 64-bit `
|
7543
|
+
# The Base64 encoded, 64-bit `CRC64NVME` checksum of the object. For
|
7525
7544
|
# more information, see [Checking object integrity in the Amazon S3
|
7526
7545
|
# User Guide][1].
|
7527
7546
|
#
|
@@ -7531,7 +7550,7 @@ module Aws::S3
|
|
7531
7550
|
# @return [String]
|
7532
7551
|
#
|
7533
7552
|
# @!attribute [rw] checksum_sha1
|
7534
|
-
# The Base64 encoded, 160-bit `
|
7553
|
+
# The Base64 encoded, 160-bit `SHA1` digest of the object. This will
|
7535
7554
|
# only be present if the object was uploaded with the object. For more
|
7536
7555
|
# information, see [ Checking object integrity][1] in the *Amazon S3
|
7537
7556
|
# User Guide*.
|
@@ -7542,10 +7561,10 @@ module Aws::S3
|
|
7542
7561
|
# @return [String]
|
7543
7562
|
#
|
7544
7563
|
# @!attribute [rw] checksum_sha256
|
7545
|
-
# The Base64 encoded, 256-bit `
|
7546
|
-
#
|
7547
|
-
#
|
7548
|
-
#
|
7564
|
+
# The Base64 encoded, 256-bit `SHA256` digest of the object. This will
|
7565
|
+
# only be present if the object was uploaded with the object. For more
|
7566
|
+
# information, see [ Checking object integrity][1] in the *Amazon S3
|
7567
|
+
# User Guide*.
|
7549
7568
|
#
|
7550
7569
|
#
|
7551
7570
|
#
|
@@ -7801,7 +7820,7 @@ module Aws::S3
|
|
7801
7820
|
# requests are not supported. Directory bucket names must be unique in
|
7802
7821
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
7803
7822
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
7804
|
-
#
|
7823
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
7805
7824
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
7806
7825
|
# *Amazon S3 User Guide*.
|
7807
7826
|
#
|
@@ -7827,14 +7846,14 @@ module Aws::S3
|
|
7827
7846
|
#
|
7828
7847
|
# </note>
|
7829
7848
|
#
|
7830
|
-
# **S3 on Outposts** - When you use this action with
|
7831
|
-
#
|
7832
|
-
#
|
7849
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
7850
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
7851
|
+
# Outposts hostname takes the form `
|
7833
7852
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
7834
|
-
# When you use this action with S3 on Outposts
|
7835
|
-
#
|
7836
|
-
#
|
7837
|
-
#
|
7853
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
7854
|
+
# must be the Outposts access point ARN or the access point alias. For
|
7855
|
+
# more information about S3 on Outposts, see [What is S3 on
|
7856
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
7838
7857
|
#
|
7839
7858
|
#
|
7840
7859
|
#
|
@@ -8108,15 +8127,6 @@ module Aws::S3
|
|
8108
8127
|
#
|
8109
8128
|
# @!attribute [rw] checksum_mode
|
8110
8129
|
# To retrieve the checksum, this mode must be enabled.
|
8111
|
-
#
|
8112
|
-
# **General purpose buckets** - In addition, if you enable checksum
|
8113
|
-
# mode and the object is uploaded with a [checksum][1] and encrypted
|
8114
|
-
# with an Key Management Service (KMS) key, you must have permission
|
8115
|
-
# to use the `kms:Decrypt` action to retrieve the checksum.
|
8116
|
-
#
|
8117
|
-
#
|
8118
|
-
#
|
8119
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_Checksum.html
|
8120
8130
|
# @return [String]
|
8121
8131
|
#
|
8122
8132
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetObjectRequest AWS API Documentation
|
@@ -8259,14 +8269,14 @@ module Aws::S3
|
|
8259
8269
|
# bucket name. For more information about access point ARNs, see
|
8260
8270
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
8261
8271
|
#
|
8262
|
-
# **S3 on Outposts** - When you use this action with
|
8263
|
-
#
|
8264
|
-
#
|
8272
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
8273
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
8274
|
+
# Outposts hostname takes the form `
|
8265
8275
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
8266
|
-
# When you use this action with S3 on Outposts
|
8267
|
-
#
|
8268
|
-
#
|
8269
|
-
#
|
8276
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
8277
|
+
# must be the Outposts access point ARN or the access point alias. For
|
8278
|
+
# more information about S3 on Outposts, see [What is S3 on
|
8279
|
+
# Outposts?][2] in the *Amazon S3 User Guide*.
|
8270
8280
|
#
|
8271
8281
|
#
|
8272
8282
|
#
|
@@ -8570,7 +8580,7 @@ module Aws::S3
|
|
8570
8580
|
# requests are not supported. Directory bucket names must be unique in
|
8571
8581
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
8572
8582
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
8573
|
-
#
|
8583
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
8574
8584
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
8575
8585
|
# *Amazon S3 User Guide*.
|
8576
8586
|
#
|
@@ -8597,14 +8607,14 @@ module Aws::S3
|
|
8597
8607
|
#
|
8598
8608
|
# </note>
|
8599
8609
|
#
|
8600
|
-
# **S3 on Outposts** - When you use this action with
|
8601
|
-
#
|
8602
|
-
#
|
8610
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
8611
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
8612
|
+
# Outposts hostname takes the form `
|
8603
8613
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
8604
|
-
# When you use this action with S3 on Outposts
|
8605
|
-
#
|
8606
|
-
#
|
8607
|
-
#
|
8614
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
8615
|
+
# must be the Outposts access point ARN or the access point alias. For
|
8616
|
+
# more information about S3 on Outposts, see [What is S3 on
|
8617
|
+
# Outposts?][4] in the *Amazon S3 User Guide*.
|
8608
8618
|
#
|
8609
8619
|
#
|
8610
8620
|
#
|
@@ -8709,7 +8719,7 @@ module Aws::S3
|
|
8709
8719
|
# @return [Integer]
|
8710
8720
|
#
|
8711
8721
|
# @!attribute [rw] checksum_crc32
|
8712
|
-
# The Base64 encoded, 32-bit `
|
8722
|
+
# The Base64 encoded, 32-bit `CRC32 checksum` of the object. This
|
8713
8723
|
# checksum is only be present if the checksum was uploaded with the
|
8714
8724
|
# object. When you use an API operation on an object that was uploaded
|
8715
8725
|
# using multipart uploads, this value may not be a direct checksum
|
@@ -8724,7 +8734,7 @@ module Aws::S3
|
|
8724
8734
|
# @return [String]
|
8725
8735
|
#
|
8726
8736
|
# @!attribute [rw] checksum_crc32c
|
8727
|
-
# The Base64 encoded, 32-bit `
|
8737
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the object. This
|
8728
8738
|
# checksum is only present if the checksum was uploaded with the
|
8729
8739
|
# object. When you use an API operation on an object that was uploaded
|
8730
8740
|
# using multipart uploads, this value may not be a direct checksum
|
@@ -8739,7 +8749,7 @@ module Aws::S3
|
|
8739
8749
|
# @return [String]
|
8740
8750
|
#
|
8741
8751
|
# @!attribute [rw] checksum_crc64nvme
|
8742
|
-
# The Base64 encoded, 64-bit `
|
8752
|
+
# The Base64 encoded, 64-bit `CRC64NVME` checksum of the object. For
|
8743
8753
|
# more information, see [Checking object integrity in the Amazon S3
|
8744
8754
|
# User Guide][1].
|
8745
8755
|
#
|
@@ -8749,7 +8759,7 @@ module Aws::S3
|
|
8749
8759
|
# @return [String]
|
8750
8760
|
#
|
8751
8761
|
# @!attribute [rw] checksum_sha1
|
8752
|
-
# The Base64 encoded, 160-bit `
|
8762
|
+
# The Base64 encoded, 160-bit `SHA1` digest of the object. This will
|
8753
8763
|
# only be present if the object was uploaded with the object. When you
|
8754
8764
|
# use the API operation on an object that was uploaded using multipart
|
8755
8765
|
# uploads, this value may not be a direct checksum value of the full
|
@@ -8764,14 +8774,14 @@ module Aws::S3
|
|
8764
8774
|
# @return [String]
|
8765
8775
|
#
|
8766
8776
|
# @!attribute [rw] checksum_sha256
|
8767
|
-
# The Base64 encoded, 256-bit `
|
8768
|
-
#
|
8769
|
-
#
|
8770
|
-
#
|
8771
|
-
#
|
8772
|
-
#
|
8773
|
-
#
|
8774
|
-
#
|
8777
|
+
# The Base64 encoded, 256-bit `SHA256` digest of the object. This will
|
8778
|
+
# only be present if the object was uploaded with the object. When you
|
8779
|
+
# use an API operation on an object that was uploaded using multipart
|
8780
|
+
# uploads, this value may not be a direct checksum value of the full
|
8781
|
+
# object. Instead, it's a calculation based on the checksum values of
|
8782
|
+
# each individual part. For more information about how checksums are
|
8783
|
+
# calculated with multipart uploads, see [ Checking object
|
8784
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
8775
8785
|
#
|
8776
8786
|
#
|
8777
8787
|
#
|
@@ -8838,6 +8848,11 @@ module Aws::S3
|
|
8838
8848
|
# A standard MIME type describing the format of the object data.
|
8839
8849
|
# @return [String]
|
8840
8850
|
#
|
8851
|
+
# @!attribute [rw] content_range
|
8852
|
+
# The portion of the object returned in the response for a `GET`
|
8853
|
+
# request.
|
8854
|
+
# @return [String]
|
8855
|
+
#
|
8841
8856
|
# @!attribute [rw] expires
|
8842
8857
|
# The date and time at which the object is no longer cacheable.
|
8843
8858
|
# @return [Time]
|
@@ -9042,6 +9057,7 @@ module Aws::S3
|
|
9042
9057
|
:content_encoding,
|
9043
9058
|
:content_language,
|
9044
9059
|
:content_type,
|
9060
|
+
:content_range,
|
9045
9061
|
:expires,
|
9046
9062
|
:expires_string,
|
9047
9063
|
:website_redirect_location,
|
@@ -9071,7 +9087,7 @@ module Aws::S3
|
|
9071
9087
|
# requests are not supported. Directory bucket names must be unique in
|
9072
9088
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
9073
9089
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
9074
|
-
#
|
9090
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
9075
9091
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
9076
9092
|
# *Amazon S3 User Guide*.
|
9077
9093
|
#
|
@@ -9091,14 +9107,14 @@ module Aws::S3
|
|
9091
9107
|
#
|
9092
9108
|
# </note>
|
9093
9109
|
#
|
9094
|
-
# **S3 on Outposts** - When you use this action with
|
9095
|
-
#
|
9096
|
-
#
|
9110
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
9111
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
9112
|
+
# Outposts hostname takes the form `
|
9097
9113
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
9098
|
-
# When you use this action with S3 on Outposts
|
9099
|
-
#
|
9100
|
-
#
|
9101
|
-
#
|
9114
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
9115
|
+
# must be the Outposts access point ARN or the access point alias. For
|
9116
|
+
# more information about S3 on Outposts, see [What is S3 on
|
9117
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
9102
9118
|
#
|
9103
9119
|
#
|
9104
9120
|
#
|
@@ -10605,7 +10621,7 @@ module Aws::S3
|
|
10605
10621
|
# requests are not supported. Directory bucket names must be unique in
|
10606
10622
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
10607
10623
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
10608
|
-
#
|
10624
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
10609
10625
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
10610
10626
|
# *Amazon S3 User Guide*.
|
10611
10627
|
#
|
@@ -10625,14 +10641,14 @@ module Aws::S3
|
|
10625
10641
|
#
|
10626
10642
|
# </note>
|
10627
10643
|
#
|
10628
|
-
# **S3 on Outposts** - When you use this action with
|
10629
|
-
#
|
10630
|
-
#
|
10644
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
10645
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
10646
|
+
# Outposts hostname takes the form `
|
10631
10647
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
10632
|
-
# When you use this action with S3 on Outposts
|
10633
|
-
#
|
10634
|
-
#
|
10635
|
-
#
|
10648
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
10649
|
+
# must be the Outposts access point ARN or the access point alias. For
|
10650
|
+
# more information about S3 on Outposts, see [What is S3 on
|
10651
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
10636
10652
|
#
|
10637
10653
|
#
|
10638
10654
|
#
|
@@ -10818,7 +10834,12 @@ module Aws::S3
|
|
10818
10834
|
# @return [Array<Types::ObjectVersion>]
|
10819
10835
|
#
|
10820
10836
|
# @!attribute [rw] delete_markers
|
10821
|
-
# Container for an object that is a delete marker.
|
10837
|
+
# Container for an object that is a delete marker. To learn more about
|
10838
|
+
# delete markers, see [Working with delete markers][1].
|
10839
|
+
#
|
10840
|
+
#
|
10841
|
+
#
|
10842
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeleteMarker.html
|
10822
10843
|
# @return [Array<Types::DeleteMarkerEntry>]
|
10823
10844
|
#
|
10824
10845
|
# @!attribute [rw] name
|
@@ -11127,7 +11148,7 @@ module Aws::S3
|
|
11127
11148
|
# requests are not supported. Directory bucket names must be unique in
|
11128
11149
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
11129
11150
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
11130
|
-
#
|
11151
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
11131
11152
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
11132
11153
|
# *Amazon S3 User Guide*.
|
11133
11154
|
#
|
@@ -11147,14 +11168,14 @@ module Aws::S3
|
|
11147
11168
|
#
|
11148
11169
|
# </note>
|
11149
11170
|
#
|
11150
|
-
# **S3 on Outposts** - When you use this action with
|
11151
|
-
#
|
11152
|
-
#
|
11171
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
11172
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
11173
|
+
# Outposts hostname takes the form `
|
11153
11174
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
11154
|
-
# When you use this action with S3 on Outposts
|
11155
|
-
#
|
11156
|
-
#
|
11157
|
-
#
|
11175
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
11176
|
+
# must be the Outposts access point ARN or the access point alias. For
|
11177
|
+
# more information about S3 on Outposts, see [What is S3 on
|
11178
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
11158
11179
|
#
|
11159
11180
|
#
|
11160
11181
|
#
|
@@ -11398,7 +11419,7 @@ module Aws::S3
|
|
11398
11419
|
# requests are not supported. Directory bucket names must be unique in
|
11399
11420
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
11400
11421
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
11401
|
-
#
|
11422
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
11402
11423
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
11403
11424
|
# *Amazon S3 User Guide*.
|
11404
11425
|
#
|
@@ -11418,14 +11439,14 @@ module Aws::S3
|
|
11418
11439
|
#
|
11419
11440
|
# </note>
|
11420
11441
|
#
|
11421
|
-
# **S3 on Outposts** - When you use this action with
|
11422
|
-
#
|
11423
|
-
#
|
11442
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
11443
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
11444
|
+
# Outposts hostname takes the form `
|
11424
11445
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
11425
|
-
# When you use this action with S3 on Outposts
|
11426
|
-
#
|
11427
|
-
#
|
11428
|
-
#
|
11446
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
11447
|
+
# must be the Outposts access point ARN or the access point alias. For
|
11448
|
+
# more information about S3 on Outposts, see [What is S3 on
|
11449
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
11429
11450
|
#
|
11430
11451
|
#
|
11431
11452
|
#
|
@@ -11723,7 +11744,7 @@ module Aws::S3
|
|
11723
11744
|
# requests are not supported. Directory bucket names must be unique in
|
11724
11745
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
11725
11746
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
11726
|
-
#
|
11747
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
11727
11748
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
11728
11749
|
# *Amazon S3 User Guide*.
|
11729
11750
|
#
|
@@ -11743,14 +11764,14 @@ module Aws::S3
|
|
11743
11764
|
#
|
11744
11765
|
# </note>
|
11745
11766
|
#
|
11746
|
-
# **S3 on Outposts** - When you use this action with
|
11747
|
-
#
|
11748
|
-
#
|
11767
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
11768
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
11769
|
+
# Outposts hostname takes the form `
|
11749
11770
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
11750
|
-
# When you use this action with S3 on Outposts
|
11751
|
-
#
|
11752
|
-
#
|
11753
|
-
#
|
11771
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
11772
|
+
# must be the Outposts access point ARN or the access point alias. For
|
11773
|
+
# more information about S3 on Outposts, see [What is S3 on
|
11774
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
11754
11775
|
#
|
11755
11776
|
#
|
11756
11777
|
#
|
@@ -11867,8 +11888,8 @@ module Aws::S3
|
|
11867
11888
|
# Specifies the location where the bucket will be created.
|
11868
11889
|
#
|
11869
11890
|
# For directory buckets, the location type is Availability Zone or Local
|
11870
|
-
# Zone. For more information about directory buckets, see [
|
11871
|
-
# buckets][1] in the *Amazon S3 User Guide*.
|
11891
|
+
# Zone. For more information about directory buckets, see [Working with
|
11892
|
+
# directory buckets][1] in the *Amazon S3 User Guide*.
|
11872
11893
|
#
|
11873
11894
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
11874
11895
|
#
|
@@ -12673,9 +12694,9 @@ module Aws::S3
|
|
12673
12694
|
# @return [Integer]
|
12674
12695
|
#
|
12675
12696
|
# @!attribute [rw] checksum_crc32
|
12676
|
-
# The Base64 encoded, 32-bit `
|
12697
|
+
# The Base64 encoded, 32-bit `CRC32` checksum of the part. This
|
12677
12698
|
# checksum is present if the multipart upload request was created with
|
12678
|
-
# the `
|
12699
|
+
# the `CRC32` checksum algorithm. For more information, see [Checking
|
12679
12700
|
# object integrity][1] in the *Amazon S3 User Guide*.
|
12680
12701
|
#
|
12681
12702
|
#
|
@@ -12684,10 +12705,10 @@ module Aws::S3
|
|
12684
12705
|
# @return [String]
|
12685
12706
|
#
|
12686
12707
|
# @!attribute [rw] checksum_crc32c
|
12687
|
-
# The Base64 encoded, 32-bit `
|
12708
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the part. This
|
12688
12709
|
# checksum is present if the multipart upload request was created with
|
12689
|
-
# the `
|
12690
|
-
#
|
12710
|
+
# the `CRC32C` checksum algorithm. For more information, see [Checking
|
12711
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
12691
12712
|
#
|
12692
12713
|
#
|
12693
12714
|
#
|
@@ -12695,11 +12716,11 @@ module Aws::S3
|
|
12695
12716
|
# @return [String]
|
12696
12717
|
#
|
12697
12718
|
# @!attribute [rw] checksum_crc64nvme
|
12698
|
-
# The Base64 encoded, 64-bit `
|
12719
|
+
# The Base64 encoded, 64-bit `CRC64NVME` checksum of the part. This
|
12699
12720
|
# checksum is present if the multipart upload request was created with
|
12700
|
-
# the `
|
12721
|
+
# the `CRC64NVME` checksum algorithm, or if the object was uploaded
|
12701
12722
|
# without a checksum (and Amazon S3 added the default checksum,
|
12702
|
-
# `
|
12723
|
+
# `CRC64NVME`, to the uploaded object). For more information, see
|
12703
12724
|
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
12704
12725
|
#
|
12705
12726
|
#
|
@@ -12708,9 +12729,9 @@ module Aws::S3
|
|
12708
12729
|
# @return [String]
|
12709
12730
|
#
|
12710
12731
|
# @!attribute [rw] checksum_sha1
|
12711
|
-
# The Base64 encoded, 160-bit `
|
12732
|
+
# The Base64 encoded, 160-bit `SHA1` checksum of the part. This
|
12712
12733
|
# checksum is present if the multipart upload request was created with
|
12713
|
-
# the `
|
12734
|
+
# the `SHA1` checksum algorithm. For more information, see [Checking
|
12714
12735
|
# object integrity][1] in the *Amazon S3 User Guide*.
|
12715
12736
|
#
|
12716
12737
|
#
|
@@ -12719,10 +12740,10 @@ module Aws::S3
|
|
12719
12740
|
# @return [String]
|
12720
12741
|
#
|
12721
12742
|
# @!attribute [rw] checksum_sha256
|
12722
|
-
# The Base64 encoded, 256-bit `
|
12743
|
+
# The Base64 encoded, 256-bit `SHA256` checksum of the part. This
|
12723
12744
|
# checksum is present if the multipart upload request was created with
|
12724
|
-
# the `
|
12725
|
-
#
|
12745
|
+
# the `SHA256` checksum algorithm. For more information, see [Checking
|
12746
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
12726
12747
|
#
|
12727
12748
|
#
|
12728
12749
|
#
|
@@ -12985,8 +13006,8 @@ module Aws::S3
|
|
12985
13006
|
# @return [Integer]
|
12986
13007
|
#
|
12987
13008
|
# @!attribute [rw] checksum_crc32
|
12988
|
-
# The Base64 encoded, 32-bit `
|
12989
|
-
# checksum is present if the object was uploaded with the `
|
13009
|
+
# The Base64 encoded, 32-bit `CRC32` checksum of the part. This
|
13010
|
+
# checksum is present if the object was uploaded with the `CRC32`
|
12990
13011
|
# checksum algorithm. For more information, see [Checking object
|
12991
13012
|
# integrity][1] in the *Amazon S3 User Guide*.
|
12992
13013
|
#
|
@@ -12996,8 +13017,8 @@ module Aws::S3
|
|
12996
13017
|
# @return [String]
|
12997
13018
|
#
|
12998
13019
|
# @!attribute [rw] checksum_crc32c
|
12999
|
-
# The Base64 encoded, 32-bit `
|
13000
|
-
# checksum is present if the object was uploaded with the `
|
13020
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the part. This
|
13021
|
+
# checksum is present if the object was uploaded with the `CRC32C`
|
13001
13022
|
# checksum algorithm. For more information, see [Checking object
|
13002
13023
|
# integrity][1] in the *Amazon S3 User Guide*.
|
13003
13024
|
#
|
@@ -13007,11 +13028,11 @@ module Aws::S3
|
|
13007
13028
|
# @return [String]
|
13008
13029
|
#
|
13009
13030
|
# @!attribute [rw] checksum_crc64nvme
|
13010
|
-
# The Base64 encoded, 64-bit `
|
13031
|
+
# The Base64 encoded, 64-bit `CRC64NVME` checksum of the part. This
|
13011
13032
|
# checksum is present if the multipart upload request was created with
|
13012
|
-
# the `
|
13033
|
+
# the `CRC64NVME` checksum algorithm, or if the object was uploaded
|
13013
13034
|
# without a checksum (and Amazon S3 added the default checksum,
|
13014
|
-
# `
|
13035
|
+
# `CRC64NVME`, to the uploaded object). For more information, see
|
13015
13036
|
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
13016
13037
|
#
|
13017
13038
|
#
|
@@ -13020,8 +13041,8 @@ module Aws::S3
|
|
13020
13041
|
# @return [String]
|
13021
13042
|
#
|
13022
13043
|
# @!attribute [rw] checksum_sha1
|
13023
|
-
# The Base64 encoded, 160-bit `
|
13024
|
-
# checksum is present if the object was uploaded with the `
|
13044
|
+
# The Base64 encoded, 160-bit `SHA1` checksum of the part. This
|
13045
|
+
# checksum is present if the object was uploaded with the `SHA1`
|
13025
13046
|
# checksum algorithm. For more information, see [Checking object
|
13026
13047
|
# integrity][1] in the *Amazon S3 User Guide*.
|
13027
13048
|
#
|
@@ -13031,8 +13052,8 @@ module Aws::S3
|
|
13031
13052
|
# @return [String]
|
13032
13053
|
#
|
13033
13054
|
# @!attribute [rw] checksum_sha256
|
13034
|
-
# The Base64 encoded, 256-bit `
|
13035
|
-
# checksum is present if the object was uploaded with the `
|
13055
|
+
# The Base64 encoded, 256-bit `SHA256` checksum of the part. This
|
13056
|
+
# checksum is present if the object was uploaded with the `SHA256`
|
13036
13057
|
# checksum algorithm. For more information, see [Checking object
|
13037
13058
|
# integrity][1] in the *Amazon S3 User Guide*.
|
13038
13059
|
#
|
@@ -13226,7 +13247,7 @@ module Aws::S3
|
|
13226
13247
|
# @return [String]
|
13227
13248
|
#
|
13228
13249
|
# @!attribute [rw] checksum_algorithm
|
13229
|
-
# Indicates the algorithm used to create the checksum for the
|
13250
|
+
# Indicates the algorithm used to create the checksum for the request
|
13230
13251
|
# when you use the SDK. This header will not provide any additional
|
13231
13252
|
# functionality if you don't use the SDK. When you send this header,
|
13232
13253
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -13282,7 +13303,7 @@ module Aws::S3
|
|
13282
13303
|
# @return [String]
|
13283
13304
|
#
|
13284
13305
|
# @!attribute [rw] checksum_algorithm
|
13285
|
-
# Indicates the algorithm used to create the checksum for the
|
13306
|
+
# Indicates the algorithm used to create the checksum for the request
|
13286
13307
|
# when you use the SDK. This header will not provide any additional
|
13287
13308
|
# functionality if you don't use the SDK. When you send this header,
|
13288
13309
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -13408,7 +13429,7 @@ module Aws::S3
|
|
13408
13429
|
# @return [String]
|
13409
13430
|
#
|
13410
13431
|
# @!attribute [rw] checksum_algorithm
|
13411
|
-
# Indicates the algorithm used to create the checksum for the
|
13432
|
+
# Indicates the algorithm used to create the checksum for the request
|
13412
13433
|
# when you use the SDK. This header will not provide any additional
|
13413
13434
|
# functionality if you don't use the SDK. When you send this header,
|
13414
13435
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -13477,7 +13498,7 @@ module Aws::S3
|
|
13477
13498
|
# @return [String]
|
13478
13499
|
#
|
13479
13500
|
# @!attribute [rw] checksum_algorithm
|
13480
|
-
# Indicates the algorithm used to create the checksum for the
|
13501
|
+
# Indicates the algorithm used to create the checksum for the request
|
13481
13502
|
# when you use the SDK. This header will not provide any additional
|
13482
13503
|
# functionality if you don't use the SDK. When you send this header,
|
13483
13504
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -13618,7 +13639,7 @@ module Aws::S3
|
|
13618
13639
|
# @return [String]
|
13619
13640
|
#
|
13620
13641
|
# @!attribute [rw] checksum_algorithm
|
13621
|
-
# Indicates the algorithm used to create the checksum for the
|
13642
|
+
# Indicates the algorithm used to create the checksum for the request
|
13622
13643
|
# when you use the SDK. This header will not provide any additional
|
13623
13644
|
# functionality if you don't use the SDK. When you send this header,
|
13624
13645
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -13695,7 +13716,7 @@ module Aws::S3
|
|
13695
13716
|
# @return [String]
|
13696
13717
|
#
|
13697
13718
|
# @!attribute [rw] checksum_algorithm
|
13698
|
-
# Indicates the algorithm used to create the checksum for the
|
13719
|
+
# Indicates the algorithm used to create the checksum for the request
|
13699
13720
|
# when you use the SDK. This header will not provide any additional
|
13700
13721
|
# functionality if you don't use the SDK. When you send this header,
|
13701
13722
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -13750,7 +13771,7 @@ module Aws::S3
|
|
13750
13771
|
# @return [String]
|
13751
13772
|
#
|
13752
13773
|
# @!attribute [rw] checksum_algorithm
|
13753
|
-
# Indicates the algorithm used to create the checksum for the
|
13774
|
+
# Indicates the algorithm used to create the checksum for the request
|
13754
13775
|
# when you use the SDK. This header will not provide any additional
|
13755
13776
|
# functionality if you don't use the SDK. When you send this header,
|
13756
13777
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -13863,7 +13884,7 @@ module Aws::S3
|
|
13863
13884
|
# @return [String]
|
13864
13885
|
#
|
13865
13886
|
# @!attribute [rw] checksum_algorithm
|
13866
|
-
# Indicates the algorithm used to create the checksum for the
|
13887
|
+
# Indicates the algorithm used to create the checksum for the request
|
13867
13888
|
# when you use the SDK. This header will not provide any additional
|
13868
13889
|
# functionality if you don't use the SDK. When you send this header,
|
13869
13890
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -13970,7 +13991,7 @@ module Aws::S3
|
|
13970
13991
|
# @return [String]
|
13971
13992
|
#
|
13972
13993
|
# @!attribute [rw] checksum_algorithm
|
13973
|
-
# Indicates the algorithm used to create the checksum for the
|
13994
|
+
# Indicates the algorithm used to create the checksum for the request
|
13974
13995
|
# when you use the SDK. This header will not provide any additional
|
13975
13996
|
# functionality if you don't use the SDK. When you send this header,
|
13976
13997
|
# there must be a corresponding `x-amz-checksum-algorithm ` or
|
@@ -13980,15 +14001,15 @@ module Aws::S3
|
|
13980
14001
|
# For the `x-amz-checksum-algorithm ` header, replace ` algorithm `
|
13981
14002
|
# with the supported algorithm from the following list:
|
13982
14003
|
#
|
13983
|
-
# * `
|
14004
|
+
# * `CRC32`
|
13984
14005
|
#
|
13985
|
-
# * `
|
14006
|
+
# * `CRC32C`
|
13986
14007
|
#
|
13987
|
-
# * `
|
14008
|
+
# * `CRC64NVME`
|
13988
14009
|
#
|
13989
|
-
# * `
|
14010
|
+
# * `SHA1`
|
13990
14011
|
#
|
13991
|
-
# * `
|
14012
|
+
# * `SHA256`
|
13992
14013
|
#
|
13993
14014
|
# For more information, see [Checking object integrity][1] in the
|
13994
14015
|
# *Amazon S3 User Guide*.
|
@@ -14071,7 +14092,7 @@ module Aws::S3
|
|
14071
14092
|
# @return [String]
|
14072
14093
|
#
|
14073
14094
|
# @!attribute [rw] checksum_algorithm
|
14074
|
-
# Indicates the algorithm used to create the checksum for the
|
14095
|
+
# Indicates the algorithm used to create the checksum for the request
|
14075
14096
|
# when you use the SDK. This header will not provide any additional
|
14076
14097
|
# functionality if you don't use the SDK. When you send this header,
|
14077
14098
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -14136,7 +14157,7 @@ module Aws::S3
|
|
14136
14157
|
# @return [String]
|
14137
14158
|
#
|
14138
14159
|
# @!attribute [rw] checksum_algorithm
|
14139
|
-
# Indicates the algorithm used to create the checksum for the
|
14160
|
+
# Indicates the algorithm used to create the checksum for the request
|
14140
14161
|
# when you use the SDK. This header will not provide any additional
|
14141
14162
|
# functionality if you don't use the SDK. When you send this header,
|
14142
14163
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -14195,7 +14216,7 @@ module Aws::S3
|
|
14195
14216
|
# @return [String]
|
14196
14217
|
#
|
14197
14218
|
# @!attribute [rw] checksum_algorithm
|
14198
|
-
# Indicates the algorithm used to create the checksum for the
|
14219
|
+
# Indicates the algorithm used to create the checksum for the request
|
14199
14220
|
# when you use the SDK. This header will not provide any additional
|
14200
14221
|
# functionality if you don't use the SDK. When you send this header,
|
14201
14222
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -14254,7 +14275,7 @@ module Aws::S3
|
|
14254
14275
|
# @return [String]
|
14255
14276
|
#
|
14256
14277
|
# @!attribute [rw] checksum_algorithm
|
14257
|
-
# Indicates the algorithm used to create the checksum for the
|
14278
|
+
# Indicates the algorithm used to create the checksum for the request
|
14258
14279
|
# when you use the SDK. This header will not provide any additional
|
14259
14280
|
# functionality if you don't use the SDK. When you send this header,
|
14260
14281
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -14320,7 +14341,7 @@ module Aws::S3
|
|
14320
14341
|
# @return [String]
|
14321
14342
|
#
|
14322
14343
|
# @!attribute [rw] checksum_algorithm
|
14323
|
-
# Indicates the algorithm used to create the checksum for the
|
14344
|
+
# Indicates the algorithm used to create the checksum for the request
|
14324
14345
|
# when you use the SDK. This header will not provide any additional
|
14325
14346
|
# functionality if you don't use the SDK. When you send this header,
|
14326
14347
|
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
@@ -14405,14 +14426,14 @@ module Aws::S3
|
|
14405
14426
|
# bucket name. For more information about access point ARNs, see
|
14406
14427
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
14407
14428
|
#
|
14408
|
-
# **S3 on Outposts** - When you use this action with
|
14409
|
-
#
|
14410
|
-
#
|
14429
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
14430
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
14431
|
+
# Outposts hostname takes the form `
|
14411
14432
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
14412
|
-
# When you use this action with S3 on Outposts
|
14413
|
-
#
|
14414
|
-
#
|
14415
|
-
#
|
14433
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
14434
|
+
# must be the Outposts access point ARN or the access point alias. For
|
14435
|
+
# more information about S3 on Outposts, see [What is S3 on
|
14436
|
+
# Outposts?][2] in the *Amazon S3 User Guide*.
|
14416
14437
|
#
|
14417
14438
|
#
|
14418
14439
|
#
|
@@ -14784,7 +14805,7 @@ module Aws::S3
|
|
14784
14805
|
# @return [String]
|
14785
14806
|
#
|
14786
14807
|
# @!attribute [rw] checksum_crc32
|
14787
|
-
# The Base64 encoded, 32-bit `
|
14808
|
+
# The Base64 encoded, 32-bit `CRC32 checksum` of the object. This
|
14788
14809
|
# checksum is only be present if the checksum was uploaded with the
|
14789
14810
|
# object. When you use an API operation on an object that was uploaded
|
14790
14811
|
# using multipart uploads, this value may not be a direct checksum
|
@@ -14799,7 +14820,7 @@ module Aws::S3
|
|
14799
14820
|
# @return [String]
|
14800
14821
|
#
|
14801
14822
|
# @!attribute [rw] checksum_crc32c
|
14802
|
-
# The Base64 encoded, 32-bit `
|
14823
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the object. This
|
14803
14824
|
# checksum is only present if the checksum was uploaded with the
|
14804
14825
|
# object. When you use an API operation on an object that was uploaded
|
14805
14826
|
# using multipart uploads, this value may not be a direct checksum
|
@@ -14814,10 +14835,10 @@ module Aws::S3
|
|
14814
14835
|
# @return [String]
|
14815
14836
|
#
|
14816
14837
|
# @!attribute [rw] checksum_crc64nvme
|
14817
|
-
# The Base64 encoded, 64-bit `
|
14818
|
-
# header is present if the object was uploaded with the `
|
14838
|
+
# The Base64 encoded, 64-bit `CRC64NVME` checksum of the object. This
|
14839
|
+
# header is present if the object was uploaded with the `CRC64NVME`
|
14819
14840
|
# checksum algorithm, or if it was uploaded without a checksum (and
|
14820
|
-
# Amazon S3 added the default checksum, `
|
14841
|
+
# Amazon S3 added the default checksum, `CRC64NVME`, to the uploaded
|
14821
14842
|
# object). For more information about how checksums are calculated
|
14822
14843
|
# with multipart uploads, see [Checking object integrity in the Amazon
|
14823
14844
|
# S3 User Guide][1].
|
@@ -14828,7 +14849,7 @@ module Aws::S3
|
|
14828
14849
|
# @return [String]
|
14829
14850
|
#
|
14830
14851
|
# @!attribute [rw] checksum_sha1
|
14831
|
-
# The Base64 encoded, 160-bit `
|
14852
|
+
# The Base64 encoded, 160-bit `SHA1` digest of the object. This will
|
14832
14853
|
# only be present if the object was uploaded with the object. When you
|
14833
14854
|
# use the API operation on an object that was uploaded using multipart
|
14834
14855
|
# uploads, this value may not be a direct checksum value of the full
|
@@ -14843,14 +14864,14 @@ module Aws::S3
|
|
14843
14864
|
# @return [String]
|
14844
14865
|
#
|
14845
14866
|
# @!attribute [rw] checksum_sha256
|
14846
|
-
# The Base64 encoded, 256-bit `
|
14847
|
-
#
|
14848
|
-
#
|
14849
|
-
#
|
14850
|
-
#
|
14851
|
-
#
|
14852
|
-
#
|
14853
|
-
#
|
14867
|
+
# The Base64 encoded, 256-bit `SHA256` digest of the object. This will
|
14868
|
+
# only be present if the object was uploaded with the object. When you
|
14869
|
+
# use an API operation on an object that was uploaded using multipart
|
14870
|
+
# uploads, this value may not be a direct checksum value of the full
|
14871
|
+
# object. Instead, it's a calculation based on the checksum values of
|
14872
|
+
# each individual part. For more information about how checksums are
|
14873
|
+
# calculated with multipart uploads, see [ Checking object
|
14874
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
14854
14875
|
#
|
14855
14876
|
#
|
14856
14877
|
#
|
@@ -15036,7 +15057,7 @@ module Aws::S3
|
|
15036
15057
|
# requests are not supported. Directory bucket names must be unique in
|
15037
15058
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
15038
15059
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
15039
|
-
#
|
15060
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
15040
15061
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
15041
15062
|
# *Amazon S3 User Guide*.
|
15042
15063
|
#
|
@@ -15056,14 +15077,14 @@ module Aws::S3
|
|
15056
15077
|
#
|
15057
15078
|
# </note>
|
15058
15079
|
#
|
15059
|
-
# **S3 on Outposts** - When you use this action with
|
15060
|
-
#
|
15061
|
-
#
|
15080
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
15081
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
15082
|
+
# Outposts hostname takes the form `
|
15062
15083
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
15063
|
-
# When you use this action with S3 on Outposts
|
15064
|
-
#
|
15065
|
-
#
|
15066
|
-
#
|
15084
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
15085
|
+
# must be the Outposts access point ARN or the access point alias. For
|
15086
|
+
# more information about S3 on Outposts, see [What is S3 on
|
15087
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
15067
15088
|
#
|
15068
15089
|
#
|
15069
15090
|
#
|
@@ -15167,15 +15188,15 @@ module Aws::S3
|
|
15167
15188
|
# For the `x-amz-checksum-algorithm ` header, replace ` algorithm `
|
15168
15189
|
# with the supported algorithm from the following list:
|
15169
15190
|
#
|
15170
|
-
# * `
|
15191
|
+
# * `CRC32`
|
15171
15192
|
#
|
15172
|
-
# * `
|
15193
|
+
# * `CRC32C`
|
15173
15194
|
#
|
15174
|
-
# * `
|
15195
|
+
# * `CRC64NVME`
|
15175
15196
|
#
|
15176
|
-
# * `
|
15197
|
+
# * `SHA1`
|
15177
15198
|
#
|
15178
|
-
# * `
|
15199
|
+
# * `SHA256`
|
15179
15200
|
#
|
15180
15201
|
# For more information, see [Checking object integrity][1] in the
|
15181
15202
|
# *Amazon S3 User Guide*.
|
@@ -15206,9 +15227,9 @@ module Aws::S3
|
|
15206
15227
|
# @!attribute [rw] checksum_crc32
|
15207
15228
|
# This header can be used as a data integrity check to verify that the
|
15208
15229
|
# data received is the same data that was originally sent. This header
|
15209
|
-
# specifies the Base64 encoded, 32-bit `
|
15210
|
-
#
|
15211
|
-
#
|
15230
|
+
# specifies the Base64 encoded, 32-bit `CRC32` checksum of the object.
|
15231
|
+
# For more information, see [Checking object integrity][1] in the
|
15232
|
+
# *Amazon S3 User Guide*.
|
15212
15233
|
#
|
15213
15234
|
#
|
15214
15235
|
#
|
@@ -15218,7 +15239,7 @@ module Aws::S3
|
|
15218
15239
|
# @!attribute [rw] checksum_crc32c
|
15219
15240
|
# This header can be used as a data integrity check to verify that the
|
15220
15241
|
# data received is the same data that was originally sent. This header
|
15221
|
-
# specifies the Base64 encoded, 32-bit `
|
15242
|
+
# specifies the Base64 encoded, 32-bit `CRC32C` checksum of the
|
15222
15243
|
# object. For more information, see [Checking object integrity][1] in
|
15223
15244
|
# the *Amazon S3 User Guide*.
|
15224
15245
|
#
|
@@ -15230,8 +15251,8 @@ module Aws::S3
|
|
15230
15251
|
# @!attribute [rw] checksum_crc64nvme
|
15231
15252
|
# This header can be used as a data integrity check to verify that the
|
15232
15253
|
# data received is the same data that was originally sent. This header
|
15233
|
-
# specifies the Base64 encoded, 64-bit `
|
15234
|
-
# object. The `
|
15254
|
+
# specifies the Base64 encoded, 64-bit `CRC64NVME` checksum of the
|
15255
|
+
# object. The `CRC64NVME` checksum is always a full object checksum.
|
15235
15256
|
# For more information, see [Checking object integrity in the Amazon
|
15236
15257
|
# S3 User Guide][1].
|
15237
15258
|
#
|
@@ -15243,7 +15264,7 @@ module Aws::S3
|
|
15243
15264
|
# @!attribute [rw] checksum_sha1
|
15244
15265
|
# This header can be used as a data integrity check to verify that the
|
15245
15266
|
# data received is the same data that was originally sent. This header
|
15246
|
-
# specifies the Base64 encoded, 160-bit `
|
15267
|
+
# specifies the Base64 encoded, 160-bit `SHA1` digest of the object.
|
15247
15268
|
# For more information, see [Checking object integrity][1] in the
|
15248
15269
|
# *Amazon S3 User Guide*.
|
15249
15270
|
#
|
@@ -15255,9 +15276,9 @@ module Aws::S3
|
|
15255
15276
|
# @!attribute [rw] checksum_sha256
|
15256
15277
|
# This header can be used as a data integrity check to verify that the
|
15257
15278
|
# data received is the same data that was originally sent. This header
|
15258
|
-
# specifies the Base64 encoded, 256-bit `
|
15259
|
-
#
|
15260
|
-
#
|
15279
|
+
# specifies the Base64 encoded, 256-bit `SHA256` digest of the object.
|
15280
|
+
# For more information, see [Checking object integrity][1] in the
|
15281
|
+
# *Amazon S3 User Guide*.
|
15261
15282
|
#
|
15262
15283
|
#
|
15263
15284
|
#
|
@@ -15540,21 +15561,17 @@ module Aws::S3
|
|
15540
15561
|
# `x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
|
15541
15562
|
# Amazon Web Services managed key (`aws/s3`) to protect the data.
|
15542
15563
|
#
|
15543
|
-
# **Directory buckets** -
|
15544
|
-
# `x-amz-server-side-encryption`
|
15545
|
-
# x-amz-server-side-encryption-aws-kms-key-id`
|
15546
|
-
#
|
15547
|
-
#
|
15548
|
-
#
|
15549
|
-
#
|
15550
|
-
#
|
15551
|
-
#
|
15552
|
-
#
|
15553
|
-
#
|
15554
|
-
# of the KMS key isn't supported. Your SSE-KMS configuration can only
|
15555
|
-
# support 1 [customer managed key][1] per directory bucket for the
|
15556
|
-
# lifetime of the bucket. The [Amazon Web Services managed key][2]
|
15557
|
-
# (`aws/s3`) isn't supported.
|
15564
|
+
# **Directory buckets** - To encrypt data using SSE-KMS, it's
|
15565
|
+
# recommended to specify the `x-amz-server-side-encryption` header to
|
15566
|
+
# `aws:kms`. Then, the `x-amz-server-side-encryption-aws-kms-key-id`
|
15567
|
+
# header implicitly uses the bucket's default KMS customer managed
|
15568
|
+
# key ID. If you want to explicitly set the `
|
15569
|
+
# x-amz-server-side-encryption-aws-kms-key-id` header, it must match
|
15570
|
+
# the bucket's default customer managed key (using key ID or ARN, not
|
15571
|
+
# alias). Your SSE-KMS configuration can only support 1 [customer
|
15572
|
+
# managed key][1] per directory bucket's lifetime. The [Amazon Web
|
15573
|
+
# Services managed key][2] (`aws/s3`) isn't supported. Incorrect key
|
15574
|
+
# specification results in an HTTP `400 Bad Request` error.
|
15558
15575
|
#
|
15559
15576
|
#
|
15560
15577
|
#
|
@@ -15875,14 +15892,14 @@ module Aws::S3
|
|
15875
15892
|
# bucket name. For more information about access point ARNs, see
|
15876
15893
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
15877
15894
|
#
|
15878
|
-
# **S3 on Outposts** - When you use this action with
|
15879
|
-
#
|
15880
|
-
#
|
15895
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
15896
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
15897
|
+
# Outposts hostname takes the form `
|
15881
15898
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
15882
|
-
# When you use this action with S3 on Outposts
|
15883
|
-
#
|
15884
|
-
#
|
15885
|
-
#
|
15899
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
15900
|
+
# must be the Outposts access point ARN or the access point alias. For
|
15901
|
+
# more information about S3 on Outposts, see [What is S3 on
|
15902
|
+
# Outposts?][2] in the *Amazon S3 User Guide*.
|
15886
15903
|
#
|
15887
15904
|
#
|
15888
15905
|
#
|
@@ -16569,14 +16586,14 @@ module Aws::S3
|
|
16569
16586
|
# bucket name. For more information about access point ARNs, see
|
16570
16587
|
# [Using access points][1] in the *Amazon S3 User Guide*.
|
16571
16588
|
#
|
16572
|
-
# **S3 on Outposts** - When you use this action with
|
16573
|
-
#
|
16574
|
-
#
|
16589
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
16590
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
16591
|
+
# Outposts hostname takes the form `
|
16575
16592
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
16576
|
-
# When you use this action with S3 on Outposts
|
16577
|
-
#
|
16578
|
-
#
|
16579
|
-
#
|
16593
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
16594
|
+
# must be the Outposts access point ARN or the access point alias. For
|
16595
|
+
# more information about S3 on Outposts, see [What is S3 on
|
16596
|
+
# Outposts?][2] in the *Amazon S3 User Guide*.
|
16580
16597
|
#
|
16581
16598
|
#
|
16582
16599
|
#
|
@@ -17296,9 +17313,8 @@ module Aws::S3
|
|
17296
17313
|
# to a bucket. By default, Amazon S3 uses this KMS key for SSE-KMS.
|
17297
17314
|
#
|
17298
17315
|
# * **Directory buckets** - Your SSE-KMS configuration can only support
|
17299
|
-
# 1 [customer managed key][2] per directory bucket
|
17300
|
-
#
|
17301
|
-
# isn't supported.
|
17316
|
+
# 1 [customer managed key][2] per directory bucket's lifetime. The
|
17317
|
+
# [Amazon Web Services managed key][3] (`aws/s3`) isn't supported.
|
17302
17318
|
#
|
17303
17319
|
# * **Directory buckets** - For directory buckets, there are only two
|
17304
17320
|
# supported options for server-side encryption: SSE-S3 and SSE-KMS.
|
@@ -17876,8 +17892,19 @@ module Aws::S3
|
|
17876
17892
|
#
|
17877
17893
|
# @!attribute [rw] days
|
17878
17894
|
# Indicates the number of days after creation when objects are
|
17879
|
-
# transitioned to the specified storage class.
|
17880
|
-
#
|
17895
|
+
# transitioned to the specified storage class. If the specified
|
17896
|
+
# storage class is `INTELLIGENT_TIERING`, `GLACIER_IR`, `GLACIER`, or
|
17897
|
+
# `DEEP_ARCHIVE`, valid values are `0` or positive integers. If the
|
17898
|
+
# specified storage class is `STANDARD_IA` or `ONEZONE_IA`, valid
|
17899
|
+
# values are positive integers greater than `30`. Be aware that some
|
17900
|
+
# storage classes have a minimum storage duration and that you're
|
17901
|
+
# charged for transitioning objects before their minimum storage
|
17902
|
+
# duration. For more information, see [ Constraints and considerations
|
17903
|
+
# for transitions][1] in the *Amazon S3 User Guide*.
|
17904
|
+
#
|
17905
|
+
#
|
17906
|
+
#
|
17907
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/lifecycle-transition-general-considerations.html#lifecycle-configuration-constraints
|
17881
17908
|
# @return [Integer]
|
17882
17909
|
#
|
17883
17910
|
# @!attribute [rw] storage_class
|
@@ -17978,7 +18005,7 @@ module Aws::S3
|
|
17978
18005
|
# requests are not supported. Directory bucket names must be unique in
|
17979
18006
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
17980
18007
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
17981
|
-
#
|
18008
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
17982
18009
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
17983
18010
|
# *Amazon S3 User Guide*.
|
17984
18011
|
#
|
@@ -18006,14 +18033,14 @@ module Aws::S3
|
|
18006
18033
|
#
|
18007
18034
|
# </note>
|
18008
18035
|
#
|
18009
|
-
# **S3 on Outposts** - When you use this action with
|
18010
|
-
#
|
18011
|
-
#
|
18036
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
18037
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
18038
|
+
# Outposts hostname takes the form `
|
18012
18039
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
18013
|
-
# When you use this action with S3 on Outposts
|
18014
|
-
#
|
18015
|
-
#
|
18016
|
-
#
|
18040
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
18041
|
+
# must be the Outposts access point ARN or the access point alias. For
|
18042
|
+
# more information about S3 on Outposts, see [What is S3 on
|
18043
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
18017
18044
|
#
|
18018
18045
|
#
|
18019
18046
|
#
|
@@ -18308,7 +18335,7 @@ module Aws::S3
|
|
18308
18335
|
# @return [String]
|
18309
18336
|
#
|
18310
18337
|
# @!attribute [rw] checksum_crc32
|
18311
|
-
# The Base64 encoded, 32-bit `
|
18338
|
+
# The Base64 encoded, 32-bit `CRC32 checksum` of the object. This
|
18312
18339
|
# checksum is only be present if the checksum was uploaded with the
|
18313
18340
|
# object. When you use an API operation on an object that was uploaded
|
18314
18341
|
# using multipart uploads, this value may not be a direct checksum
|
@@ -18323,7 +18350,7 @@ module Aws::S3
|
|
18323
18350
|
# @return [String]
|
18324
18351
|
#
|
18325
18352
|
# @!attribute [rw] checksum_crc32c
|
18326
|
-
# The Base64 encoded, 32-bit `
|
18353
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the object. This
|
18327
18354
|
# checksum is only present if the checksum was uploaded with the
|
18328
18355
|
# object. When you use an API operation on an object that was uploaded
|
18329
18356
|
# using multipart uploads, this value may not be a direct checksum
|
@@ -18340,7 +18367,7 @@ module Aws::S3
|
|
18340
18367
|
# @!attribute [rw] checksum_crc64nvme
|
18341
18368
|
# This header can be used as a data integrity check to verify that the
|
18342
18369
|
# data received is the same data that was originally sent. This header
|
18343
|
-
# specifies the Base64 encoded, 64-bit `
|
18370
|
+
# specifies the Base64 encoded, 64-bit `CRC64NVME` checksum of the
|
18344
18371
|
# part. For more information, see [Checking object integrity][1] in
|
18345
18372
|
# the *Amazon S3 User Guide*.
|
18346
18373
|
#
|
@@ -18350,7 +18377,7 @@ module Aws::S3
|
|
18350
18377
|
# @return [String]
|
18351
18378
|
#
|
18352
18379
|
# @!attribute [rw] checksum_sha1
|
18353
|
-
# The Base64 encoded, 160-bit `
|
18380
|
+
# The Base64 encoded, 160-bit `SHA1` digest of the object. This will
|
18354
18381
|
# only be present if the object was uploaded with the object. When you
|
18355
18382
|
# use the API operation on an object that was uploaded using multipart
|
18356
18383
|
# uploads, this value may not be a direct checksum value of the full
|
@@ -18365,14 +18392,14 @@ module Aws::S3
|
|
18365
18392
|
# @return [String]
|
18366
18393
|
#
|
18367
18394
|
# @!attribute [rw] checksum_sha256
|
18368
|
-
# The Base64 encoded, 256-bit `
|
18369
|
-
#
|
18370
|
-
#
|
18371
|
-
#
|
18372
|
-
#
|
18373
|
-
#
|
18374
|
-
#
|
18375
|
-
#
|
18395
|
+
# The Base64 encoded, 256-bit `SHA256` digest of the object. This will
|
18396
|
+
# only be present if the object was uploaded with the object. When you
|
18397
|
+
# use an API operation on an object that was uploaded using multipart
|
18398
|
+
# uploads, this value may not be a direct checksum value of the full
|
18399
|
+
# object. Instead, it's a calculation based on the checksum values of
|
18400
|
+
# each individual part. For more information about how checksums are
|
18401
|
+
# calculated with multipart uploads, see [ Checking object
|
18402
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
18376
18403
|
#
|
18377
18404
|
#
|
18378
18405
|
#
|
@@ -18452,7 +18479,7 @@ module Aws::S3
|
|
18452
18479
|
# requests are not supported. Directory bucket names must be unique in
|
18453
18480
|
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
18454
18481
|
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
18455
|
-
#
|
18482
|
+
# amzn-s3-demo-bucket--usw2-az1--x-s3`). For information about bucket
|
18456
18483
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
18457
18484
|
# *Amazon S3 User Guide*.
|
18458
18485
|
#
|
@@ -18472,14 +18499,14 @@ module Aws::S3
|
|
18472
18499
|
#
|
18473
18500
|
# </note>
|
18474
18501
|
#
|
18475
|
-
# **S3 on Outposts** - When you use this action with
|
18476
|
-
#
|
18477
|
-
#
|
18502
|
+
# **S3 on Outposts** - When you use this action with S3 on Outposts,
|
18503
|
+
# you must direct requests to the S3 on Outposts hostname. The S3 on
|
18504
|
+
# Outposts hostname takes the form `
|
18478
18505
|
# AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com`.
|
18479
|
-
# When you use this action with S3 on Outposts
|
18480
|
-
#
|
18481
|
-
#
|
18482
|
-
#
|
18506
|
+
# When you use this action with S3 on Outposts, the destination bucket
|
18507
|
+
# must be the Outposts access point ARN or the access point alias. For
|
18508
|
+
# more information about S3 on Outposts, see [What is S3 on
|
18509
|
+
# Outposts?][3] in the *Amazon S3 User Guide*.
|
18483
18510
|
#
|
18484
18511
|
#
|
18485
18512
|
#
|
@@ -18526,9 +18553,9 @@ module Aws::S3
|
|
18526
18553
|
# @!attribute [rw] checksum_crc32
|
18527
18554
|
# This header can be used as a data integrity check to verify that the
|
18528
18555
|
# data received is the same data that was originally sent. This header
|
18529
|
-
# specifies the Base64 encoded, 32-bit `
|
18530
|
-
#
|
18531
|
-
#
|
18556
|
+
# specifies the Base64 encoded, 32-bit `CRC32` checksum of the object.
|
18557
|
+
# For more information, see [Checking object integrity][1] in the
|
18558
|
+
# *Amazon S3 User Guide*.
|
18532
18559
|
#
|
18533
18560
|
#
|
18534
18561
|
#
|
@@ -18538,7 +18565,7 @@ module Aws::S3
|
|
18538
18565
|
# @!attribute [rw] checksum_crc32c
|
18539
18566
|
# This header can be used as a data integrity check to verify that the
|
18540
18567
|
# data received is the same data that was originally sent. This header
|
18541
|
-
# specifies the Base64 encoded, 32-bit `
|
18568
|
+
# specifies the Base64 encoded, 32-bit `CRC32C` checksum of the
|
18542
18569
|
# object. For more information, see [Checking object integrity][1] in
|
18543
18570
|
# the *Amazon S3 User Guide*.
|
18544
18571
|
#
|
@@ -18550,7 +18577,7 @@ module Aws::S3
|
|
18550
18577
|
# @!attribute [rw] checksum_crc64nvme
|
18551
18578
|
# This header can be used as a data integrity check to verify that the
|
18552
18579
|
# data received is the same data that was originally sent. This header
|
18553
|
-
# specifies the Base64 encoded, 64-bit `
|
18580
|
+
# specifies the Base64 encoded, 64-bit `CRC64NVME` checksum of the
|
18554
18581
|
# part. For more information, see [Checking object integrity][1] in
|
18555
18582
|
# the *Amazon S3 User Guide*.
|
18556
18583
|
#
|
@@ -18562,7 +18589,7 @@ module Aws::S3
|
|
18562
18589
|
# @!attribute [rw] checksum_sha1
|
18563
18590
|
# This header can be used as a data integrity check to verify that the
|
18564
18591
|
# data received is the same data that was originally sent. This header
|
18565
|
-
# specifies the Base64 encoded, 160-bit `
|
18592
|
+
# specifies the Base64 encoded, 160-bit `SHA1` digest of the object.
|
18566
18593
|
# For more information, see [Checking object integrity][1] in the
|
18567
18594
|
# *Amazon S3 User Guide*.
|
18568
18595
|
#
|
@@ -18574,9 +18601,9 @@ module Aws::S3
|
|
18574
18601
|
# @!attribute [rw] checksum_sha256
|
18575
18602
|
# This header can be used as a data integrity check to verify that the
|
18576
18603
|
# data received is the same data that was originally sent. This header
|
18577
|
-
# specifies the Base64 encoded, 256-bit `
|
18578
|
-
#
|
18579
|
-
#
|
18604
|
+
# specifies the Base64 encoded, 256-bit `SHA256` digest of the object.
|
18605
|
+
# For more information, see [Checking object integrity][1] in the
|
18606
|
+
# *Amazon S3 User Guide*.
|
18580
18607
|
#
|
18581
18608
|
#
|
18582
18609
|
#
|
@@ -18841,7 +18868,7 @@ module Aws::S3
|
|
18841
18868
|
# @!attribute [rw] checksum_crc32
|
18842
18869
|
# This header can be used as a data integrity check to verify that the
|
18843
18870
|
# data received is the same data that was originally sent. This
|
18844
|
-
# specifies the Base64 encoded, 32-bit `
|
18871
|
+
# specifies the Base64 encoded, 32-bit `CRC32` checksum of the object
|
18845
18872
|
# returned by the Object Lambda function. This may not match the
|
18846
18873
|
# checksum for the object stored in Amazon S3. Amazon S3 will perform
|
18847
18874
|
# validation of the checksum values only when the original `GetObject`
|
@@ -18862,13 +18889,13 @@ module Aws::S3
|
|
18862
18889
|
# @!attribute [rw] checksum_crc32c
|
18863
18890
|
# This header can be used as a data integrity check to verify that the
|
18864
18891
|
# data received is the same data that was originally sent. This
|
18865
|
-
# specifies the Base64 encoded, 32-bit `
|
18866
|
-
#
|
18867
|
-
#
|
18868
|
-
#
|
18869
|
-
#
|
18870
|
-
#
|
18871
|
-
#
|
18892
|
+
# specifies the Base64 encoded, 32-bit `CRC32C` checksum of the object
|
18893
|
+
# returned by the Object Lambda function. This may not match the
|
18894
|
+
# checksum for the object stored in Amazon S3. Amazon S3 will perform
|
18895
|
+
# validation of the checksum values only when the original `GetObject`
|
18896
|
+
# request required checksum validation. For more information about
|
18897
|
+
# checksums, see [Checking object integrity][1] in the *Amazon S3 User
|
18898
|
+
# Guide*.
|
18872
18899
|
#
|
18873
18900
|
# Only one checksum header can be specified at a time. If you supply
|
18874
18901
|
# multiple checksum headers, this request will fail.
|
@@ -18881,7 +18908,7 @@ module Aws::S3
|
|
18881
18908
|
# @!attribute [rw] checksum_crc64nvme
|
18882
18909
|
# This header can be used as a data integrity check to verify that the
|
18883
18910
|
# data received is the same data that was originally sent. This header
|
18884
|
-
# specifies the Base64 encoded, 64-bit `
|
18911
|
+
# specifies the Base64 encoded, 64-bit `CRC64NVME` checksum of the
|
18885
18912
|
# part. For more information, see [Checking object integrity][1] in
|
18886
18913
|
# the *Amazon S3 User Guide*.
|
18887
18914
|
#
|
@@ -18893,7 +18920,7 @@ module Aws::S3
|
|
18893
18920
|
# @!attribute [rw] checksum_sha1
|
18894
18921
|
# This header can be used as a data integrity check to verify that the
|
18895
18922
|
# data received is the same data that was originally sent. This
|
18896
|
-
# specifies the Base64 encoded, 160-bit `
|
18923
|
+
# specifies the Base64 encoded, 160-bit `SHA1` digest of the object
|
18897
18924
|
# returned by the Object Lambda function. This may not match the
|
18898
18925
|
# checksum for the object stored in Amazon S3. Amazon S3 will perform
|
18899
18926
|
# validation of the checksum values only when the original `GetObject`
|
@@ -18912,7 +18939,7 @@ module Aws::S3
|
|
18912
18939
|
# @!attribute [rw] checksum_sha256
|
18913
18940
|
# This header can be used as a data integrity check to verify that the
|
18914
18941
|
# data received is the same data that was originally sent. This
|
18915
|
-
# specifies the Base64 encoded, 256-bit `
|
18942
|
+
# specifies the Base64 encoded, 256-bit `SHA256` digest of the object
|
18916
18943
|
# returned by the Object Lambda function. This may not match the
|
18917
18944
|
# checksum for the object stored in Amazon S3. Amazon S3 will perform
|
18918
18945
|
# validation of the checksum values only when the original `GetObject`
|
@@ -18930,7 +18957,12 @@ module Aws::S3
|
|
18930
18957
|
#
|
18931
18958
|
# @!attribute [rw] delete_marker
|
18932
18959
|
# Specifies whether an object stored in Amazon S3 is (`true`) or is
|
18933
|
-
# not (`false`) a delete marker.
|
18960
|
+
# not (`false`) a delete marker. To learn more about delete markers,
|
18961
|
+
# see [Working with delete markers][1].
|
18962
|
+
#
|
18963
|
+
#
|
18964
|
+
#
|
18965
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeleteMarker.html
|
18934
18966
|
# @return [Boolean]
|
18935
18967
|
#
|
18936
18968
|
# @!attribute [rw] etag
|