aws-sdk-s3 1.176.1 → 1.178.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.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +12 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-s3/bucket.rb +38 -24
  5. data/lib/aws-sdk-s3/bucket_acl.rb +5 -4
  6. data/lib/aws-sdk-s3/bucket_cors.rb +5 -4
  7. data/lib/aws-sdk-s3/bucket_lifecycle.rb +1 -1
  8. data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +2 -2
  9. data/lib/aws-sdk-s3/bucket_logging.rb +1 -1
  10. data/lib/aws-sdk-s3/bucket_policy.rb +9 -8
  11. data/lib/aws-sdk-s3/bucket_request_payment.rb +2 -2
  12. data/lib/aws-sdk-s3/bucket_tagging.rb +2 -2
  13. data/lib/aws-sdk-s3/bucket_versioning.rb +6 -6
  14. data/lib/aws-sdk-s3/bucket_website.rb +2 -2
  15. data/lib/aws-sdk-s3/client.rb +346 -204
  16. data/lib/aws-sdk-s3/client_api.rb +34 -2
  17. data/lib/aws-sdk-s3/file_downloader.rb +4 -21
  18. data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
  19. data/lib/aws-sdk-s3/multipart_upload.rb +48 -6
  20. data/lib/aws-sdk-s3/multipart_upload_part.rb +52 -36
  21. data/lib/aws-sdk-s3/object.rb +108 -58
  22. data/lib/aws-sdk-s3/object_acl.rb +4 -4
  23. data/lib/aws-sdk-s3/object_summary.rb +63 -28
  24. data/lib/aws-sdk-s3/object_version.rb +21 -8
  25. data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
  26. data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
  27. data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
  28. data/lib/aws-sdk-s3/presigner.rb +4 -5
  29. data/lib/aws-sdk-s3/types.rb +725 -405
  30. data/lib/aws-sdk-s3.rb +1 -1
  31. data/sig/bucket.rbs +3 -2
  32. data/sig/bucket_acl.rbs +1 -1
  33. data/sig/bucket_cors.rbs +1 -1
  34. data/sig/bucket_lifecycle.rbs +1 -1
  35. data/sig/bucket_lifecycle_configuration.rbs +1 -1
  36. data/sig/bucket_logging.rbs +1 -1
  37. data/sig/bucket_policy.rbs +1 -1
  38. data/sig/bucket_request_payment.rbs +1 -1
  39. data/sig/bucket_tagging.rbs +1 -1
  40. data/sig/bucket_versioning.rbs +3 -3
  41. data/sig/bucket_website.rbs +1 -1
  42. data/sig/client.rbs +50 -29
  43. data/sig/multipart_upload.rbs +8 -1
  44. data/sig/multipart_upload_part.rbs +5 -1
  45. data/sig/object.rbs +13 -5
  46. data/sig/object_acl.rbs +1 -1
  47. data/sig/object_summary.rbs +11 -6
  48. data/sig/object_version.rbs +5 -2
  49. data/sig/resource.rbs +2 -0
  50. data/sig/types.rbs +61 -32
  51. metadata +5 -5
  52. data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
@@ -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 base64-encoded, 32-bit CRC-32 checksum of the object. This will
659
- # only be present if it was uploaded with the object. When you use an
660
- # API operation on an object that was uploaded using multipart
661
- # uploads, this value may not be a direct checksum value of the full
662
- # object. Instead, it's a calculation based on the checksum values of
663
- # each individual part. For more information about how checksums are
664
- # calculated with multipart uploads, see [ Checking object
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 base64-encoded, 32-bit CRC-32C checksum of the object. This will
674
- # only be present if it was uploaded with the object. When you use an
675
- # API operation on an object that was uploaded using multipart
676
- # uploads, this value may not be a direct checksum value of the full
677
- # object. Instead, it's a calculation based on the checksum values of
678
- # each individual part. For more information about how checksums are
679
- # calculated with multipart uploads, see [ Checking object
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 base64-encoded, 160-bit SHA-1 digest of the object. This will
689
- # only be present if it was uploaded with the object. When you use the
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 base64-encoded, 256-bit SHA-256 digest of the object. This will
704
- # only be present if it was uploaded with the object. When you use an
705
- # API operation on an object that was uploaded using multipart
706
- # uploads, this value may not be a direct checksum value of the full
707
- # object. Instead, it's a calculation based on the checksum values of
708
- # each individual part. For more information about how checksums are
709
- # calculated with multipart uploads, see [ Checking object
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 base64-encoded, 32-bit CRC-32 checksum of the object. This will
828
- # only be present if it was uploaded with the object. When you use an
829
- # API operation on an object that was uploaded using multipart
830
- # uploads, this value may not be a direct checksum value of the full
831
- # object. Instead, it's a calculation based on the checksum values of
832
- # each individual part. For more information about how checksums are
833
- # calculated with multipart uploads, see [ Checking object
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 base64-encoded, 32-bit CRC-32C checksum of the object. This will
843
- # only be present if it was uploaded with the object. When you use an
844
- # API operation on an object that was uploaded using multipart
845
- # uploads, this value may not be a direct checksum value of the full
846
- # object. Instead, it's a calculation based on the checksum values of
847
- # each individual part. For more information about how checksums are
848
- # calculated with multipart uploads, see [ Checking object
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 base64-encoded, 160-bit SHA-1 digest of the object. This will
858
- # only be present if it was uploaded with the object. When you use the
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 base64-encoded, 256-bit SHA-256 digest of the object. This will
873
- # only be present if it was uploaded with the object. When you use an
874
- # API operation on an object that was uploaded using multipart
875
- # uploads, this value may not be a direct checksum value of the full
876
- # object. Instead, it's a calculation based on the checksum values of
877
- # each individual part. For more information about how checksums are
878
- # calculated with multipart uploads, see [ Checking object
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,
@@ -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 base64-encoded, 32-bit CRC-32 checksum of the object.
1002
- # For more information, see [Checking object integrity][1] in the
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 base64-encoded, 32-bit CRC-32C checksum of the object.
1014
- # For more information, see [Checking object integrity][1] in the
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 base64-encoded, 160-bit SHA-1 digest of the object.
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 base64-encoded, 256-bit SHA-256 digest of the object.
1038
- # For more information, see [Checking object integrity][1] in the
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 base64-encoded, 32-bit CRC-32 checksum of the object. This will
1207
- # only be present if it was uploaded with the object. When you use an
1208
- # API operation on an object that was uploaded using multipart
1209
- # uploads, this value may not be a direct checksum value of the full
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#large-object-checksums
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 base64-encoded, 32-bit CRC-32C checksum of the object. This will
1222
- # only be present if it was uploaded with the object. When you use an
1223
- # API operation on an object that was uploaded using multipart
1224
- # uploads, this value may not be a direct checksum value of the full
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#large-object-checksums
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 base64-encoded, 160-bit SHA-1 digest of the object. This will
1237
- # only be present if it was uploaded with the object. When you use the
1238
- # API operation on an object that was uploaded using multipart
1239
- # uploads, this value may not be a direct checksum value of the full
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#large-object-checksums
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 base64-encoded, 256-bit SHA-256 digest of the object. This will
1252
- # only be present if it was uploaded with the object. When you use an
1253
- # API operation on an object that was uploaded using multipart
1254
- # uploads, this value may not be a direct checksum value of the full
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#large-object-checksums
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)
@@ -1410,8 +1496,8 @@ module Aws::S3
1410
1496
  #
