@aws-sdk/client-s3 3.744.0 → 3.749.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.
- package/dist-cjs/index.js +1 -0
- package/dist-es/protocols/Aws_restXml.js +1 -0
- package/dist-types/commands/HeadObjectCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +76 -71
- package/dist-types/models/models_1.d.ts +43 -43
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +16 -16
package/dist-cjs/index.js
CHANGED
|
@@ -4146,6 +4146,7 @@ var de_HeadObjectCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
4146
4146
|
[_CE]: [, output.headers[_ce]],
|
|
4147
4147
|
[_CL]: [, output.headers[_cl]],
|
|
4148
4148
|
[_CTo]: [, output.headers[_ct]],
|
|
4149
|
+
[_CR]: [, output.headers[_cr]],
|
|
4149
4150
|
[_E]: [() => void 0 !== output.headers[_e], () => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc7231DateTime)(output.headers[_e]))],
|
|
4150
4151
|
[_ES]: [, output.headers[_ex]],
|
|
4151
4152
|
[_WRL]: [, output.headers[_xawrl]],
|
|
@@ -2955,6 +2955,7 @@ export const de_HeadObjectCommand = async (output, context) => {
|
|
|
2955
2955
|
[_CE]: [, output.headers[_ce]],
|
|
2956
2956
|
[_CL]: [, output.headers[_cl]],
|
|
2957
2957
|
[_CTo]: [, output.headers[_ct]],
|
|
2958
|
+
[_CR]: [, output.headers[_cr]],
|
|
2958
2959
|
[_E]: [() => void 0 !== output.headers[_e], () => __expectNonNull(__parseRfc7231DateTime(output.headers[_e]))],
|
|
2959
2960
|
[_ES]: [, output.headers[_ex]],
|
|
2960
2961
|
[_WRL]: [, output.headers[_xawrl]],
|
|
@@ -243,6 +243,7 @@ declare const HeadObjectCommand_base: {
|
|
|
243
243
|
* // ContentEncoding: "STRING_VALUE",
|
|
244
244
|
* // ContentLanguage: "STRING_VALUE",
|
|
245
245
|
* // ContentType: "STRING_VALUE",
|
|
246
|
+
* // ContentRange: "STRING_VALUE",
|
|
246
247
|
* // Expires: new Date("TIMESTAMP"),
|
|
247
248
|
* // ExpiresString: "STRING_VALUE",
|
|
248
249
|
* // WebsiteRedirectLocation: "STRING_VALUE",
|
|
@@ -417,7 +417,7 @@ export interface CompleteMultipartUploadOutput {
|
|
|
417
417
|
*/
|
|
418
418
|
ETag?: string | undefined;
|
|
419
419
|
/**
|
|
420
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
420
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32 checksum</code> of the object. This checksum is only be present if the checksum was uploaded
|
|
421
421
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
422
422
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
423
423
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -425,7 +425,7 @@ export interface CompleteMultipartUploadOutput {
|
|
|
425
425
|
*/
|
|
426
426
|
ChecksumCRC32?: string | undefined;
|
|
427
427
|
/**
|
|
428
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
428
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. This checksum is only present if the checksum was uploaded
|
|
429
429
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
430
430
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
431
431
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -435,14 +435,14 @@ export interface CompleteMultipartUploadOutput {
|
|
|
435
435
|
/**
|
|
436
436
|
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
437
437
|
* the same data that was originally sent. This header specifies the Base64 encoded, 64-bit
|
|
438
|
-
* <code>
|
|
438
|
+
* <code>CRC64NVME</code> checksum of the object. The <code>CRC64NVME</code> checksum is
|
|
439
439
|
* always a full object checksum. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
440
440
|
* in the Amazon S3 User Guide</a>. </p>
|
|
441
441
|
* @public
|
|
442
442
|
*/
|
|
443
443
|
ChecksumCRC64NVME?: string | undefined;
|
|
444
444
|
/**
|
|
445
|
-
* <p>The Base64 encoded, 160-bit <code>
|
|
445
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the object. This will only be present if the object was uploaded
|
|
446
446
|
* with the object. When you use the API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
447
447
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
448
448
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -450,7 +450,7 @@ export interface CompleteMultipartUploadOutput {
|
|
|
450
450
|
*/
|
|
451
451
|
ChecksumSHA1?: string | undefined;
|
|
452
452
|
/**
|
|
453
|
-
* <p>The Base64 encoded, 256-bit <code>
|
|
453
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the object. This will only be present if the object was uploaded
|
|
454
454
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
455
455
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
456
456
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -514,32 +514,32 @@ export interface CompletedPart {
|
|
|
514
514
|
*/
|
|
515
515
|
ETag?: string | undefined;
|
|
516
516
|
/**
|
|
517
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
518
|
-
* if the multipart upload request was created with the <code>
|
|
517
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the part. This checksum is present
|
|
518
|
+
* if the multipart upload request was created with the <code>CRC32</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
521
|
ChecksumCRC32?: string | undefined;
|
|
522
522
|
/**
|
|
523
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
524
|
-
* if the multipart upload request was created with the <code>
|
|
523
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the part. This checksum is present
|
|
524
|
+
* if the multipart upload request was created with the <code>CRC32C</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
525
525
|
* @public
|
|
526
526
|
*/
|
|
527
527
|
ChecksumCRC32C?: string | undefined;
|
|
528
528
|
/**
|
|
529
|
-
* <p>The Base64 encoded, 64-bit <code>
|
|
530
|
-
* if the multipart upload request was created with the <code>
|
|
529
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This checksum is present
|
|
530
|
+
* if the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm to the uploaded object). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
531
531
|
* @public
|
|
532
532
|
*/
|
|
533
533
|
ChecksumCRC64NVME?: string | undefined;
|
|
534
534
|
/**
|
|
535
|
-
* <p>The Base64 encoded, 160-bit <code>
|
|
536
|
-
* if the multipart upload request was created with the <code>
|
|
535
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> checksum of the part. This checksum is present
|
|
536
|
+
* if the multipart upload request was created with the <code>SHA1</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
537
537
|
* @public
|
|
538
538
|
*/
|
|
539
539
|
ChecksumSHA1?: string | undefined;
|
|
540
540
|
/**
|
|
541
|
-
* <p>The Base64 encoded, 256-bit <code>
|
|
542
|
-
* if the multipart upload request was created with the <code>
|
|
541
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> checksum of the part. This checksum is present
|
|
542
|
+
* if the multipart upload request was created with the <code>SHA256</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
543
543
|
* @public
|
|
544
544
|
*/
|
|
545
545
|
ChecksumSHA256?: string | undefined;
|
|
@@ -629,7 +629,7 @@ export interface CompleteMultipartUploadRequest {
|
|
|
629
629
|
UploadId: string | undefined;
|
|
630
630
|
/**
|
|
631
631
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
632
|
-
* This header specifies the Base64 encoded, 32-bit <code>
|
|
632
|
+
* This header specifies the Base64 encoded, 32-bit <code>CRC32</code> checksum of the object. For more information, see
|
|
633
633
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
634
634
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
635
635
|
* @public
|
|
@@ -637,7 +637,7 @@ export interface CompleteMultipartUploadRequest {
|
|
|
637
637
|
ChecksumCRC32?: string | undefined;
|
|
638
638
|
/**
|
|
639
639
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
640
|
-
* This header specifies the Base64 encoded, 32-bit <code>
|
|
640
|
+
* This header specifies the Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. For more information, see
|
|
641
641
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
642
642
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
643
643
|
* @public
|
|
@@ -646,7 +646,7 @@ export interface CompleteMultipartUploadRequest {
|
|
|
646
646
|
/**
|
|
647
647
|
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
648
648
|
* the same data that was originally sent. This header specifies the Base64 encoded, 64-bit
|
|
649
|
-
* <code>
|
|
649
|
+
* <code>CRC64NVME</code> checksum of the object. The <code>CRC64NVME</code> checksum is
|
|
650
650
|
* always a full object checksum. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
651
651
|
* in the Amazon S3 User Guide</a>.</p>
|
|
652
652
|
* @public
|
|
@@ -654,7 +654,7 @@ export interface CompleteMultipartUploadRequest {
|
|
|
654
654
|
ChecksumCRC64NVME?: string | undefined;
|
|
655
655
|
/**
|
|
656
656
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
657
|
-
* This header specifies the Base64 encoded, 160-bit <code>
|
|
657
|
+
* This header specifies the Base64 encoded, 160-bit <code>SHA1</code> digest of the object. For more information, see
|
|
658
658
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
659
659
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
660
660
|
* @public
|
|
@@ -662,7 +662,7 @@ export interface CompleteMultipartUploadRequest {
|
|
|
662
662
|
ChecksumSHA1?: string | undefined;
|
|
663
663
|
/**
|
|
664
664
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
665
|
-
* This header specifies the Base64 encoded, 256-bit <code>
|
|
665
|
+
* This header specifies the Base64 encoded, 256-bit <code>SHA256</code> digest of the object. For more information, see
|
|
666
666
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
667
667
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
668
668
|
* @public
|
|
@@ -784,35 +784,35 @@ export interface CopyObjectResult {
|
|
|
784
784
|
*/
|
|
785
785
|
ChecksumType?: ChecksumType | undefined;
|
|
786
786
|
/**
|
|
787
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
787
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the object. This checksum is only present if the object was uploaded
|
|
788
788
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
789
789
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
790
790
|
* @public
|
|
791
791
|
*/
|
|
792
792
|
ChecksumCRC32?: string | undefined;
|
|
793
793
|
/**
|
|
794
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
794
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. This will only be present if the object was uploaded
|
|
795
795
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
796
796
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
797
797
|
* @public
|
|
798
798
|
*/
|
|
799
799
|
ChecksumCRC32C?: string | undefined;
|
|
800
800
|
/**
|
|
801
|
-
* <p>The Base64 encoded, 64-bit <code>
|
|
802
|
-
* if the object being copied was uploaded with the <code>
|
|
803
|
-
* checksum (and Amazon S3 added the default checksum, <code>
|
|
801
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the object. This checksum is present
|
|
802
|
+
* if the object being copied was uploaded with the <code>CRC64NVME</code> checksum algorithm, or if the object was uploaded without a
|
|
803
|
+
* checksum (and Amazon S3 added the default checksum, <code>CRC64NVME</code>, to the uploaded object). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
804
804
|
* @public
|
|
805
805
|
*/
|
|
806
806
|
ChecksumCRC64NVME?: string | undefined;
|
|
807
807
|
/**
|
|
808
|
-
* <p>The Base64 encoded, 160-bit <code>
|
|
808
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the object. This will only be present if the object was uploaded
|
|
809
809
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
810
810
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
811
811
|
* @public
|
|
812
812
|
*/
|
|
813
813
|
ChecksumSHA1?: string | undefined;
|
|
814
814
|
/**
|
|
815
|
-
* <p>The Base64 encoded, 256-bit <code>
|
|
815
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the object. This will only be present if the object was uploaded
|
|
816
816
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
817
817
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
818
818
|
* @public
|
|
@@ -5598,27 +5598,27 @@ export interface DeleteObjectsRequest {
|
|
|
5598
5598
|
* <ul>
|
|
5599
5599
|
* <li>
|
|
5600
5600
|
* <p>
|
|
5601
|
-
* <code>
|
|
5601
|
+
* <code>CRC32</code>
|
|
5602
5602
|
* </p>
|
|
5603
5603
|
* </li>
|
|
5604
5604
|
* <li>
|
|
5605
5605
|
* <p>
|
|
5606
|
-
* <code>
|
|
5606
|
+
* <code>CRC32C</code>
|
|
5607
5607
|
* </p>
|
|
5608
5608
|
* </li>
|
|
5609
5609
|
* <li>
|
|
5610
5610
|
* <p>
|
|
5611
|
-
* <code>
|
|
5611
|
+
* <code>CRC64NVME</code>
|
|
5612
5612
|
* </p>
|
|
5613
5613
|
* </li>
|
|
5614
5614
|
* <li>
|
|
5615
5615
|
* <p>
|
|
5616
|
-
* <code>
|
|
5616
|
+
* <code>SHA1</code>
|
|
5617
5617
|
* </p>
|
|
5618
5618
|
* </li>
|
|
5619
5619
|
* <li>
|
|
5620
5620
|
* <p>
|
|
5621
|
-
* <code>
|
|
5621
|
+
* <code>SHA256</code>
|
|
5622
5622
|
* </p>
|
|
5623
5623
|
* </li>
|
|
5624
5624
|
* </ul>
|
|
@@ -9119,35 +9119,35 @@ export interface GetObjectOutput {
|
|
|
9119
9119
|
*/
|
|
9120
9120
|
ETag?: string | undefined;
|
|
9121
9121
|
/**
|
|
9122
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
9122
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the object. This checksum is only present if the object was uploaded
|
|
9123
9123
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
9124
9124
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9125
9125
|
* @public
|
|
9126
9126
|
*/
|
|
9127
9127
|
ChecksumCRC32?: string | undefined;
|
|
9128
9128
|
/**
|
|
9129
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
9129
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. This will only be present if the object was uploaded
|
|
9130
9130
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
9131
9131
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9132
9132
|
* @public
|
|
9133
9133
|
*/
|
|
9134
9134
|
ChecksumCRC32C?: string | undefined;
|
|
9135
9135
|
/**
|
|
9136
|
-
* <p>The Base64 encoded, 64-bit <code>
|
|
9136
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the object. For more
|
|
9137
9137
|
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
9138
9138
|
* in the Amazon S3 User Guide</a>.</p>
|
|
9139
9139
|
* @public
|
|
9140
9140
|
*/
|
|
9141
9141
|
ChecksumCRC64NVME?: string | undefined;
|
|
9142
9142
|
/**
|
|
9143
|
-
* <p>The Base64 encoded, 160-bit <code>
|
|
9143
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the object. This will only be present if the object was uploaded
|
|
9144
9144
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
9145
9145
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9146
9146
|
* @public
|
|
9147
9147
|
*/
|
|
9148
9148
|
ChecksumSHA1?: string | undefined;
|
|
9149
9149
|
/**
|
|
9150
|
-
* <p>The Base64 encoded, 256-bit <code>
|
|
9150
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the object. This will only be present if the object was uploaded
|
|
9151
9151
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
9152
9152
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9153
9153
|
* @public
|
|
@@ -9748,7 +9748,7 @@ export interface GetObjectAclRequest {
|
|
|
9748
9748
|
*/
|
|
9749
9749
|
export interface Checksum {
|
|
9750
9750
|
/**
|
|
9751
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
9751
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32 checksum</code> of the object. This checksum is only be present if the checksum was uploaded
|
|
9752
9752
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
9753
9753
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
9754
9754
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -9756,7 +9756,7 @@ export interface Checksum {
|
|
|
9756
9756
|
*/
|
|
9757
9757
|
ChecksumCRC32?: string | undefined;
|
|
9758
9758
|
/**
|
|
9759
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
9759
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. This checksum is only present if the checksum was uploaded
|
|
9760
9760
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
9761
9761
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
9762
9762
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -9764,14 +9764,14 @@ export interface Checksum {
|
|
|
9764
9764
|
*/
|
|
9765
9765
|
ChecksumCRC32C?: string | undefined;
|
|
9766
9766
|
/**
|
|
9767
|
-
* <p>The Base64 encoded, 64-bit <code>
|
|
9768
|
-
* if the object was uploaded with the <code>
|
|
9769
|
-
* checksum (and Amazon S3 added the default checksum, <code>
|
|
9767
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the object. This checksum is present
|
|
9768
|
+
* if the object was uploaded with the <code>CRC64NVME</code> checksum algorithm, or if the object was uploaded without a
|
|
9769
|
+
* checksum (and Amazon S3 added the default checksum, <code>CRC64NVME</code>, to the uploaded object). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9770
9770
|
* @public
|
|
9771
9771
|
*/
|
|
9772
9772
|
ChecksumCRC64NVME?: string | undefined;
|
|
9773
9773
|
/**
|
|
9774
|
-
* <p>The Base64 encoded, 160-bit <code>
|
|
9774
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the object. This will only be present if the object was uploaded
|
|
9775
9775
|
* with the object. When you use the API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
9776
9776
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
9777
9777
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -9779,7 +9779,7 @@ export interface Checksum {
|
|
|
9779
9779
|
*/
|
|
9780
9780
|
ChecksumSHA1?: string | undefined;
|
|
9781
9781
|
/**
|
|
9782
|
-
* <p>The Base64 encoded, 256-bit <code>
|
|
9782
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the object. This will only be present if the object was uploaded
|
|
9783
9783
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
9784
9784
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
9785
9785
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -9810,33 +9810,33 @@ export interface ObjectPart {
|
|
|
9810
9810
|
*/
|
|
9811
9811
|
Size?: number | undefined;
|
|
9812
9812
|
/**
|
|
9813
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
9814
|
-
* if the multipart upload request was created with the <code>
|
|
9813
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the part. This checksum is present
|
|
9814
|
+
* if the multipart upload request was created with the <code>CRC32</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9815
9815
|
* @public
|
|
9816
9816
|
*/
|
|
9817
9817
|
ChecksumCRC32?: string | undefined;
|
|
9818
9818
|
/**
|
|
9819
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
9820
|
-
* if the multipart upload request was created with the <code>
|
|
9819
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the part. This checksum is present
|
|
9820
|
+
* if the multipart upload request was created with the <code>CRC32C</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9821
9821
|
* @public
|
|
9822
9822
|
*/
|
|
9823
9823
|
ChecksumCRC32C?: string | undefined;
|
|
9824
9824
|
/**
|
|
9825
|
-
* <p>The Base64 encoded, 64-bit <code>
|
|
9826
|
-
* if the multipart upload request was created with the <code>
|
|
9827
|
-
* checksum (and Amazon S3 added the default checksum, <code>
|
|
9825
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This checksum is present
|
|
9826
|
+
* if the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm, or if the object was uploaded without a
|
|
9827
|
+
* checksum (and Amazon S3 added the default checksum, <code>CRC64NVME</code>, to the uploaded object). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9828
9828
|
* @public
|
|
9829
9829
|
*/
|
|
9830
9830
|
ChecksumCRC64NVME?: string | undefined;
|
|
9831
9831
|
/**
|
|
9832
|
-
* <p>The Base64 encoded, 160-bit <code>
|
|
9833
|
-
* if the multipart upload request was created with the <code>
|
|
9832
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> checksum of the part. This checksum is present
|
|
9833
|
+
* if the multipart upload request was created with the <code>SHA1</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9834
9834
|
* @public
|
|
9835
9835
|
*/
|
|
9836
9836
|
ChecksumSHA1?: string | undefined;
|
|
9837
9837
|
/**
|
|
9838
|
-
* <p>The Base64 encoded, 256-bit <code>
|
|
9839
|
-
* if the multipart upload request was created with the <code>
|
|
9838
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> checksum of the part. This checksum is present
|
|
9839
|
+
* if the multipart upload request was created with the <code>SHA256</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9840
9840
|
* @public
|
|
9841
9841
|
*/
|
|
9842
9842
|
ChecksumSHA256?: string | undefined;
|
|
@@ -10717,7 +10717,7 @@ export interface HeadObjectOutput {
|
|
|
10717
10717
|
*/
|
|
10718
10718
|
ContentLength?: number | undefined;
|
|
10719
10719
|
/**
|
|
10720
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
10720
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32 checksum</code> of the object. This checksum is only be present if the checksum was uploaded
|
|
10721
10721
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
10722
10722
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
10723
10723
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -10725,7 +10725,7 @@ export interface HeadObjectOutput {
|
|
|
10725
10725
|
*/
|
|
10726
10726
|
ChecksumCRC32?: string | undefined;
|
|
10727
10727
|
/**
|
|
10728
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
10728
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. This checksum is only present if the checksum was uploaded
|
|
10729
10729
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
10730
10730
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
10731
10731
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -10733,14 +10733,14 @@ export interface HeadObjectOutput {
|
|
|
10733
10733
|
*/
|
|
10734
10734
|
ChecksumCRC32C?: string | undefined;
|
|
10735
10735
|
/**
|
|
10736
|
-
* <p>The Base64 encoded, 64-bit <code>
|
|
10736
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the object. For more
|
|
10737
10737
|
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
10738
10738
|
* in the Amazon S3 User Guide</a>.</p>
|
|
10739
10739
|
* @public
|
|
10740
10740
|
*/
|
|
10741
10741
|
ChecksumCRC64NVME?: string | undefined;
|
|
10742
10742
|
/**
|
|
10743
|
-
* <p>The Base64 encoded, 160-bit <code>
|
|
10743
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the object. This will only be present if the object was uploaded
|
|
10744
10744
|
* with the object. When you use the API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
10745
10745
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
10746
10746
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -10748,7 +10748,7 @@ export interface HeadObjectOutput {
|
|
|
10748
10748
|
*/
|
|
10749
10749
|
ChecksumSHA1?: string | undefined;
|
|
10750
10750
|
/**
|
|
10751
|
-
* <p>The Base64 encoded, 256-bit <code>
|
|
10751
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the object. This will only be present if the object was uploaded
|
|
10752
10752
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
10753
10753
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
10754
10754
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -10817,6 +10817,11 @@ export interface HeadObjectOutput {
|
|
|
10817
10817
|
* @public
|
|
10818
10818
|
*/
|
|
10819
10819
|
ContentType?: string | undefined;
|
|
10820
|
+
/**
|
|
10821
|
+
* <p>The portion of the object returned in the response for a <code>GET</code> request.</p>
|
|
10822
|
+
* @public
|
|
10823
|
+
*/
|
|
10824
|
+
ContentRange?: string | undefined;
|
|
10820
10825
|
/**
|
|
10821
10826
|
* Deprecated in favor of ExpiresString.
|
|
10822
10827
|
*
|
|
@@ -12896,33 +12901,33 @@ export interface Part {
|
|
|
12896
12901
|
*/
|
|
12897
12902
|
Size?: number | undefined;
|
|
12898
12903
|
/**
|
|
12899
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
12900
|
-
* if the object was uploaded with the <code>
|
|
12904
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the part. This checksum is present
|
|
12905
|
+
* if the object was uploaded with the <code>CRC32</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
12901
12906
|
* @public
|
|
12902
12907
|
*/
|
|
12903
12908
|
ChecksumCRC32?: string | undefined;
|
|
12904
12909
|
/**
|
|
12905
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
12906
|
-
* if the object was uploaded with the <code>
|
|
12910
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the part. This checksum is present
|
|
12911
|
+
* if the object was uploaded with the <code>CRC32C</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
12907
12912
|
* @public
|
|
12908
12913
|
*/
|
|
12909
12914
|
ChecksumCRC32C?: string | undefined;
|
|
12910
12915
|
/**
|
|
12911
|
-
* <p>The Base64 encoded, 64-bit <code>
|
|
12912
|
-
* if the multipart upload request was created with the <code>
|
|
12913
|
-
* checksum (and Amazon S3 added the default checksum, <code>
|
|
12916
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This checksum is present
|
|
12917
|
+
* if the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm, or if the object was uploaded without a
|
|
12918
|
+
* checksum (and Amazon S3 added the default checksum, <code>CRC64NVME</code>, to the uploaded object). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
12914
12919
|
* @public
|
|
12915
12920
|
*/
|
|
12916
12921
|
ChecksumCRC64NVME?: string | undefined;
|
|
12917
12922
|
/**
|
|
12918
|
-
* <p>The Base64 encoded, 160-bit <code>
|
|
12919
|
-
* if the object was uploaded with the <code>
|
|
12923
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> checksum of the part. This checksum is present
|
|
12924
|
+
* if the object was uploaded with the <code>SHA1</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
12920
12925
|
* @public
|
|
12921
12926
|
*/
|
|
12922
12927
|
ChecksumSHA1?: string | undefined;
|
|
12923
12928
|
/**
|
|
12924
|
-
* <p>The Base64 encoded, 256-bit <code>
|
|
12925
|
-
* if the object was uploaded with the <code>
|
|
12929
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> checksum of the part. This checksum is present
|
|
12930
|
+
* if the object was uploaded with the <code>SHA256</code> checksum algorithm. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
12926
12931
|
* @public
|
|
12927
12932
|
*/
|
|
12928
12933
|
ChecksumSHA256?: string | undefined;
|
|
@@ -456,27 +456,27 @@ export interface PutBucketPolicyRequest {
|
|
|
456
456
|
* <ul>
|
|
457
457
|
* <li>
|
|
458
458
|
* <p>
|
|
459
|
-
* <code>
|
|
459
|
+
* <code>CRC32</code>
|
|
460
460
|
* </p>
|
|
461
461
|
* </li>
|
|
462
462
|
* <li>
|
|
463
463
|
* <p>
|
|
464
|
-
* <code>
|
|
464
|
+
* <code>CRC32C</code>
|
|
465
465
|
* </p>
|
|
466
466
|
* </li>
|
|
467
467
|
* <li>
|
|
468
468
|
* <p>
|
|
469
|
-
* <code>
|
|
469
|
+
* <code>CRC64NVME</code>
|
|
470
470
|
* </p>
|
|
471
471
|
* </li>
|
|
472
472
|
* <li>
|
|
473
473
|
* <p>
|
|
474
|
-
* <code>
|
|
474
|
+
* <code>SHA1</code>
|
|
475
475
|
* </p>
|
|
476
476
|
* </li>
|
|
477
477
|
* <li>
|
|
478
478
|
* <p>
|
|
479
|
-
* <code>
|
|
479
|
+
* <code>SHA256</code>
|
|
480
480
|
* </p>
|
|
481
481
|
* </li>
|
|
482
482
|
* </ul>
|
|
@@ -899,7 +899,7 @@ export interface PutObjectOutput {
|
|
|
899
899
|
*/
|
|
900
900
|
ETag?: string | undefined;
|
|
901
901
|
/**
|
|
902
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
902
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32 checksum</code> of the object. This checksum is only be present if the checksum was uploaded
|
|
903
903
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
904
904
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
905
905
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -907,7 +907,7 @@ export interface PutObjectOutput {
|
|
|
907
907
|
*/
|
|
908
908
|
ChecksumCRC32?: string | undefined;
|
|
909
909
|
/**
|
|
910
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
910
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. This checksum is only present if the checksum was uploaded
|
|
911
911
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
912
912
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
913
913
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -915,17 +915,17 @@ export interface PutObjectOutput {
|
|
|
915
915
|
*/
|
|
916
916
|
ChecksumCRC32C?: string | undefined;
|
|
917
917
|
/**
|
|
918
|
-
* <p>The Base64 encoded, 64-bit <code>
|
|
919
|
-
* is present if the object was uploaded with the <code>
|
|
918
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the object. This header
|
|
919
|
+
* is present if the object was uploaded with the <code>CRC64NVME</code> checksum algorithm, or if it
|
|
920
920
|
* was uploaded without a checksum (and Amazon S3 added the default checksum,
|
|
921
|
-
* <code>
|
|
921
|
+
* <code>CRC64NVME</code>, to the uploaded object). For more information about how
|
|
922
922
|
* checksums are calculated with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
923
923
|
* in the Amazon S3 User Guide</a>.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
926
|
ChecksumCRC64NVME?: string | undefined;
|
|
927
927
|
/**
|
|
928
|
-
* <p>The Base64 encoded, 160-bit <code>
|
|
928
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the object. This will only be present if the object was uploaded
|
|
929
929
|
* with the object. When you use the API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
930
930
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
931
931
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -933,7 +933,7 @@ export interface PutObjectOutput {
|
|
|
933
933
|
*/
|
|
934
934
|
ChecksumSHA1?: string | undefined;
|
|
935
935
|
/**
|
|
936
|
-
* <p>The Base64 encoded, 256-bit <code>
|
|
936
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the object. This will only be present if the object was uploaded
|
|
937
937
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
938
938
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
939
939
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -1157,27 +1157,27 @@ export interface PutObjectRequest {
|
|
|
1157
1157
|
* <ul>
|
|
1158
1158
|
* <li>
|
|
1159
1159
|
* <p>
|
|
1160
|
-
* <code>
|
|
1160
|
+
* <code>CRC32</code>
|
|
1161
1161
|
* </p>
|
|
1162
1162
|
* </li>
|
|
1163
1163
|
* <li>
|
|
1164
1164
|
* <p>
|
|
1165
|
-
* <code>
|
|
1165
|
+
* <code>CRC32C</code>
|
|
1166
1166
|
* </p>
|
|
1167
1167
|
* </li>
|
|
1168
1168
|
* <li>
|
|
1169
1169
|
* <p>
|
|
1170
|
-
* <code>
|
|
1170
|
+
* <code>CRC64NVME</code>
|
|
1171
1171
|
* </p>
|
|
1172
1172
|
* </li>
|
|
1173
1173
|
* <li>
|
|
1174
1174
|
* <p>
|
|
1175
|
-
* <code>
|
|
1175
|
+
* <code>SHA1</code>
|
|
1176
1176
|
* </p>
|
|
1177
1177
|
* </li>
|
|
1178
1178
|
* <li>
|
|
1179
1179
|
* <p>
|
|
1180
|
-
* <code>
|
|
1180
|
+
* <code>SHA256</code>
|
|
1181
1181
|
* </p>
|
|
1182
1182
|
* </li>
|
|
1183
1183
|
* </ul>
|
|
@@ -1198,7 +1198,7 @@ export interface PutObjectRequest {
|
|
|
1198
1198
|
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
1199
1199
|
/**
|
|
1200
1200
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
1201
|
-
* This header specifies the Base64 encoded, 32-bit <code>
|
|
1201
|
+
* This header specifies the Base64 encoded, 32-bit <code>CRC32</code> checksum of the object. For more information, see
|
|
1202
1202
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
1203
1203
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
1204
1204
|
* @public
|
|
@@ -1206,7 +1206,7 @@ export interface PutObjectRequest {
|
|
|
1206
1206
|
ChecksumCRC32?: string | undefined;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
1209
|
-
* This header specifies the Base64 encoded, 32-bit <code>
|
|
1209
|
+
* This header specifies the Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. For more information, see
|
|
1210
1210
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
1211
1211
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
1212
1212
|
* @public
|
|
@@ -1215,7 +1215,7 @@ export interface PutObjectRequest {
|
|
|
1215
1215
|
/**
|
|
1216
1216
|
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
1217
1217
|
* the same data that was originally sent. This header specifies the Base64 encoded, 64-bit
|
|
1218
|
-
* <code>
|
|
1218
|
+
* <code>CRC64NVME</code> checksum of the object. The <code>CRC64NVME</code> checksum is
|
|
1219
1219
|
* always a full object checksum. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
1220
1220
|
* in the Amazon S3 User Guide</a>.</p>
|
|
1221
1221
|
* @public
|
|
@@ -1223,7 +1223,7 @@ export interface PutObjectRequest {
|
|
|
1223
1223
|
ChecksumCRC64NVME?: string | undefined;
|
|
1224
1224
|
/**
|
|
1225
1225
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
1226
|
-
* This header specifies the Base64 encoded, 160-bit <code>
|
|
1226
|
+
* This header specifies the Base64 encoded, 160-bit <code>SHA1</code> digest of the object. For more information, see
|
|
1227
1227
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
1228
1228
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
1229
1229
|
* @public
|
|
@@ -1231,7 +1231,7 @@ export interface PutObjectRequest {
|
|
|
1231
1231
|
ChecksumSHA1?: string | undefined;
|
|
1232
1232
|
/**
|
|
1233
1233
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
1234
|
-
* This header specifies the Base64 encoded, 256-bit <code>
|
|
1234
|
+
* This header specifies the Base64 encoded, 256-bit <code>SHA256</code> digest of the object. For more information, see
|
|
1235
1235
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
1236
1236
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
1237
1237
|
* @public
|
|
@@ -2996,7 +2996,7 @@ export interface UploadPartOutput {
|
|
|
2996
2996
|
*/
|
|
2997
2997
|
ETag?: string | undefined;
|
|
2998
2998
|
/**
|
|
2999
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
2999
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32 checksum</code> of the object. This checksum is only be present if the checksum was uploaded
|
|
3000
3000
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
3001
3001
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
3002
3002
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -3004,7 +3004,7 @@ export interface UploadPartOutput {
|
|
|
3004
3004
|
*/
|
|
3005
3005
|
ChecksumCRC32?: string | undefined;
|
|
3006
3006
|
/**
|
|
3007
|
-
* <p>The Base64 encoded, 32-bit <code>
|
|
3007
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. This checksum is only present if the checksum was uploaded
|
|
3008
3008
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
3009
3009
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
3010
3010
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -3014,12 +3014,12 @@ export interface UploadPartOutput {
|
|
|
3014
3014
|
/**
|
|
3015
3015
|
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3016
3016
|
* the same data that was originally sent. This header specifies the Base64 encoded, 64-bit
|
|
3017
|
-
* <code>
|
|
3017
|
+
* <code>CRC64NVME</code> checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3018
3018
|
* @public
|
|
3019
3019
|
*/
|
|
3020
3020
|
ChecksumCRC64NVME?: string | undefined;
|
|
3021
3021
|
/**
|
|
3022
|
-
* <p>The Base64 encoded, 160-bit <code>
|
|
3022
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the object. This will only be present if the object was uploaded
|
|
3023
3023
|
* with the object. When you use the API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
3024
3024
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
3025
3025
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -3027,7 +3027,7 @@ export interface UploadPartOutput {
|
|
|
3027
3027
|
*/
|
|
3028
3028
|
ChecksumSHA1?: string | undefined;
|
|
3029
3029
|
/**
|
|
3030
|
-
* <p>The Base64 encoded, 256-bit <code>
|
|
3030
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the object. This will only be present if the object was uploaded
|
|
3031
3031
|
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
3032
3032
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
3033
3033
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -3138,7 +3138,7 @@ export interface UploadPartRequest {
|
|
|
3138
3138
|
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
3139
3139
|
/**
|
|
3140
3140
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
3141
|
-
* This header specifies the Base64 encoded, 32-bit <code>
|
|
3141
|
+
* This header specifies the Base64 encoded, 32-bit <code>CRC32</code> checksum of the object. For more information, see
|
|
3142
3142
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
3143
3143
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
3144
3144
|
* @public
|
|
@@ -3146,7 +3146,7 @@ export interface UploadPartRequest {
|
|
|
3146
3146
|
ChecksumCRC32?: string | undefined;
|
|
3147
3147
|
/**
|
|
3148
3148
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
3149
|
-
* This header specifies the Base64 encoded, 32-bit <code>
|
|
3149
|
+
* This header specifies the Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. For more information, see
|
|
3150
3150
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
3151
3151
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
3152
3152
|
* @public
|
|
@@ -3155,13 +3155,13 @@ export interface UploadPartRequest {
|
|
|
3155
3155
|
/**
|
|
3156
3156
|
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3157
3157
|
* the same data that was originally sent. This header specifies the Base64 encoded, 64-bit
|
|
3158
|
-
* <code>
|
|
3158
|
+
* <code>CRC64NVME</code> checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3159
3159
|
* @public
|
|
3160
3160
|
*/
|
|
3161
3161
|
ChecksumCRC64NVME?: string | undefined;
|
|
3162
3162
|
/**
|
|
3163
3163
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
3164
|
-
* This header specifies the Base64 encoded, 160-bit <code>
|
|
3164
|
+
* This header specifies the Base64 encoded, 160-bit <code>SHA1</code> digest of the object. For more information, see
|
|
3165
3165
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
3166
3166
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
3167
3167
|
* @public
|
|
@@ -3169,7 +3169,7 @@ export interface UploadPartRequest {
|
|
|
3169
3169
|
ChecksumSHA1?: string | undefined;
|
|
3170
3170
|
/**
|
|
3171
3171
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
3172
|
-
* This header specifies the Base64 encoded, 256-bit <code>
|
|
3172
|
+
* This header specifies the Base64 encoded, 256-bit <code>SHA256</code> digest of the object. For more information, see
|
|
3173
3173
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
3174
3174
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
3175
3175
|
* @public
|
|
@@ -3257,7 +3257,7 @@ export interface CopyPartResult {
|
|
|
3257
3257
|
LastModified?: Date | undefined;
|
|
3258
3258
|
/**
|
|
3259
3259
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
3260
|
-
* This header specifies the Base64 encoded, 32-bit <code>
|
|
3260
|
+
* This header specifies the Base64 encoded, 32-bit <code>CRC32</code> checksum of the part. For more information, see
|
|
3261
3261
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
3262
3262
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
3263
3263
|
* @public
|
|
@@ -3265,21 +3265,21 @@ export interface CopyPartResult {
|
|
|
3265
3265
|
ChecksumCRC32?: string | undefined;
|
|
3266
3266
|
/**
|
|
3267
3267
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
3268
|
-
* This header specifies the Base64 encoded, 32-bit <code>
|
|
3268
|
+
* This header specifies the Base64 encoded, 32-bit <code>CRC32C</code> checksum of the part. For more information, see
|
|
3269
3269
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
3270
3270
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
3271
3271
|
* @public
|
|
3272
3272
|
*/
|
|
3273
3273
|
ChecksumCRC32C?: string | undefined;
|
|
3274
3274
|
/**
|
|
3275
|
-
* <p>The Base64 encoded, 64-bit <code>
|
|
3276
|
-
* if the multipart upload request was created with the <code>
|
|
3275
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This checksum is present
|
|
3276
|
+
* if the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm to the uploaded object). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3277
3277
|
* @public
|
|
3278
3278
|
*/
|
|
3279
3279
|
ChecksumCRC64NVME?: string | undefined;
|
|
3280
3280
|
/**
|
|
3281
3281
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
3282
|
-
* This header specifies the Base64 encoded, 160-bit <code>
|
|
3282
|
+
* This header specifies the Base64 encoded, 160-bit <code>SHA1</code> checksum of the part. For more information, see
|
|
3283
3283
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
3284
3284
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
3285
3285
|
* @public
|
|
@@ -3287,7 +3287,7 @@ export interface CopyPartResult {
|
|
|
3287
3287
|
ChecksumSHA1?: string | undefined;
|
|
3288
3288
|
/**
|
|
3289
3289
|
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
3290
|
-
* This header specifies the Base64 encoded, 256-bit <code>
|
|
3290
|
+
* This header specifies the Base64 encoded, 256-bit <code>SHA256</code> checksum of the part. For more information, see
|
|
3291
3291
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
3292
3292
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
3293
3293
|
* @public
|
|
@@ -3765,7 +3765,7 @@ export interface WriteGetObjectResponseRequest {
|
|
|
3765
3765
|
ContentType?: string | undefined;
|
|
3766
3766
|
/**
|
|
3767
3767
|
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3768
|
-
* the same data that was originally sent. This specifies the Base64 encoded, 32-bit <code>
|
|
3768
|
+
* the same data that was originally sent. This specifies the Base64 encoded, 32-bit <code>CRC32</code>
|
|
3769
3769
|
* checksum of the object returned by the Object Lambda function. This may not match the
|
|
3770
3770
|
* checksum for the object stored in Amazon S3. Amazon S3 will perform validation of the checksum values
|
|
3771
3771
|
* only when the original <code>GetObject</code> request required checksum validation. For
|
|
@@ -3779,7 +3779,7 @@ export interface WriteGetObjectResponseRequest {
|
|
|
3779
3779
|
ChecksumCRC32?: string | undefined;
|
|
3780
3780
|
/**
|
|
3781
3781
|
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3782
|
-
* the same data that was originally sent. This specifies the Base64 encoded, 32-bit <code>
|
|
3782
|
+
* the same data that was originally sent. This specifies the Base64 encoded, 32-bit <code>CRC32C</code>
|
|
3783
3783
|
* checksum of the object returned by the Object Lambda function. This may not match the
|
|
3784
3784
|
* checksum for the object stored in Amazon S3. Amazon S3 will perform validation of the checksum values
|
|
3785
3785
|
* only when the original <code>GetObject</code> request required checksum validation. For
|
|
@@ -3793,13 +3793,13 @@ export interface WriteGetObjectResponseRequest {
|
|
|
3793
3793
|
/**
|
|
3794
3794
|
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3795
3795
|
* the same data that was originally sent. This header specifies the Base64 encoded, 64-bit
|
|
3796
|
-
* <code>
|
|
3796
|
+
* <code>CRC64NVME</code> checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3797
3797
|
* @public
|
|
3798
3798
|
*/
|
|
3799
3799
|
ChecksumCRC64NVME?: string | undefined;
|
|
3800
3800
|
/**
|
|
3801
3801
|
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3802
|
-
* the same data that was originally sent. This specifies the Base64 encoded, 160-bit <code>
|
|
3802
|
+
* the same data that was originally sent. This specifies the Base64 encoded, 160-bit <code>SHA1</code>
|
|
3803
3803
|
* digest of the object returned by the Object Lambda function. This may not match the
|
|
3804
3804
|
* checksum for the object stored in Amazon S3. Amazon S3 will perform validation of the checksum values
|
|
3805
3805
|
* only when the original <code>GetObject</code> request required checksum validation. For
|
|
@@ -3812,7 +3812,7 @@ export interface WriteGetObjectResponseRequest {
|
|
|
3812
3812
|
ChecksumSHA1?: string | undefined;
|
|
3813
3813
|
/**
|
|
3814
3814
|
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3815
|
-
* the same data that was originally sent. This specifies the Base64 encoded, 256-bit <code>
|
|
3815
|
+
* the same data that was originally sent. This specifies the Base64 encoded, 256-bit <code>SHA256</code>
|
|
3816
3816
|
* digest of the object returned by the Object Lambda function. This may not match the
|
|
3817
3817
|
* checksum for the object stored in Amazon S3. Amazon S3 will perform validation of the checksum values
|
|
3818
3818
|
* only when the original <code>GetObject</code> request required checksum validation. For
|
|
@@ -1660,6 +1660,7 @@ export interface HeadObjectOutput {
|
|
|
1660
1660
|
ContentEncoding?: string | undefined;
|
|
1661
1661
|
ContentLanguage?: string | undefined;
|
|
1662
1662
|
ContentType?: string | undefined;
|
|
1663
|
+
ContentRange?: string | undefined;
|
|
1663
1664
|
Expires?: Date | undefined;
|
|
1664
1665
|
ExpiresString?: string | undefined;
|
|
1665
1666
|
WebsiteRedirectLocation?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.749.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -27,27 +27,27 @@
|
|
|
27
27
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "3.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
30
|
+
"@aws-sdk/core": "3.749.0",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "3.749.0",
|
|
32
32
|
"@aws-sdk/middleware-bucket-endpoint": "3.734.0",
|
|
33
33
|
"@aws-sdk/middleware-expect-continue": "3.734.0",
|
|
34
|
-
"@aws-sdk/middleware-flexible-checksums": "3.
|
|
34
|
+
"@aws-sdk/middleware-flexible-checksums": "3.749.0",
|
|
35
35
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
36
36
|
"@aws-sdk/middleware-location-constraint": "3.734.0",
|
|
37
37
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
38
38
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
39
|
-
"@aws-sdk/middleware-sdk-s3": "3.
|
|
39
|
+
"@aws-sdk/middleware-sdk-s3": "3.749.0",
|
|
40
40
|
"@aws-sdk/middleware-ssec": "3.734.0",
|
|
41
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
41
|
+
"@aws-sdk/middleware-user-agent": "3.749.0",
|
|
42
42
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
43
|
-
"@aws-sdk/signature-v4-multi-region": "3.
|
|
43
|
+
"@aws-sdk/signature-v4-multi-region": "3.749.0",
|
|
44
44
|
"@aws-sdk/types": "3.734.0",
|
|
45
45
|
"@aws-sdk/util-endpoints": "3.743.0",
|
|
46
46
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
47
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-user-agent-node": "3.749.0",
|
|
48
48
|
"@aws-sdk/xml-builder": "3.734.0",
|
|
49
49
|
"@smithy/config-resolver": "^4.0.1",
|
|
50
|
-
"@smithy/core": "^3.1.
|
|
50
|
+
"@smithy/core": "^3.1.3",
|
|
51
51
|
"@smithy/eventstream-serde-browser": "^4.0.1",
|
|
52
52
|
"@smithy/eventstream-serde-config-resolver": "^4.0.1",
|
|
53
53
|
"@smithy/eventstream-serde-node": "^4.0.1",
|
|
@@ -58,31 +58,31 @@
|
|
|
58
58
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
59
59
|
"@smithy/md5-js": "^4.0.1",
|
|
60
60
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
61
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
62
|
-
"@smithy/middleware-retry": "^4.0.
|
|
61
|
+
"@smithy/middleware-endpoint": "^4.0.4",
|
|
62
|
+
"@smithy/middleware-retry": "^4.0.5",
|
|
63
63
|
"@smithy/middleware-serde": "^4.0.2",
|
|
64
64
|
"@smithy/middleware-stack": "^4.0.1",
|
|
65
65
|
"@smithy/node-config-provider": "^4.0.1",
|
|
66
66
|
"@smithy/node-http-handler": "^4.0.2",
|
|
67
67
|
"@smithy/protocol-http": "^5.0.1",
|
|
68
|
-
"@smithy/smithy-client": "^4.1.
|
|
68
|
+
"@smithy/smithy-client": "^4.1.4",
|
|
69
69
|
"@smithy/types": "^4.1.0",
|
|
70
70
|
"@smithy/url-parser": "^4.0.1",
|
|
71
71
|
"@smithy/util-base64": "^4.0.0",
|
|
72
72
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
73
73
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
74
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
75
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
74
|
+
"@smithy/util-defaults-mode-browser": "^4.0.5",
|
|
75
|
+
"@smithy/util-defaults-mode-node": "^4.0.5",
|
|
76
76
|
"@smithy/util-endpoints": "^3.0.1",
|
|
77
77
|
"@smithy/util-middleware": "^4.0.1",
|
|
78
78
|
"@smithy/util-retry": "^4.0.1",
|
|
79
|
-
"@smithy/util-stream": "^4.0
|
|
79
|
+
"@smithy/util-stream": "^4.1.0",
|
|
80
80
|
"@smithy/util-utf8": "^4.0.0",
|
|
81
81
|
"@smithy/util-waiter": "^4.0.2",
|
|
82
82
|
"tslib": "^2.6.2"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
85
|
+
"@aws-sdk/signature-v4-crt": "3.749.0",
|
|
86
86
|
"@tsconfig/node18": "18.2.4",
|
|
87
87
|
"@types/node": "^18.19.69",
|
|
88
88
|
"concurrently": "7.0.0",
|