aws-sdk-s3 1.174.0 → 1.179.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 +32 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +40 -26
- data/lib/aws-sdk-s3/bucket_acl.rb +5 -4
- data/lib/aws-sdk-s3/bucket_cors.rb +5 -4
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +1 -1
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +2 -2
- data/lib/aws-sdk-s3/bucket_logging.rb +1 -1
- data/lib/aws-sdk-s3/bucket_policy.rb +9 -8
- data/lib/aws-sdk-s3/bucket_request_payment.rb +2 -2
- data/lib/aws-sdk-s3/bucket_tagging.rb +2 -2
- data/lib/aws-sdk-s3/bucket_versioning.rb +6 -6
- data/lib/aws-sdk-s3/bucket_website.rb +2 -2
- data/lib/aws-sdk-s3/client.rb +1409 -867
- data/lib/aws-sdk-s3/client_api.rb +128 -2
- data/lib/aws-sdk-s3/endpoint_provider.rb +36 -0
- data/lib/aws-sdk-s3/endpoints.rb +42 -0
- data/lib/aws-sdk-s3/file_downloader.rb +4 -21
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
- data/lib/aws-sdk-s3/multipart_upload.rb +48 -6
- data/lib/aws-sdk-s3/multipart_upload_part.rb +52 -36
- data/lib/aws-sdk-s3/object.rb +111 -59
- data/lib/aws-sdk-s3/object_acl.rb +4 -4
- data/lib/aws-sdk-s3/object_summary.rb +63 -28
- data/lib/aws-sdk-s3/object_version.rb +21 -8
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
- data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
- data/lib/aws-sdk-s3/presigner.rb +5 -5
- data/lib/aws-sdk-s3/resource.rb +9 -8
- data/lib/aws-sdk-s3/types.rb +1264 -528
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +5 -4
- data/sig/bucket_acl.rbs +1 -1
- data/sig/bucket_cors.rbs +1 -1
- data/sig/bucket_lifecycle.rbs +1 -1
- data/sig/bucket_lifecycle_configuration.rbs +1 -1
- data/sig/bucket_logging.rbs +1 -1
- data/sig/bucket_policy.rbs +1 -1
- data/sig/bucket_request_payment.rbs +1 -1
- data/sig/bucket_tagging.rbs +1 -1
- data/sig/bucket_versioning.rbs +3 -3
- data/sig/bucket_website.rbs +1 -1
- data/sig/client.rbs +85 -31
- data/sig/multipart_upload.rbs +8 -1
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +13 -5
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +11 -6
- data/sig/object_version.rbs +5 -2
- data/sig/resource.rbs +4 -2
- data/sig/types.rbs +126 -34
- metadata +5 -5
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -55,10 +55,10 @@ module Aws::S3
|
|
55
55
|
#
|
56
56
|
# **Directory buckets** - When you use this operation with a directory
|
57
57
|
# bucket, you must use virtual-hosted-style requests in the format `
|
58
|
-
#
|
58
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
59
59
|
# requests are not supported. Directory bucket names must be unique in
|
60
|
-
# the chosen Availability Zone. Bucket names must
|
61
|
-
#
|
60
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
61
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
62
62
|
# DOC-EXAMPLE-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*.
|
@@ -406,8 +406,8 @@ module Aws::S3
|
|
406
406
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
|
407
407
|
#
|
408
408
|
# @!attribute [rw] data_redundancy
|
409
|
-
# The number of Availability Zone that's used
|
410
|
-
# bucket.
|
409
|
+
# The number of Zone (Availability Zone or Local Zone) that's used
|
410
|
+
# for redundancy for the bucket.
|
411
411
|
# @return [String]
|
412
412
|
#
|
413
413
|
# @!attribute [rw] type
|
@@ -655,14 +655,14 @@ 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
|
659
|
-
# only be present if
|
660
|
-
# API operation on an object that was uploaded
|
661
|
-
# uploads, this value may not be a direct checksum
|
662
|
-
# object. Instead, it's a calculation based on the
|
663
|
-
# each individual part. For more information about
|
664
|
-
# calculated with multipart uploads, see [ Checking
|
665
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
658
|
+
# The Base64 encoded, 32-bit `CRC-32 checksum` of the object. This
|
659
|
+
# checksum is only be present if the checksum was uploaded with the
|
660
|
+
# object. When you use an API operation on an object that was uploaded
|
661
|
+
# using multipart uploads, this value may not be a direct checksum
|
662
|
+
# value of the full object. Instead, it's a calculation based on the
|
663
|
+
# checksum values of each individual part. For more information about
|
664
|
+
# how checksums are calculated with multipart uploads, see [ Checking
|
665
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
666
666
|
#
|
667
667
|
#
|
668
668
|
#
|
@@ -670,24 +670,37 @@ module Aws::S3
|
|
670
670
|
# @return [String]
|
671
671
|
#
|
672
672
|
# @!attribute [rw] checksum_crc32c
|
673
|
-
# The
|
674
|
-
# only
|
675
|
-
# API operation on an object that was uploaded
|
676
|
-
# uploads, this value may not be a direct checksum
|
677
|
-
# object. Instead, it's a calculation based on the
|
678
|
-
# each individual part. For more information about
|
679
|
-
# calculated with multipart uploads, see [ Checking
|
680
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
673
|
+
# The Base64 encoded, 32-bit `CRC-32C` checksum of the object. This
|
674
|
+
# checksum is only present if the checksum was uploaded with the
|
675
|
+
# object. When you use an API operation on an object that was uploaded
|
676
|
+
# using multipart uploads, this value may not be a direct checksum
|
677
|
+
# value of the full object. Instead, it's a calculation based on the
|
678
|
+
# checksum values of each individual part. For more information about
|
679
|
+
# how checksums are calculated with multipart uploads, see [ Checking
|
680
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
681
681
|
#
|
682
682
|
#
|
683
683
|
#
|
684
684
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
|
685
685
|
# @return [String]
|
686
686
|
#
|
687
|
+
# @!attribute [rw] checksum_crc64nvme
|
688
|
+
# The Base64 encoded, 64-bit `CRC-64NVME` checksum of the object. This
|
689
|
+
# checksum is present if the object was uploaded with the `CRC-64NVME`
|
690
|
+
# checksum algorithm, or if the object was uploaded without a checksum
|
691
|
+
# (and Amazon S3 added the default checksum, `CRC-64NVME`, to the
|
692
|
+
# uploaded object). For more information, see [Checking object
|
693
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
694
|
+
#
|
695
|
+
#
|
696
|
+
#
|
697
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
698
|
+
# @return [String]
|
699
|
+
#
|
687
700
|
# @!attribute [rw] checksum_sha1
|
688
|
-
# The
|
689
|
-
# only be present if
|
690
|
-
# API operation on an object that was uploaded using multipart
|
701
|
+
# The Base64 encoded, 160-bit `SHA-1` digest of the object. This will
|
702
|
+
# only be present if the object was uploaded with the object. When you
|
703
|
+
# use the API operation on an object that was uploaded using multipart
|
691
704
|
# uploads, this value may not be a direct checksum value of the full
|
692
705
|
# object. Instead, it's a calculation based on the checksum values of
|
693
706
|
# each individual part. For more information about how checksums are
|
@@ -700,27 +713,39 @@ module Aws::S3
|
|
700
713
|
# @return [String]
|
701
714
|
#
|
702
715
|
# @!attribute [rw] checksum_sha256
|
703
|
-
# The
|
704
|
-
# only be present if
|
705
|
-
# API operation on an object that was uploaded using
|
706
|
-
# uploads, this value may not be a direct checksum value of
|
707
|
-
# object. Instead, it's a calculation based on the checksum
|
708
|
-
# each individual part. For more information about how
|
709
|
-
# calculated with multipart uploads, see [ Checking
|
710
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
716
|
+
# The Base64 encoded, 256-bit `SHA-256` digest of the object. This
|
717
|
+
# will only be present if the object was uploaded with the object.
|
718
|
+
# When you use an API operation on an object that was uploaded using
|
719
|
+
# multipart uploads, this value may not be a direct checksum value of
|
720
|
+
# the full object. Instead, it's a calculation based on the checksum
|
721
|
+
# values of each individual part. For more information about how
|
722
|
+
# checksums are calculated with multipart uploads, see [ Checking
|
723
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
711
724
|
#
|
712
725
|
#
|
713
726
|
#
|
714
727
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
|
715
728
|
# @return [String]
|
716
729
|
#
|
730
|
+
# @!attribute [rw] checksum_type
|
731
|
+
# The checksum type that is used to calculate the object’s checksum
|
732
|
+
# value. For more information, see [Checking object integrity][1] in
|
733
|
+
# the *Amazon S3 User Guide*.
|
734
|
+
#
|
735
|
+
#
|
736
|
+
#
|
737
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
738
|
+
# @return [String]
|
739
|
+
#
|
717
740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/Checksum AWS API Documentation
|
718
741
|
#
|
719
742
|
class Checksum < Struct.new(
|
720
743
|
:checksum_crc32,
|
721
744
|
:checksum_crc32c,
|
745
|
+
:checksum_crc64nvme,
|
722
746
|
:checksum_sha1,
|
723
|
-
:checksum_sha256
|
747
|
+
:checksum_sha256,
|
748
|
+
:checksum_type)
|
724
749
|
SENSITIVE = []
|
725
750
|
include Aws::Structure
|
726
751
|
end
|
@@ -824,14 +849,14 @@ module Aws::S3
|
|
824
849
|
# @return [String]
|
825
850
|
#
|
826
851
|
# @!attribute [rw] checksum_crc32
|
827
|
-
# The
|
828
|
-
# only be present if
|
829
|
-
# API operation on an object that was uploaded
|
830
|
-
# uploads, this value may not be a direct checksum
|
831
|
-
# object. Instead, it's a calculation based on the
|
832
|
-
# each individual part. For more information about
|
833
|
-
# calculated with multipart uploads, see [ Checking
|
834
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
852
|
+
# The Base64 encoded, 32-bit `CRC-32 checksum` of the object. This
|
853
|
+
# checksum is only be present if the checksum was uploaded with the
|
854
|
+
# object. When you use an API operation on an object that was uploaded
|
855
|
+
# using multipart uploads, this value may not be a direct checksum
|
856
|
+
# value of the full object. Instead, it's a calculation based on the
|
857
|
+
# checksum values of each individual part. For more information about
|
858
|
+
# how checksums are calculated with multipart uploads, see [ Checking
|
859
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
835
860
|
#
|
836
861
|
#
|
837
862
|
#
|
@@ -839,24 +864,37 @@ module Aws::S3
|
|
839
864
|
# @return [String]
|
840
865
|
#
|
841
866
|
# @!attribute [rw] checksum_crc32c
|
842
|
-
# The
|
843
|
-
# only
|
844
|
-
# API operation on an object that was uploaded
|
845
|
-
# uploads, this value may not be a direct checksum
|
846
|
-
# object. Instead, it's a calculation based on the
|
847
|
-
# each individual part. For more information about
|
848
|
-
# calculated with multipart uploads, see [ Checking
|
849
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
867
|
+
# The Base64 encoded, 32-bit `CRC-32C` checksum of the object. This
|
868
|
+
# checksum is only present if the checksum was uploaded with the
|
869
|
+
# object. When you use an API operation on an object that was uploaded
|
870
|
+
# using multipart uploads, this value may not be a direct checksum
|
871
|
+
# value of the full object. Instead, it's a calculation based on the
|
872
|
+
# checksum values of each individual part. For more information about
|
873
|
+
# how checksums are calculated with multipart uploads, see [ Checking
|
874
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
850
875
|
#
|
851
876
|
#
|
852
877
|
#
|
853
878
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
|
854
879
|
# @return [String]
|
855
880
|
#
|
881
|
+
# @!attribute [rw] checksum_crc64nvme
|
882
|
+
# This header can be used as a data integrity check to verify that the
|
883
|
+
# data received is the same data that was originally sent. This header
|
884
|
+
# specifies the Base64 encoded, 64-bit `CRC-64NVME` checksum of the
|
885
|
+
# object. The `CRC-64NVME` checksum is always a full object checksum.
|
886
|
+
# For more information, see [Checking object integrity in the Amazon
|
887
|
+
# S3 User Guide][1].
|
888
|
+
#
|
889
|
+
#
|
890
|
+
#
|
891
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
892
|
+
# @return [String]
|
893
|
+
#
|
856
894
|
# @!attribute [rw] checksum_sha1
|
857
|
-
# The
|
858
|
-
# only be present if
|
859
|
-
# API operation on an object that was uploaded using multipart
|
895
|
+
# The Base64 encoded, 160-bit `SHA-1` digest of the object. This will
|
896
|
+
# only be present if the object was uploaded with the object. When you
|
897
|
+
# use the API operation on an object that was uploaded using multipart
|
860
898
|
# uploads, this value may not be a direct checksum value of the full
|
861
899
|
# object. Instead, it's a calculation based on the checksum values of
|
862
900
|
# each individual part. For more information about how checksums are
|
@@ -869,20 +907,34 @@ module Aws::S3
|
|
869
907
|
# @return [String]
|
870
908
|
#
|
871
909
|
# @!attribute [rw] checksum_sha256
|
872
|
-
# The
|
873
|
-
# only be present if
|
874
|
-
# API operation on an object that was uploaded using
|
875
|
-
# uploads, this value may not be a direct checksum value of
|
876
|
-
# object. Instead, it's a calculation based on the checksum
|
877
|
-
# each individual part. For more information about how
|
878
|
-
# calculated with multipart uploads, see [ Checking
|
879
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
910
|
+
# The Base64 encoded, 256-bit `SHA-256` digest of the object. This
|
911
|
+
# will only be present if the object was uploaded with the object.
|
912
|
+
# When you use an API operation on an object that was uploaded using
|
913
|
+
# multipart uploads, this value may not be a direct checksum value of
|
914
|
+
# the full object. Instead, it's a calculation based on the checksum
|
915
|
+
# values of each individual part. For more information about how
|
916
|
+
# checksums are calculated with multipart uploads, see [ Checking
|
917
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
880
918
|
#
|
881
919
|
#
|
882
920
|
#
|
883
921
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
|
884
922
|
# @return [String]
|
885
923
|
#
|
924
|
+
# @!attribute [rw] checksum_type
|
925
|
+
# The checksum type, which determines how part-level checksums are
|
926
|
+
# combined to create an object-level checksum for multipart objects.
|
927
|
+
# You can use this header as a data integrity check to verify that the
|
928
|
+
# checksum type that is received is the same checksum type that was
|
929
|
+
# specified during the `CreateMultipartUpload` request. For more
|
930
|
+
# information, see [Checking object integrity in the Amazon S3 User
|
931
|
+
# Guide][1].
|
932
|
+
#
|
933
|
+
#
|
934
|
+
#
|
935
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
936
|
+
# @return [String]
|
937
|
+
#
|
886
938
|
# @!attribute [rw] server_side_encryption
|
887
939
|
# The server-side encryption algorithm used when storing this object
|
888
940
|
# in Amazon S3 (for example, `AES256`, `aws:kms`).
|
@@ -927,8 +979,10 @@ module Aws::S3
|
|
927
979
|
:etag,
|
928
980
|
:checksum_crc32,
|
929
981
|
:checksum_crc32c,
|
982
|
+
:checksum_crc64nvme,
|
930
983
|
:checksum_sha1,
|
931
984
|
:checksum_sha256,
|
985
|
+
:checksum_type,
|
932
986
|
:server_side_encryption,
|
933
987
|
:version_id,
|
934
988
|
:ssekms_key_id,
|
@@ -943,10 +997,10 @@ module Aws::S3
|
|
943
997
|
#
|
944
998
|
# **Directory buckets** - When you use this operation with a directory
|
945
999
|
# bucket, you must use virtual-hosted-style requests in the format `
|
946
|
-
#
|
1000
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
947
1001
|
# requests are not supported. Directory bucket names must be unique in
|
948
|
-
# the chosen Availability Zone. Bucket names must
|
949
|
-
#
|
1002
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
1003
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
950
1004
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
951
1005
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
952
1006
|
# *Amazon S3 User Guide*.
|
@@ -998,9 +1052,9 @@ module Aws::S3
|
|
998
1052
|
# @!attribute [rw] checksum_crc32
|
999
1053
|
# This header can be used as a data integrity check to verify that the
|
1000
1054
|
# data received is the same data that was originally sent. This header
|
1001
|
-
# specifies the
|
1002
|
-
# For more information, see [Checking object integrity][1] in
|
1003
|
-
# *Amazon S3 User Guide*.
|
1055
|
+
# specifies the Base64 encoded, 32-bit `CRC-32` checksum of the
|
1056
|
+
# object. For more information, see [Checking object integrity][1] in
|
1057
|
+
# the *Amazon S3 User Guide*.
|
1004
1058
|
#
|
1005
1059
|
#
|
1006
1060
|
#
|
@@ -1010,9 +1064,22 @@ module Aws::S3
|
|
1010
1064
|
# @!attribute [rw] checksum_crc32c
|
1011
1065
|
# This header can be used as a data integrity check to verify that the
|
1012
1066
|
# data received is the same data that was originally sent. This header
|
1013
|
-
# specifies the
|
1014
|
-
# For more information, see [Checking object integrity][1] in
|
1015
|
-
# *Amazon S3 User Guide*.
|
1067
|
+
# specifies the Base64 encoded, 32-bit `CRC-32C` checksum of the
|
1068
|
+
# object. For more information, see [Checking object integrity][1] in
|
1069
|
+
# the *Amazon S3 User Guide*.
|
1070
|
+
#
|
1071
|
+
#
|
1072
|
+
#
|
1073
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1074
|
+
# @return [String]
|
1075
|
+
#
|
1076
|
+
# @!attribute [rw] checksum_crc64nvme
|
1077
|
+
# This header can be used as a data integrity check to verify that the
|
1078
|
+
# data received is the same data that was originally sent. This header
|
1079
|
+
# specifies the Base64 encoded, 64-bit `CRC-64NVME` checksum of the
|
1080
|
+
# object. The `CRC-64NVME` checksum is always a full object checksum.
|
1081
|
+
# For more information, see [Checking object integrity in the Amazon
|
1082
|
+
# S3 User Guide][1].
|
1016
1083
|
#
|
1017
1084
|
#
|
1018
1085
|
#
|
@@ -1022,7 +1089,7 @@ module Aws::S3
|
|
1022
1089
|
# @!attribute [rw] checksum_sha1
|
1023
1090
|
# This header can be used as a data integrity check to verify that the
|
1024
1091
|
# data received is the same data that was originally sent. This header
|
1025
|
-
# specifies the
|
1092
|
+
# specifies the Base64 encoded, 160-bit `SHA-1` digest of the object.
|
1026
1093
|
# For more information, see [Checking object integrity][1] in the
|
1027
1094
|
# *Amazon S3 User Guide*.
|
1028
1095
|
#
|
@@ -1034,15 +1101,34 @@ module Aws::S3
|
|
1034
1101
|
# @!attribute [rw] checksum_sha256
|
1035
1102
|
# This header can be used as a data integrity check to verify that the
|
1036
1103
|
# data received is the same data that was originally sent. This header
|
1037
|
-
# specifies the
|
1038
|
-
# For more information, see [Checking object integrity][1] in
|
1039
|
-
# *Amazon S3 User Guide*.
|
1104
|
+
# specifies the Base64 encoded, 256-bit `SHA-256` digest of the
|
1105
|
+
# object. For more information, see [Checking object integrity][1] in
|
1106
|
+
# the *Amazon S3 User Guide*.
|
1040
1107
|
#
|
1041
1108
|
#
|
1042
1109
|
#
|
1043
1110
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1044
1111
|
# @return [String]
|
1045
1112
|
#
|
1113
|
+
# @!attribute [rw] checksum_type
|
1114
|
+
# This header specifies the checksum type of the object, which
|
1115
|
+
# determines how part-level checksums are combined to create an
|
1116
|
+
# object-level checksum for multipart objects. You can use this header
|
1117
|
+
# as a data integrity check to verify that the checksum type that is
|
1118
|
+
# received is the same checksum that was specified. If the checksum
|
1119
|
+
# type doesn’t match the checksum type that was specified for the
|
1120
|
+
# object during the `CreateMultipartUpload` request, it’ll result in a
|
1121
|
+
# `BadDigest` error. For more information, see Checking object
|
1122
|
+
# integrity in the Amazon S3 User Guide.
|
1123
|
+
# @return [String]
|
1124
|
+
#
|
1125
|
+
# @!attribute [rw] mpu_object_size
|
1126
|
+
# The expected total object size of the multipart upload request. If
|
1127
|
+
# there’s a mismatch between the specified object size value and the
|
1128
|
+
# actual object size value, it results in an `HTTP 400 InvalidRequest`
|
1129
|
+
# error.
|
1130
|
+
# @return [Integer]
|
1131
|
+
#
|
1046
1132
|
# @!attribute [rw] request_payer
|
1047
1133
|
# Confirms that the requester knows that they will be charged for the
|
1048
1134
|
# request. Bucket owners need not specify this parameter in their
|
@@ -1166,8 +1252,11 @@ module Aws::S3
|
|
1166
1252
|
:upload_id,
|
1167
1253
|
:checksum_crc32,
|
1168
1254
|
:checksum_crc32c,
|
1255
|
+
:checksum_crc64nvme,
|
1169
1256
|
:checksum_sha1,
|
1170
1257
|
:checksum_sha256,
|
1258
|
+
:checksum_type,
|
1259
|
+
:mpu_object_size,
|
1171
1260
|
:request_payer,
|
1172
1261
|
:expected_bucket_owner,
|
1173
1262
|
:if_match,
|
@@ -1203,63 +1292,59 @@ module Aws::S3
|
|
1203
1292
|
# @return [String]
|
1204
1293
|
#
|
1205
1294
|
# @!attribute [rw] checksum_crc32
|
1206
|
-
# The
|
1207
|
-
#
|
1208
|
-
#
|
1209
|
-
#
|
1210
|
-
# object. Instead, it's a calculation based on the checksum values of
|
1211
|
-
# each individual part. For more information about how checksums are
|
1212
|
-
# calculated with multipart uploads, see [ Checking object
|
1213
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
1295
|
+
# The Base64 encoded, 32-bit `CRC-32` checksum of the part. This
|
1296
|
+
# checksum is present if the multipart upload request was created with
|
1297
|
+
# the `CRC-32` checksum algorithm. For more information, see [Checking
|
1298
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
1214
1299
|
#
|
1215
1300
|
#
|
1216
1301
|
#
|
1217
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1302
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1218
1303
|
# @return [String]
|
1219
1304
|
#
|
1220
1305
|
# @!attribute [rw] checksum_crc32c
|
1221
|
-
# The
|
1222
|
-
#
|
1223
|
-
#
|
1224
|
-
#
|
1225
|
-
# object. Instead, it's a calculation based on the checksum values of
|
1226
|
-
# each individual part. For more information about how checksums are
|
1227
|
-
# calculated with multipart uploads, see [ Checking object
|
1228
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
1306
|
+
# The Base64 encoded, 32-bit `CRC-32C` checksum of the part. This
|
1307
|
+
# checksum is present if the multipart upload request was created with
|
1308
|
+
# the `CRC-32C` checksum algorithm. For more information, see
|
1309
|
+
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
1229
1310
|
#
|
1230
1311
|
#
|
1231
1312
|
#
|
1232
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1313
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1314
|
+
# @return [String]
|
1315
|
+
#
|
1316
|
+
# @!attribute [rw] checksum_crc64nvme
|
1317
|
+
# The Base64 encoded, 64-bit `CRC-64NVME` checksum of the part. This
|
1318
|
+
# checksum is present if the multipart upload request was created with
|
1319
|
+
# the `CRC-64NVME` checksum algorithm to the uploaded object). For
|
1320
|
+
# more information, see [Checking object integrity][1] in the *Amazon
|
1321
|
+
# S3 User Guide*.
|
1322
|
+
#
|
1323
|
+
#
|
1324
|
+
#
|
1325
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1233
1326
|
# @return [String]
|
1234
1327
|
#
|
1235
1328
|
# @!attribute [rw] checksum_sha1
|
1236
|
-
# The
|
1237
|
-
#
|
1238
|
-
#
|
1239
|
-
#
|
1240
|
-
# object. Instead, it's a calculation based on the checksum values of
|
1241
|
-
# each individual part. For more information about how checksums are
|
1242
|
-
# calculated with multipart uploads, see [ Checking object
|
1243
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
1329
|
+
# The Base64 encoded, 160-bit `SHA-1` checksum of the part. This
|
1330
|
+
# checksum is present if the multipart upload request was created with
|
1331
|
+
# the `SHA-1` checksum algorithm. For more information, see [Checking
|
1332
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
1244
1333
|
#
|
1245
1334
|
#
|
1246
1335
|
#
|
1247
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1336
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1248
1337
|
# @return [String]
|
1249
1338
|
#
|
1250
1339
|
# @!attribute [rw] checksum_sha256
|
1251
|
-
# The
|
1252
|
-
#
|
1253
|
-
#
|
1254
|
-
#
|
1255
|
-
# object. Instead, it's a calculation based on the checksum values of
|
1256
|
-
# each individual part. For more information about how checksums are
|
1257
|
-
# calculated with multipart uploads, see [ Checking object
|
1258
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
1340
|
+
# The Base64 encoded, 256-bit `SHA-256` checksum of the part. This
|
1341
|
+
# checksum is present if the multipart upload request was created with
|
1342
|
+
# the `SHA-256` checksum algorithm. For more information, see
|
1343
|
+
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
1259
1344
|
#
|
1260
1345
|
#
|
1261
1346
|
#
|
1262
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1347
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
1263
1348
|
# @return [String]
|
1264
1349
|
#
|
1265
1350
|
# @!attribute [rw] part_number
|
@@ -1287,6 +1372,7 @@ module Aws::S3
|
|
1287
1372
|
:etag,
|
1288
1373
|
:checksum_crc32,
|
1289
1374
|
:checksum_crc32c,
|
1375
|
+
:checksum_crc64nvme,
|
1290
1376
|
:checksum_sha1,
|
1291
1377
|
:checksum_sha256,
|
1292
1378
|
:part_number)
|
@@ -1353,7 +1439,9 @@ module Aws::S3
|
|
1353
1439
|
# If the object expiration is configured, the response includes this
|
1354
1440
|
# header.
|
1355
1441
|
#
|
1356
|
-
# <note markdown="1">
|
1442
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
1443
|
+
# and this header returns the value "`NotImplemented`" in all
|
1444
|
+
# responses for directory buckets.
|
1357
1445
|
#
|
1358
1446
|
# </note>
|
1359
1447
|
# @return [String]
|
@@ -1408,8 +1496,8 @@ module Aws::S3
|
|
1408
1496
|
#
|
1409
1497
|
# @!attribute [rw] ssekms_encryption_context
|
1410
1498
|
# If present, indicates the Amazon Web Services KMS Encryption Context
|
1411
|
-
# to use for object encryption. The value of this header is a
|
1412
|
-
#
|
1499
|
+
# to use for object encryption. The value of this header is a Base64
|
1500
|
+
# encoded UTF-8 string holding JSON with the encryption context
|
1413
1501
|
# key-value pairs.
|
1414
1502
|
# @return [String]
|
1415
1503
|
#
|
@@ -1485,14 +1573,22 @@ module Aws::S3
|
|
1485
1573
|
#
|
1486
1574
|
# **Directory buckets** - When you use this operation with a directory
|
1487
1575
|
# bucket, you must use virtual-hosted-style requests in the format `
|
1488
|
-
#
|
1576
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
1489
1577
|
# requests are not supported. Directory bucket names must be unique in
|
1490
|
-
# the chosen Availability Zone. Bucket names must
|
1491
|
-
#
|
1578
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
1579
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
1492
1580
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
1493
1581
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
1494
1582
|
# *Amazon S3 User Guide*.
|
1495
1583
|
#
|
1584
|
+
# <note markdown="1"> Copying objects across different Amazon Web Services Regions isn't
|
1585
|
+
# supported when the source or destination bucket is in Amazon Web
|
1586
|
+
# Services Local Zones. The source and destination buckets must have
|
1587
|
+
# the same parent Amazon Web Services Region. Otherwise, you get an
|
1588
|
+
# HTTP `400 Bad Request` error with the error code `InvalidRequest`.
|
1589
|
+
#
|
1590
|
+
# </note>
|
1591
|
+
#
|
1496
1592
|
# **Access points** - When you use this action with an access point,
|
1497
1593
|
# you must provide the alias of the access point in place of the
|
1498
1594
|
# bucket name or specify the access point ARN. When using the access
|
@@ -2321,11 +2417,21 @@ module Aws::S3
|
|
2321
2417
|
# Creation date of the object.
|
2322
2418
|
# @return [Time]
|
2323
2419
|
#
|
2420
|
+
# @!attribute [rw] checksum_type
|
2421
|
+
# The checksum type that is used to calculate the object’s checksum
|
2422
|
+
# value. For more information, see [Checking object integrity][1] in
|
2423
|
+
# the *Amazon S3 User Guide*.
|
2424
|
+
#
|
2425
|
+
#
|
2426
|
+
#
|
2427
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2428
|
+
# @return [String]
|
2429
|
+
#
|
2324
2430
|
# @!attribute [rw] checksum_crc32
|
2325
|
-
# The
|
2326
|
-
# only
|
2327
|
-
# information, see [ Checking object integrity][1] in the
|
2328
|
-
# User Guide*.
|
2431
|
+
# The Base64 encoded, 32-bit `CRC-32` checksum of the object. This
|
2432
|
+
# checksum is only present if the object was uploaded with the object.
|
2433
|
+
# For more information, see [ Checking object integrity][1] in the
|
2434
|
+
# *Amazon S3 User Guide*.
|
2329
2435
|
#
|
2330
2436
|
#
|
2331
2437
|
#
|
@@ -2333,10 +2439,23 @@ module Aws::S3
|
|
2333
2439
|
# @return [String]
|
2334
2440
|
#
|
2335
2441
|
# @!attribute [rw] checksum_crc32c
|
2336
|
-
# The
|
2337
|
-
# only be present if
|
2338
|
-
# information, see [ Checking object integrity][1] in the *Amazon
|
2339
|
-
# User Guide*.
|
2442
|
+
# The Base64 encoded, 32-bit `CRC-32C` checksum of the object. This
|
2443
|
+
# will only be present if the object was uploaded with the object. For
|
2444
|
+
# more information, see [ Checking object integrity][1] in the *Amazon
|
2445
|
+
# S3 User Guide*.
|
2446
|
+
#
|
2447
|
+
#
|
2448
|
+
#
|
2449
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2450
|
+
# @return [String]
|
2451
|
+
#
|
2452
|
+
# @!attribute [rw] checksum_crc64nvme
|
2453
|
+
# The Base64 encoded, 64-bit `CRC-64NVME` checksum of the object. This
|
2454
|
+
# checksum is present if the object being copied was uploaded with the
|
2455
|
+
# `CRC-64NVME` checksum algorithm, or if the object was uploaded
|
2456
|
+
# without a checksum (and Amazon S3 added the default checksum,
|
2457
|
+
# `CRC-64NVME`, to the uploaded object). For more information, see
|
2458
|
+
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
2340
2459
|
#
|
2341
2460
|
#
|
2342
2461
|
#
|
@@ -2344,8 +2463,8 @@ module Aws::S3
|
|
2344
2463
|
# @return [String]
|
2345
2464
|
#
|
2346
2465
|
# @!attribute [rw] checksum_sha1
|
2347
|
-
# The
|
2348
|
-
# only be present if
|
2466
|
+
# The Base64 encoded, 160-bit `SHA-1` digest of the object. This will
|
2467
|
+
# only be present if the object was uploaded with the object. For more
|
2349
2468
|
# information, see [ Checking object integrity][1] in the *Amazon S3
|
2350
2469
|
# User Guide*.
|
2351
2470
|
#
|
@@ -2355,10 +2474,10 @@ module Aws::S3
|
|
2355
2474
|
# @return [String]
|
2356
2475
|
#
|
2357
2476
|
# @!attribute [rw] checksum_sha256
|
2358
|
-
# The
|
2359
|
-
# only be present if
|
2360
|
-
# information, see [ Checking object integrity][1] in the *Amazon
|
2361
|
-
# User Guide*.
|
2477
|
+
# The Base64 encoded, 256-bit `SHA-256` digest of the object. This
|
2478
|
+
# will only be present if the object was uploaded with the object. For
|
2479
|
+
# more information, see [ Checking object integrity][1] in the *Amazon
|
2480
|
+
# S3 User Guide*.
|
2362
2481
|
#
|
2363
2482
|
#
|
2364
2483
|
#
|
@@ -2370,8 +2489,10 @@ module Aws::S3
|
|
2370
2489
|
class CopyObjectResult < Struct.new(
|
2371
2490
|
:etag,
|
2372
2491
|
:last_modified,
|
2492
|
+
:checksum_type,
|
2373
2493
|
:checksum_crc32,
|
2374
2494
|
:checksum_crc32c,
|
2495
|
+
:checksum_crc64nvme,
|
2375
2496
|
:checksum_sha1,
|
2376
2497
|
:checksum_sha256)
|
2377
2498
|
SENSITIVE = []
|
@@ -2389,63 +2510,63 @@ module Aws::S3
|
|
2389
2510
|
# @return [Time]
|
2390
2511
|
#
|
2391
2512
|
# @!attribute [rw] checksum_crc32
|
2392
|
-
#
|
2393
|
-
#
|
2394
|
-
#
|
2395
|
-
#
|
2396
|
-
#
|
2397
|
-
# each individual part. For more information about how checksums are
|
2398
|
-
# calculated with multipart uploads, see [ Checking object
|
2399
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
2513
|
+
# This header can be used as a data integrity check to verify that the
|
2514
|
+
# data received is the same data that was originally sent. This header
|
2515
|
+
# specifies the Base64 encoded, 32-bit `CRC-32` checksum of the part.
|
2516
|
+
# For more information, see [Checking object integrity][1] in the
|
2517
|
+
# *Amazon S3 User Guide*.
|
2400
2518
|
#
|
2401
2519
|
#
|
2402
2520
|
#
|
2403
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2521
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2404
2522
|
# @return [String]
|
2405
2523
|
#
|
2406
2524
|
# @!attribute [rw] checksum_crc32c
|
2407
|
-
#
|
2408
|
-
#
|
2409
|
-
#
|
2410
|
-
#
|
2411
|
-
#
|
2412
|
-
# each individual part. For more information about how checksums are
|
2413
|
-
# calculated with multipart uploads, see [ Checking object
|
2414
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
2525
|
+
# This header can be used as a data integrity check to verify that the
|
2526
|
+
# data received is the same data that was originally sent. This header
|
2527
|
+
# specifies the Base64 encoded, 32-bit `CRC-32C` checksum of the part.
|
2528
|
+
# For more information, see [Checking object integrity][1] in the
|
2529
|
+
# *Amazon S3 User Guide*.
|
2415
2530
|
#
|
2416
2531
|
#
|
2417
2532
|
#
|
2418
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2533
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2534
|
+
# @return [String]
|
2535
|
+
#
|
2536
|
+
# @!attribute [rw] checksum_crc64nvme
|
2537
|
+
# The Base64 encoded, 64-bit `CRC-64NVME` checksum of the part. This
|
2538
|
+
# checksum is present if the multipart upload request was created with
|
2539
|
+
# the `CRC-64NVME` checksum algorithm to the uploaded object). For
|
2540
|
+
# more information, see [Checking object integrity][1] in the *Amazon
|
2541
|
+
# S3 User Guide*.
|
2542
|
+
#
|
2543
|
+
#
|
2544
|
+
#
|
2545
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2419
2546
|
# @return [String]
|
2420
2547
|
#
|
2421
2548
|
# @!attribute [rw] checksum_sha1
|
2422
|
-
#
|
2423
|
-
#
|
2424
|
-
#
|
2425
|
-
#
|
2426
|
-
#
|
2427
|
-
# each individual part. For more information about how checksums are
|
2428
|
-
# calculated with multipart uploads, see [ Checking object
|
2429
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
2549
|
+
# This header can be used as a data integrity check to verify that the
|
2550
|
+
# data received is the same data that was originally sent. This header
|
2551
|
+
# specifies the Base64 encoded, 160-bit `SHA-1` checksum of the part.
|
2552
|
+
# For more information, see [Checking object integrity][1] in the
|
2553
|
+
# *Amazon S3 User Guide*.
|
2430
2554
|
#
|
2431
2555
|
#
|
2432
2556
|
#
|
2433
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2557
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2434
2558
|
# @return [String]
|
2435
2559
|
#
|
2436
2560
|
# @!attribute [rw] checksum_sha256
|
2437
|
-
#
|
2438
|
-
#
|
2439
|
-
#
|
2440
|
-
#
|
2441
|
-
#
|
2442
|
-
# each individual part. For more information about how checksums are
|
2443
|
-
# calculated with multipart uploads, see [ Checking object
|
2444
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
2561
|
+
# This header can be used as a data integrity check to verify that the
|
2562
|
+
# data received is the same data that was originally sent. This header
|
2563
|
+
# specifies the Base64 encoded, 256-bit `SHA-256` checksum of the
|
2564
|
+
# part. For more information, see [Checking object integrity][1] in
|
2565
|
+
# the *Amazon S3 User Guide*.
|
2445
2566
|
#
|
2446
2567
|
#
|
2447
2568
|
#
|
2448
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2569
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2449
2570
|
# @return [String]
|
2450
2571
|
#
|
2451
2572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CopyPartResult AWS API Documentation
|
@@ -2455,6 +2576,7 @@ module Aws::S3
|
|
2455
2576
|
:last_modified,
|
2456
2577
|
:checksum_crc32,
|
2457
2578
|
:checksum_crc32c,
|
2579
|
+
:checksum_crc64nvme,
|
2458
2580
|
:checksum_sha1,
|
2459
2581
|
:checksum_sha256)
|
2460
2582
|
SENSITIVE = []
|
@@ -2486,11 +2608,20 @@ module Aws::S3
|
|
2486
2608
|
# @!attribute [rw] location
|
2487
2609
|
# Specifies the location where the bucket will be created.
|
2488
2610
|
#
|
2489
|
-
#
|
2611
|
+
# <b>Directory buckets </b> - The location type is Availability Zone
|
2612
|
+
# or Local Zone. When the location type is Local Zone, your Local Zone
|
2613
|
+
# must be in opt-in status. Otherwise, you get an HTTP `400 Bad
|
2614
|
+
# Request` error with the error code `Access denied`. To learn more
|
2615
|
+
# about opt-in Local Zones, see [Opt-in Dedicated Local Zones][1]in
|
2616
|
+
# the *Amazon S3 User Guide*.
|
2490
2617
|
#
|
2491
2618
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
2492
2619
|
#
|
2493
2620
|
# </note>
|
2621
|
+
#
|
2622
|
+
#
|
2623
|
+
#
|
2624
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/opt-in-directory-bucket-lz.html
|
2494
2625
|
# @return [Types::LocationInfo]
|
2495
2626
|
#
|
2496
2627
|
# @!attribute [rw] bucket
|
@@ -2511,6 +2642,41 @@ module Aws::S3
|
|
2511
2642
|
include Aws::Structure
|
2512
2643
|
end
|
2513
2644
|
|
2645
|
+
# @!attribute [rw] bucket
|
2646
|
+
# The general purpose bucket that you want to create the metadata
|
2647
|
+
# table configuration in.
|
2648
|
+
# @return [String]
|
2649
|
+
#
|
2650
|
+
# @!attribute [rw] content_md5
|
2651
|
+
# The `Content-MD5` header for the metadata table configuration.
|
2652
|
+
# @return [String]
|
2653
|
+
#
|
2654
|
+
# @!attribute [rw] checksum_algorithm
|
2655
|
+
# The checksum algorithm to use with your metadata table
|
2656
|
+
# configuration.
|
2657
|
+
# @return [String]
|
2658
|
+
#
|
2659
|
+
# @!attribute [rw] metadata_table_configuration
|
2660
|
+
# The contents of your metadata table configuration.
|
2661
|
+
# @return [Types::MetadataTableConfiguration]
|
2662
|
+
#
|
2663
|
+
# @!attribute [rw] expected_bucket_owner
|
2664
|
+
# The expected owner of the general purpose bucket that contains your
|
2665
|
+
# metadata table configuration.
|
2666
|
+
# @return [String]
|
2667
|
+
#
|
2668
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateBucketMetadataTableConfigurationRequest AWS API Documentation
|
2669
|
+
#
|
2670
|
+
class CreateBucketMetadataTableConfigurationRequest < Struct.new(
|
2671
|
+
:bucket,
|
2672
|
+
:content_md5,
|
2673
|
+
:checksum_algorithm,
|
2674
|
+
:metadata_table_configuration,
|
2675
|
+
:expected_bucket_owner)
|
2676
|
+
SENSITIVE = []
|
2677
|
+
include Aws::Structure
|
2678
|
+
end
|
2679
|
+
|
2514
2680
|
# @!attribute [rw] location
|
2515
2681
|
# A forward slash followed by the name of the bucket.
|
2516
2682
|
# @return [String]
|
@@ -2540,13 +2706,14 @@ module Aws::S3
|
|
2540
2706
|
#
|
2541
2707
|
# <b>Directory buckets </b> - When you use this operation with a
|
2542
2708
|
# directory bucket, you must use path-style requests in the format
|
2543
|
-
# `https://s3express-control.
|
2709
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
2544
2710
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
2545
|
-
# names must be unique in the chosen Availability Zone
|
2546
|
-
# must also follow the format `
|
2547
|
-
#
|
2548
|
-
#
|
2549
|
-
# rules][2] in the
|
2711
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
2712
|
+
# Zone). Bucket names must also follow the format `
|
2713
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
2714
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
2715
|
+
# naming restrictions, see [Directory bucket naming rules][2] in the
|
2716
|
+
# *Amazon S3 User Guide*
|
2550
2717
|
#
|
2551
2718
|
#
|
2552
2719
|
#
|
@@ -2747,8 +2914,8 @@ module Aws::S3
|
|
2747
2914
|
#
|
2748
2915
|
# @!attribute [rw] ssekms_encryption_context
|
2749
2916
|
# If present, indicates the Amazon Web Services KMS Encryption Context
|
2750
|
-
# to use for object encryption. The value of this header is a
|
2751
|
-
#
|
2917
|
+
# to use for object encryption. The value of this header is a Base64
|
2918
|
+
# encoded string of a UTF-8 encoded JSON, which contains the
|
2752
2919
|
# encryption context as key-value pairs.
|
2753
2920
|
# @return [String]
|
2754
2921
|
#
|
@@ -2771,6 +2938,16 @@ module Aws::S3
|
|
2771
2938
|
# The algorithm that was used to create a checksum of the object.
|
2772
2939
|
# @return [String]
|
2773
2940
|
#
|
2941
|
+
# @!attribute [rw] checksum_type
|
2942
|
+
# Indicates the checksum type that you want Amazon S3 to use to
|
2943
|
+
# calculate the object’s checksum value. For more information, see
|
2944
|
+
# [Checking object integrity in the Amazon S3 User Guide][1].
|
2945
|
+
#
|
2946
|
+
#
|
2947
|
+
#
|
2948
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
2949
|
+
# @return [String]
|
2950
|
+
#
|
2774
2951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateMultipartUploadOutput AWS API Documentation
|
2775
2952
|
#
|
2776
2953
|
class CreateMultipartUploadOutput < Struct.new(
|
@@ -2786,7 +2963,8 @@ module Aws::S3
|
|
2786
2963
|
:ssekms_encryption_context,
|
2787
2964
|
:bucket_key_enabled,
|
2788
2965
|
:request_charged,
|
2789
|
-
:checksum_algorithm
|
2966
|
+
:checksum_algorithm,
|
2967
|
+
:checksum_type)
|
2790
2968
|
SENSITIVE = [:ssekms_key_id, :ssekms_encryption_context]
|
2791
2969
|
include Aws::Structure
|
2792
2970
|
end
|
@@ -2824,10 +3002,10 @@ module Aws::S3
|
|
2824
3002
|
#
|
2825
3003
|
# **Directory buckets** - When you use this operation with a directory
|
2826
3004
|
# bucket, you must use virtual-hosted-style requests in the format `
|
2827
|
-
#
|
3005
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
2828
3006
|
# requests are not supported. Directory bucket names must be unique in
|
2829
|
-
# the chosen Availability Zone. Bucket names must
|
2830
|
-
#
|
3007
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
3008
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
2831
3009
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
2832
3010
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
2833
3011
|
# *Amazon S3 User Guide*.
|
@@ -3317,7 +3495,7 @@ module Aws::S3
|
|
3317
3495
|
#
|
3318
3496
|
# @!attribute [rw] ssekms_encryption_context
|
3319
3497
|
# Specifies the Amazon Web Services KMS Encryption Context to use for
|
3320
|
-
# object encryption. The value of this header is a Base64
|
3498
|
+
# object encryption. The value of this header is a Base64 encoded
|
3321
3499
|
# string of a UTF-8 encoded JSON, which contains the encryption
|
3322
3500
|
# context as key-value pairs.
|
3323
3501
|
#
|
@@ -3425,6 +3603,16 @@ module Aws::S3
|
|
3425
3603
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
3426
3604
|
# @return [String]
|
3427
3605
|
#
|
3606
|
+
# @!attribute [rw] checksum_type
|
3607
|
+
# Indicates the checksum type that you want Amazon S3 to use to
|
3608
|
+
# calculate the object’s checksum value. For more information, see
|
3609
|
+
# [Checking object integrity in the Amazon S3 User Guide][1].
|
3610
|
+
#
|
3611
|
+
#
|
3612
|
+
#
|
3613
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
3614
|
+
# @return [String]
|
3615
|
+
#
|
3428
3616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateMultipartUploadRequest AWS API Documentation
|
3429
3617
|
#
|
3430
3618
|
class CreateMultipartUploadRequest < Struct.new(
|
@@ -3457,7 +3645,8 @@ module Aws::S3
|
|
3457
3645
|
:object_lock_retain_until_date,
|
3458
3646
|
:object_lock_legal_hold_status,
|
3459
3647
|
:expected_bucket_owner,
|
3460
|
-
:checksum_algorithm
|
3648
|
+
:checksum_algorithm,
|
3649
|
+
:checksum_type)
|
3461
3650
|
SENSITIVE = [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
3462
3651
|
include Aws::Structure
|
3463
3652
|
end
|
@@ -3475,8 +3664,8 @@ module Aws::S3
|
|
3475
3664
|
#
|
3476
3665
|
# @!attribute [rw] ssekms_encryption_context
|
3477
3666
|
# If present, indicates the Amazon Web Services KMS Encryption Context
|
3478
|
-
# to use for object encryption. The value of this header is a
|
3479
|
-
#
|
3667
|
+
# to use for object encryption. The value of this header is a Base64
|
3668
|
+
# encoded string of a UTF-8 encoded JSON, which contains the
|
3480
3669
|
# encryption context as key-value pairs. This value is stored as
|
3481
3670
|
# object metadata and automatically gets passed on to Amazon Web
|
3482
3671
|
# Services KMS for future `GetObject` operations on this object.
|
@@ -3557,7 +3746,7 @@ module Aws::S3
|
|
3557
3746
|
# @!attribute [rw] ssekms_encryption_context
|
3558
3747
|
# Specifies the Amazon Web Services KMS Encryption Context as an
|
3559
3748
|
# additional encryption context to use for object encryption. The
|
3560
|
-
# value of this header is a Base64
|
3749
|
+
# value of this header is a Base64 encoded string of a UTF-8 encoded
|
3561
3750
|
# JSON, which contains the encryption context as key-value pairs. This
|
3562
3751
|
# value is stored as object metadata and automatically gets passed on
|
3563
3752
|
# to Amazon Web Services KMS for future `GetObject` operations on this
|
@@ -3731,13 +3920,14 @@ module Aws::S3
|
|
3731
3920
|
#
|
3732
3921
|
# <b>Directory buckets </b> - When you use this operation with a
|
3733
3922
|
# directory bucket, you must use path-style requests in the format
|
3734
|
-
# `https://s3express-control.
|
3923
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
3735
3924
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
3736
|
-
# names must be unique in the chosen Availability Zone
|
3737
|
-
# must also follow the format `
|
3738
|
-
#
|
3739
|
-
#
|
3740
|
-
# rules][1] in the
|
3925
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
3926
|
+
# Zone). Bucket names must also follow the format `
|
3927
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
3928
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
3929
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
3930
|
+
# *Amazon S3 User Guide*
|
3741
3931
|
#
|
3742
3932
|
#
|
3743
3933
|
#
|
@@ -3835,6 +4025,25 @@ module Aws::S3
|
|
3835
4025
|
include Aws::Structure
|
3836
4026
|
end
|
3837
4027
|
|
4028
|
+
# @!attribute [rw] bucket
|
4029
|
+
# The general purpose bucket that you want to remove the metadata
|
4030
|
+
# table configuration from.
|
4031
|
+
# @return [String]
|
4032
|
+
#
|
4033
|
+
# @!attribute [rw] expected_bucket_owner
|
4034
|
+
# The expected bucket owner of the general purpose bucket that you
|
4035
|
+
# want to remove the metadata table configuration from.
|
4036
|
+
# @return [String]
|
4037
|
+
#
|
4038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/DeleteBucketMetadataTableConfigurationRequest AWS API Documentation
|
4039
|
+
#
|
4040
|
+
class DeleteBucketMetadataTableConfigurationRequest < Struct.new(
|
4041
|
+
:bucket,
|
4042
|
+
:expected_bucket_owner)
|
4043
|
+
SENSITIVE = []
|
4044
|
+
include Aws::Structure
|
4045
|
+
end
|
4046
|
+
|
3838
4047
|
# @!attribute [rw] bucket
|
3839
4048
|
# The name of the bucket containing the metrics configuration to
|
3840
4049
|
# delete.
|
@@ -3888,13 +4097,14 @@ module Aws::S3
|
|
3888
4097
|
#
|
3889
4098
|
# <b>Directory buckets </b> - When you use this operation with a
|
3890
4099
|
# directory bucket, you must use path-style requests in the format
|
3891
|
-
# `https://s3express-control.
|
4100
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
3892
4101
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
3893
|
-
# names must be unique in the chosen Availability Zone
|
3894
|
-
# must also follow the format `
|
3895
|
-
#
|
3896
|
-
#
|
3897
|
-
# rules][1] in the
|
4102
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
4103
|
+
# Zone). Bucket names must also follow the format `
|
4104
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
4105
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
4106
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4107
|
+
# *Amazon S3 User Guide*
|
3898
4108
|
#
|
3899
4109
|
#
|
3900
4110
|
#
|
@@ -3948,13 +4158,14 @@ module Aws::S3
|
|
3948
4158
|
#
|
3949
4159
|
# <b>Directory buckets </b> - When you use this operation with a
|
3950
4160
|
# directory bucket, you must use path-style requests in the format
|
3951
|
-
# `https://s3express-control.
|
4161
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
3952
4162
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
3953
|
-
# names must be unique in the chosen Availability Zone
|
3954
|
-
# must also follow the format `
|
3955
|
-
#
|
3956
|
-
#
|
3957
|
-
# rules][1] in the
|
4163
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
4164
|
+
# Zone). Bucket names must also follow the format `
|
4165
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
4166
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
4167
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4168
|
+
# *Amazon S3 User Guide*
|
3958
4169
|
#
|
3959
4170
|
#
|
3960
4171
|
#
|
@@ -4142,10 +4353,10 @@ module Aws::S3
|
|
4142
4353
|
#
|
4143
4354
|
# **Directory buckets** - When you use this operation with a directory
|
4144
4355
|
# bucket, you must use virtual-hosted-style requests in the format `
|
4145
|
-
#
|
4356
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
4146
4357
|
# requests are not supported. Directory bucket names must be unique in
|
4147
|
-
# the chosen Availability Zone. Bucket names must
|
4148
|
-
#
|
4358
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
4359
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
4149
4360
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
4150
4361
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4151
4362
|
# *Amazon S3 User Guide*.
|
@@ -4407,10 +4618,10 @@ module Aws::S3
|
|
4407
4618
|
#
|
4408
4619
|
# **Directory buckets** - When you use this operation with a directory
|
4409
4620
|
# bucket, you must use virtual-hosted-style requests in the format `
|
4410
|
-
#
|
4621
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
4411
4622
|
# requests are not supported. Directory bucket names must be unique in
|
4412
|
-
# the chosen Availability Zone. Bucket names must
|
4413
|
-
#
|
4623
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
4624
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
4414
4625
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
4415
4626
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4416
4627
|
# *Amazon S3 User Guide*.
|
@@ -4522,23 +4733,23 @@ module Aws::S3
|
|
4522
4733
|
# For the `x-amz-checksum-algorithm ` header, replace ` algorithm `
|
4523
4734
|
# with the supported algorithm from the following list:
|
4524
4735
|
#
|
4525
|
-
# * `
|
4736
|
+
# * `CRC-32`
|
4737
|
+
#
|
4738
|
+
# * `CRC-32C`
|
4526
4739
|
#
|
4527
|
-
# * `
|
4740
|
+
# * `CRC-64NVME`
|
4528
4741
|
#
|
4529
|
-
# * `
|
4742
|
+
# * `SHA-1`
|
4530
4743
|
#
|
4531
|
-
# * `
|
4744
|
+
# * `SHA-256`
|
4532
4745
|
#
|
4533
4746
|
# For more information, see [Checking object integrity][1] in the
|
4534
4747
|
# *Amazon S3 User Guide*.
|
4535
4748
|
#
|
4536
4749
|
# If the individual checksum value you provide through
|
4537
4750
|
# `x-amz-checksum-algorithm ` doesn't match the checksum algorithm
|
4538
|
-
# you set through `x-amz-sdk-checksum-algorithm`, Amazon S3
|
4539
|
-
#
|
4540
|
-
# algorithm that matches the provided value in
|
4541
|
-
# `x-amz-checksum-algorithm `.
|
4751
|
+
# you set through `x-amz-sdk-checksum-algorithm`, Amazon S3 fails the
|
4752
|
+
# request with a `BadDigest` error.
|
4542
4753
|
#
|
4543
4754
|
# If you provide an individual checksum, Amazon S3 ignores any
|
4544
4755
|
# provided `ChecksumAlgorithm` parameter.
|
@@ -5548,6 +5759,103 @@ module Aws::S3
|
|
5548
5759
|
include Aws::Structure
|
5549
5760
|
end
|
5550
5761
|
|
5762
|
+
# If the `CreateBucketMetadataTableConfiguration` request succeeds, but
|
5763
|
+
# S3 Metadata was unable to create the table, this structure contains
|
5764
|
+
# the error code and error message.
|
5765
|
+
#
|
5766
|
+
# @!attribute [rw] error_code
|
5767
|
+
# If the `CreateBucketMetadataTableConfiguration` request succeeds,
|
5768
|
+
# but S3 Metadata was unable to create the table, this structure
|
5769
|
+
# contains the error code. The possible error codes and error messages
|
5770
|
+
# are as follows:
|
5771
|
+
#
|
5772
|
+
# * `AccessDeniedCreatingResources` - You don't have sufficient
|
5773
|
+
# permissions to create the required resources. Make sure that you
|
5774
|
+
# have `s3tables:CreateNamespace`, `s3tables:CreateTable`,
|
5775
|
+
# `s3tables:GetTable` and `s3tables:PutTablePolicy` permissions, and
|
5776
|
+
# then try again. To create a new metadata table, you must delete
|
5777
|
+
# the metadata configuration for this bucket, and then create a new
|
5778
|
+
# metadata configuration.
|
5779
|
+
#
|
5780
|
+
# * `AccessDeniedWritingToTable` - Unable to write to the metadata
|
5781
|
+
# table because of missing resource permissions. To fix the resource
|
5782
|
+
# policy, Amazon S3 needs to create a new metadata table. To create
|
5783
|
+
# a new metadata table, you must delete the metadata configuration
|
5784
|
+
# for this bucket, and then create a new metadata configuration.
|
5785
|
+
#
|
5786
|
+
# * `DestinationTableNotFound` - The destination table doesn't exist.
|
5787
|
+
# To create a new metadata table, you must delete the metadata
|
5788
|
+
# configuration for this bucket, and then create a new metadata
|
5789
|
+
# configuration.
|
5790
|
+
#
|
5791
|
+
# * `ServerInternalError` - An internal error has occurred. To create
|
5792
|
+
# a new metadata table, you must delete the metadata configuration
|
5793
|
+
# for this bucket, and then create a new metadata configuration.
|
5794
|
+
#
|
5795
|
+
# * `TableAlreadyExists` - The table that you specified already exists
|
5796
|
+
# in the table bucket's namespace. Specify a different table name.
|
5797
|
+
# To create a new metadata table, you must delete the metadata
|
5798
|
+
# configuration for this bucket, and then create a new metadata
|
5799
|
+
# configuration.
|
5800
|
+
#
|
5801
|
+
# * `TableBucketNotFound` - The table bucket that you specified
|
5802
|
+
# doesn't exist in this Amazon Web Services Region and account.
|
5803
|
+
# Create or choose a different table bucket. To create a new
|
5804
|
+
# metadata table, you must delete the metadata configuration for
|
5805
|
+
# this bucket, and then create a new metadata configuration.
|
5806
|
+
# @return [String]
|
5807
|
+
#
|
5808
|
+
# @!attribute [rw] error_message
|
5809
|
+
# If the `CreateBucketMetadataTableConfiguration` request succeeds,
|
5810
|
+
# but S3 Metadata was unable to create the table, this structure
|
5811
|
+
# contains the error message. The possible error codes and error
|
5812
|
+
# messages are as follows:
|
5813
|
+
#
|
5814
|
+
# * `AccessDeniedCreatingResources` - You don't have sufficient
|
5815
|
+
# permissions to create the required resources. Make sure that you
|
5816
|
+
# have `s3tables:CreateNamespace`, `s3tables:CreateTable`,
|
5817
|
+
# `s3tables:GetTable` and `s3tables:PutTablePolicy` permissions, and
|
5818
|
+
# then try again. To create a new metadata table, you must delete
|
5819
|
+
# the metadata configuration for this bucket, and then create a new
|
5820
|
+
# metadata configuration.
|
5821
|
+
#
|
5822
|
+
# * `AccessDeniedWritingToTable` - Unable to write to the metadata
|
5823
|
+
# table because of missing resource permissions. To fix the resource
|
5824
|
+
# policy, Amazon S3 needs to create a new metadata table. To create
|
5825
|
+
# a new metadata table, you must delete the metadata configuration
|
5826
|
+
# for this bucket, and then create a new metadata configuration.
|
5827
|
+
#
|
5828
|
+
# * `DestinationTableNotFound` - The destination table doesn't exist.
|
5829
|
+
# To create a new metadata table, you must delete the metadata
|
5830
|
+
# configuration for this bucket, and then create a new metadata
|
5831
|
+
# configuration.
|
5832
|
+
#
|
5833
|
+
# * `ServerInternalError` - An internal error has occurred. To create
|
5834
|
+
# a new metadata table, you must delete the metadata configuration
|
5835
|
+
# for this bucket, and then create a new metadata configuration.
|
5836
|
+
#
|
5837
|
+
# * `TableAlreadyExists` - The table that you specified already exists
|
5838
|
+
# in the table bucket's namespace. Specify a different table name.
|
5839
|
+
# To create a new metadata table, you must delete the metadata
|
5840
|
+
# configuration for this bucket, and then create a new metadata
|
5841
|
+
# configuration.
|
5842
|
+
#
|
5843
|
+
# * `TableBucketNotFound` - The table bucket that you specified
|
5844
|
+
# doesn't exist in this Amazon Web Services Region and account.
|
5845
|
+
# Create or choose a different table bucket. To create a new
|
5846
|
+
# metadata table, you must delete the metadata configuration for
|
5847
|
+
# this bucket, and then create a new metadata configuration.
|
5848
|
+
# @return [String]
|
5849
|
+
#
|
5850
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ErrorDetails AWS API Documentation
|
5851
|
+
#
|
5852
|
+
class ErrorDetails < Struct.new(
|
5853
|
+
:error_code,
|
5854
|
+
:error_message)
|
5855
|
+
SENSITIVE = []
|
5856
|
+
include Aws::Structure
|
5857
|
+
end
|
5858
|
+
|
5551
5859
|
# The error information.
|
5552
5860
|
#
|
5553
5861
|
# @!attribute [rw] key
|
@@ -5855,13 +6163,14 @@ module Aws::S3
|
|
5855
6163
|
#
|
5856
6164
|
# <b>Directory buckets </b> - When you use this operation with a
|
5857
6165
|
# directory bucket, you must use path-style requests in the format
|
5858
|
-
# `https://s3express-control.
|
6166
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
5859
6167
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
5860
|
-
# names must be unique in the chosen Availability Zone
|
5861
|
-
# must also follow the format `
|
5862
|
-
#
|
5863
|
-
#
|
5864
|
-
# rules][1] in the
|
6168
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
6169
|
+
# Zone). Bucket names must also follow the format `
|
6170
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
6171
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
6172
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
6173
|
+
# *Amazon S3 User Guide*
|
5865
6174
|
#
|
5866
6175
|
#
|
5867
6176
|
#
|
@@ -5966,7 +6275,7 @@ module Aws::S3
|
|
5966
6275
|
# Indicates which default minimum object size behavior is applied to
|
5967
6276
|
# the lifecycle configuration.
|
5968
6277
|
#
|
5969
|
-
# <note markdown="1"> This parameter applies to general purpose buckets only. It
|
6278
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It isn't
|
5970
6279
|
# supported for directory bucket lifecycle configurations.
|
5971
6280
|
#
|
5972
6281
|
# </note>
|
@@ -6142,6 +6451,73 @@ module Aws::S3
|
|
6142
6451
|
include Aws::Structure
|
6143
6452
|
end
|
6144
6453
|
|
6454
|
+
# @!attribute [rw] get_bucket_metadata_table_configuration_result
|
6455
|
+
# The metadata table configuration for the general purpose bucket.
|
6456
|
+
# @return [Types::GetBucketMetadataTableConfigurationResult]
|
6457
|
+
#
|
6458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetadataTableConfigurationOutput AWS API Documentation
|
6459
|
+
#
|
6460
|
+
class GetBucketMetadataTableConfigurationOutput < Struct.new(
|
6461
|
+
:get_bucket_metadata_table_configuration_result)
|
6462
|
+
SENSITIVE = []
|
6463
|
+
include Aws::Structure
|
6464
|
+
end
|
6465
|
+
|
6466
|
+
# @!attribute [rw] bucket
|
6467
|
+
# The general purpose bucket that contains the metadata table
|
6468
|
+
# configuration that you want to retrieve.
|
6469
|
+
# @return [String]
|
6470
|
+
#
|
6471
|
+
# @!attribute [rw] expected_bucket_owner
|
6472
|
+
# The expected owner of the general purpose bucket that you want to
|
6473
|
+
# retrieve the metadata table configuration from.
|
6474
|
+
# @return [String]
|
6475
|
+
#
|
6476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetadataTableConfigurationRequest AWS API Documentation
|
6477
|
+
#
|
6478
|
+
class GetBucketMetadataTableConfigurationRequest < Struct.new(
|
6479
|
+
:bucket,
|
6480
|
+
:expected_bucket_owner)
|
6481
|
+
SENSITIVE = []
|
6482
|
+
include Aws::Structure
|
6483
|
+
end
|
6484
|
+
|
6485
|
+
# The metadata table configuration for a general purpose bucket.
|
6486
|
+
#
|
6487
|
+
# @!attribute [rw] metadata_table_configuration_result
|
6488
|
+
# The metadata table configuration for a general purpose bucket.
|
6489
|
+
# @return [Types::MetadataTableConfigurationResult]
|
6490
|
+
#
|
6491
|
+
# @!attribute [rw] status
|
6492
|
+
# The status of the metadata table. The status values are:
|
6493
|
+
#
|
6494
|
+
# * `CREATING` - The metadata table is in the process of being created
|
6495
|
+
# in the specified table bucket.
|
6496
|
+
#
|
6497
|
+
# * `ACTIVE` - The metadata table has been created successfully and
|
6498
|
+
# records are being delivered to the table.
|
6499
|
+
#
|
6500
|
+
# * `FAILED` - Amazon S3 is unable to create the metadata table, or
|
6501
|
+
# Amazon S3 is unable to deliver records. See `ErrorDetails` for
|
6502
|
+
# details.
|
6503
|
+
# @return [String]
|
6504
|
+
#
|
6505
|
+
# @!attribute [rw] error
|
6506
|
+
# If the `CreateBucketMetadataTableConfiguration` request succeeds,
|
6507
|
+
# but S3 Metadata was unable to create the table, this structure
|
6508
|
+
# contains the error code and error message.
|
6509
|
+
# @return [Types::ErrorDetails]
|
6510
|
+
#
|
6511
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetadataTableConfigurationResult AWS API Documentation
|
6512
|
+
#
|
6513
|
+
class GetBucketMetadataTableConfigurationResult < Struct.new(
|
6514
|
+
:metadata_table_configuration_result,
|
6515
|
+
:status,
|
6516
|
+
:error)
|
6517
|
+
SENSITIVE = []
|
6518
|
+
include Aws::Structure
|
6519
|
+
end
|
6520
|
+
|
6145
6521
|
# @!attribute [rw] metrics_configuration
|
6146
6522
|
# Specifies the metrics configuration.
|
6147
6523
|
# @return [Types::MetricsConfiguration]
|
@@ -6268,13 +6644,14 @@ module Aws::S3
|
|
6268
6644
|
#
|
6269
6645
|
# <b>Directory buckets </b> - When you use this operation with a
|
6270
6646
|
# directory bucket, you must use path-style requests in the format
|
6271
|
-
# `https://s3express-control.
|
6647
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
6272
6648
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
6273
|
-
# names must be unique in the chosen Availability Zone
|
6274
|
-
# must also follow the format `
|
6275
|
-
#
|
6276
|
-
#
|
6277
|
-
# rules][1] in the
|
6649
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
6650
|
+
# Zone). Bucket names must also follow the format `
|
6651
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
6652
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
6653
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
6654
|
+
# *Amazon S3 User Guide*
|
6278
6655
|
#
|
6279
6656
|
# **Access points** - When you use this API operation with an access
|
6280
6657
|
# point, provide the alias of the access point in place of the bucket
|
@@ -6781,10 +7158,10 @@ module Aws::S3
|
|
6781
7158
|
#
|
6782
7159
|
# **Directory buckets** - When you use this operation with a directory
|
6783
7160
|
# bucket, you must use virtual-hosted-style requests in the format `
|
6784
|
-
#
|
7161
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
6785
7162
|
# requests are not supported. Directory bucket names must be unique in
|
6786
|
-
# the chosen Availability Zone. Bucket names must
|
6787
|
-
#
|
7163
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
7164
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
6788
7165
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
6789
7166
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
6790
7167
|
# *Amazon S3 User Guide*.
|
@@ -7081,7 +7458,9 @@ module Aws::S3
|
|
7081
7458
|
# providing object expiration information. The value of the `rule-id`
|
7082
7459
|
# is URL-encoded.
|
7083
7460
|
#
|
7084
|
-
# <note markdown="1">
|
7461
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
7462
|
+
# and this header returns the value "`NotImplemented`" in all
|
7463
|
+
# responses for directory buckets.
|
7085
7464
|
#
|
7086
7465
|
# </note>
|
7087
7466
|
#
|
@@ -7120,10 +7499,10 @@ module Aws::S3
|
|
7120
7499
|
# @return [String]
|
7121
7500
|
#
|
7122
7501
|
# @!attribute [rw] checksum_crc32
|
7123
|
-
# The
|
7124
|
-
# only
|
7125
|
-
# information, see [ Checking object integrity][1] in the
|
7126
|
-
# User Guide*.
|
7502
|
+
# The Base64 encoded, 32-bit `CRC-32` checksum of the object. This
|
7503
|
+
# checksum is only present if the object was uploaded with the object.
|
7504
|
+
# For more information, see [ Checking object integrity][1] in the
|
7505
|
+
# *Amazon S3 User Guide*.
|
7127
7506
|
#
|
7128
7507
|
#
|
7129
7508
|
#
|
@@ -7131,10 +7510,20 @@ module Aws::S3
|
|
7131
7510
|
# @return [String]
|
7132
7511
|
#
|
7133
7512
|
# @!attribute [rw] checksum_crc32c
|
7134
|
-
# The
|
7135
|
-
# only be present if
|
7136
|
-
# information, see [ Checking object integrity][1] in the *Amazon
|
7137
|
-
# User Guide*.
|
7513
|
+
# The Base64 encoded, 32-bit `CRC-32C` checksum of the object. This
|
7514
|
+
# will only be present if the object was uploaded with the object. For
|
7515
|
+
# more information, see [ Checking object integrity][1] in the *Amazon
|
7516
|
+
# S3 User Guide*.
|
7517
|
+
#
|
7518
|
+
#
|
7519
|
+
#
|
7520
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
7521
|
+
# @return [String]
|
7522
|
+
#
|
7523
|
+
# @!attribute [rw] checksum_crc64nvme
|
7524
|
+
# The Base64 encoded, 64-bit `CRC-64NVME` checksum of the object. For
|
7525
|
+
# more information, see [Checking object integrity in the Amazon S3
|
7526
|
+
# User Guide][1].
|
7138
7527
|
#
|
7139
7528
|
#
|
7140
7529
|
#
|
@@ -7142,8 +7531,8 @@ module Aws::S3
|
|
7142
7531
|
# @return [String]
|
7143
7532
|
#
|
7144
7533
|
# @!attribute [rw] checksum_sha1
|
7145
|
-
# The
|
7146
|
-
# only be present if
|
7534
|
+
# The Base64 encoded, 160-bit `SHA-1` digest of the object. This will
|
7535
|
+
# only be present if the object was uploaded with the object. For more
|
7147
7536
|
# information, see [ Checking object integrity][1] in the *Amazon S3
|
7148
7537
|
# User Guide*.
|
7149
7538
|
#
|
@@ -7153,10 +7542,23 @@ module Aws::S3
|
|
7153
7542
|
# @return [String]
|
7154
7543
|
#
|
7155
7544
|
# @!attribute [rw] checksum_sha256
|
7156
|
-
# The
|
7157
|
-
# only be present if
|
7158
|
-
# information, see [ Checking object integrity][1] in the *Amazon
|
7159
|
-
# User Guide*.
|
7545
|
+
# The Base64 encoded, 256-bit `SHA-256` digest of the object. This
|
7546
|
+
# will only be present if the object was uploaded with the object. For
|
7547
|
+
# more information, see [ Checking object integrity][1] in the *Amazon
|
7548
|
+
# S3 User Guide*.
|
7549
|
+
#
|
7550
|
+
#
|
7551
|
+
#
|
7552
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
7553
|
+
# @return [String]
|
7554
|
+
#
|
7555
|
+
# @!attribute [rw] checksum_type
|
7556
|
+
# The checksum type, which determines how part-level checksums are
|
7557
|
+
# combined to create an object-level checksum for multipart objects.
|
7558
|
+
# You can use this header response to verify that the checksum type
|
7559
|
+
# that is received is the same checksum type that was specified in the
|
7560
|
+
# `CreateMultipartUpload` request. For more information, see [Checking
|
7561
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
7160
7562
|
#
|
7161
7563
|
#
|
7162
7564
|
#
|
@@ -7357,8 +7759,10 @@ module Aws::S3
|
|
7357
7759
|
:etag,
|
7358
7760
|
:checksum_crc32,
|
7359
7761
|
:checksum_crc32c,
|
7762
|
+
:checksum_crc64nvme,
|
7360
7763
|
:checksum_sha1,
|
7361
7764
|
:checksum_sha256,
|
7765
|
+
:checksum_type,
|
7362
7766
|
:missing_meta,
|
7363
7767
|
:version_id,
|
7364
7768
|
:cache_control,
|
@@ -7393,10 +7797,10 @@ module Aws::S3
|
|
7393
7797
|
#
|
7394
7798
|
# **Directory buckets** - When you use this operation with a directory
|
7395
7799
|
# bucket, you must use virtual-hosted-style requests in the format `
|
7396
|
-
#
|
7800
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
7397
7801
|
# requests are not supported. Directory bucket names must be unique in
|
7398
|
-
# the chosen Availability Zone. Bucket names must
|
7399
|
-
#
|
7802
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
7803
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
7400
7804
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
7401
7805
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
7402
7806
|
# *Amazon S3 User Guide*.
|
@@ -8124,8 +8528,9 @@ module Aws::S3
|
|
8124
8528
|
# @!attribute [rw] bucket_location_name
|
8125
8529
|
# The name of the location where the bucket will be created.
|
8126
8530
|
#
|
8127
|
-
# For directory buckets, the
|
8128
|
-
# bucket is created. An example
|
8531
|
+
# For directory buckets, the Zone ID of the Availability Zone or the
|
8532
|
+
# Local Zone where the bucket is created. An example Zone ID value for
|
8533
|
+
# an Availability Zone is `usw2-az1`.
|
8129
8534
|
#
|
8130
8535
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
8131
8536
|
#
|
@@ -8161,10 +8566,10 @@ module Aws::S3
|
|
8161
8566
|
#
|
8162
8567
|
# **Directory buckets** - When you use this operation with a directory
|
8163
8568
|
# bucket, you must use virtual-hosted-style requests in the format `
|
8164
|
-
#
|
8569
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
8165
8570
|
# requests are not supported. Directory bucket names must be unique in
|
8166
|
-
# the chosen Availability Zone. Bucket names must
|
8167
|
-
#
|
8571
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
8572
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
8168
8573
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
8169
8574
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
8170
8575
|
# *Amazon S3 User Guide*.
|
@@ -8246,7 +8651,9 @@ module Aws::S3
|
|
8246
8651
|
# providing object expiration information. The value of the `rule-id`
|
8247
8652
|
# is URL-encoded.
|
8248
8653
|
#
|
8249
|
-
# <note markdown="1">
|
8654
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
8655
|
+
# and this header returns the value "`NotImplemented`" in all
|
8656
|
+
# responses for directory buckets.
|
8250
8657
|
#
|
8251
8658
|
# </note>
|
8252
8659
|
#
|
@@ -8302,14 +8709,14 @@ module Aws::S3
|
|
8302
8709
|
# @return [Integer]
|
8303
8710
|
#
|
8304
8711
|
# @!attribute [rw] checksum_crc32
|
8305
|
-
# The
|
8306
|
-
# only be present if
|
8307
|
-
# API operation on an object that was uploaded
|
8308
|
-
# uploads, this value may not be a direct checksum
|
8309
|
-
# object. Instead, it's a calculation based on the
|
8310
|
-
# each individual part. For more information about
|
8311
|
-
# calculated with multipart uploads, see [ Checking
|
8312
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
8712
|
+
# The Base64 encoded, 32-bit `CRC-32 checksum` of the object. This
|
8713
|
+
# checksum is only be present if the checksum was uploaded with the
|
8714
|
+
# object. When you use an API operation on an object that was uploaded
|
8715
|
+
# using multipart uploads, this value may not be a direct checksum
|
8716
|
+
# value of the full object. Instead, it's a calculation based on the
|
8717
|
+
# checksum values of each individual part. For more information about
|
8718
|
+
# how checksums are calculated with multipart uploads, see [ Checking
|
8719
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
8313
8720
|
#
|
8314
8721
|
#
|
8315
8722
|
#
|
@@ -8317,24 +8724,34 @@ module Aws::S3
|
|
8317
8724
|
# @return [String]
|
8318
8725
|
#
|
8319
8726
|
# @!attribute [rw] checksum_crc32c
|
8320
|
-
# The
|
8321
|
-
# only
|
8322
|
-
# API operation on an object that was uploaded
|
8323
|
-
# uploads, this value may not be a direct checksum
|
8324
|
-
# object. Instead, it's a calculation based on the
|
8325
|
-
# each individual part. For more information about
|
8326
|
-
# calculated with multipart uploads, see [ Checking
|
8327
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
8727
|
+
# The Base64 encoded, 32-bit `CRC-32C` checksum of the object. This
|
8728
|
+
# checksum is only present if the checksum was uploaded with the
|
8729
|
+
# object. When you use an API operation on an object that was uploaded
|
8730
|
+
# using multipart uploads, this value may not be a direct checksum
|
8731
|
+
# value of the full object. Instead, it's a calculation based on the
|
8732
|
+
# checksum values of each individual part. For more information about
|
8733
|
+
# how checksums are calculated with multipart uploads, see [ Checking
|
8734
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
8328
8735
|
#
|
8329
8736
|
#
|
8330
8737
|
#
|
8331
8738
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
|
8332
8739
|
# @return [String]
|
8333
8740
|
#
|
8741
|
+
# @!attribute [rw] checksum_crc64nvme
|
8742
|
+
# The Base64 encoded, 64-bit `CRC-64NVME` checksum of the object. For
|
8743
|
+
# more information, see [Checking object integrity in the Amazon S3
|
8744
|
+
# User Guide][1].
|
8745
|
+
#
|
8746
|
+
#
|
8747
|
+
#
|
8748
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
8749
|
+
# @return [String]
|
8750
|
+
#
|
8334
8751
|
# @!attribute [rw] checksum_sha1
|
8335
|
-
# The
|
8336
|
-
# only be present if
|
8337
|
-
# API operation on an object that was uploaded using multipart
|
8752
|
+
# The Base64 encoded, 160-bit `SHA-1` digest of the object. This will
|
8753
|
+
# only be present if the object was uploaded with the object. When you
|
8754
|
+
# use the API operation on an object that was uploaded using multipart
|
8338
8755
|
# uploads, this value may not be a direct checksum value of the full
|
8339
8756
|
# object. Instead, it's a calculation based on the checksum values of
|
8340
8757
|
# each individual part. For more information about how checksums are
|
@@ -8347,20 +8764,33 @@ module Aws::S3
|
|
8347
8764
|
# @return [String]
|
8348
8765
|
#
|
8349
8766
|
# @!attribute [rw] checksum_sha256
|
8350
|
-
# The
|
8351
|
-
# only be present if
|
8352
|
-
# API operation on an object that was uploaded using
|
8353
|
-
# uploads, this value may not be a direct checksum value of
|
8354
|
-
# object. Instead, it's a calculation based on the checksum
|
8355
|
-
# each individual part. For more information about how
|
8356
|
-
# calculated with multipart uploads, see [ Checking
|
8357
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
8767
|
+
# The Base64 encoded, 256-bit `SHA-256` digest of the object. This
|
8768
|
+
# will only be present if the object was uploaded with the object.
|
8769
|
+
# When you use an API operation on an object that was uploaded using
|
8770
|
+
# multipart uploads, this value may not be a direct checksum value of
|
8771
|
+
# the full object. Instead, it's a calculation based on the checksum
|
8772
|
+
# values of each individual part. For more information about how
|
8773
|
+
# checksums are calculated with multipart uploads, see [ Checking
|
8774
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
8358
8775
|
#
|
8359
8776
|
#
|
8360
8777
|
#
|
8361
8778
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
|
8362
8779
|
# @return [String]
|
8363
8780
|
#
|
8781
|
+
# @!attribute [rw] checksum_type
|
8782
|
+
# The checksum type, which determines how part-level checksums are
|
8783
|
+
# combined to create an object-level checksum for multipart objects.
|
8784
|
+
# You can use this header response to verify that the checksum type
|
8785
|
+
# that is received is the same checksum type that was specified in
|
8786
|
+
# `CreateMultipartUpload` request. For more information, see [Checking
|
8787
|
+
# object integrity in the Amazon S3 User Guide][1].
|
8788
|
+
#
|
8789
|
+
#
|
8790
|
+
#
|
8791
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
8792
|
+
# @return [String]
|
8793
|
+
#
|
8364
8794
|
# @!attribute [rw] etag
|
8365
8795
|
# An entity tag (ETag) is an opaque identifier assigned by a web
|
8366
8796
|
# server to a specific version of a resource found at a URL.
|
@@ -8600,8 +9030,10 @@ module Aws::S3
|
|
8600
9030
|
:content_length,
|
8601
9031
|
:checksum_crc32,
|
8602
9032
|
:checksum_crc32c,
|
9033
|
+
:checksum_crc64nvme,
|
8603
9034
|
:checksum_sha1,
|
8604
9035
|
:checksum_sha256,
|
9036
|
+
:checksum_type,
|
8605
9037
|
:etag,
|
8606
9038
|
:missing_meta,
|
8607
9039
|
:version_id,
|
@@ -8635,10 +9067,10 @@ module Aws::S3
|
|
8635
9067
|
#
|
8636
9068
|
# **Directory buckets** - When you use this operation with a directory
|
8637
9069
|
# bucket, you must use virtual-hosted-style requests in the format `
|
8638
|
-
#
|
9070
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
8639
9071
|
# requests are not supported. Directory bucket names must be unique in
|
8640
|
-
# the chosen Availability Zone. Bucket names must
|
8641
|
-
#
|
9072
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
9073
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
8642
9074
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
8643
9075
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
8644
9076
|
# *Amazon S3 User Guide*.
|
@@ -10169,10 +10601,10 @@ module Aws::S3
|
|
10169
10601
|
#
|
10170
10602
|
# **Directory buckets** - When you use this operation with a directory
|
10171
10603
|
# bucket, you must use virtual-hosted-style requests in the format `
|
10172
|
-
#
|
10604
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
10173
10605
|
# requests are not supported. Directory bucket names must be unique in
|
10174
|
-
# the chosen Availability Zone. Bucket names must
|
10175
|
-
#
|
10606
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
10607
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
10176
10608
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
10177
10609
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
10178
10610
|
# *Amazon S3 User Guide*.
|
@@ -10691,10 +11123,10 @@ module Aws::S3
|
|
10691
11123
|
#
|
10692
11124
|
# **Directory buckets** - When you use this operation with a directory
|
10693
11125
|
# bucket, you must use virtual-hosted-style requests in the format `
|
10694
|
-
#
|
11126
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
10695
11127
|
# requests are not supported. Directory bucket names must be unique in
|
10696
|
-
# the chosen Availability Zone. Bucket names must
|
10697
|
-
#
|
11128
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
11129
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
10698
11130
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
10699
11131
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
10700
11132
|
# *Amazon S3 User Guide*.
|
@@ -10962,10 +11394,10 @@ module Aws::S3
|
|
10962
11394
|
# @!attribute [rw] bucket
|
10963
11395
|
# **Directory buckets** - When you use this operation with a directory
|
10964
11396
|
# bucket, you must use virtual-hosted-style requests in the format `
|
10965
|
-
#
|
11397
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
10966
11398
|
# requests are not supported. Directory bucket names must be unique in
|
10967
|
-
# the chosen Availability Zone. Bucket names must
|
10968
|
-
#
|
11399
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
11400
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
10969
11401
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
10970
11402
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
10971
11403
|
# *Amazon S3 User Guide*.
|
@@ -11246,6 +11678,19 @@ module Aws::S3
|
|
11246
11678
|
# The algorithm that was used to create a checksum of the object.
|
11247
11679
|
# @return [String]
|
11248
11680
|
#
|
11681
|
+
# @!attribute [rw] checksum_type
|
11682
|
+
# The checksum type, which determines how part-level checksums are
|
11683
|
+
# combined to create an object-level checksum for multipart objects.
|
11684
|
+
# You can use this header response to verify that the checksum type
|
11685
|
+
# that is received is the same checksum type that was specified in
|
11686
|
+
# `CreateMultipartUpload` request. For more information, see [Checking
|
11687
|
+
# object integrity in the Amazon S3 User Guide][1].
|
11688
|
+
#
|
11689
|
+
#
|
11690
|
+
#
|
11691
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
11692
|
+
# @return [String]
|
11693
|
+
#
|
11249
11694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListPartsOutput AWS API Documentation
|
11250
11695
|
#
|
11251
11696
|
class ListPartsOutput < Struct.new(
|
@@ -11263,7 +11708,8 @@ module Aws::S3
|
|
11263
11708
|
:owner,
|
11264
11709
|
:storage_class,
|
11265
11710
|
:request_charged,
|
11266
|
-
:checksum_algorithm
|
11711
|
+
:checksum_algorithm,
|
11712
|
+
:checksum_type)
|
11267
11713
|
SENSITIVE = []
|
11268
11714
|
include Aws::Structure
|
11269
11715
|
end
|
@@ -11273,10 +11719,10 @@ module Aws::S3
|
|
11273
11719
|
#
|
11274
11720
|
# **Directory buckets** - When you use this operation with a directory
|
11275
11721
|
# bucket, you must use virtual-hosted-style requests in the format `
|
11276
|
-
#
|
11722
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
11277
11723
|
# requests are not supported. Directory bucket names must be unique in
|
11278
|
-
# the chosen Availability Zone. Bucket names must
|
11279
|
-
#
|
11724
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
11725
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
11280
11726
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
11281
11727
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
11282
11728
|
# *Amazon S3 User Guide*.
|
@@ -11420,9 +11866,9 @@ module Aws::S3
|
|
11420
11866
|
|
11421
11867
|
# Specifies the location where the bucket will be created.
|
11422
11868
|
#
|
11423
|
-
# For directory buckets, the location type is Availability Zone
|
11424
|
-
# more information about directory buckets, see [Directory
|
11425
|
-
# in the *Amazon S3 User Guide*.
|
11869
|
+
# For directory buckets, the location type is Availability Zone or Local
|
11870
|
+
# Zone. For more information about directory buckets, see [Directory
|
11871
|
+
# buckets][1] in the *Amazon S3 User Guide*.
|
11426
11872
|
#
|
11427
11873
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
11428
11874
|
#
|
@@ -11439,9 +11885,9 @@ module Aws::S3
|
|
11439
11885
|
# @!attribute [rw] name
|
11440
11886
|
# The name of the location where the bucket will be created.
|
11441
11887
|
#
|
11442
|
-
# For directory buckets, the name of the location is the
|
11443
|
-
# Availability Zone
|
11444
|
-
# value is `usw2-az1`.
|
11888
|
+
# For directory buckets, the name of the location is the Zone ID of
|
11889
|
+
# the Availability Zone (AZ) or Local Zone (LZ) where the bucket will
|
11890
|
+
# be created. An example AZ ID value is `usw2-az1`.
|
11445
11891
|
# @return [String]
|
11446
11892
|
#
|
11447
11893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/LocationInfo AWS API Documentation
|
@@ -11511,15 +11957,55 @@ module Aws::S3
|
|
11511
11957
|
# Name of the object.
|
11512
11958
|
# @return [String]
|
11513
11959
|
#
|
11514
|
-
# @!attribute [rw] value
|
11515
|
-
# Value of the object.
|
11516
|
-
# @return [String]
|
11960
|
+
# @!attribute [rw] value
|
11961
|
+
# Value of the object.
|
11962
|
+
# @return [String]
|
11963
|
+
#
|
11964
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/MetadataEntry AWS API Documentation
|
11965
|
+
#
|
11966
|
+
class MetadataEntry < Struct.new(
|
11967
|
+
:name,
|
11968
|
+
:value)
|
11969
|
+
SENSITIVE = []
|
11970
|
+
include Aws::Structure
|
11971
|
+
end
|
11972
|
+
|
11973
|
+
# The metadata table configuration for a general purpose bucket.
|
11974
|
+
#
|
11975
|
+
# @!attribute [rw] s3_tables_destination
|
11976
|
+
# The destination information for the metadata table configuration.
|
11977
|
+
# The destination table bucket must be in the same Region and Amazon
|
11978
|
+
# Web Services account as the general purpose bucket. The specified
|
11979
|
+
# metadata table name must be unique within the `aws_s3_metadata`
|
11980
|
+
# namespace in the destination table bucket.
|
11981
|
+
# @return [Types::S3TablesDestination]
|
11982
|
+
#
|
11983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/MetadataTableConfiguration AWS API Documentation
|
11984
|
+
#
|
11985
|
+
class MetadataTableConfiguration < Struct.new(
|
11986
|
+
:s3_tables_destination)
|
11987
|
+
SENSITIVE = []
|
11988
|
+
include Aws::Structure
|
11989
|
+
end
|
11990
|
+
|
11991
|
+
# The metadata table configuration for a general purpose bucket. The
|
11992
|
+
# destination table bucket must be in the same Region and Amazon Web
|
11993
|
+
# Services account as the general purpose bucket. The specified metadata
|
11994
|
+
# table name must be unique within the `aws_s3_metadata` namespace in
|
11995
|
+
# the destination table bucket.
|
11996
|
+
#
|
11997
|
+
# @!attribute [rw] s3_tables_destination_result
|
11998
|
+
# The destination information for the metadata table configuration.
|
11999
|
+
# The destination table bucket must be in the same Region and Amazon
|
12000
|
+
# Web Services account as the general purpose bucket. The specified
|
12001
|
+
# metadata table name must be unique within the `aws_s3_metadata`
|
12002
|
+
# namespace in the destination table bucket.
|
12003
|
+
# @return [Types::S3TablesDestinationResult]
|
11517
12004
|
#
|
11518
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/
|
12005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/MetadataTableConfigurationResult AWS API Documentation
|
11519
12006
|
#
|
11520
|
-
class
|
11521
|
-
:
|
11522
|
-
:value)
|
12007
|
+
class MetadataTableConfigurationResult < Struct.new(
|
12008
|
+
:s3_tables_destination_result)
|
11523
12009
|
SENSITIVE = []
|
11524
12010
|
include Aws::Structure
|
11525
12011
|
end
|
@@ -11686,6 +12172,16 @@ module Aws::S3
|
|
11686
12172
|
# The algorithm that was used to create a checksum of the object.
|
11687
12173
|
# @return [String]
|
11688
12174
|
#
|
12175
|
+
# @!attribute [rw] checksum_type
|
12176
|
+
# The checksum type that is used to calculate the object’s checksum
|
12177
|
+
# value. For more information, see [Checking object integrity][1] in
|
12178
|
+
# the *Amazon S3 User Guide*.
|
12179
|
+
#
|
12180
|
+
#
|
12181
|
+
#
|
12182
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12183
|
+
# @return [String]
|
12184
|
+
#
|
11689
12185
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/MultipartUpload AWS API Documentation
|
11690
12186
|
#
|
11691
12187
|
class MultipartUpload < Struct.new(
|
@@ -11695,7 +12191,8 @@ module Aws::S3
|
|
11695
12191
|
:storage_class,
|
11696
12192
|
:owner,
|
11697
12193
|
:initiator,
|
11698
|
-
:checksum_algorithm
|
12194
|
+
:checksum_algorithm,
|
12195
|
+
:checksum_type)
|
11699
12196
|
SENSITIVE = []
|
11700
12197
|
include Aws::Structure
|
11701
12198
|
end
|
@@ -11946,6 +12443,16 @@ module Aws::S3
|
|
11946
12443
|
# The algorithm that was used to create a checksum of the object.
|
11947
12444
|
# @return [Array<String>]
|
11948
12445
|
#
|
12446
|
+
# @!attribute [rw] checksum_type
|
12447
|
+
# The checksum type that is used to calculate the object’s checksum
|
12448
|
+
# value. For more information, see [Checking object integrity][1] in
|
12449
|
+
# the *Amazon S3 User Guide*.
|
12450
|
+
#
|
12451
|
+
#
|
12452
|
+
#
|
12453
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12454
|
+
# @return [String]
|
12455
|
+
#
|
11949
12456
|
# @!attribute [rw] size
|
11950
12457
|
# Size in bytes of the object
|
11951
12458
|
# @return [Integer]
|
@@ -11993,6 +12500,7 @@ module Aws::S3
|
|
11993
12500
|
:last_modified,
|
11994
12501
|
:etag,
|
11995
12502
|
:checksum_algorithm,
|
12503
|
+
:checksum_type,
|
11996
12504
|
:size,
|
11997
12505
|
:storage_class,
|
11998
12506
|
:owner,
|
@@ -12165,11 +12673,10 @@ module Aws::S3
|
|
12165
12673
|
# @return [Integer]
|
12166
12674
|
#
|
12167
12675
|
# @!attribute [rw] checksum_crc32
|
12168
|
-
#
|
12169
|
-
#
|
12170
|
-
#
|
12171
|
-
#
|
12172
|
-
# *Amazon S3 User Guide*.
|
12676
|
+
# The Base64 encoded, 32-bit `CRC-32` checksum of the part. This
|
12677
|
+
# checksum is present if the multipart upload request was created with
|
12678
|
+
# the `CRC-32` checksum algorithm. For more information, see [Checking
|
12679
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
12173
12680
|
#
|
12174
12681
|
#
|
12175
12682
|
#
|
@@ -12177,48 +12684,49 @@ module Aws::S3
|
|
12177
12684
|
# @return [String]
|
12178
12685
|
#
|
12179
12686
|
# @!attribute [rw] checksum_crc32c
|
12180
|
-
# The
|
12181
|
-
#
|
12182
|
-
#
|
12183
|
-
#
|
12184
|
-
# object. Instead, it's a calculation based on the checksum values of
|
12185
|
-
# each individual part. For more information about how checksums are
|
12186
|
-
# calculated with multipart uploads, see [ Checking object
|
12187
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
12687
|
+
# The Base64 encoded, 32-bit `CRC-32C` checksum of the part. This
|
12688
|
+
# checksum is present if the multipart upload request was created with
|
12689
|
+
# the `CRC-32C` checksum algorithm. For more information, see
|
12690
|
+
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
12188
12691
|
#
|
12189
12692
|
#
|
12190
12693
|
#
|
12191
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12694
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12695
|
+
# @return [String]
|
12696
|
+
#
|
12697
|
+
# @!attribute [rw] checksum_crc64nvme
|
12698
|
+
# The Base64 encoded, 64-bit `CRC-64NVME` checksum of the part. This
|
12699
|
+
# checksum is present if the multipart upload request was created with
|
12700
|
+
# the `CRC-64NVME` checksum algorithm, or if the object was uploaded
|
12701
|
+
# without a checksum (and Amazon S3 added the default checksum,
|
12702
|
+
# `CRC-64NVME`, to the uploaded object). For more information, see
|
12703
|
+
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
12704
|
+
#
|
12705
|
+
#
|
12706
|
+
#
|
12707
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12192
12708
|
# @return [String]
|
12193
12709
|
#
|
12194
12710
|
# @!attribute [rw] checksum_sha1
|
12195
|
-
# The
|
12196
|
-
#
|
12197
|
-
#
|
12198
|
-
#
|
12199
|
-
# object. Instead, it's a calculation based on the checksum values of
|
12200
|
-
# each individual part. For more information about how checksums are
|
12201
|
-
# calculated with multipart uploads, see [ Checking object
|
12202
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
12711
|
+
# The Base64 encoded, 160-bit `SHA-1` checksum of the part. This
|
12712
|
+
# checksum is present if the multipart upload request was created with
|
12713
|
+
# the `SHA-1` checksum algorithm. For more information, see [Checking
|
12714
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
12203
12715
|
#
|
12204
12716
|
#
|
12205
12717
|
#
|
12206
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12718
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12207
12719
|
# @return [String]
|
12208
12720
|
#
|
12209
12721
|
# @!attribute [rw] checksum_sha256
|
12210
|
-
# The
|
12211
|
-
#
|
12212
|
-
#
|
12213
|
-
#
|
12214
|
-
# object. Instead, it's a calculation based on the checksum values of
|
12215
|
-
# each individual part. For more information about how checksums are
|
12216
|
-
# calculated with multipart uploads, see [ Checking object
|
12217
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
12722
|
+
# The Base64 encoded, 256-bit `SHA-256` checksum of the part. This
|
12723
|
+
# checksum is present if the multipart upload request was created with
|
12724
|
+
# the `SHA-256` checksum algorithm. For more information, see
|
12725
|
+
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
12218
12726
|
#
|
12219
12727
|
#
|
12220
12728
|
#
|
12221
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12729
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12222
12730
|
# @return [String]
|
12223
12731
|
#
|
12224
12732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ObjectPart AWS API Documentation
|
@@ -12228,6 +12736,7 @@ module Aws::S3
|
|
12228
12736
|
:size,
|
12229
12737
|
:checksum_crc32,
|
12230
12738
|
:checksum_crc32c,
|
12739
|
+
:checksum_crc64nvme,
|
12231
12740
|
:checksum_sha1,
|
12232
12741
|
:checksum_sha256)
|
12233
12742
|
SENSITIVE = []
|
@@ -12244,6 +12753,16 @@ module Aws::S3
|
|
12244
12753
|
# The algorithm that was used to create a checksum of the object.
|
12245
12754
|
# @return [Array<String>]
|
12246
12755
|
#
|
12756
|
+
# @!attribute [rw] checksum_type
|
12757
|
+
# The checksum type that is used to calculate the object’s checksum
|
12758
|
+
# value. For more information, see [Checking object integrity][1] in
|
12759
|
+
# the *Amazon S3 User Guide*.
|
12760
|
+
#
|
12761
|
+
#
|
12762
|
+
#
|
12763
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12764
|
+
# @return [String]
|
12765
|
+
#
|
12247
12766
|
# @!attribute [rw] size
|
12248
12767
|
# Size in bytes of the object.
|
12249
12768
|
# @return [Integer]
|
@@ -12290,6 +12809,7 @@ module Aws::S3
|
|
12290
12809
|
class ObjectVersion < Struct.new(
|
12291
12810
|
:etag,
|
12292
12811
|
:checksum_algorithm,
|
12812
|
+
:checksum_type,
|
12293
12813
|
:size,
|
12294
12814
|
:storage_class,
|
12295
12815
|
:key,
|
@@ -12465,11 +12985,10 @@ module Aws::S3
|
|
12465
12985
|
# @return [Integer]
|
12466
12986
|
#
|
12467
12987
|
# @!attribute [rw] checksum_crc32
|
12468
|
-
#
|
12469
|
-
#
|
12470
|
-
#
|
12471
|
-
#
|
12472
|
-
# *Amazon S3 User Guide*.
|
12988
|
+
# The Base64 encoded, 32-bit `CRC-32` checksum of the part. This
|
12989
|
+
# checksum is present if the object was uploaded with the `CRC-32`
|
12990
|
+
# checksum algorithm. For more information, see [Checking object
|
12991
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
12473
12992
|
#
|
12474
12993
|
#
|
12475
12994
|
#
|
@@ -12477,41 +12996,45 @@ module Aws::S3
|
|
12477
12996
|
# @return [String]
|
12478
12997
|
#
|
12479
12998
|
# @!attribute [rw] checksum_crc32c
|
12480
|
-
# The
|
12481
|
-
#
|
12482
|
-
#
|
12483
|
-
# uploads, this value may not be a direct checksum value of the full
|
12484
|
-
# object. Instead, it's a calculation based on the checksum values of
|
12485
|
-
# each individual part. For more information about how checksums are
|
12486
|
-
# calculated with multipart uploads, see [ Checking object
|
12999
|
+
# The Base64 encoded, 32-bit `CRC-32C` checksum of the part. This
|
13000
|
+
# checksum is present if the object was uploaded with the `CRC-32C`
|
13001
|
+
# checksum algorithm. For more information, see [Checking object
|
12487
13002
|
# integrity][1] in the *Amazon S3 User Guide*.
|
12488
13003
|
#
|
12489
13004
|
#
|
12490
13005
|
#
|
12491
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
13006
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
13007
|
+
# @return [String]
|
13008
|
+
#
|
13009
|
+
# @!attribute [rw] checksum_crc64nvme
|
13010
|
+
# The Base64 encoded, 64-bit `CRC-64NVME` checksum of the part. This
|
13011
|
+
# checksum is present if the multipart upload request was created with
|
13012
|
+
# the `CRC-64NVME` checksum algorithm, or if the object was uploaded
|
13013
|
+
# without a checksum (and Amazon S3 added the default checksum,
|
13014
|
+
# `CRC-64NVME`, to the uploaded object). For more information, see
|
13015
|
+
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
13016
|
+
#
|
13017
|
+
#
|
13018
|
+
#
|
13019
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12492
13020
|
# @return [String]
|
12493
13021
|
#
|
12494
13022
|
# @!attribute [rw] checksum_sha1
|
12495
|
-
# The
|
12496
|
-
#
|
12497
|
-
#
|
12498
|
-
# uploads, this value may not be a direct checksum value of the full
|
12499
|
-
# object. Instead, it's a calculation based on the checksum values of
|
12500
|
-
# each individual part. For more information about how checksums are
|
12501
|
-
# calculated with multipart uploads, see [ Checking object
|
13023
|
+
# The Base64 encoded, 160-bit `SHA-1` checksum of the part. This
|
13024
|
+
# checksum is present if the object was uploaded with the `SHA-1`
|
13025
|
+
# checksum algorithm. For more information, see [Checking object
|
12502
13026
|
# integrity][1] in the *Amazon S3 User Guide*.
|
12503
13027
|
#
|
12504
13028
|
#
|
12505
13029
|
#
|
12506
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
13030
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
12507
13031
|
# @return [String]
|
12508
13032
|
#
|
12509
13033
|
# @!attribute [rw] checksum_sha256
|
12510
|
-
#
|
12511
|
-
#
|
12512
|
-
#
|
12513
|
-
#
|
12514
|
-
# *Amazon S3 User Guide*.
|
13034
|
+
# The Base64 encoded, 256-bit `SHA-256` checksum of the part. This
|
13035
|
+
# checksum is present if the object was uploaded with the `SHA-256`
|
13036
|
+
# checksum algorithm. For more information, see [Checking object
|
13037
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
12515
13038
|
#
|
12516
13039
|
#
|
12517
13040
|
#
|
@@ -12527,6 +13050,7 @@ module Aws::S3
|
|
12527
13050
|
:size,
|
12528
13051
|
:checksum_crc32,
|
12529
13052
|
:checksum_crc32c,
|
13053
|
+
:checksum_crc64nvme,
|
12530
13054
|
:checksum_sha1,
|
12531
13055
|
:checksum_sha256)
|
12532
13056
|
SENSITIVE = []
|
@@ -12743,9 +13267,9 @@ module Aws::S3
|
|
12743
13267
|
# @return [String]
|
12744
13268
|
#
|
12745
13269
|
# @!attribute [rw] content_md5
|
12746
|
-
# The
|
12747
|
-
# be used as a message integrity check to verify that the request
|
12748
|
-
# was not corrupted in transit. For more information, go to [RFC
|
13270
|
+
# The Base64 encoded 128-bit `MD5` digest of the data. This header
|
13271
|
+
# must be used as a message integrity check to verify that the request
|
13272
|
+
# body was not corrupted in transit. For more information, go to [RFC
|
12749
13273
|
# 1864.][1]
|
12750
13274
|
#
|
12751
13275
|
# For requests made using the Amazon Web Services Command Line
|
@@ -12869,9 +13393,9 @@ module Aws::S3
|
|
12869
13393
|
# @return [Types::CORSConfiguration]
|
12870
13394
|
#
|
12871
13395
|
# @!attribute [rw] content_md5
|
12872
|
-
# The
|
12873
|
-
# be used as a message integrity check to verify that the request
|
12874
|
-
# was not corrupted in transit. For more information, go to [RFC
|
13396
|
+
# The Base64 encoded 128-bit `MD5` digest of the data. This header
|
13397
|
+
# must be used as a message integrity check to verify that the request
|
13398
|
+
# body was not corrupted in transit. For more information, go to [RFC
|
12875
13399
|
# 1864.][1]
|
12876
13400
|
#
|
12877
13401
|
# For requests made using the Amazon Web Services Command Line
|
@@ -12925,13 +13449,14 @@ module Aws::S3
|
|
12925
13449
|
#
|
12926
13450
|
# <b>Directory buckets </b> - When you use this operation with a
|
12927
13451
|
# directory bucket, you must use path-style requests in the format
|
12928
|
-
# `https://s3express-control.
|
13452
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
12929
13453
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
12930
|
-
# names must be unique in the chosen Availability Zone
|
12931
|
-
# must also follow the format `
|
12932
|
-
#
|
12933
|
-
#
|
12934
|
-
# rules][1] in the
|
13454
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
13455
|
+
# Zone). Bucket names must also follow the format `
|
13456
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
13457
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
13458
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
13459
|
+
# *Amazon S3 User Guide*
|
12935
13460
|
#
|
12936
13461
|
#
|
12937
13462
|
#
|
@@ -12939,8 +13464,8 @@ module Aws::S3
|
|
12939
13464
|
# @return [String]
|
12940
13465
|
#
|
12941
13466
|
# @!attribute [rw] content_md5
|
12942
|
-
# The
|
12943
|
-
# configuration.
|
13467
|
+
# The Base64 encoded 128-bit `MD5` digest of the server-side
|
13468
|
+
# encryption configuration.
|
12944
13469
|
#
|
12945
13470
|
# For requests made using the Amazon Web Services Command Line
|
12946
13471
|
# Interface (CLI) or Amazon Web Services SDKs, this field is
|
@@ -13418,13 +13943,14 @@ module Aws::S3
|
|
13418
13943
|
#
|
13419
13944
|
# <b>Directory buckets </b> - When you use this operation with a
|
13420
13945
|
# directory bucket, you must use path-style requests in the format
|
13421
|
-
# `https://s3express-control.
|
13946
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
13422
13947
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
13423
|
-
# names must be unique in the chosen Availability Zone
|
13424
|
-
# must also follow the format `
|
13425
|
-
#
|
13426
|
-
#
|
13427
|
-
# rules][1] in the
|
13948
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
13949
|
+
# Zone). Bucket names must also follow the format `
|
13950
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
13951
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
13952
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
13953
|
+
# *Amazon S3 User Guide*
|
13428
13954
|
#
|
13429
13955
|
#
|
13430
13956
|
#
|
@@ -13454,23 +13980,23 @@ module Aws::S3
|
|
13454
13980
|
# For the `x-amz-checksum-algorithm ` header, replace ` algorithm `
|
13455
13981
|
# with the supported algorithm from the following list:
|
13456
13982
|
#
|
13457
|
-
# * `
|
13983
|
+
# * `CRC-32`
|
13458
13984
|
#
|
13459
|
-
# * `
|
13985
|
+
# * `CRC-32C`
|
13460
13986
|
#
|
13461
|
-
# * `
|
13987
|
+
# * `CRC-64NVME`
|
13462
13988
|
#
|
13463
|
-
# * `
|
13989
|
+
# * `SHA-1`
|
13990
|
+
#
|
13991
|
+
# * `SHA-256`
|
13464
13992
|
#
|
13465
13993
|
# For more information, see [Checking object integrity][1] in the
|
13466
13994
|
# *Amazon S3 User Guide*.
|
13467
13995
|
#
|
13468
13996
|
# If the individual checksum value you provide through
|
13469
13997
|
# `x-amz-checksum-algorithm ` doesn't match the checksum algorithm
|
13470
|
-
# you set through `x-amz-sdk-checksum-algorithm`, Amazon S3
|
13471
|
-
#
|
13472
|
-
# algorithm that matches the provided value in
|
13473
|
-
# `x-amz-checksum-algorithm `.
|
13998
|
+
# you set through `x-amz-sdk-checksum-algorithm`, Amazon S3 fails the
|
13999
|
+
# request with a `BadDigest` error.
|
13474
14000
|
#
|
13475
14001
|
# <note markdown="1"> For directory buckets, when you use Amazon Web Services SDKs,
|
13476
14002
|
# `CRC32` is the default checksum algorithm that's used for
|
@@ -13530,9 +14056,9 @@ module Aws::S3
|
|
13530
14056
|
# @return [String]
|
13531
14057
|
#
|
13532
14058
|
# @!attribute [rw] content_md5
|
13533
|
-
# The
|
13534
|
-
# header as a message integrity check to verify that the request
|
13535
|
-
# was not corrupted in transit. For more information, see [RFC
|
14059
|
+
# The Base64 encoded 128-bit `MD5` digest of the data. You must use
|
14060
|
+
# this header as a message integrity check to verify that the request
|
14061
|
+
# body was not corrupted in transit. For more information, see [RFC
|
13536
14062
|
# 1864][1].
|
13537
14063
|
#
|
13538
14064
|
# For requests made using the Amazon Web Services Command Line
|
@@ -13595,9 +14121,9 @@ module Aws::S3
|
|
13595
14121
|
# @return [String]
|
13596
14122
|
#
|
13597
14123
|
# @!attribute [rw] content_md5
|
13598
|
-
# The
|
13599
|
-
# header as a message integrity check to verify that the request
|
13600
|
-
# was not corrupted in transit. For more information, see [RFC
|
14124
|
+
# The Base64 encoded 128-bit `MD5` digest of the data. You must use
|
14125
|
+
# this header as a message integrity check to verify that the request
|
14126
|
+
# body was not corrupted in transit. For more information, see [RFC
|
13601
14127
|
# 1864][1].
|
13602
14128
|
#
|
13603
14129
|
# For requests made using the Amazon Web Services Command Line
|
@@ -13654,9 +14180,9 @@ module Aws::S3
|
|
13654
14180
|
# @return [String]
|
13655
14181
|
#
|
13656
14182
|
# @!attribute [rw] content_md5
|
13657
|
-
# The
|
13658
|
-
# header as a message integrity check to verify that the request
|
13659
|
-
# was not corrupted in transit. For more information, see [RFC
|
14183
|
+
# The Base64 encoded 128-bit `MD5` digest of the data. You must use
|
14184
|
+
# this header as a message integrity check to verify that the request
|
14185
|
+
# body was not corrupted in transit. For more information, see [RFC
|
13660
14186
|
# 1864][1].
|
13661
14187
|
#
|
13662
14188
|
# For requests made using the Amazon Web Services Command Line
|
@@ -13713,10 +14239,10 @@ module Aws::S3
|
|
13713
14239
|
# @return [String]
|
13714
14240
|
#
|
13715
14241
|
# @!attribute [rw] content_md5
|
13716
|
-
# >The
|
13717
|
-
# this header as a message integrity check to verify that the
|
13718
|
-
# body was not corrupted in transit. For more information, see
|
13719
|
-
# 1864][1].
|
14242
|
+
# >The Base64 encoded 128-bit `MD5` digest of the data. You must
|
14243
|
+
# use this header as a message integrity check to verify that the
|
14244
|
+
# request body was not corrupted in transit. For more information, see
|
14245
|
+
# [RFC 1864][1].
|
13720
14246
|
#
|
13721
14247
|
# For requests made using the Amazon Web Services Command Line
|
13722
14248
|
# Interface (CLI) or Amazon Web Services SDKs, this field is
|
@@ -13779,9 +14305,9 @@ module Aws::S3
|
|
13779
14305
|
# @return [String]
|
13780
14306
|
#
|
13781
14307
|
# @!attribute [rw] content_md5
|
13782
|
-
# The
|
13783
|
-
# header as a message integrity check to verify that the request
|
13784
|
-
# was not corrupted in transit. For more information, see [RFC
|
14308
|
+
# The Base64 encoded 128-bit `MD5` digest of the data. You must use
|
14309
|
+
# this header as a message integrity check to verify that the request
|
14310
|
+
# body was not corrupted in transit. For more information, see [RFC
|
13785
14311
|
# 1864][1].
|
13786
14312
|
#
|
13787
14313
|
# For requests made using the Amazon Web Services Command Line
|
@@ -13895,9 +14421,9 @@ module Aws::S3
|
|
13895
14421
|
# @return [String]
|
13896
14422
|
#
|
13897
14423
|
# @!attribute [rw] content_md5
|
13898
|
-
# The
|
13899
|
-
# be used as a message integrity check to verify that the request
|
13900
|
-
# was not corrupted in transit. For more information, go to [RFC
|
14424
|
+
# The Base64 encoded 128-bit `MD5` digest of the data. This header
|
14425
|
+
# must be used as a message integrity check to verify that the request
|
14426
|
+
# body was not corrupted in transit. For more information, go to [RFC
|
13901
14427
|
# 1864.>][1]
|
13902
14428
|
#
|
13903
14429
|
# For requests made using the Amazon Web Services Command Line
|
@@ -14233,7 +14759,9 @@ module Aws::S3
|
|
14233
14759
|
# `rule-id` key-value pairs that provide information about object
|
14234
14760
|
# expiration. The value of the `rule-id` is URL-encoded.
|
14235
14761
|
#
|
14236
|
-
# <note markdown="1">
|
14762
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
14763
|
+
# and this header returns the value "`NotImplemented`" in all
|
14764
|
+
# responses for directory buckets.
|
14237
14765
|
#
|
14238
14766
|
# </note>
|
14239
14767
|
#
|
@@ -14256,14 +14784,14 @@ module Aws::S3
|
|
14256
14784
|
# @return [String]
|
14257
14785
|
#
|
14258
14786
|
# @!attribute [rw] checksum_crc32
|
14259
|
-
# The
|
14260
|
-
# only be present if
|
14261
|
-
# API operation on an object that was uploaded
|
14262
|
-
# uploads, this value may not be a direct checksum
|
14263
|
-
# object. Instead, it's a calculation based on the
|
14264
|
-
# each individual part. For more information about
|
14265
|
-
# calculated with multipart uploads, see [ Checking
|
14266
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
14787
|
+
# The Base64 encoded, 32-bit `CRC-32 checksum` of the object. This
|
14788
|
+
# checksum is only be present if the checksum was uploaded with the
|
14789
|
+
# object. When you use an API operation on an object that was uploaded
|
14790
|
+
# using multipart uploads, this value may not be a direct checksum
|
14791
|
+
# value of the full object. Instead, it's a calculation based on the
|
14792
|
+
# checksum values of each individual part. For more information about
|
14793
|
+
# how checksums are calculated with multipart uploads, see [ Checking
|
14794
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
14267
14795
|
#
|
14268
14796
|
#
|
14269
14797
|
#
|
@@ -14271,24 +14799,38 @@ module Aws::S3
|
|
14271
14799
|
# @return [String]
|
14272
14800
|
#
|
14273
14801
|
# @!attribute [rw] checksum_crc32c
|
14274
|
-
# The
|
14275
|
-
# only
|
14276
|
-
# API operation on an object that was uploaded
|
14277
|
-
# uploads, this value may not be a direct checksum
|
14278
|
-
# object. Instead, it's a calculation based on the
|
14279
|
-
# each individual part. For more information about
|
14280
|
-
# calculated with multipart uploads, see [ Checking
|
14281
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
14802
|
+
# The Base64 encoded, 32-bit `CRC-32C` checksum of the object. This
|
14803
|
+
# checksum is only present if the checksum was uploaded with the
|
14804
|
+
# object. When you use an API operation on an object that was uploaded
|
14805
|
+
# using multipart uploads, this value may not be a direct checksum
|
14806
|
+
# value of the full object. Instead, it's a calculation based on the
|
14807
|
+
# checksum values of each individual part. For more information about
|
14808
|
+
# how checksums are calculated with multipart uploads, see [ Checking
|
14809
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
14282
14810
|
#
|
14283
14811
|
#
|
14284
14812
|
#
|
14285
14813
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
|
14286
14814
|
# @return [String]
|
14287
14815
|
#
|
14816
|
+
# @!attribute [rw] checksum_crc64nvme
|
14817
|
+
# The Base64 encoded, 64-bit `CRC-64NVME` checksum of the object. This
|
14818
|
+
# header is present if the object was uploaded with the `CRC-64NVME`
|
14819
|
+
# checksum algorithm, or if it was uploaded without a checksum (and
|
14820
|
+
# Amazon S3 added the default checksum, `CRC-64NVME`, to the uploaded
|
14821
|
+
# object). For more information about how checksums are calculated
|
14822
|
+
# with multipart uploads, see [Checking object integrity in the Amazon
|
14823
|
+
# S3 User Guide][1].
|
14824
|
+
#
|
14825
|
+
#
|
14826
|
+
#
|
14827
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
14828
|
+
# @return [String]
|
14829
|
+
#
|
14288
14830
|
# @!attribute [rw] checksum_sha1
|
14289
|
-
# The
|
14290
|
-
# only be present if
|
14291
|
-
# API operation on an object that was uploaded using multipart
|
14831
|
+
# The Base64 encoded, 160-bit `SHA-1` digest of the object. This will
|
14832
|
+
# only be present if the object was uploaded with the object. When you
|
14833
|
+
# use the API operation on an object that was uploaded using multipart
|
14292
14834
|
# uploads, this value may not be a direct checksum value of the full
|
14293
14835
|
# object. Instead, it's a calculation based on the checksum values of
|
14294
14836
|
# each individual part. For more information about how checksums are
|
@@ -14301,20 +14843,35 @@ module Aws::S3
|
|
14301
14843
|
# @return [String]
|
14302
14844
|
#
|
14303
14845
|
# @!attribute [rw] checksum_sha256
|
14304
|
-
# The
|
14305
|
-
# only be present if
|
14306
|
-
# API operation on an object that was uploaded using
|
14307
|
-
# uploads, this value may not be a direct checksum value of
|
14308
|
-
# object. Instead, it's a calculation based on the checksum
|
14309
|
-
# each individual part. For more information about how
|
14310
|
-
# calculated with multipart uploads, see [ Checking
|
14311
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
14846
|
+
# The Base64 encoded, 256-bit `SHA-256` digest of the object. This
|
14847
|
+
# will only be present if the object was uploaded with the object.
|
14848
|
+
# When you use an API operation on an object that was uploaded using
|
14849
|
+
# multipart uploads, this value may not be a direct checksum value of
|
14850
|
+
# the full object. Instead, it's a calculation based on the checksum
|
14851
|
+
# values of each individual part. For more information about how
|
14852
|
+
# checksums are calculated with multipart uploads, see [ Checking
|
14853
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
14312
14854
|
#
|
14313
14855
|
#
|
14314
14856
|
#
|
14315
14857
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
|
14316
14858
|
# @return [String]
|
14317
14859
|
#
|
14860
|
+
# @!attribute [rw] checksum_type
|
14861
|
+
# This header specifies the checksum type of the object, which
|
14862
|
+
# determines how part-level checksums are combined to create an
|
14863
|
+
# object-level checksum for multipart objects. For `PutObject`
|
14864
|
+
# uploads, the checksum type is always `FULL_OBJECT`. You can use this
|
14865
|
+
# header as a data integrity check to verify that the checksum type
|
14866
|
+
# that is received is the same checksum that was specified. For more
|
14867
|
+
# information, see [Checking object integrity][1] in the *Amazon S3
|
14868
|
+
# User Guide*.
|
14869
|
+
#
|
14870
|
+
#
|
14871
|
+
#
|
14872
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
14873
|
+
# @return [String]
|
14874
|
+
#
|
14318
14875
|
# @!attribute [rw] server_side_encryption
|
14319
14876
|
# The server-side encryption algorithm used when you store this object
|
14320
14877
|
# in Amazon S3.
|
@@ -14371,8 +14928,8 @@ module Aws::S3
|
|
14371
14928
|
#
|
14372
14929
|
# @!attribute [rw] ssekms_encryption_context
|
14373
14930
|
# If present, indicates the Amazon Web Services KMS Encryption Context
|
14374
|
-
# to use for object encryption. The value of this header is a
|
14375
|
-
#
|
14931
|
+
# to use for object encryption. The value of this header is a Base64
|
14932
|
+
# encoded string of a UTF-8 encoded JSON, which contains the
|
14376
14933
|
# encryption context as key-value pairs. This value is stored as
|
14377
14934
|
# object metadata and automatically gets passed on to Amazon Web
|
14378
14935
|
# Services KMS for future `GetObject` operations on this object.
|
@@ -14385,8 +14942,8 @@ module Aws::S3
|
|
14385
14942
|
# @return [Boolean]
|
14386
14943
|
#
|
14387
14944
|
# @!attribute [rw] size
|
14388
|
-
# The size of the object in bytes. This
|
14389
|
-
# append to an object.
|
14945
|
+
# The size of the object in bytes. This value is only be present if
|
14946
|
+
# you append to an object.
|
14390
14947
|
#
|
14391
14948
|
# <note markdown="1"> This functionality is only supported for objects in the Amazon S3
|
14392
14949
|
# Express One Zone storage class in directory buckets.
|
@@ -14410,8 +14967,10 @@ module Aws::S3
|
|
14410
14967
|
:etag,
|
14411
14968
|
:checksum_crc32,
|
14412
14969
|
:checksum_crc32c,
|
14970
|
+
:checksum_crc64nvme,
|
14413
14971
|
:checksum_sha1,
|
14414
14972
|
:checksum_sha256,
|
14973
|
+
:checksum_type,
|
14415
14974
|
:server_side_encryption,
|
14416
14975
|
:version_id,
|
14417
14976
|
:sse_customer_algorithm,
|
@@ -14473,10 +15032,10 @@ module Aws::S3
|
|
14473
15032
|
#
|
14474
15033
|
# **Directory buckets** - When you use this operation with a directory
|
14475
15034
|
# bucket, you must use virtual-hosted-style requests in the format `
|
14476
|
-
#
|
15035
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
14477
15036
|
# requests are not supported. Directory bucket names must be unique in
|
14478
|
-
# the chosen Availability Zone. Bucket names must
|
14479
|
-
#
|
15037
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
15038
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
14480
15039
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
14481
15040
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
14482
15041
|
# *Amazon S3 User Guide*.
|
@@ -14561,7 +15120,7 @@ module Aws::S3
|
|
14561
15120
|
# @return [Integer]
|
14562
15121
|
#
|
14563
15122
|
# @!attribute [rw] content_md5
|
14564
|
-
# The
|
15123
|
+
# The Base64 encoded 128-bit `MD5` digest of the message (without the
|
14565
15124
|
# headers) according to RFC 1864. This header can be used as a message
|
14566
15125
|
# integrity check to verify that the data is the same data that was
|
14567
15126
|
# originally sent. Although it is optional, we recommend using the
|
@@ -14608,23 +15167,23 @@ module Aws::S3
|
|
14608
15167
|
# For the `x-amz-checksum-algorithm ` header, replace ` algorithm `
|
14609
15168
|
# with the supported algorithm from the following list:
|
14610
15169
|
#
|
14611
|
-
# * `
|
15170
|
+
# * `CRC-32`
|
14612
15171
|
#
|
14613
|
-
# * `
|
15172
|
+
# * `CRC-32C`
|
14614
15173
|
#
|
14615
|
-
# * `
|
15174
|
+
# * `CRC-64NVME`
|
14616
15175
|
#
|
14617
|
-
# * `
|
15176
|
+
# * `SHA-1`
|
15177
|
+
#
|
15178
|
+
# * `SHA-256`
|
14618
15179
|
#
|
14619
15180
|
# For more information, see [Checking object integrity][1] in the
|
14620
15181
|
# *Amazon S3 User Guide*.
|
14621
15182
|
#
|
14622
15183
|
# If the individual checksum value you provide through
|
14623
15184
|
# `x-amz-checksum-algorithm ` doesn't match the checksum algorithm
|
14624
|
-
# you set through `x-amz-sdk-checksum-algorithm`, Amazon S3
|
14625
|
-
#
|
14626
|
-
# algorithm that matches the provided value in
|
14627
|
-
# `x-amz-checksum-algorithm `.
|
15185
|
+
# you set through `x-amz-sdk-checksum-algorithm`, Amazon S3 fails the
|
15186
|
+
# request with a `BadDigest` error.
|
14628
15187
|
#
|
14629
15188
|
# <note markdown="1"> The `Content-MD5` or `x-amz-sdk-checksum-algorithm` header is
|
14630
15189
|
# required for any request to upload an object with a retention period
|
@@ -14647,9 +15206,9 @@ module Aws::S3
|
|
14647
15206
|
# @!attribute [rw] checksum_crc32
|
14648
15207
|
# This header can be used as a data integrity check to verify that the
|
14649
15208
|
# data received is the same data that was originally sent. This header
|
14650
|
-
# specifies the
|
14651
|
-
# For more information, see [Checking object integrity][1] in
|
14652
|
-
# *Amazon S3 User Guide*.
|
15209
|
+
# specifies the Base64 encoded, 32-bit `CRC-32` checksum of the
|
15210
|
+
# object. For more information, see [Checking object integrity][1] in
|
15211
|
+
# the *Amazon S3 User Guide*.
|
14653
15212
|
#
|
14654
15213
|
#
|
14655
15214
|
#
|
@@ -14659,9 +15218,22 @@ module Aws::S3
|
|
14659
15218
|
# @!attribute [rw] checksum_crc32c
|
14660
15219
|
# This header can be used as a data integrity check to verify that the
|
14661
15220
|
# data received is the same data that was originally sent. This header
|
14662
|
-
# specifies the
|
14663
|
-
# For more information, see [Checking object integrity][1] in
|
14664
|
-
# *Amazon S3 User Guide*.
|
15221
|
+
# specifies the Base64 encoded, 32-bit `CRC-32C` checksum of the
|
15222
|
+
# object. For more information, see [Checking object integrity][1] in
|
15223
|
+
# the *Amazon S3 User Guide*.
|
15224
|
+
#
|
15225
|
+
#
|
15226
|
+
#
|
15227
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
15228
|
+
# @return [String]
|
15229
|
+
#
|
15230
|
+
# @!attribute [rw] checksum_crc64nvme
|
15231
|
+
# This header can be used as a data integrity check to verify that the
|
15232
|
+
# data received is the same data that was originally sent. This header
|
15233
|
+
# specifies the Base64 encoded, 64-bit `CRC-64NVME` checksum of the
|
15234
|
+
# object. The `CRC-64NVME` checksum is always a full object checksum.
|
15235
|
+
# For more information, see [Checking object integrity in the Amazon
|
15236
|
+
# S3 User Guide][1].
|
14665
15237
|
#
|
14666
15238
|
#
|
14667
15239
|
#
|
@@ -14671,7 +15243,7 @@ module Aws::S3
|
|
14671
15243
|
# @!attribute [rw] checksum_sha1
|
14672
15244
|
# This header can be used as a data integrity check to verify that the
|
14673
15245
|
# data received is the same data that was originally sent. This header
|
14674
|
-
# specifies the
|
15246
|
+
# specifies the Base64 encoded, 160-bit `SHA-1` digest of the object.
|
14675
15247
|
# For more information, see [Checking object integrity][1] in the
|
14676
15248
|
# *Amazon S3 User Guide*.
|
14677
15249
|
#
|
@@ -14683,9 +15255,9 @@ module Aws::S3
|
|
14683
15255
|
# @!attribute [rw] checksum_sha256
|
14684
15256
|
# This header can be used as a data integrity check to verify that the
|
14685
15257
|
# data received is the same data that was originally sent. This header
|
14686
|
-
# specifies the
|
14687
|
-
# For more information, see [Checking object integrity][1] in
|
14688
|
-
# *Amazon S3 User Guide*.
|
15258
|
+
# specifies the Base64 encoded, 256-bit `SHA-256` digest of the
|
15259
|
+
# object. For more information, see [Checking object integrity][1] in
|
15260
|
+
# the *Amazon S3 User Guide*.
|
14689
15261
|
#
|
14690
15262
|
#
|
14691
15263
|
#
|
@@ -14993,7 +15565,7 @@ module Aws::S3
|
|
14993
15565
|
# @!attribute [rw] ssekms_encryption_context
|
14994
15566
|
# Specifies the Amazon Web Services KMS Encryption Context as an
|
14995
15567
|
# additional encryption context to use for object encryption. The
|
14996
|
-
# value of this header is a Base64
|
15568
|
+
# value of this header is a Base64 encoded string of a UTF-8 encoded
|
14997
15569
|
# JSON, which contains the encryption context as key-value pairs. This
|
14998
15570
|
# value is stored as object metadata and automatically gets passed on
|
14999
15571
|
# to Amazon Web Services KMS for future `GetObject` operations on this
|
@@ -15123,6 +15695,7 @@ module Aws::S3
|
|
15123
15695
|
:checksum_algorithm,
|
15124
15696
|
:checksum_crc32,
|
15125
15697
|
:checksum_crc32c,
|
15698
|
+
:checksum_crc64nvme,
|
15126
15699
|
:checksum_sha1,
|
15127
15700
|
:checksum_sha256,
|
15128
15701
|
:expires,
|
@@ -16095,7 +16668,15 @@ module Aws::S3
|
|
16095
16668
|
# @return [Types::GlacierJobParameters]
|
16096
16669
|
#
|
16097
16670
|
# @!attribute [rw] type
|
16671
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
16672
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
16673
|
+
# usual. [Learn more][1]
|
16674
|
+
#
|
16098
16675
|
# Type of restore request.
|
16676
|
+
#
|
16677
|
+
#
|
16678
|
+
#
|
16679
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16099
16680
|
# @return [String]
|
16100
16681
|
#
|
16101
16682
|
# @!attribute [rw] tier
|
@@ -16107,7 +16688,15 @@ module Aws::S3
|
|
16107
16688
|
# @return [String]
|
16108
16689
|
#
|
16109
16690
|
# @!attribute [rw] select_parameters
|
16691
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
16692
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
16693
|
+
# usual. [Learn more][1]
|
16694
|
+
#
|
16110
16695
|
# Describes the parameters for Select job types.
|
16696
|
+
#
|
16697
|
+
#
|
16698
|
+
#
|
16699
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16111
16700
|
# @return [Types::SelectParameters]
|
16112
16701
|
#
|
16113
16702
|
# @!attribute [rw] output_location
|
@@ -16375,6 +16964,78 @@ module Aws::S3
|
|
16375
16964
|
include Aws::Structure
|
16376
16965
|
end
|
16377
16966
|
|
16967
|
+
# The destination information for the metadata table configuration. The
|
16968
|
+
# destination table bucket must be in the same Region and Amazon Web
|
16969
|
+
# Services account as the general purpose bucket. The specified metadata
|
16970
|
+
# table name must be unique within the `aws_s3_metadata` namespace in
|
16971
|
+
# the destination table bucket.
|
16972
|
+
#
|
16973
|
+
# @!attribute [rw] table_bucket_arn
|
16974
|
+
# The Amazon Resource Name (ARN) for the table bucket that's
|
16975
|
+
# specified as the destination in the metadata table configuration.
|
16976
|
+
# The destination table bucket must be in the same Region and Amazon
|
16977
|
+
# Web Services account as the general purpose bucket.
|
16978
|
+
# @return [String]
|
16979
|
+
#
|
16980
|
+
# @!attribute [rw] table_name
|
16981
|
+
# The name for the metadata table in your metadata table
|
16982
|
+
# configuration. The specified metadata table name must be unique
|
16983
|
+
# within the `aws_s3_metadata` namespace in the destination table
|
16984
|
+
# bucket.
|
16985
|
+
# @return [String]
|
16986
|
+
#
|
16987
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/S3TablesDestination AWS API Documentation
|
16988
|
+
#
|
16989
|
+
class S3TablesDestination < Struct.new(
|
16990
|
+
:table_bucket_arn,
|
16991
|
+
:table_name)
|
16992
|
+
SENSITIVE = []
|
16993
|
+
include Aws::Structure
|
16994
|
+
end
|
16995
|
+
|
16996
|
+
# The destination information for the metadata table configuration. The
|
16997
|
+
# destination table bucket must be in the same Region and Amazon Web
|
16998
|
+
# Services account as the general purpose bucket. The specified metadata
|
16999
|
+
# table name must be unique within the `aws_s3_metadata` namespace in
|
17000
|
+
# the destination table bucket.
|
17001
|
+
#
|
17002
|
+
# @!attribute [rw] table_bucket_arn
|
17003
|
+
# The Amazon Resource Name (ARN) for the table bucket that's
|
17004
|
+
# specified as the destination in the metadata table configuration.
|
17005
|
+
# The destination table bucket must be in the same Region and Amazon
|
17006
|
+
# Web Services account as the general purpose bucket.
|
17007
|
+
# @return [String]
|
17008
|
+
#
|
17009
|
+
# @!attribute [rw] table_name
|
17010
|
+
# The name for the metadata table in your metadata table
|
17011
|
+
# configuration. The specified metadata table name must be unique
|
17012
|
+
# within the `aws_s3_metadata` namespace in the destination table
|
17013
|
+
# bucket.
|
17014
|
+
# @return [String]
|
17015
|
+
#
|
17016
|
+
# @!attribute [rw] table_arn
|
17017
|
+
# The Amazon Resource Name (ARN) for the metadata table in the
|
17018
|
+
# metadata table configuration. The specified metadata table name must
|
17019
|
+
# be unique within the `aws_s3_metadata` namespace in the destination
|
17020
|
+
# table bucket.
|
17021
|
+
# @return [String]
|
17022
|
+
#
|
17023
|
+
# @!attribute [rw] table_namespace
|
17024
|
+
# The table bucket namespace for the metadata table in your metadata
|
17025
|
+
# table configuration. This value is always `aws_s3_metadata`.
|
17026
|
+
# @return [String]
|
17027
|
+
#
|
17028
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/S3TablesDestinationResult AWS API Documentation
|
17029
|
+
#
|
17030
|
+
class S3TablesDestinationResult < Struct.new(
|
17031
|
+
:table_bucket_arn,
|
17032
|
+
:table_name,
|
17033
|
+
:table_arn,
|
17034
|
+
:table_namespace)
|
17035
|
+
SENSITIVE = []
|
17036
|
+
include Aws::Structure
|
17037
|
+
end
|
17038
|
+
|
16378
17039
|
# Specifies the use of SSE-KMS to encrypt delivered inventory reports.
|
16379
17040
|
#
|
16380
17041
|
# @!attribute [rw] key_id
|
@@ -16443,6 +17104,12 @@ module Aws::S3
|
|
16443
17104
|
include Aws::Structure
|
16444
17105
|
end
|
16445
17106
|
|
17107
|
+
# <note markdown="1"> Learn Amazon S3 Select is no longer available to new customers.
|
17108
|
+
# Existing customers of Amazon S3 Select can continue to use the feature
|
17109
|
+
# as usual. [Learn more][1]
|
17110
|
+
#
|
17111
|
+
# </note>
|
17112
|
+
#
|
16446
17113
|
# Request to filter the contents of an Amazon S3 object based on a
|
16447
17114
|
# simple Structured Query Language (SQL) statement. In the request,
|
16448
17115
|
# along with the SQL expression, you must specify a data serialization
|
@@ -16450,11 +17117,12 @@ module Aws::S3
|
|
16450
17117
|
# object data into records. It returns only records that match the
|
16451
17118
|
# specified SQL expression. You must also specify the data serialization
|
16452
17119
|
# format for the response. For more information, see [S3Select API
|
16453
|
-
# Documentation][
|
17120
|
+
# Documentation][2].
|
16454
17121
|
#
|
16455
17122
|
#
|
16456
17123
|
#
|
16457
|
-
# [1]:
|
17124
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
17125
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectSELECTContent.html
|
16458
17126
|
#
|
16459
17127
|
# @!attribute [rw] bucket
|
16460
17128
|
# The S3 bucket.
|
@@ -16566,8 +17234,21 @@ module Aws::S3
|
|
16566
17234
|
include Aws::Structure
|
16567
17235
|
end
|
16568
17236
|
|
17237
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
17238
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
17239
|
+
# usual. [Learn more][1]
|
17240
|
+
#
|
16569
17241
|
# Describes the parameters for Select job types.
|
16570
17242
|
#
|
17243
|
+
# Learn [How to optimize querying your data in Amazon S3][1] using
|
17244
|
+
# [Amazon Athena][2], [S3 Object Lambda][3], or client-side filtering.
|
17245
|
+
#
|
17246
|
+
#
|
17247
|
+
#
|
17248
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
17249
|
+
# [2]: https://docs.aws.amazon.com/athena/latest/ug/what-is.html
|
17250
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/transforming-objects.html
|
17251
|
+
#
|
16571
17252
|
# @!attribute [rw] input_serialization
|
16572
17253
|
# Describes the serialization format of the object.
|
16573
17254
|
# @return [Types::InputSerialization]
|
@@ -16577,7 +17258,15 @@ module Aws::S3
|
|
16577
17258
|
# @return [String]
|
16578
17259
|
#
|
16579
17260
|
# @!attribute [rw] expression
|
17261
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
17262
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
17263
|
+
# usual. [Learn more][1]
|
17264
|
+
#
|
16580
17265
|
# The expression that is used to query the object.
|
17266
|
+
#
|
17267
|
+
#
|
17268
|
+
#
|
17269
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16581
17270
|
# @return [String]
|
16582
17271
|
#
|
16583
17272
|
# @!attribute [rw] output_serialization
|
@@ -17285,14 +17974,22 @@ module Aws::S3
|
|
17285
17974
|
#
|
17286
17975
|
# **Directory buckets** - When you use this operation with a directory
|
17287
17976
|
# bucket, you must use virtual-hosted-style requests in the format `
|
17288
|
-
#
|
17977
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
17289
17978
|
# requests are not supported. Directory bucket names must be unique in
|
17290
|
-
# the chosen Availability Zone. Bucket names must
|
17291
|
-
#
|
17979
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
17980
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
17292
17981
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
17293
17982
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
17294
17983
|
# *Amazon S3 User Guide*.
|
17295
17984
|
#
|
17985
|
+
# <note markdown="1"> Copying objects across different Amazon Web Services Regions isn't
|
17986
|
+
# supported when the source or destination bucket is in Amazon Web
|
17987
|
+
# Services Local Zones. The source and destination buckets must have
|
17988
|
+
# the same parent Amazon Web Services Region. Otherwise, you get an
|
17989
|
+
# HTTP `400 Bad Request` error with the error code `InvalidRequest`.
|
17990
|
+
#
|
17991
|
+
# </note>
|
17992
|
+
#
|
17296
17993
|
# **Access points** - When you use this action with an access point,
|
17297
17994
|
# you must provide the alias of the access point in place of the
|
17298
17995
|
# bucket name or specify the access point ARN. When using the access
|
@@ -17611,14 +18308,14 @@ module Aws::S3
|
|
17611
18308
|
# @return [String]
|
17612
18309
|
#
|
17613
18310
|
# @!attribute [rw] checksum_crc32
|
17614
|
-
# The
|
17615
|
-
# only be present if
|
17616
|
-
# API operation on an object that was uploaded
|
17617
|
-
# uploads, this value may not be a direct checksum
|
17618
|
-
# object. Instead, it's a calculation based on the
|
17619
|
-
# each individual part. For more information about
|
17620
|
-
# calculated with multipart uploads, see [ Checking
|
17621
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
18311
|
+
# The Base64 encoded, 32-bit `CRC-32 checksum` of the object. This
|
18312
|
+
# checksum is only be present if the checksum was uploaded with the
|
18313
|
+
# object. When you use an API operation on an object that was uploaded
|
18314
|
+
# using multipart uploads, this value may not be a direct checksum
|
18315
|
+
# value of the full object. Instead, it's a calculation based on the
|
18316
|
+
# checksum values of each individual part. For more information about
|
18317
|
+
# how checksums are calculated with multipart uploads, see [ Checking
|
18318
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
17622
18319
|
#
|
17623
18320
|
#
|
17624
18321
|
#
|
@@ -17626,24 +18323,36 @@ module Aws::S3
|
|
17626
18323
|
# @return [String]
|
17627
18324
|
#
|
17628
18325
|
# @!attribute [rw] checksum_crc32c
|
17629
|
-
# The
|
17630
|
-
# only
|
17631
|
-
# API operation on an object that was uploaded
|
17632
|
-
# uploads, this value may not be a direct checksum
|
17633
|
-
# object. Instead, it's a calculation based on the
|
17634
|
-
# each individual part. For more information about
|
17635
|
-
# calculated with multipart uploads, see [ Checking
|
17636
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
18326
|
+
# The Base64 encoded, 32-bit `CRC-32C` checksum of the object. This
|
18327
|
+
# checksum is only present if the checksum was uploaded with the
|
18328
|
+
# object. When you use an API operation on an object that was uploaded
|
18329
|
+
# using multipart uploads, this value may not be a direct checksum
|
18330
|
+
# value of the full object. Instead, it's a calculation based on the
|
18331
|
+
# checksum values of each individual part. For more information about
|
18332
|
+
# how checksums are calculated with multipart uploads, see [ Checking
|
18333
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
17637
18334
|
#
|
17638
18335
|
#
|
17639
18336
|
#
|
17640
18337
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
|
17641
18338
|
# @return [String]
|
17642
18339
|
#
|
18340
|
+
# @!attribute [rw] checksum_crc64nvme
|
18341
|
+
# This header can be used as a data integrity check to verify that the
|
18342
|
+
# data received is the same data that was originally sent. This header
|
18343
|
+
# specifies the Base64 encoded, 64-bit `CRC-64NVME` checksum of the
|
18344
|
+
# part. For more information, see [Checking object integrity][1] in
|
18345
|
+
# the *Amazon S3 User Guide*.
|
18346
|
+
#
|
18347
|
+
#
|
18348
|
+
#
|
18349
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
18350
|
+
# @return [String]
|
18351
|
+
#
|
17643
18352
|
# @!attribute [rw] checksum_sha1
|
17644
|
-
# The
|
17645
|
-
# only be present if
|
17646
|
-
# API operation on an object that was uploaded using multipart
|
18353
|
+
# The Base64 encoded, 160-bit `SHA-1` digest of the object. This will
|
18354
|
+
# only be present if the object was uploaded with the object. When you
|
18355
|
+
# use the API operation on an object that was uploaded using multipart
|
17647
18356
|
# uploads, this value may not be a direct checksum value of the full
|
17648
18357
|
# object. Instead, it's a calculation based on the checksum values of
|
17649
18358
|
# each individual part. For more information about how checksums are
|
@@ -17656,14 +18365,14 @@ module Aws::S3
|
|
17656
18365
|
# @return [String]
|
17657
18366
|
#
|
17658
18367
|
# @!attribute [rw] checksum_sha256
|
17659
|
-
# The
|
17660
|
-
# only be present if
|
17661
|
-
# API operation on an object that was uploaded using
|
17662
|
-
# uploads, this value may not be a direct checksum value of
|
17663
|
-
# object. Instead, it's a calculation based on the checksum
|
17664
|
-
# each individual part. For more information about how
|
17665
|
-
# calculated with multipart uploads, see [ Checking
|
17666
|
-
# integrity][1] in the *Amazon S3 User Guide*.
|
18368
|
+
# The Base64 encoded, 256-bit `SHA-256` digest of the object. This
|
18369
|
+
# will only be present if the object was uploaded with the object.
|
18370
|
+
# When you use an API operation on an object that was uploaded using
|
18371
|
+
# multipart uploads, this value may not be a direct checksum value of
|
18372
|
+
# the full object. Instead, it's a calculation based on the checksum
|
18373
|
+
# values of each individual part. For more information about how
|
18374
|
+
# checksums are calculated with multipart uploads, see [ Checking
|
18375
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
17667
18376
|
#
|
17668
18377
|
#
|
17669
18378
|
#
|
@@ -17718,6 +18427,7 @@ module Aws::S3
|
|
17718
18427
|
:etag,
|
17719
18428
|
:checksum_crc32,
|
17720
18429
|
:checksum_crc32c,
|
18430
|
+
:checksum_crc64nvme,
|
17721
18431
|
:checksum_sha1,
|
17722
18432
|
:checksum_sha256,
|
17723
18433
|
:sse_customer_algorithm,
|
@@ -17738,10 +18448,10 @@ module Aws::S3
|
|
17738
18448
|
#
|
17739
18449
|
# **Directory buckets** - When you use this operation with a directory
|
17740
18450
|
# bucket, you must use virtual-hosted-style requests in the format `
|
17741
|
-
#
|
18451
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
17742
18452
|
# requests are not supported. Directory bucket names must be unique in
|
17743
|
-
# the chosen Availability Zone. Bucket names must
|
17744
|
-
#
|
18453
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
18454
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
17745
18455
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
17746
18456
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
17747
18457
|
# *Amazon S3 User Guide*.
|
@@ -17784,7 +18494,7 @@ module Aws::S3
|
|
17784
18494
|
# @return [Integer]
|
17785
18495
|
#
|
17786
18496
|
# @!attribute [rw] content_md5
|
17787
|
-
# The
|
18497
|
+
# The Base64 encoded 128-bit MD5 digest of the part data. This
|
17788
18498
|
# parameter is auto-populated when using the command from the CLI.
|
17789
18499
|
# This parameter is required if object lock parameters are specified.
|
17790
18500
|
#
|
@@ -17816,9 +18526,9 @@ module Aws::S3
|
|
17816
18526
|
# @!attribute [rw] checksum_crc32
|
17817
18527
|
# This header can be used as a data integrity check to verify that the
|
17818
18528
|
# data received is the same data that was originally sent. This header
|
17819
|
-
# specifies the
|
17820
|
-
# For more information, see [Checking object integrity][1] in
|
17821
|
-
# *Amazon S3 User Guide*.
|
18529
|
+
# specifies the Base64 encoded, 32-bit `CRC-32` checksum of the
|
18530
|
+
# object. For more information, see [Checking object integrity][1] in
|
18531
|
+
# the *Amazon S3 User Guide*.
|
17822
18532
|
#
|
17823
18533
|
#
|
17824
18534
|
#
|
@@ -17828,9 +18538,21 @@ module Aws::S3
|
|
17828
18538
|
# @!attribute [rw] checksum_crc32c
|
17829
18539
|
# This header can be used as a data integrity check to verify that the
|
17830
18540
|
# data received is the same data that was originally sent. This header
|
17831
|
-
# specifies the
|
17832
|
-
# For more information, see [Checking object integrity][1] in
|
17833
|
-
# *Amazon S3 User Guide*.
|
18541
|
+
# specifies the Base64 encoded, 32-bit `CRC-32C` checksum of the
|
18542
|
+
# object. For more information, see [Checking object integrity][1] in
|
18543
|
+
# the *Amazon S3 User Guide*.
|
18544
|
+
#
|
18545
|
+
#
|
18546
|
+
#
|
18547
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
18548
|
+
# @return [String]
|
18549
|
+
#
|
18550
|
+
# @!attribute [rw] checksum_crc64nvme
|
18551
|
+
# This header can be used as a data integrity check to verify that the
|
18552
|
+
# data received is the same data that was originally sent. This header
|
18553
|
+
# specifies the Base64 encoded, 64-bit `CRC-64NVME` checksum of the
|
18554
|
+
# part. For more information, see [Checking object integrity][1] in
|
18555
|
+
# the *Amazon S3 User Guide*.
|
17834
18556
|
#
|
17835
18557
|
#
|
17836
18558
|
#
|
@@ -17840,7 +18562,7 @@ module Aws::S3
|
|
17840
18562
|
# @!attribute [rw] checksum_sha1
|
17841
18563
|
# This header can be used as a data integrity check to verify that the
|
17842
18564
|
# data received is the same data that was originally sent. This header
|
17843
|
-
# specifies the
|
18565
|
+
# specifies the Base64 encoded, 160-bit `SHA-1` digest of the object.
|
17844
18566
|
# For more information, see [Checking object integrity][1] in the
|
17845
18567
|
# *Amazon S3 User Guide*.
|
17846
18568
|
#
|
@@ -17852,9 +18574,9 @@ module Aws::S3
|
|
17852
18574
|
# @!attribute [rw] checksum_sha256
|
17853
18575
|
# This header can be used as a data integrity check to verify that the
|
17854
18576
|
# data received is the same data that was originally sent. This header
|
17855
|
-
# specifies the
|
17856
|
-
# For more information, see [Checking object integrity][1] in
|
17857
|
-
# *Amazon S3 User Guide*.
|
18577
|
+
# specifies the Base64 encoded, 256-bit `SHA-256` digest of the
|
18578
|
+
# object. For more information, see [Checking object integrity][1] in
|
18579
|
+
# the *Amazon S3 User Guide*.
|
17858
18580
|
#
|
17859
18581
|
#
|
17860
18582
|
#
|
@@ -17943,6 +18665,7 @@ module Aws::S3
|
|
17943
18665
|
:checksum_algorithm,
|
17944
18666
|
:checksum_crc32,
|
17945
18667
|
:checksum_crc32c,
|
18668
|
+
:checksum_crc64nvme,
|
17946
18669
|
:checksum_sha1,
|
17947
18670
|
:checksum_sha256,
|
17948
18671
|
:key,
|
@@ -18118,7 +18841,7 @@ module Aws::S3
|
|
18118
18841
|
# @!attribute [rw] checksum_crc32
|
18119
18842
|
# This header can be used as a data integrity check to verify that the
|
18120
18843
|
# data received is the same data that was originally sent. This
|
18121
|
-
# specifies the
|
18844
|
+
# specifies the Base64 encoded, 32-bit `CRC-32` checksum of the object
|
18122
18845
|
# returned by the Object Lambda function. This may not match the
|
18123
18846
|
# checksum for the object stored in Amazon S3. Amazon S3 will perform
|
18124
18847
|
# validation of the checksum values only when the original `GetObject`
|
@@ -18139,13 +18862,13 @@ module Aws::S3
|
|
18139
18862
|
# @!attribute [rw] checksum_crc32c
|
18140
18863
|
# This header can be used as a data integrity check to verify that the
|
18141
18864
|
# data received is the same data that was originally sent. This
|
18142
|
-
# specifies the
|
18143
|
-
# returned by the Object Lambda function. This may not match
|
18144
|
-
# checksum for the object stored in Amazon S3. Amazon S3 will
|
18145
|
-
# validation of the checksum values only when the original
|
18146
|
-
# request required checksum validation. For more
|
18147
|
-
# checksums, see [Checking object integrity][1] in
|
18148
|
-
# Guide*.
|
18865
|
+
# specifies the Base64 encoded, 32-bit `CRC-32C` checksum of the
|
18866
|
+
# object returned by the Object Lambda function. This may not match
|
18867
|
+
# the checksum for the object stored in Amazon S3. Amazon S3 will
|
18868
|
+
# perform validation of the checksum values only when the original
|
18869
|
+
# `GetObject` request required checksum validation. For more
|
18870
|
+
# information about checksums, see [Checking object integrity][1] in
|
18871
|
+
# the *Amazon S3 User Guide*.
|
18149
18872
|
#
|
18150
18873
|
# Only one checksum header can be specified at a time. If you supply
|
18151
18874
|
# multiple checksum headers, this request will fail.
|
@@ -18155,10 +18878,22 @@ module Aws::S3
|
|
18155
18878
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
18156
18879
|
# @return [String]
|
18157
18880
|
#
|
18881
|
+
# @!attribute [rw] checksum_crc64nvme
|
18882
|
+
# This header can be used as a data integrity check to verify that the
|
18883
|
+
# data received is the same data that was originally sent. This header
|
18884
|
+
# specifies the Base64 encoded, 64-bit `CRC-64NVME` checksum of the
|
18885
|
+
# part. For more information, see [Checking object integrity][1] in
|
18886
|
+
# the *Amazon S3 User Guide*.
|
18887
|
+
#
|
18888
|
+
#
|
18889
|
+
#
|
18890
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
18891
|
+
# @return [String]
|
18892
|
+
#
|
18158
18893
|
# @!attribute [rw] checksum_sha1
|
18159
18894
|
# This header can be used as a data integrity check to verify that the
|
18160
18895
|
# data received is the same data that was originally sent. This
|
18161
|
-
# specifies the
|
18896
|
+
# specifies the Base64 encoded, 160-bit `SHA-1` digest of the object
|
18162
18897
|
# returned by the Object Lambda function. This may not match the
|
18163
18898
|
# checksum for the object stored in Amazon S3. Amazon S3 will perform
|
18164
18899
|
# validation of the checksum values only when the original `GetObject`
|
@@ -18177,7 +18912,7 @@ module Aws::S3
|
|
18177
18912
|
# @!attribute [rw] checksum_sha256
|
18178
18913
|
# This header can be used as a data integrity check to verify that the
|
18179
18914
|
# data received is the same data that was originally sent. This
|
18180
|
-
# specifies the
|
18915
|
+
# specifies the Base64 encoded, 256-bit `SHA-256` digest of the object
|
18181
18916
|
# returned by the Object Lambda function. This may not match the
|
18182
18917
|
# checksum for the object stored in Amazon S3. Amazon S3 will perform
|
18183
18918
|
# validation of the checksum values only when the original `GetObject`
|
@@ -18351,6 +19086,7 @@ module Aws::S3
|
|
18351
19086
|
:content_type,
|
18352
19087
|
:checksum_crc32,
|
18353
19088
|
:checksum_crc32c,
|
19089
|
+
:checksum_crc64nvme,
|
18354
19090
|
:checksum_sha1,
|
18355
19091
|
:checksum_sha256,
|
18356
19092
|
:delete_marker,
|