1411
1497
  # @!attribute [rw] ssekms_encryption_context
1412
1498
  # If present, indicates the Amazon Web Services KMS Encryption Context
1413
- # to use for object encryption. The value of this header is a
1414
- # base64-encoded UTF-8 string holding JSON with the encryption context
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
1415
1501
  # key-value pairs.
1416
1502
  # @return [String]
1417
1503
  #
@@ -2331,11 +2417,21 @@ module Aws::S3
2331
2417
  # Creation date of the object.
2332
2418
  # @return [Time]
2333
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
+ #
2334
2430
  # @!attribute [rw] checksum_crc32
2335
- # The base64-encoded, 32-bit CRC-32 checksum of the object. This will
2336
- # only be present if it was uploaded with the object. For more
2337
- # information, see [ Checking object integrity][1] in the *Amazon S3
2338
- # 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*.
2339
2435
  #
2340
2436
  #
2341
2437
  #
@@ -2343,10 +2439,23 @@ module Aws::S3
2343
2439
  # @return [String]
2344
2440
  #
2345
2441
  # @!attribute [rw] checksum_crc32c
2346
- # The base64-encoded, 32-bit CRC-32C checksum of the object. This will
2347
- # only be present if it was uploaded with the object. For more
2348
- # information, see [ Checking object integrity][1] in the *Amazon S3
2349
- # 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*.
2350
2459
  #
2351
2460
  #
2352
2461
  #
@@ -2354,8 +2463,8 @@ module Aws::S3
2354
2463
  # @return [String]
2355
2464
  #
2356
2465
  # @!attribute [rw] checksum_sha1
2357
- # The base64-encoded, 160-bit SHA-1 digest of the object. This will
2358
- # only be present if it was uploaded with the object. For more
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
2359
2468
  # information, see [ Checking object integrity][1] in the *Amazon S3
2360
2469
  # User Guide*.
2361
2470
  #
@@ -2365,10 +2474,10 @@ module Aws::S3
2365
2474
  # @return [String]
2366
2475
  #
2367
2476
  # @!attribute [rw] checksum_sha256
2368
- # The base64-encoded, 256-bit SHA-256 digest of the object. This will
2369
- # only be present if it was uploaded with the object. For more
2370
- # information, see [ Checking object integrity][1] in the *Amazon S3
2371
- # 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*.
2372
2481
  #
2373
2482
  #
2374
2483
  #
@@ -2380,8 +2489,10 @@ module Aws::S3
2380
2489
  class CopyObjectResult < Struct.new(
2381
2490
  :etag,
2382
2491
  :last_modified,
2492
+ :checksum_type,
2383
2493
  :checksum_crc32,
2384
2494
  :checksum_crc32c,
2495
+ :checksum_crc64nvme,
2385
2496
  :checksum_sha1,
2386
2497
  :checksum_sha256)
2387
2498
  SENSITIVE = []
@@ -2399,63 +2510,63 @@ module Aws::S3
2399
2510
  # @return [Time]
2400
2511
  #
2401
2512
  # @!attribute [rw] checksum_crc32
2402
- # The base64-encoded, 32-bit CRC-32 checksum of the object. This will
2403
- # only be present if it was uploaded with the object. When you use an
2404
- # API operation on an object that was uploaded using multipart
2405
- # uploads, this value may not be a direct checksum value of the full
2406
- # object. Instead, it's a calculation based on the checksum values of
2407
- # each individual part. For more information about how checksums are
2408
- # calculated with multipart uploads, see [ Checking object
2409
- # 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*.
2410
2518
  #
2411
2519
  #
2412
2520
  #
2413
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
2521
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
2414
2522
  # @return [String]
2415
2523
  #
2416
2524
  # @!attribute [rw] checksum_crc32c
2417
- # The base64-encoded, 32-bit CRC-32C checksum of the object. This will
2418
- # only be present if it was uploaded with the object. When you use an
2419
- # API operation on an object that was uploaded using multipart
2420
- # uploads, this value may not be a direct checksum value of the full
2421
- # object. Instead, it's a calculation based on the checksum values of
2422
- # each individual part. For more information about how checksums are
2423
- # calculated with multipart uploads, see [ Checking object
2424
- # 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*.
2425
2530
  #
2426
2531
  #
2427
2532
  #
2428
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
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
2429
2546
  # @return [String]
2430
2547
  #
2431
2548
  # @!attribute [rw] checksum_sha1
2432
- # The base64-encoded, 160-bit SHA-1 digest of the object. This will
2433
- # only be present if it was uploaded with the object. When you use the
2434
- # API operation on an object that was uploaded using multipart
2435
- # uploads, this value may not be a direct checksum value of the full
2436
- # object. Instead, it's a calculation based on the checksum values of
2437
- # each individual part. For more information about how checksums are
2438
- # calculated with multipart uploads, see [ Checking object
2439
- # 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*.
2440
2554
  #
2441
2555
  #
2442
2556
  #
2443
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
2557
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
2444
2558
  # @return [String]
2445
2559
  #
2446
2560
  # @!attribute [rw] checksum_sha256
2447
- # The base64-encoded, 256-bit SHA-256 digest of the object. This will
2448
- # only be present if it was uploaded with the object. When you use an
2449
- # API operation on an object that was uploaded using multipart
2450
- # uploads, this value may not be a direct checksum value of the full
2451
- # object. Instead, it's a calculation based on the checksum values of
2452
- # each individual part. For more information about how checksums are
2453
- # calculated with multipart uploads, see [ Checking object
2454
- # 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*.
2455
2566
  #
2456
2567
  #
2457
2568
  #
2458
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
2569
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
2459
2570
  # @return [String]
2460
2571
  #
2461
2572
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CopyPartResult AWS API Documentation
@@ -2465,6 +2576,7 @@ module Aws::S3
2465
2576
  :last_modified,
2466
2577
  :checksum_crc32,
2467
2578
  :checksum_crc32c,
2579
+ :checksum_crc64nvme,
2468
2580
  :checksum_sha1,
2469
2581
  :checksum_sha256)
2470
2582
  SENSITIVE = []
@@ -2802,8 +2914,8 @@ module Aws::S3
2802
2914
  #
2803
2915
  # @!attribute [rw] ssekms_encryption_context
2804
2916
  # If present, indicates the Amazon Web Services KMS Encryption Context
2805
- # to use for object encryption. The value of this header is a
2806
- # Base64-encoded string of a UTF-8 encoded JSON, which contains the
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
2807
2919
  # encryption context as key-value pairs.
2808
2920
  # @return [String]
2809
2921
  #
@@ -2826,6 +2938,16 @@ module Aws::S3
2826
2938
  # The algorithm that was used to create a checksum of the object.
2827
2939
  # @return [String]
2828
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
+ #
2829
2951
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateMultipartUploadOutput AWS API Documentation
2830
2952
  #
2831
2953
  class CreateMultipartUploadOutput < Struct.new(
@@ -2841,7 +2963,8 @@ module Aws::S3
2841
2963
  :ssekms_encryption_context,
2842
2964
  :bucket_key_enabled,
2843
2965
  :request_charged,
2844
- :checksum_algorithm)
2966
+ :checksum_algorithm,
2967
+ :checksum_type)
2845
2968
  SENSITIVE = [:ssekms_key_id, :ssekms_encryption_context]
2846
2969
  include Aws::Structure
2847
2970
  end
@@ -3372,7 +3495,7 @@ module Aws::S3
3372
3495
  #
3373
3496
  # @!attribute [rw] ssekms_encryption_context
3374
3497
  # Specifies the Amazon Web Services KMS Encryption Context to use for
3375
- # object encryption. The value of this header is a Base64-encoded
3498
+ # object encryption. The value of this header is a Base64 encoded
3376
3499
  # string of a UTF-8 encoded JSON, which contains the encryption
3377
3500
  # context as key-value pairs.
3378
3501
  #
@@ -3480,6 +3603,16 @@ module Aws::S3
3480
3603
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
3481
3604
  # @return [String]
3482
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
+ #
3483
3616
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateMultipartUploadRequest AWS API Documentation
3484
3617
  #
3485
3618
  class CreateMultipartUploadRequest < Struct.new(
@@ -3512,7 +3645,8 @@ module Aws::S3
3512
3645
  :object_lock_retain_until_date,
3513
3646
  :object_lock_legal_hold_status,
3514
3647
  :expected_bucket_owner,
3515
- :checksum_algorithm)
3648
+ :checksum_algorithm,
3649
+ :checksum_type)
3516
3650
  SENSITIVE = [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
3517
3651
  include Aws::Structure
3518
3652
  end
@@ -3530,8 +3664,8 @@ module Aws::S3
3530
3664
  #
3531
3665
  # @!attribute [rw] ssekms_encryption_context
3532
3666
  # If present, indicates the Amazon Web Services KMS Encryption Context
3533
- # to use for object encryption. The value of this header is a
3534
- # Base64-encoded string of a UTF-8 encoded JSON, which contains the
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
3535
3669
  # encryption context as key-value pairs. This value is stored as
3536
3670
  # object metadata and automatically gets passed on to Amazon Web
3537
3671
  # Services KMS for future `GetObject` operations on this object.
@@ -3612,7 +3746,7 @@ module Aws::S3
3612
3746
  # @!attribute [rw] ssekms_encryption_context
3613
3747
  # Specifies the Amazon Web Services KMS Encryption Context as an
3614
3748
  # additional encryption context to use for object encryption. The
3615
- # value of this header is a Base64-encoded string of a UTF-8 encoded
3749
+ # value of this header is a Base64 encoded string of a UTF-8 encoded
3616
3750
  # JSON, which contains the encryption context as key-value pairs. This
3617
3751
  # value is stored as object metadata and automatically gets passed on
3618
3752
  # to Amazon Web Services KMS for future `GetObject` operations on this
@@ -4599,23 +4733,23 @@ module Aws::S3
4599
4733
  # For the `x-amz-checksum-algorithm ` header, replace ` algorithm `
4600
4734
  # with the supported algorithm from the following list:
4601
4735
  #
4602
- # * `CRC32`
4736
+ # * `CRC-32`
4737
+ #
4738
+ # * `CRC-32C`
4603
4739
  #
4604
- # * `CRC32C`
4740
+ # * `CRC-64NVME`
4605
4741
  #
4606
- # * `SHA1`
4742
+ # * `SHA-1`
4607
4743
  #
4608
- # * `SHA256`
4744
+ # * `SHA-256`
4609
4745
  #
4610
4746
  # For more information, see [Checking object integrity][1] in the
4611
4747
  # *Amazon S3 User Guide*.
4612
4748
  #
4613
4749
  # If the individual checksum value you provide through
4614
4750
  # `x-amz-checksum-algorithm ` doesn't match the checksum algorithm
4615
- # you set through `x-amz-sdk-checksum-algorithm`, Amazon S3 ignores
4616
- # any provided `ChecksumAlgorithm` parameter and uses the checksum
4617
- # algorithm that matches the provided value in
4618
- # `x-amz-checksum-algorithm `.
4751
+ # you set through `x-amz-sdk-checksum-algorithm`, Amazon S3 fails the
4752
+ # request with a `BadDigest` error.
4619
4753
  #
4620
4754
  # If you provide an individual checksum, Amazon S3 ignores any
4621
4755
  # provided `ChecksumAlgorithm` parameter.
@@ -6141,7 +6275,7 @@ module Aws::S3
6141
6275
  # Indicates which default minimum object size behavior is applied to
6142
6276
  # the lifecycle configuration.
6143
6277
  #
6144
- # <note markdown="1"> This parameter applies to general purpose buckets only. It is not
6278
+ # <note markdown="1"> This parameter applies to general purpose buckets only. It isn't
6145
6279
  # supported for directory bucket lifecycle configurations.
6146
6280
  #
6147
6281
  # </note>
@@ -7365,10 +7499,10 @@ module Aws::S3
7365
7499
  # @return [String]
7366
7500
  #
7367
7501
  # @!attribute [rw] checksum_crc32
7368
- # The base64-encoded, 32-bit CRC-32 checksum of the object. This will
7369
- # only be present if it was uploaded with the object. For more
7370
- # information, see [ Checking object integrity][1] in the *Amazon S3
7371
- # 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*.
7372
7506
  #
7373
7507
  #
7374
7508
  #
@@ -7376,10 +7510,20 @@ module Aws::S3
7376
7510
  # @return [String]
7377
7511
  #
7378
7512
  # @!attribute [rw] checksum_crc32c
7379
- # The base64-encoded, 32-bit CRC-32C checksum of the object. This will
7380
- # only be present if it was uploaded with the object. For more
7381
- # information, see [ Checking object integrity][1] in the *Amazon S3
7382
- # 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].
7383
7527
  #
7384
7528
  #
7385
7529
  #
@@ -7387,8 +7531,8 @@ module Aws::S3
7387
7531
  # @return [String]
7388
7532
  #
7389
7533
  # @!attribute [rw] checksum_sha1
7390
- # The base64-encoded, 160-bit SHA-1 digest of the object. This will
7391
- # only be present if it was uploaded with the object. For more
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
7392
7536
  # information, see [ Checking object integrity][1] in the *Amazon S3
7393
7537
  # User Guide*.
7394
7538
  #
@@ -7398,10 +7542,23 @@ module Aws::S3
7398
7542
  # @return [String]
7399
7543
  #
7400
7544
  # @!attribute [rw] checksum_sha256
7401
- # The base64-encoded, 256-bit SHA-256 digest of the object. This will
7402
- # only be present if it was uploaded with the object. For more
7403
- # information, see [ Checking object integrity][1] in the *Amazon S3
7404
- # 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*.
7405
7562
  #
7406
7563
  #
7407
7564
  #
@@ -7602,8 +7759,10 @@ module Aws::S3
7602
7759
  :etag,
7603
7760
  :checksum_crc32,
7604
7761
  :checksum_crc32c,
7762
+ :checksum_crc64nvme,
7605
7763
  :checksum_sha1,
7606
7764
  :checksum_sha256,
7765
+ :checksum_type,
7607
7766
  :missing_meta,
7608
7767
  :version_id,
7609
7768
  :cache_control,
@@ -8550,14 +8709,14 @@ module Aws::S3
8550
8709
  # @return [Integer]
8551
8710
  #
8552
8711
  # @!attribute [rw] checksum_crc32
8553
- # The base64-encoded, 32-bit CRC-32 checksum of the object. This will
8554
- # only be present if it was uploaded with the object. When you use an
8555
- # API operation on an object that was uploaded using multipart
8556
- # uploads, this value may not be a direct checksum value of the full
8557
- # object. Instead, it's a calculation based on the checksum values of
8558
- # each individual part. For more information about how checksums are
8559
- # calculated with multipart uploads, see [ Checking object
8560
- # 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*.
8561
8720
  #
8562
8721
  #
8563
8722
  #
@@ -8565,24 +8724,34 @@ module Aws::S3
8565
8724
  # @return [String]
8566
8725
  #
8567
8726
  # @!attribute [rw] checksum_crc32c
8568
- # The base64-encoded, 32-bit CRC-32C checksum of the object. This will
8569
- # only be present if it was uploaded with the object. When you use an
8570
- # API operation on an object that was uploaded using multipart
8571
- # uploads, this value may not be a direct checksum value of the full
8572
- # object. Instead, it's a calculation based on the checksum values of
8573
- # each individual part. For more information about how checksums are
8574
- # calculated with multipart uploads, see [ Checking object
8575
- # 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*.
8576
8735
  #
8577
8736
  #
8578
8737
  #
8579
8738
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
8580
8739
  # @return [String]
8581
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
+ #
8582
8751
  # @!attribute [rw] checksum_sha1
8583
- # The base64-encoded, 160-bit SHA-1 digest of the object. This will
8584
- # only be present if it was uploaded with the object. When you use the
8585
- # 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
8586
8755
  # uploads, this value may not be a direct checksum value of the full
8587
8756
  # object. Instead, it's a calculation based on the checksum values of
8588
8757
  # each individual part. For more information about how checksums are
@@ -8595,20 +8764,33 @@ module Aws::S3
8595
8764
  # @return [String]
8596
8765
  #
8597
8766
  # @!attribute [rw] checksum_sha256
8598
- # The base64-encoded, 256-bit SHA-256 digest of the object. This will
8599
- # only be present if it was uploaded with the object. When you use an
8600
- # API operation on an object that was uploaded using multipart
8601
- # uploads, this value may not be a direct checksum value of the full
8602
- # object. Instead, it's a calculation based on the checksum values of
8603
- # each individual part. For more information about how checksums are
8604
- # calculated with multipart uploads, see [ Checking object
8605
- # 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*.
8606
8775
  #
8607
8776
  #
8608
8777
  #
8609
8778
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
8610
8779
  # @return [String]
8611
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
+ #
8612
8794
  # @!attribute [rw] etag
8613
8795
  # An entity tag (ETag) is an opaque identifier assigned by a web
8614
8796
  # server to a specific version of a resource found at a URL.
@@ -8848,8 +9030,10 @@ module Aws::S3
8848
9030
  :content_length,
8849
9031
  :checksum_crc32,
8850
9032
  :checksum_crc32c,
9033
+ :checksum_crc64nvme,
8851
9034
  :checksum_sha1,
8852
9035
  :checksum_sha256,
9036
+ :checksum_type,
8853
9037
  :etag,
8854
9038
  :missing_meta,
8855
9039
  :version_id,
@@ -11494,6 +11678,19 @@ module Aws::S3
11494
11678
  # The algorithm that was used to create a checksum of the object.
11495
11679
  # @return [String]
11496
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
+ #
11497
11694
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListPartsOutput AWS API Documentation
11498
11695
  #
11499
11696
  class ListPartsOutput < Struct.new(
@@ -11511,7 +11708,8 @@ module Aws::S3
11511
11708
  :owner,
11512
11709
  :storage_class,
11513
11710
  :request_charged,
11514
- :checksum_algorithm)
11711
+ :checksum_algorithm,
11712
+ :checksum_type)
11515
11713
  SENSITIVE = []
11516
11714
  include Aws::Structure
11517
11715
  end
@@ -11974,6 +12172,16 @@ module Aws::S3
11974
12172
  # The algorithm that was used to create a checksum of the object.
11975
12173
  # @return [String]
11976
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
+ #
11977
12185
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/MultipartUpload AWS API Documentation
11978
12186
  #
11979
12187
  class MultipartUpload < Struct.new(
@@ -11983,7 +12191,8 @@ module Aws::S3
11983
12191
  :storage_class,
11984
12192
  :owner,
11985
12193
  :initiator,
11986
- :checksum_algorithm)
12194
+ :checksum_algorithm,
12195
+ :checksum_type)
11987
12196
  SENSITIVE = []
11988
12197
  include Aws::Structure
11989
12198
  end
@@ -12234,6 +12443,16 @@ module Aws::S3
12234
12443
  # The algorithm that was used to create a checksum of the object.
12235
12444
  # @return [Array<String>]
12236
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
+ #
12237
12456
  # @!attribute [rw] size
12238
12457
  # Size in bytes of the object
12239
12458
  # @return [Integer]
@@ -12281,6 +12500,7 @@ module Aws::S3
12281
12500
  :last_modified,
12282
12501
  :etag,
12283
12502
  :checksum_algorithm,
12503
+ :checksum_type,
12284
12504
  :size,
12285
12505
  :storage_class,
12286
12506
  :owner,
@@ -12453,11 +12673,10 @@ module Aws::S3
12453
12673
  # @return [Integer]
12454
12674
  #
12455
12675
  # @!attribute [rw] checksum_crc32
12456
- # This header can be used as a data integrity check to verify that the
12457
- # data received is the same data that was originally sent. This header
12458
- # specifies the base64-encoded, 32-bit CRC-32 checksum of the object.
12459
- # For more information, see [Checking object integrity][1] in the
12460
- # *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*.
12461
12680
  #
12462
12681
  #
12463
12682
  #
@@ -12465,48 +12684,49 @@ module Aws::S3
12465
12684
  # @return [String]
12466
12685
  #
12467
12686
  # @!attribute [rw] checksum_crc32c
12468
- # The base64-encoded, 32-bit CRC-32C checksum of the object. This will
12469
- # only be present if it was uploaded with the object. When you use an
12470
- # API operation on an object that was uploaded using multipart
12471
- # uploads, this value may not be a direct checksum value of the full
12472
- # object. Instead, it's a calculation based on the checksum values of
12473
- # each individual part. For more information about how checksums are
12474
- # calculated with multipart uploads, see [ Checking object
12475
- # 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*.
12476
12691
  #
12477
12692
  #
12478
12693
  #
12479
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
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
12480
12708
  # @return [String]
12481
12709
  #
12482
12710
  # @!attribute [rw] checksum_sha1
12483
- # The base64-encoded, 160-bit SHA-1 digest of the object. This will
12484
- # only be present if it was uploaded with the object. When you use the
12485
- # API operation on an object that was uploaded using multipart
12486
- # uploads, this value may not be a direct checksum value of the full
12487
- # object. Instead, it's a calculation based on the checksum values of
12488
- # each individual part. For more information about how checksums are
12489
- # calculated with multipart uploads, see [ Checking object
12490
- # 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*.
12491
12715
  #
12492
12716
  #
12493
12717
  #
12494
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
12718
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
12495
12719
  # @return [String]
12496
12720
  #
12497
12721
  # @!attribute [rw] checksum_sha256
12498
- # The base64-encoded, 256-bit SHA-256 digest of the object. This will
12499
- # only be present if it was uploaded with the object. When you use an
12500
- # API operation on an object that was uploaded using multipart
12501
- # uploads, this value may not be a direct checksum value of the full
12502
- # object. Instead, it's a calculation based on the checksum values of
12503
- # each individual part. For more information about how checksums are
12504
- # calculated with multipart uploads, see [ Checking object
12505
- # 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*.
12506
12726
  #
12507
12727
  #
12508
12728
  #
12509
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
12729
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
12510
12730
  # @return [String]
12511
12731
  #
12512
12732
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ObjectPart AWS API Documentation
@@ -12516,6 +12736,7 @@ module Aws::S3
12516
12736
  :size,
12517
12737
  :checksum_crc32,
12518
12738
  :checksum_crc32c,
12739
+ :checksum_crc64nvme,
12519
12740
  :checksum_sha1,
12520
12741
  :checksum_sha256)
12521
12742
  SENSITIVE = []
@@ -12532,6 +12753,16 @@ module Aws::S3
12532
12753
  # The algorithm that was used to create a checksum of the object.
12533
12754
  # @return [Array<String>]
12534
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
+ #
12535
12766
  # @!attribute [rw] size
12536
12767
  # Size in bytes of the object.
12537
12768
  # @return [Integer]
@@ -12578,6 +12809,7 @@ module Aws::S3
12578
12809
  class ObjectVersion < Struct.new(
12579
12810
  :etag,
12580
12811
  :checksum_algorithm,
12812
+ :checksum_type,
12581
12813
  :size,
12582
12814
  :storage_class,
12583
12815
  :key,
@@ -12753,11 +12985,10 @@ module Aws::S3
12753
12985
  # @return [Integer]
12754
12986
  #
12755
12987
  # @!attribute [rw] checksum_crc32
12756
- # This header can be used as a data integrity check to verify that the
12757
- # data received is the same data that was originally sent. This header
12758
- # specifies the base64-encoded, 32-bit CRC-32 checksum of the object.
12759
- # For more information, see [Checking object integrity][1] in the
12760
- # *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*.
12761
12992
  #
12762
12993
  #
12763
12994
  #
@@ -12765,41 +12996,45 @@ module Aws::S3
12765
12996
  # @return [String]
12766
12997
  #
12767
12998
  # @!attribute [rw] checksum_crc32c
12768
- # The base64-encoded, 32-bit CRC-32C checksum of the object. This will
12769
- # only be present if it was uploaded with the object. When you use an
12770
- # API operation on an object that was uploaded using multipart
12771
- # uploads, this value may not be a direct checksum value of the full
12772
- # object. Instead, it's a calculation based on the checksum values of
12773
- # each individual part. For more information about how checksums are
12774
- # 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
12775
13002
  # integrity][1] in the *Amazon S3 User Guide*.
12776
13003
  #
12777
13004
  #
12778
13005
  #
12779
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
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
12780
13020
  # @return [String]
12781
13021
  #
12782
13022
  # @!attribute [rw] checksum_sha1
12783
- # The base64-encoded, 160-bit SHA-1 digest of the object. This will
12784
- # only be present if it was uploaded with the object. When you use the
12785
- # API operation on an object that was uploaded using multipart
12786
- # uploads, this value may not be a direct checksum value of the full
12787
- # object. Instead, it's a calculation based on the checksum values of
12788
- # each individual part. For more information about how checksums are
12789
- # 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
12790
13026
  # integrity][1] in the *Amazon S3 User Guide*.
12791
13027
  #
12792
13028
  #
12793
13029
  #
12794
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
13030
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
12795
13031
  # @return [String]
12796
13032
  #
12797
13033
  # @!attribute [rw] checksum_sha256
12798
- # This header can be used as a data integrity check to verify that the
12799
- # data received is the same data that was originally sent. This header
12800
- # specifies the base64-encoded, 256-bit SHA-256 digest of the object.
12801
- # For more information, see [Checking object integrity][1] in the
12802
- # *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*.
12803
13038
  #
12804
13039
  #
12805
13040
  #
@@ -12815,6 +13050,7 @@ module Aws::S3
12815
13050
  :size,
12816
13051
  :checksum_crc32,
12817
13052
  :checksum_crc32c,
13053
+ :checksum_crc64nvme,
12818
13054
  :checksum_sha1,
12819
13055
  :checksum_sha256)
12820
13056
  SENSITIVE = []
@@ -13031,9 +13267,9 @@ module Aws::S3
13031
13267
  # @return [String]
13032
13268
  #
13033
13269
  # @!attribute [rw] content_md5
13034
- # The base64-encoded 128-bit MD5 digest of the data. This header must
13035
- # be used as a message integrity check to verify that the request body
13036
- # 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
13037
13273
  # 1864.][1]
13038
13274
  #
13039
13275
  # For requests made using the Amazon Web Services Command Line
@@ -13157,9 +13393,9 @@ module Aws::S3
13157
13393
  # @return [Types::CORSConfiguration]
13158
13394
  #
13159
13395
  # @!attribute [rw] content_md5
13160
- # The base64-encoded 128-bit MD5 digest of the data. This header must
13161
- # be used as a message integrity check to verify that the request body
13162
- # 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
13163
13399
  # 1864.][1]
13164
13400
  #
13165
13401
  # For requests made using the Amazon Web Services Command Line
@@ -13228,8 +13464,8 @@ module Aws::S3
13228
13464
  # @return [String]
13229
13465
  #
13230
13466
  # @!attribute [rw] content_md5
13231
- # The base64-encoded 128-bit MD5 digest of the server-side encryption
13232
- # configuration.
13467
+ # The Base64 encoded 128-bit `MD5` digest of the server-side
13468
+ # encryption configuration.
13233
13469
  #
13234
13470
  # For requests made using the Amazon Web Services Command Line
13235
13471
  # Interface (CLI) or Amazon Web Services SDKs, this field is
@@ -13744,23 +13980,23 @@ module Aws::S3
13744
13980
  # For the `x-amz-checksum-algorithm ` header, replace ` algorithm `
13745
13981
  # with the supported algorithm from the following list:
13746
13982
  #
13747
- # * `CRC32`
13983
+ # * `CRC-32`
13984
+ #
13985
+ # * `CRC-32C`
13748
13986
  #
13749
- # * `CRC32C`
13987
+ # * `CRC-64NVME`
13750
13988
  #
13751
- # * `SHA1`
13989
+ # * `SHA-1`
13752
13990
  #
13753
- # * `SHA256`
13991
+ # * `SHA-256`
13754
13992
  #
13755
13993
  # For more information, see [Checking object integrity][1] in the
13756
13994
  # *Amazon S3 User Guide*.
13757
13995
  #
13758
13996
  # If the individual checksum value you provide through
13759
13997
  # `x-amz-checksum-algorithm ` doesn't match the checksum algorithm
13760
- # you set through `x-amz-sdk-checksum-algorithm`, Amazon S3 ignores
13761
- # any provided `ChecksumAlgorithm` parameter and uses the checksum
13762
- # algorithm that matches the provided value in
13763
- # `x-amz-checksum-algorithm `.
13998
+ # you set through `x-amz-sdk-checksum-algorithm`, Amazon S3 fails the
13999
+ # request with a `BadDigest` error.
13764
14000
  #
13765
14001
  # <note markdown="1"> For directory buckets, when you use Amazon Web Services SDKs,
13766
14002
  # `CRC32` is the default checksum algorithm that's used for
@@ -13820,9 +14056,9 @@ module Aws::S3
13820
14056
  # @return [String]
13821
14057
  #
13822
14058
  # @!attribute [rw] content_md5
13823
- # The base64-encoded 128-bit MD5 digest of the data. You must use this
13824
- # header as a message integrity check to verify that the request body
13825
- # 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
13826
14062
  # 1864][1].
13827
14063
  #
13828
14064
  # For requests made using the Amazon Web Services Command Line
@@ -13885,9 +14121,9 @@ module Aws::S3
13885
14121
  # @return [String]
13886
14122
  #
13887
14123
  # @!attribute [rw] content_md5
13888
- # The base64-encoded 128-bit MD5 digest of the data. You must use this
13889
- # header as a message integrity check to verify that the request body
13890
- # 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
13891
14127
  # 1864][1].
13892
14128
  #
13893
14129
  # For requests made using the Amazon Web Services Command Line
@@ -13944,9 +14180,9 @@ module Aws::S3
13944
14180
  # @return [String]
13945
14181
  #
13946
14182
  # @!attribute [rw] content_md5
13947
- # The base64-encoded 128-bit MD5 digest of the data. You must use this
13948
- # header as a message integrity check to verify that the request body
13949
- # 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
13950
14186
  # 1864][1].
13951
14187
  #
13952
14188
  # For requests made using the Amazon Web Services Command Line
@@ -14003,10 +14239,10 @@ module Aws::S3
14003
14239
  # @return [String]
14004
14240
  #
14005
14241
  # @!attribute [rw] content_md5
14006
- # &gt;The base64-encoded 128-bit MD5 digest of the data. You must use
14007
- # this header as a message integrity check to verify that the request
14008
- # body was not corrupted in transit. For more information, see [RFC
14009
- # 1864][1].
14242
+ # &gt;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].
14010
14246
  #
14011
14247
  # For requests made using the Amazon Web Services Command Line
14012
14248
  # Interface (CLI) or Amazon Web Services SDKs, this field is
@@ -14069,9 +14305,9 @@ module Aws::S3
14069
14305
  # @return [String]
14070
14306
  #
14071
14307
  # @!attribute [rw] content_md5
14072
- # The base64-encoded 128-bit MD5 digest of the data. You must use this
14073
- # header as a message integrity check to verify that the request body
14074
- # 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
14075
14311
  # 1864][1].
14076
14312
  #
14077
14313
  # For requests made using the Amazon Web Services Command Line
@@ -14185,9 +14421,9 @@ module Aws::S3
14185
14421
  # @return [String]
14186
14422
  #
14187
14423
  # @!attribute [rw] content_md5
14188
- # The base64-encoded 128-bit MD5 digest of the data. This header must
14189
- # be used as a message integrity check to verify that the request body
14190
- # 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
14191
14427
  # 1864.&gt;][1]
14192
14428
  #
14193
14429
  # For requests made using the Amazon Web Services Command Line
@@ -14548,14 +14784,14 @@ module Aws::S3
14548
14784
  # @return [String]
14549
14785
  #
14550
14786
  # @!attribute [rw] checksum_crc32
14551
- # The base64-encoded, 32-bit CRC-32 checksum of the object. This will
14552
- # only be present if it was uploaded with the object. When you use an
14553
- # API operation on an object that was uploaded using multipart
14554
- # uploads, this value may not be a direct checksum value of the full
14555
- # object. Instead, it's a calculation based on the checksum values of
14556
- # each individual part. For more information about how checksums are
14557
- # calculated with multipart uploads, see [ Checking object
14558
- # 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*.
14559
14795
  #
14560
14796
  #
14561
14797
  #
@@ -14563,24 +14799,38 @@ module Aws::S3
14563
14799
  # @return [String]
14564
14800
  #
14565
14801
  # @!attribute [rw] checksum_crc32c
14566
- # The base64-encoded, 32-bit CRC-32C checksum of the object. This will
14567
- # only be present if it was uploaded with the object. When you use an
14568
- # API operation on an object that was uploaded using multipart
14569
- # uploads, this value may not be a direct checksum value of the full
14570
- # object. Instead, it's a calculation based on the checksum values of
14571
- # each individual part. For more information about how checksums are
14572
- # calculated with multipart uploads, see [ Checking object
14573
- # 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*.
14574
14810
  #
14575
14811
  #
14576
14812
  #
14577
14813
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
14578
14814
  # @return [String]
14579
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
+ #
14580
14830
  # @!attribute [rw] checksum_sha1
14581
- # The base64-encoded, 160-bit SHA-1 digest of the object. This will
14582
- # only be present if it was uploaded with the object. When you use the
14583
- # 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
14584
14834
  # uploads, this value may not be a direct checksum value of the full
14585
14835
  # object. Instead, it's a calculation based on the checksum values of
14586
14836
  # each individual part. For more information about how checksums are
@@ -14593,20 +14843,35 @@ module Aws::S3
14593
14843
  # @return [String]
14594
14844
  #
14595
14845
  # @!attribute [rw] checksum_sha256
14596
- # The base64-encoded, 256-bit SHA-256 digest of the object. This will
14597
- # only be present if it was uploaded with the object. When you use an
14598
- # API operation on an object that was uploaded using multipart
14599
- # uploads, this value may not be a direct checksum value of the full
14600
- # object. Instead, it's a calculation based on the checksum values of
14601
- # each individual part. For more information about how checksums are
14602
- # calculated with multipart uploads, see [ Checking object
14603
- # 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*.
14604
14854
  #
14605
14855
  #
14606
14856
  #
14607
14857
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
14608
14858
  # @return [String]
14609
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
+ #
14610
14875
  # @!attribute [rw] server_side_encryption
14611
14876
  # The server-side encryption algorithm used when you store this object
14612
14877
  # in Amazon S3.
@@ -14663,8 +14928,8 @@ module Aws::S3
14663
14928
  #
14664
14929
  # @!attribute [rw] ssekms_encryption_context
14665
14930
  # If present, indicates the Amazon Web Services KMS Encryption Context
14666
- # to use for object encryption. The value of this header is a
14667
- # Base64-encoded string of a UTF-8 encoded JSON, which contains the
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
14668
14933
  # encryption context as key-value pairs. This value is stored as
14669
14934
  # object metadata and automatically gets passed on to Amazon Web
14670
14935
  # Services KMS for future `GetObject` operations on this object.
@@ -14677,8 +14942,8 @@ module Aws::S3
14677
14942
  # @return [Boolean]
14678
14943
  #
14679
14944
  # @!attribute [rw] size
14680
- # The size of the object in bytes. This will only be present if you
14681
- # 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.
14682
14947
  #
14683
14948
  # <note markdown="1"> This functionality is only supported for objects in the Amazon S3
14684
14949
  # Express One Zone storage class in directory buckets.
@@ -14702,8 +14967,10 @@ module Aws::S3
14702
14967
  :etag,
14703
14968
  :checksum_crc32,
14704
14969
  :checksum_crc32c,
14970
+ :checksum_crc64nvme,
14705
14971
  :checksum_sha1,
14706
14972
  :checksum_sha256,
14973
+ :checksum_type,
14707
14974
  :server_side_encryption,
14708
14975
  :version_id,
14709
14976
  :sse_customer_algorithm,
@@ -14853,7 +15120,7 @@ module Aws::S3
14853
15120
  # @return [Integer]
14854
15121
  #
14855
15122
  # @!attribute [rw] content_md5
14856
- # The base64-encoded 128-bit MD5 digest of the message (without the
15123
+ # The Base64 encoded 128-bit `MD5` digest of the message (without the
14857
15124
  # headers) according to RFC 1864. This header can be used as a message
14858
15125
  # integrity check to verify that the data is the same data that was
14859
15126
  # originally sent. Although it is optional, we recommend using the
@@ -14900,23 +15167,23 @@ module Aws::S3
14900
15167
  # For the `x-amz-checksum-algorithm ` header, replace ` algorithm `
14901
15168
  # with the supported algorithm from the following list:
14902
15169
  #
14903
- # * `CRC32`
15170
+ # * `CRC-32`
15171
+ #
15172
+ # * `CRC-32C`
14904
15173
  #
14905
- # * `CRC32C`
15174
+ # * `CRC-64NVME`
14906
15175
  #
14907
- # * `SHA1`
15176
+ # * `SHA-1`
14908
15177
  #
14909
- # * `SHA256`
15178
+ # * `SHA-256`
14910
15179
  #
14911
15180
  # For more information, see [Checking object integrity][1] in the
14912
15181
  # *Amazon S3 User Guide*.
14913
15182
  #
14914
15183
  # If the individual checksum value you provide through
14915
15184
  # `x-amz-checksum-algorithm ` doesn't match the checksum algorithm
14916
- # you set through `x-amz-sdk-checksum-algorithm`, Amazon S3 ignores
14917
- # any provided `ChecksumAlgorithm` parameter and uses the checksum
14918
- # algorithm that matches the provided value in
14919
- # `x-amz-checksum-algorithm `.
15185
+ # you set through `x-amz-sdk-checksum-algorithm`, Amazon S3 fails the
15186
+ # request with a `BadDigest` error.
14920
15187
  #
14921
15188
  # <note markdown="1"> The `Content-MD5` or `x-amz-sdk-checksum-algorithm` header is
14922
15189
  # required for any request to upload an object with a retention period
@@ -14939,9 +15206,9 @@ module Aws::S3
14939
15206
  # @!attribute [rw] checksum_crc32
14940
15207
  # This header can be used as a data integrity check to verify that the
14941
15208
  # data received is the same data that was originally sent. This header
14942
- # specifies the base64-encoded, 32-bit CRC-32 checksum of the object.
14943
- # For more information, see [Checking object integrity][1] in the
14944
- # *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*.
14945
15212
  #
14946
15213
  #
14947
15214
  #
@@ -14951,9 +15218,22 @@ module Aws::S3
14951
15218
  # @!attribute [rw] checksum_crc32c
14952
15219
  # This header can be used as a data integrity check to verify that the
14953
15220
  # data received is the same data that was originally sent. This header
14954
- # specifies the base64-encoded, 32-bit CRC-32C checksum of the object.
14955
- # For more information, see [Checking object integrity][1] in the
14956
- # *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].
14957
15237
  #
14958
15238
  #
14959
15239
  #
@@ -14963,7 +15243,7 @@ module Aws::S3
14963
15243
  # @!attribute [rw] checksum_sha1
14964
15244
  # This header can be used as a data integrity check to verify that the
14965
15245
  # data received is the same data that was originally sent. This header
14966
- # specifies the base64-encoded, 160-bit SHA-1 digest of the object.
15246
+ # specifies the Base64 encoded, 160-bit `SHA-1` digest of the object.
14967
15247
  # For more information, see [Checking object integrity][1] in the
14968
15248
  # *Amazon S3 User Guide*.
14969
15249
  #
@@ -14975,9 +15255,9 @@ module Aws::S3
14975
15255
  # @!attribute [rw] checksum_sha256
14976
15256
  # This header can be used as a data integrity check to verify that the
14977
15257
  # data received is the same data that was originally sent. This header
14978
- # specifies the base64-encoded, 256-bit SHA-256 digest of the object.
14979
- # For more information, see [Checking object integrity][1] in the
14980
- # *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*.
14981
15261
  #
14982
15262
  #
14983
15263
  #
@@ -15285,7 +15565,7 @@ module Aws::S3
15285
15565
  # @!attribute [rw] ssekms_encryption_context
15286
15566
  # Specifies the Amazon Web Services KMS Encryption Context as an
15287
15567
  # additional encryption context to use for object encryption. The
15288
- # value of this header is a Base64-encoded string of a UTF-8 encoded
15568
+ # value of this header is a Base64 encoded string of a UTF-8 encoded
15289
15569
  # JSON, which contains the encryption context as key-value pairs. This
15290
15570
  # value is stored as object metadata and automatically gets passed on
15291
15571
  # to Amazon Web Services KMS for future `GetObject` operations on this
@@ -15415,6 +15695,7 @@ module Aws::S3
15415
15695
  :checksum_algorithm,
15416
15696
  :checksum_crc32,
15417
15697
  :checksum_crc32c,
15698
+ :checksum_crc64nvme,
15418
15699
  :checksum_sha1,
15419
15700
  :checksum_sha256,
15420
15701
  :expires,
@@ -18027,14 +18308,14 @@ module Aws::S3
18027
18308
  # @return [String]
18028
18309
  #
18029
18310
  # @!attribute [rw] checksum_crc32
18030
- # The base64-encoded, 32-bit CRC-32 checksum of the object. This will
18031
- # only be present if it was uploaded with the object. When you use an
18032
- # API operation on an object that was uploaded using multipart
18033
- # uploads, this value may not be a direct checksum value of the full
18034
- # object. Instead, it's a calculation based on the checksum values of
18035
- # each individual part. For more information about how checksums are
18036
- # calculated with multipart uploads, see [ Checking object
18037
- # 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*.
18038
18319
  #
18039
18320
  #
18040
18321
  #
@@ -18042,24 +18323,36 @@ module Aws::S3
18042
18323
  # @return [String]
18043
18324
  #
18044
18325
  # @!attribute [rw] checksum_crc32c
18045
- # The base64-encoded, 32-bit CRC-32C checksum of the object. This will
18046
- # only be present if it was uploaded with the object. When you use an
18047
- # API operation on an object that was uploaded using multipart
18048
- # uploads, this value may not be a direct checksum value of the full
18049
- # object. Instead, it's a calculation based on the checksum values of
18050
- # each individual part. For more information about how checksums are
18051
- # calculated with multipart uploads, see [ Checking object
18052
- # 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*.
18053
18334
  #
18054
18335
  #
18055
18336
  #
18056
18337
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums
18057
18338
  # @return [String]
18058
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
+ #
18059
18352
  # @!attribute [rw] checksum_sha1
18060
- # The base64-encoded, 160-bit SHA-1 digest of the object. This will
18061
- # only be present if it was uploaded with the object. When you use the
18062
- # 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
18063
18356
  # uploads, this value may not be a direct checksum value of the full
18064
18357
  # object. Instead, it's a calculation based on the checksum values of
18065
18358
  # each individual part. For more information about how checksums are
@@ -18072,14 +18365,14 @@ module Aws::S3
18072
18365
  # @return [String]
18073
18366
  #
18074
18367
  # @!attribute [rw] checksum_sha256
18075
- # The base64-encoded, 256-bit SHA-256 digest of the object. This will
18076
- # only be present if it was uploaded with the object. When you use an
18077
- # API operation on an object that was uploaded using multipart
18078
- # uploads, this value may not be a direct checksum value of the full
18079
- # object. Instead, it's a calculation based on the checksum values of
18080
- # each individual part. For more information about how checksums are
18081
- # calculated with multipart uploads, see [ Checking object
18082
- # 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*.
18083
18376
  #
18084
18377
  #
18085
18378
  #
@@ -18134,6 +18427,7 @@ module Aws::S3
18134
18427
  :etag,
18135
18428
  :checksum_crc32,
18136
18429
  :checksum_crc32c,
18430
+ :checksum_crc64nvme,
18137
18431
  :checksum_sha1,
18138
18432
  :checksum_sha256,
18139
18433
  :sse_customer_algorithm,
@@ -18200,7 +18494,7 @@ module Aws::S3
18200
18494
  # @return [Integer]
18201
18495
  #
18202
18496
  # @!attribute [rw] content_md5
18203
- # The base64-encoded 128-bit MD5 digest of the part data. This
18497
+ # The Base64 encoded 128-bit MD5 digest of the part data. This
18204
18498
  # parameter is auto-populated when using the command from the CLI.
18205
18499
  # This parameter is required if object lock parameters are specified.
18206
18500
  #
@@ -18232,9 +18526,9 @@ module Aws::S3
18232
18526
  # @!attribute [rw] checksum_crc32
18233
18527
  # This header can be used as a data integrity check to verify that the
18234
18528
  # data received is the same data that was originally sent. This header
18235
- # specifies the base64-encoded, 32-bit CRC-32 checksum of the object.
18236
- # For more information, see [Checking object integrity][1] in the
18237
- # *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*.
18238
18532
  #
18239
18533
  #
18240
18534
  #
@@ -18244,9 +18538,21 @@ module Aws::S3
18244
18538
  # @!attribute [rw] checksum_crc32c
18245
18539
  # This header can be used as a data integrity check to verify that the
18246
18540
  # data received is the same data that was originally sent. This header
18247
- # specifies the base64-encoded, 32-bit CRC-32C checksum of the object.
18248
- # For more information, see [Checking object integrity][1] in the
18249
- # *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*.
18250
18556
  #
18251
18557
  #
18252
18558
  #
@@ -18256,7 +18562,7 @@ module Aws::S3
18256
18562
  # @!attribute [rw] checksum_sha1
18257
18563
  # This header can be used as a data integrity check to verify that the
18258
18564
  # data received is the same data that was originally sent. This header
18259
- # specifies the base64-encoded, 160-bit SHA-1 digest of the object.
18565
+ # specifies the Base64 encoded, 160-bit `SHA-1` digest of the object.
18260
18566
  # For more information, see [Checking object integrity][1] in the
18261
18567
  # *Amazon S3 User Guide*.
18262
18568
  #
@@ -18268,9 +18574,9 @@ module Aws::S3
18268
18574
  # @!attribute [rw] checksum_sha256
18269
18575
  # This header can be used as a data integrity check to verify that the
18270
18576
  # data received is the same data that was originally sent. This header
18271
- # specifies the base64-encoded, 256-bit SHA-256 digest of the object.
18272
- # For more information, see [Checking object integrity][1] in the
18273
- # *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*.
18274
18580
  #
18275
18581
  #
18276
18582
  #
@@ -18359,6 +18665,7 @@ module Aws::S3
18359
18665
  :checksum_algorithm,
18360
18666
  :checksum_crc32,
18361
18667
  :checksum_crc32c,
18668
+ :checksum_crc64nvme,
18362
18669
  :checksum_sha1,
18363
18670
  :checksum_sha256,
18364
18671
  :key,
@@ -18534,7 +18841,7 @@ module Aws::S3
18534
18841
  # @!attribute [rw] checksum_crc32
18535
18842
  # This header can be used as a data integrity check to verify that the
18536
18843
  # data received is the same data that was originally sent. This
18537
- # specifies the base64-encoded, 32-bit CRC-32 checksum of the object
18844
+ # specifies the Base64 encoded, 32-bit `CRC-32` checksum of the object
18538
18845
  # returned by the Object Lambda function. This may not match the
18539
18846
  # checksum for the object stored in Amazon S3. Amazon S3 will perform
18540
18847
  # validation of the checksum values only when the original `GetObject`
@@ -18555,13 +18862,13 @@ module Aws::S3
18555
18862
  # @!attribute [rw] checksum_crc32c
18556
18863
  # This header can be used as a data integrity check to verify that the
18557
18864
  # data received is the same data that was originally sent. This
18558
- # specifies the base64-encoded, 32-bit CRC-32C checksum of the object
18559
- # returned by the Object Lambda function. This may not match the
18560
- # checksum for the object stored in Amazon S3. Amazon S3 will perform
18561
- # validation of the checksum values only when the original `GetObject`
18562
- # request required checksum validation. For more information about
18563
- # checksums, see [Checking object integrity][1] in the *Amazon S3 User
18564
- # 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*.
18565
18872
  #
18566
18873
  # Only one checksum header can be specified at a time. If you supply
18567
18874
  # multiple checksum headers, this request will fail.
@@ -18571,10 +18878,22 @@ module Aws::S3
18571
18878
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
18572
18879
  # @return [String]
18573
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
+ #
18574
18893
  # @!attribute [rw] checksum_sha1
18575
18894
  # This header can be used as a data integrity check to verify that the
18576
18895
  # data received is the same data that was originally sent. This
18577
- # specifies the base64-encoded, 160-bit SHA-1 digest of the object
18896
+ # specifies the Base64 encoded, 160-bit `SHA-1` digest of the object
18578
18897
  # returned by the Object Lambda function. This may not match the
18579
18898
  # checksum for the object stored in Amazon S3. Amazon S3 will perform
18580
18899
  # validation of the checksum values only when the original `GetObject`
@@ -18593,7 +18912,7 @@ module Aws::S3
18593
18912
  # @!attribute [rw] checksum_sha256
18594
18913
  # This header can be used as a data integrity check to verify that the
18595
18914
  # data received is the same data that was originally sent. This
18596
- # specifies the base64-encoded, 256-bit SHA-256 digest of the object
18915
+ # specifies the Base64 encoded, 256-bit `SHA-256` digest of the object
18597
18916
  # returned by the Object Lambda function. This may not match the
18598
18917
  # checksum for the object stored in Amazon S3. Amazon S3 will perform
18599
18918
  # validation of the checksum values only when the original `GetObject`
@@ -18767,6 +19086,7 @@ module Aws::S3
18767
19086
  :content_type,
18768
19087
  :checksum_crc32,
18769
19088
  :checksum_crc32c,
19089
+ :checksum_crc64nvme,
18770
19090
  :checksum_sha1,
18771
19091
  :checksum_sha256,
18772
19092
  :delete_marker,