@aws-sdk/client-s3 3.726.0 → 3.729.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 +100 -31
- package/dist-es/commands/GetObjectCommand.js +1 -1
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/protocols/Aws_restXml.js +91 -29
- package/dist-types/commands/AbortMultipartUploadCommand.d.ts +2 -2
- package/dist-types/commands/CompleteMultipartUploadCommand.d.ts +8 -2
- package/dist-types/commands/CopyObjectCommand.d.ts +5 -3
- package/dist-types/commands/CreateBucketCommand.d.ts +2 -2
- package/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/CreateMultipartUploadCommand.d.ts +6 -4
- package/dist-types/commands/CreateSessionCommand.d.ts +2 -2
- package/dist-types/commands/DeleteBucketCommand.d.ts +2 -2
- package/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +2 -2
- package/dist-types/commands/DeleteBucketPolicyCommand.d.ts +2 -2
- package/dist-types/commands/DeleteObjectCommand.d.ts +2 -2
- package/dist-types/commands/DeleteObjectsCommand.d.ts +3 -3
- package/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +2 -2
- package/dist-types/commands/GetBucketPolicyCommand.d.ts +2 -2
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +5 -2
- package/dist-types/commands/GetObjectCommand.d.ts +4 -2
- package/dist-types/commands/HeadBucketCommand.d.ts +2 -2
- package/dist-types/commands/HeadObjectCommand.d.ts +4 -2
- package/dist-types/commands/ListDirectoryBucketsCommand.d.ts +2 -2
- package/dist-types/commands/ListMultipartUploadsCommand.d.ts +4 -3
- package/dist-types/commands/ListObjectVersionsCommand.d.ts +2 -1
- package/dist-types/commands/ListObjectsCommand.d.ts +2 -1
- package/dist-types/commands/ListObjectsV2Command.d.ts +4 -3
- package/dist-types/commands/ListPartsCommand.d.ts +5 -3
- package/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketAclCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketCorsCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketEncryptionCommand.d.ts +3 -3
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/PutBucketLoggingCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketPolicyCommand.d.ts +3 -3
- package/dist-types/commands/PutBucketReplicationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketVersioningCommand.d.ts +2 -2
- package/dist-types/commands/PutBucketWebsiteCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectAclCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectCommand.d.ts +6 -3
- package/dist-types/commands/PutObjectLegalHoldCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectRetentionCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectTaggingCommand.d.ts +1 -1
- package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
- package/dist-types/commands/RestoreObjectCommand.d.ts +1 -1
- package/dist-types/commands/UploadPartCommand.d.ts +5 -3
- package/dist-types/commands/UploadPartCopyCommand.d.ts +3 -2
- package/dist-types/commands/WriteGetObjectResponseCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +251 -111
- package/dist-types/models/models_1.d.ts +140 -64
- package/dist-types/ts3.4/models/models_0.d.ts +28 -3
- package/dist-types/ts3.4/models/models_1.d.ts +12 -1
- package/package.json +3 -3
|
@@ -346,6 +346,18 @@ export interface AccessControlTranslation {
|
|
|
346
346
|
*/
|
|
347
347
|
Owner: OwnerOverride | undefined;
|
|
348
348
|
}
|
|
349
|
+
/**
|
|
350
|
+
* @public
|
|
351
|
+
* @enum
|
|
352
|
+
*/
|
|
353
|
+
export declare const ChecksumType: {
|
|
354
|
+
readonly COMPOSITE: "COMPOSITE";
|
|
355
|
+
readonly FULL_OBJECT: "FULL_OBJECT";
|
|
356
|
+
};
|
|
357
|
+
/**
|
|
358
|
+
* @public
|
|
359
|
+
*/
|
|
360
|
+
export type ChecksumType = (typeof ChecksumType)[keyof typeof ChecksumType];
|
|
349
361
|
/**
|
|
350
362
|
* @public
|
|
351
363
|
* @enum
|
|
@@ -404,7 +416,7 @@ export interface CompleteMultipartUploadOutput {
|
|
|
404
416
|
*/
|
|
405
417
|
ETag?: string | undefined;
|
|
406
418
|
/**
|
|
407
|
-
* <p>The
|
|
419
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32 checksum</code> of the object. This checksum is only be present if the checksum was uploaded
|
|
408
420
|
* 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
|
|
409
421
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
410
422
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -412,7 +424,7 @@ export interface CompleteMultipartUploadOutput {
|
|
|
412
424
|
*/
|
|
413
425
|
ChecksumCRC32?: string | undefined;
|
|
414
426
|
/**
|
|
415
|
-
* <p>The
|
|
427
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32C</code> checksum of the object. This checksum is only present if the checksum was uploaded
|
|
416
428
|
* 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
|
|
417
429
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
418
430
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -420,7 +432,16 @@ export interface CompleteMultipartUploadOutput {
|
|
|
420
432
|
*/
|
|
421
433
|
ChecksumCRC32C?: string | undefined;
|
|
422
434
|
/**
|
|
423
|
-
* <p>
|
|
435
|
+
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
436
|
+
* the same data that was originally sent. This header specifies the Base64 encoded, 64-bit
|
|
437
|
+
* <code>CRC-64NVME</code> checksum of the object. The <code>CRC-64NVME</code> checksum is
|
|
438
|
+
* 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
|
|
439
|
+
* in the Amazon S3 User Guide</a>. </p>
|
|
440
|
+
* @public
|
|
441
|
+
*/
|
|
442
|
+
ChecksumCRC64NVME?: string | undefined;
|
|
443
|
+
/**
|
|
444
|
+
* <p>The Base64 encoded, 160-bit <code>SHA-1</code> digest of the object. This will only be present if the object was uploaded
|
|
424
445
|
* 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
|
|
425
446
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
426
447
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -428,13 +449,23 @@ export interface CompleteMultipartUploadOutput {
|
|
|
428
449
|
*/
|
|
429
450
|
ChecksumSHA1?: string | undefined;
|
|
430
451
|
/**
|
|
431
|
-
* <p>The
|
|
452
|
+
* <p>The Base64 encoded, 256-bit <code>SHA-256</code> digest of the object. This will only be present if the object was uploaded
|
|
432
453
|
* 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
|
|
433
454
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
434
455
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
435
456
|
* @public
|
|
436
457
|
*/
|
|
437
458
|
ChecksumSHA256?: string | undefined;
|
|
459
|
+
/**
|
|
460
|
+
* <p>The checksum type, which determines how part-level checksums are combined to create an
|
|
461
|
+
* object-level checksum for multipart objects. You can use this header as a data integrity
|
|
462
|
+
* check to verify that the checksum type that is received is the same checksum type that was
|
|
463
|
+
* specified during the <code>CreateMultipartUpload</code> request. For more information, see
|
|
464
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
465
|
+
* in the Amazon S3 User Guide</a>.</p>
|
|
466
|
+
* @public
|
|
467
|
+
*/
|
|
468
|
+
ChecksumType?: ChecksumType | undefined;
|
|
438
469
|
/**
|
|
439
470
|
* <p>The server-side encryption algorithm used when storing this object in Amazon S3 (for example,
|
|
440
471
|
* <code>AES256</code>, <code>aws:kms</code>).</p>
|
|
@@ -482,34 +513,32 @@ export interface CompletedPart {
|
|
|
482
513
|
*/
|
|
483
514
|
ETag?: string | undefined;
|
|
484
515
|
/**
|
|
485
|
-
* <p>The
|
|
486
|
-
*
|
|
487
|
-
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
488
|
-
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
516
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32</code> checksum of the part. This checksum is present
|
|
517
|
+
* if the multipart upload request was created with the <code>CRC-32</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>
|
|
489
518
|
* @public
|
|
490
519
|
*/
|
|
491
520
|
ChecksumCRC32?: string | undefined;
|
|
492
521
|
/**
|
|
493
|
-
* <p>The
|
|
494
|
-
*
|
|
495
|
-
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
496
|
-
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
522
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32C</code> checksum of the part. This checksum is present
|
|
523
|
+
* if the multipart upload request was created with the <code>CRC-32C</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>
|
|
497
524
|
* @public
|
|
498
525
|
*/
|
|
499
526
|
ChecksumCRC32C?: string | undefined;
|
|
500
527
|
/**
|
|
501
|
-
* <p>The
|
|
502
|
-
*
|
|
503
|
-
*
|
|
504
|
-
|
|
528
|
+
* <p>The Base64 encoded, 64-bit <code>CRC-64NVME</code> checksum of the part. This checksum is present
|
|
529
|
+
* if the multipart upload request was created with the <code>CRC-64NVME</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>
|
|
530
|
+
* @public
|
|
531
|
+
*/
|
|
532
|
+
ChecksumCRC64NVME?: string | undefined;
|
|
533
|
+
/**
|
|
534
|
+
* <p>The Base64 encoded, 160-bit <code>SHA-1</code> checksum of the part. This checksum is present
|
|
535
|
+
* if the multipart upload request was created with the <code>SHA-1</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>
|
|
505
536
|
* @public
|
|
506
537
|
*/
|
|
507
538
|
ChecksumSHA1?: string | undefined;
|
|
508
539
|
/**
|
|
509
|
-
* <p>The
|
|
510
|
-
*
|
|
511
|
-
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
512
|
-
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
540
|
+
* <p>The Base64 encoded, 256-bit <code>SHA-256</code> checksum of the part. This checksum is present
|
|
541
|
+
* if the multipart upload request was created with the <code>SHA-256</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>
|
|
513
542
|
* @public
|
|
514
543
|
*/
|
|
515
544
|
ChecksumSHA256?: string | undefined;
|
|
@@ -598,7 +627,7 @@ export interface CompleteMultipartUploadRequest {
|
|
|
598
627
|
UploadId: string | undefined;
|
|
599
628
|
/**
|
|
600
629
|
* <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.
|
|
601
|
-
* This header specifies the
|
|
630
|
+
* This header specifies the Base64 encoded, 32-bit <code>CRC-32</code> checksum of the object. For more information, see
|
|
602
631
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
603
632
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
604
633
|
* @public
|
|
@@ -606,15 +635,24 @@ export interface CompleteMultipartUploadRequest {
|
|
|
606
635
|
ChecksumCRC32?: string | undefined;
|
|
607
636
|
/**
|
|
608
637
|
* <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.
|
|
609
|
-
* This header specifies the
|
|
638
|
+
* This header specifies the Base64 encoded, 32-bit <code>CRC-32C</code> checksum of the object. For more information, see
|
|
610
639
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
611
640
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
612
641
|
* @public
|
|
613
642
|
*/
|
|
614
643
|
ChecksumCRC32C?: string | undefined;
|
|
644
|
+
/**
|
|
645
|
+
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
646
|
+
* the same data that was originally sent. This header specifies the Base64 encoded, 64-bit
|
|
647
|
+
* <code>CRC-64NVME</code> checksum of the object. The <code>CRC-64NVME</code> checksum is
|
|
648
|
+
* 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
|
|
649
|
+
* in the Amazon S3 User Guide</a>.</p>
|
|
650
|
+
* @public
|
|
651
|
+
*/
|
|
652
|
+
ChecksumCRC64NVME?: string | undefined;
|
|
615
653
|
/**
|
|
616
654
|
* <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.
|
|
617
|
-
* This header specifies the
|
|
655
|
+
* This header specifies the Base64 encoded, 160-bit <code>SHA-1</code> digest of the object. For more information, see
|
|
618
656
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
619
657
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
620
658
|
* @public
|
|
@@ -622,12 +660,30 @@ export interface CompleteMultipartUploadRequest {
|
|
|
622
660
|
ChecksumSHA1?: string | undefined;
|
|
623
661
|
/**
|
|
624
662
|
* <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.
|
|
625
|
-
* This header specifies the
|
|
663
|
+
* This header specifies the Base64 encoded, 256-bit <code>SHA-256</code> digest of the object. For more information, see
|
|
626
664
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
627
665
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
628
666
|
* @public
|
|
629
667
|
*/
|
|
630
668
|
ChecksumSHA256?: string | undefined;
|
|
669
|
+
/**
|
|
670
|
+
* <p>This header specifies the checksum type of the object, which determines how part-level
|
|
671
|
+
* checksums are combined to create an object-level checksum for multipart objects. You can
|
|
672
|
+
* use this header as a data integrity check to verify that the checksum type that is received
|
|
673
|
+
* is the same checksum that was specified. If the checksum type doesn’t match the checksum
|
|
674
|
+
* type that was specified for the object during the <code>CreateMultipartUpload</code>
|
|
675
|
+
* request, it’ll result in a <code>BadDigest</code> error. For more information, see Checking
|
|
676
|
+
* object integrity in the Amazon S3 User Guide. </p>
|
|
677
|
+
* @public
|
|
678
|
+
*/
|
|
679
|
+
ChecksumType?: ChecksumType | undefined;
|
|
680
|
+
/**
|
|
681
|
+
* <p> The expected total object size of the multipart upload request. If there’s a mismatch
|
|
682
|
+
* between the specified object size value and the actual object size value, it results in an
|
|
683
|
+
* <code>HTTP 400 InvalidRequest</code> error. </p>
|
|
684
|
+
* @public
|
|
685
|
+
*/
|
|
686
|
+
MpuObjectSize?: string | undefined;
|
|
631
687
|
/**
|
|
632
688
|
* <p>Confirms that the requester knows that they will be charged for the request. Bucket
|
|
633
689
|
* owners need not specify this parameter in their requests. If either the source or
|
|
@@ -720,28 +776,41 @@ export interface CopyObjectResult {
|
|
|
720
776
|
*/
|
|
721
777
|
LastModified?: Date | undefined;
|
|
722
778
|
/**
|
|
723
|
-
* <p>The
|
|
779
|
+
* <p>The checksum type that is used to calculate the object’s
|
|
780
|
+
* checksum value. 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>
|
|
781
|
+
* @public
|
|
782
|
+
*/
|
|
783
|
+
ChecksumType?: ChecksumType | undefined;
|
|
784
|
+
/**
|
|
785
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32</code> checksum of the object. This checksum is only present if the object was uploaded
|
|
724
786
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
725
787
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
726
788
|
* @public
|
|
727
789
|
*/
|
|
728
790
|
ChecksumCRC32?: string | undefined;
|
|
729
791
|
/**
|
|
730
|
-
* <p>The
|
|
792
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32C</code> checksum of the object. This will only be present if the object was uploaded
|
|
731
793
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
732
794
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
733
795
|
* @public
|
|
734
796
|
*/
|
|
735
797
|
ChecksumCRC32C?: string | undefined;
|
|
736
798
|
/**
|
|
737
|
-
* <p>The
|
|
799
|
+
* <p>The Base64 encoded, 64-bit <code>CRC-64NVME</code> checksum of the object. This checksum is present
|
|
800
|
+
* if the object being copied was uploaded with the <code>CRC-64NVME</code> checksum algorithm, or if the object was uploaded without a
|
|
801
|
+
* checksum (and Amazon S3 added the default checksum, <code>CRC-64NVME</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>
|
|
802
|
+
* @public
|
|
803
|
+
*/
|
|
804
|
+
ChecksumCRC64NVME?: string | undefined;
|
|
805
|
+
/**
|
|
806
|
+
* <p>The Base64 encoded, 160-bit <code>SHA-1</code> digest of the object. This will only be present if the object was uploaded
|
|
738
807
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
739
808
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
740
809
|
* @public
|
|
741
810
|
*/
|
|
742
811
|
ChecksumSHA1?: string | undefined;
|
|
743
812
|
/**
|
|
744
|
-
* <p>The
|
|
813
|
+
* <p>The Base64 encoded, 256-bit <code>SHA-256</code> digest of the object. This will only be present if the object was uploaded
|
|
745
814
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
746
815
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
747
816
|
* @public
|
|
@@ -813,7 +882,7 @@ export interface CopyObjectOutput {
|
|
|
813
882
|
SSEKMSKeyId?: string | undefined;
|
|
814
883
|
/**
|
|
815
884
|
* <p>If present, indicates the Amazon Web Services KMS Encryption Context to use for object encryption. The
|
|
816
|
-
* value of this header is a
|
|
885
|
+
* value of this header is a Base64 encoded UTF-8 string holding JSON with the encryption
|
|
817
886
|
* context key-value pairs.</p>
|
|
818
887
|
* @public
|
|
819
888
|
*/
|
|
@@ -858,6 +927,7 @@ export type ObjectCannedACL = (typeof ObjectCannedACL)[keyof typeof ObjectCanned
|
|
|
858
927
|
export declare const ChecksumAlgorithm: {
|
|
859
928
|
readonly CRC32: "CRC32";
|
|
860
929
|
readonly CRC32C: "CRC32C";
|
|
930
|
+
readonly CRC64NVME: "CRC64NVME";
|
|
861
931
|
readonly SHA1: "SHA1";
|
|
862
932
|
readonly SHA256: "SHA256";
|
|
863
933
|
};
|
|
@@ -1490,8 +1560,7 @@ export interface CopyObjectRequest {
|
|
|
1490
1560
|
SSEKMSKeyId?: string | undefined;
|
|
1491
1561
|
/**
|
|
1492
1562
|
* <p>Specifies the Amazon Web Services KMS Encryption Context as an additional encryption context to use
|
|
1493
|
-
* for the destination object encryption. The value of this header is a base64-encoded UTF-8
|
|
1494
|
-
* string holding JSON with the encryption context key-value pairs.</p>
|
|
1563
|
+
* for the destination object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.</p>
|
|
1495
1564
|
* <p>
|
|
1496
1565
|
* <b>General purpose buckets</b> - This value must be explicitly
|
|
1497
1566
|
* added to specify encryption context for <code>CopyObject</code> requests if you want an
|
|
@@ -1773,7 +1842,7 @@ export type LocationType = (typeof LocationType)[keyof typeof LocationType];
|
|
|
1773
1842
|
/**
|
|
1774
1843
|
* <p>Specifies the location where the bucket will be created.</p>
|
|
1775
1844
|
* <p>For directory buckets, the location type is Availability Zone or Local Zone. For more information about directory buckets, see
|
|
1776
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html">
|
|
1845
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html">Directory buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1777
1846
|
* <note>
|
|
1778
1847
|
* <p>This functionality is only supported by directory buckets.</p>
|
|
1779
1848
|
* </note>
|
|
@@ -1839,11 +1908,10 @@ export interface CreateBucketConfiguration {
|
|
|
1839
1908
|
* <p>Specifies the Region where the bucket will be created. You might choose a Region to
|
|
1840
1909
|
* optimize latency, minimize costs, or address regulatory requirements. For example, if you
|
|
1841
1910
|
* reside in Europe, you will probably find it advantageous to create buckets in the Europe
|
|
1842
|
-
* (Ireland) Region
|
|
1911
|
+
* (Ireland) Region. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingBucket.html#access-bucket-intro">Accessing a
|
|
1912
|
+
* bucket</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1843
1913
|
* <p>If you don't specify a Region, the bucket is created in the US East (N. Virginia) Region
|
|
1844
1914
|
* (us-east-1) by default.</p>
|
|
1845
|
-
* <p>For a list of the valid values for all of the Amazon Web Services Regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region">Regions and
|
|
1846
|
-
* Endpoints</a>.</p>
|
|
1847
1915
|
* <note>
|
|
1848
1916
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
1849
1917
|
* </note>
|
|
@@ -1854,8 +1922,8 @@ export interface CreateBucketConfiguration {
|
|
|
1854
1922
|
* <p>Specifies the location where the bucket will be created.</p>
|
|
1855
1923
|
* <p>
|
|
1856
1924
|
* <b>Directory buckets </b> - The location type is Availability Zone or Local Zone.
|
|
1857
|
-
*
|
|
1858
|
-
* error code <code>
|
|
1925
|
+
* When the location type is Local Zone, your Local Zone must be in opt-in status. Otherwise, you get an HTTP <code>400 Bad Request</code> error with the
|
|
1926
|
+
* error code <code>Access denied</code>. To learn more about opt-in Local Zones, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/opt-in-directory-bucket-lz.html">Opt-in Dedicated Local Zones</a>in the <i>Amazon S3 User Guide</i>.
|
|
1859
1927
|
* </p>
|
|
1860
1928
|
* <note>
|
|
1861
1929
|
* <p>This functionality is only supported by directory buckets.</p>
|
|
@@ -2166,7 +2234,7 @@ export interface CreateMultipartUploadOutput {
|
|
|
2166
2234
|
SSEKMSKeyId?: string | undefined;
|
|
2167
2235
|
/**
|
|
2168
2236
|
* <p>If present, indicates the Amazon Web Services KMS Encryption Context to use for object encryption. The value of
|
|
2169
|
-
* this header is a Base64
|
|
2237
|
+
* this header is a Base64 encoded string of a UTF-8 encoded JSON, which contains the encryption context as key-value pairs.</p>
|
|
2170
2238
|
* @public
|
|
2171
2239
|
*/
|
|
2172
2240
|
SSEKMSEncryptionContext?: string | undefined;
|
|
@@ -2190,6 +2258,13 @@ export interface CreateMultipartUploadOutput {
|
|
|
2190
2258
|
* @public
|
|
2191
2259
|
*/
|
|
2192
2260
|
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
2261
|
+
/**
|
|
2262
|
+
* <p> Indicates the checksum type that you want Amazon S3 to use to calculate the object’s
|
|
2263
|
+
* checksum value. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
2264
|
+
* in the Amazon S3 User Guide</a>.</p>
|
|
2265
|
+
* @public
|
|
2266
|
+
*/
|
|
2267
|
+
ChecksumType?: ChecksumType | undefined;
|
|
2193
2268
|
}
|
|
2194
2269
|
/**
|
|
2195
2270
|
* @public
|
|
@@ -2690,7 +2765,7 @@ export interface CreateMultipartUploadRequest {
|
|
|
2690
2765
|
SSEKMSKeyId?: string | undefined;
|
|
2691
2766
|
/**
|
|
2692
2767
|
* <p>Specifies the Amazon Web Services KMS Encryption Context to use for object encryption. The value of
|
|
2693
|
-
* this header is a Base64
|
|
2768
|
+
* this header is a Base64 encoded string of a UTF-8 encoded JSON, which contains the encryption context as key-value pairs.</p>
|
|
2694
2769
|
* <p>
|
|
2695
2770
|
* <b>Directory buckets</b> - You can optionally provide an explicit encryption context value. The value must match the default encryption context - the bucket Amazon Resource Name (ARN). An additional encryption context value is not supported. </p>
|
|
2696
2771
|
* @public
|
|
@@ -2768,6 +2843,13 @@ export interface CreateMultipartUploadRequest {
|
|
|
2768
2843
|
* @public
|
|
2769
2844
|
*/
|
|
2770
2845
|
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
2846
|
+
/**
|
|
2847
|
+
* <p>Indicates the checksum type that you want Amazon S3 to use to calculate the object’s
|
|
2848
|
+
* checksum value. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
2849
|
+
* in the Amazon S3 User Guide</a>.</p>
|
|
2850
|
+
* @public
|
|
2851
|
+
*/
|
|
2852
|
+
ChecksumType?: ChecksumType | undefined;
|
|
2771
2853
|
}
|
|
2772
2854
|
/**
|
|
2773
2855
|
* <p>The established temporary security credentials of the session.</p>
|
|
@@ -2828,7 +2910,7 @@ export interface CreateSessionOutput {
|
|
|
2828
2910
|
SSEKMSKeyId?: string | undefined;
|
|
2829
2911
|
/**
|
|
2830
2912
|
* <p>If present, indicates the Amazon Web Services KMS Encryption Context to use for object encryption. The value of
|
|
2831
|
-
* this header is a Base64
|
|
2913
|
+
* this header is a Base64 encoded string of a UTF-8 encoded JSON, which contains the encryption context as key-value pairs.
|
|
2832
2914
|
* This value is stored as object metadata and automatically gets
|
|
2833
2915
|
* passed on to Amazon Web Services KMS for future <code>GetObject</code>
|
|
2834
2916
|
* operations on this object.</p>
|
|
@@ -2902,7 +2984,7 @@ export interface CreateSessionRequest {
|
|
|
2902
2984
|
SSEKMSKeyId?: string | undefined;
|
|
2903
2985
|
/**
|
|
2904
2986
|
* <p>Specifies the Amazon Web Services KMS Encryption Context as an additional encryption context to use for object encryption. The value of
|
|
2905
|
-
* this header is a Base64
|
|
2987
|
+
* this header is a Base64 encoded string of a UTF-8 encoded JSON, which contains the encryption context as key-value pairs.
|
|
2906
2988
|
* This value is stored as object metadata and automatically gets passed on
|
|
2907
2989
|
* to Amazon Web Services KMS for future <code>GetObject</code> operations on
|
|
2908
2990
|
* this object.</p>
|
|
@@ -5501,22 +5583,27 @@ export interface DeleteObjectsRequest {
|
|
|
5501
5583
|
* <ul>
|
|
5502
5584
|
* <li>
|
|
5503
5585
|
* <p>
|
|
5504
|
-
* <code>
|
|
5586
|
+
* <code>CRC-32</code>
|
|
5587
|
+
* </p>
|
|
5588
|
+
* </li>
|
|
5589
|
+
* <li>
|
|
5590
|
+
* <p>
|
|
5591
|
+
* <code>CRC-32C</code>
|
|
5505
5592
|
* </p>
|
|
5506
5593
|
* </li>
|
|
5507
5594
|
* <li>
|
|
5508
5595
|
* <p>
|
|
5509
|
-
* <code>
|
|
5596
|
+
* <code>CRC-64NVME</code>
|
|
5510
5597
|
* </p>
|
|
5511
5598
|
* </li>
|
|
5512
5599
|
* <li>
|
|
5513
5600
|
* <p>
|
|
5514
|
-
* <code>
|
|
5601
|
+
* <code>SHA-1</code>
|
|
5515
5602
|
* </p>
|
|
5516
5603
|
* </li>
|
|
5517
5604
|
* <li>
|
|
5518
5605
|
* <p>
|
|
5519
|
-
* <code>
|
|
5606
|
+
* <code>SHA-256</code>
|
|
5520
5607
|
* </p>
|
|
5521
5608
|
* </li>
|
|
5522
5609
|
* </ul>
|
|
@@ -5524,9 +5611,7 @@ export interface DeleteObjectsRequest {
|
|
|
5524
5611
|
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
5525
5612
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
5526
5613
|
* <p>If the individual checksum value you provide through <code>x-amz-checksum-<i>algorithm</i>
|
|
5527
|
-
* </code> doesn't match the checksum algorithm you set through <code>x-amz-sdk-checksum-algorithm</code>,
|
|
5528
|
-
* <code>ChecksumAlgorithm</code> parameter and uses the checksum algorithm that matches the provided value in <code>x-amz-checksum-<i>algorithm</i>
|
|
5529
|
-
* </code>.</p>
|
|
5614
|
+
* </code> doesn't match the checksum algorithm you set through <code>x-amz-sdk-checksum-algorithm</code>, Amazon S3 fails the request with a <code>BadDigest</code> error.</p>
|
|
5530
5615
|
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
5531
5616
|
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
5532
5617
|
* @public
|
|
@@ -6968,14 +7053,13 @@ export interface GetBucketLifecycleConfigurationOutput {
|
|
|
6968
7053
|
* <p>Indicates which default minimum object size behavior is applied to the lifecycle
|
|
6969
7054
|
* configuration.</p>
|
|
6970
7055
|
* <note>
|
|
6971
|
-
* <p>This parameter applies to general purpose buckets only. It
|
|
7056
|
+
* <p>This parameter applies to general purpose buckets only. It isn't supported for
|
|
6972
7057
|
* directory bucket lifecycle configurations.</p>
|
|
6973
7058
|
* </note>
|
|
6974
7059
|
* <ul>
|
|
6975
7060
|
* <li>
|
|
6976
7061
|
* <p>
|
|
6977
|
-
* <code>all_storage_classes_128K</code> - Objects smaller than 128 KB will not
|
|
6978
|
-
* transition to any storage class by default.</p>
|
|
7062
|
+
* <code>all_storage_classes_128K</code> - Objects smaller than 128 KB will not transition to any storage class by default.</p>
|
|
6979
7063
|
* </li>
|
|
6980
7064
|
* <li>
|
|
6981
7065
|
* <p>
|
|
@@ -9010,33 +9094,48 @@ export interface GetObjectOutput {
|
|
|
9010
9094
|
*/
|
|
9011
9095
|
ETag?: string | undefined;
|
|
9012
9096
|
/**
|
|
9013
|
-
* <p>The
|
|
9097
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32</code> checksum of the object. This checksum is only present if the object was uploaded
|
|
9014
9098
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
9015
9099
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9016
9100
|
* @public
|
|
9017
9101
|
*/
|
|
9018
9102
|
ChecksumCRC32?: string | undefined;
|
|
9019
9103
|
/**
|
|
9020
|
-
* <p>The
|
|
9104
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32C</code> checksum of the object. This will only be present if the object was uploaded
|
|
9021
9105
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
9022
9106
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9023
9107
|
* @public
|
|
9024
9108
|
*/
|
|
9025
9109
|
ChecksumCRC32C?: string | undefined;
|
|
9026
9110
|
/**
|
|
9027
|
-
* <p>The
|
|
9111
|
+
* <p>The Base64 encoded, 64-bit <code>CRC-64NVME</code> checksum of the object. For more
|
|
9112
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
9113
|
+
* in the Amazon S3 User Guide</a>.</p>
|
|
9114
|
+
* @public
|
|
9115
|
+
*/
|
|
9116
|
+
ChecksumCRC64NVME?: string | undefined;
|
|
9117
|
+
/**
|
|
9118
|
+
* <p>The Base64 encoded, 160-bit <code>SHA-1</code> digest of the object. This will only be present if the object was uploaded
|
|
9028
9119
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
9029
9120
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9030
9121
|
* @public
|
|
9031
9122
|
*/
|
|
9032
9123
|
ChecksumSHA1?: string | undefined;
|
|
9033
9124
|
/**
|
|
9034
|
-
* <p>The
|
|
9125
|
+
* <p>The Base64 encoded, 256-bit <code>SHA-256</code> digest of the object. This will only be present if the object was uploaded
|
|
9035
9126
|
* with the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
9036
9127
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9037
9128
|
* @public
|
|
9038
9129
|
*/
|
|
9039
9130
|
ChecksumSHA256?: string | undefined;
|
|
9131
|
+
/**
|
|
9132
|
+
* <p>The checksum type, which determines how part-level checksums are combined to create an
|
|
9133
|
+
* object-level checksum for multipart objects. You can use this header response to verify
|
|
9134
|
+
* that the checksum type that is received is the same checksum type that was specified in the
|
|
9135
|
+
* <code>CreateMultipartUpload</code> request. 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>
|
|
9136
|
+
* @public
|
|
9137
|
+
*/
|
|
9138
|
+
ChecksumType?: ChecksumType | undefined;
|
|
9040
9139
|
/**
|
|
9041
9140
|
* <p>This is set to the number of metadata entries not returned in the headers that are
|
|
9042
9141
|
* prefixed with <code>x-amz-meta-</code>. This can happen if you create metadata using an API
|
|
@@ -9628,7 +9727,7 @@ export interface GetObjectAclRequest {
|
|
|
9628
9727
|
*/
|
|
9629
9728
|
export interface Checksum {
|
|
9630
9729
|
/**
|
|
9631
|
-
* <p>The
|
|
9730
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32 checksum</code> of the object. This checksum is only be present if the checksum was uploaded
|
|
9632
9731
|
* 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
|
|
9633
9732
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
9634
9733
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -9636,7 +9735,7 @@ export interface Checksum {
|
|
|
9636
9735
|
*/
|
|
9637
9736
|
ChecksumCRC32?: string | undefined;
|
|
9638
9737
|
/**
|
|
9639
|
-
* <p>The
|
|
9738
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32C</code> checksum of the object. This checksum is only present if the checksum was uploaded
|
|
9640
9739
|
* 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
|
|
9641
9740
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
9642
9741
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -9644,7 +9743,14 @@ export interface Checksum {
|
|
|
9644
9743
|
*/
|
|
9645
9744
|
ChecksumCRC32C?: string | undefined;
|
|
9646
9745
|
/**
|
|
9647
|
-
* <p>The
|
|
9746
|
+
* <p>The Base64 encoded, 64-bit <code>CRC-64NVME</code> checksum of the object. This checksum is present
|
|
9747
|
+
* if the object was uploaded with the <code>CRC-64NVME</code> checksum algorithm, or if the object was uploaded without a
|
|
9748
|
+
* checksum (and Amazon S3 added the default checksum, <code>CRC-64NVME</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>
|
|
9749
|
+
* @public
|
|
9750
|
+
*/
|
|
9751
|
+
ChecksumCRC64NVME?: string | undefined;
|
|
9752
|
+
/**
|
|
9753
|
+
* <p>The Base64 encoded, 160-bit <code>SHA-1</code> digest of the object. This will only be present if the object was uploaded
|
|
9648
9754
|
* 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
|
|
9649
9755
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
9650
9756
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -9652,13 +9758,19 @@ export interface Checksum {
|
|
|
9652
9758
|
*/
|
|
9653
9759
|
ChecksumSHA1?: string | undefined;
|
|
9654
9760
|
/**
|
|
9655
|
-
* <p>The
|
|
9761
|
+
* <p>The Base64 encoded, 256-bit <code>SHA-256</code> digest of the object. This will only be present if the object was uploaded
|
|
9656
9762
|
* 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
|
|
9657
9763
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
9658
9764
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9659
9765
|
* @public
|
|
9660
9766
|
*/
|
|
9661
9767
|
ChecksumSHA256?: string | undefined;
|
|
9768
|
+
/**
|
|
9769
|
+
* <p>The checksum type that is used to calculate the object’s
|
|
9770
|
+
* checksum value. 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>
|
|
9771
|
+
* @public
|
|
9772
|
+
*/
|
|
9773
|
+
ChecksumType?: ChecksumType | undefined;
|
|
9662
9774
|
}
|
|
9663
9775
|
/**
|
|
9664
9776
|
* <p>A container for elements related to an individual part.</p>
|
|
@@ -9677,34 +9789,33 @@ export interface ObjectPart {
|
|
|
9677
9789
|
*/
|
|
9678
9790
|
Size?: number | undefined;
|
|
9679
9791
|
/**
|
|
9680
|
-
* <p>
|
|
9681
|
-
*
|
|
9682
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
9683
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
9792
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32</code> checksum of the part. This checksum is present
|
|
9793
|
+
* if the multipart upload request was created with the <code>CRC-32</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>
|
|
9684
9794
|
* @public
|
|
9685
9795
|
*/
|
|
9686
9796
|
ChecksumCRC32?: string | undefined;
|
|
9687
9797
|
/**
|
|
9688
|
-
* <p>The
|
|
9689
|
-
*
|
|
9690
|
-
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
9691
|
-
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9798
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32C</code> checksum of the part. This checksum is present
|
|
9799
|
+
* if the multipart upload request was created with the <code>CRC-32C</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>
|
|
9692
9800
|
* @public
|
|
9693
9801
|
*/
|
|
9694
9802
|
ChecksumCRC32C?: string | undefined;
|
|
9695
9803
|
/**
|
|
9696
|
-
* <p>The
|
|
9697
|
-
*
|
|
9698
|
-
*
|
|
9699
|
-
*
|
|
9804
|
+
* <p>The Base64 encoded, 64-bit <code>CRC-64NVME</code> checksum of the part. This checksum is present
|
|
9805
|
+
* if the multipart upload request was created with the <code>CRC-64NVME</code> checksum algorithm, or if the object was uploaded without a
|
|
9806
|
+
* checksum (and Amazon S3 added the default checksum, <code>CRC-64NVME</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>
|
|
9807
|
+
* @public
|
|
9808
|
+
*/
|
|
9809
|
+
ChecksumCRC64NVME?: string | undefined;
|
|
9810
|
+
/**
|
|
9811
|
+
* <p>The Base64 encoded, 160-bit <code>SHA-1</code> checksum of the part. This checksum is present
|
|
9812
|
+
* if the multipart upload request was created with the <code>SHA-1</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>
|
|
9700
9813
|
* @public
|
|
9701
9814
|
*/
|
|
9702
9815
|
ChecksumSHA1?: string | undefined;
|
|
9703
9816
|
/**
|
|
9704
|
-
* <p>The
|
|
9705
|
-
*
|
|
9706
|
-
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
9707
|
-
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
9817
|
+
* <p>The Base64 encoded, 256-bit <code>SHA-256</code> checksum of the part. This checksum is present
|
|
9818
|
+
* if the multipart upload request was created with the <code>SHA-256</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>
|
|
9708
9819
|
* @public
|
|
9709
9820
|
*/
|
|
9710
9821
|
ChecksumSHA256?: string | undefined;
|
|
@@ -10582,7 +10693,7 @@ export interface HeadObjectOutput {
|
|
|
10582
10693
|
*/
|
|
10583
10694
|
ContentLength?: number | undefined;
|
|
10584
10695
|
/**
|
|
10585
|
-
* <p>The
|
|
10696
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32 checksum</code> of the object. This checksum is only be present if the checksum was uploaded
|
|
10586
10697
|
* 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
|
|
10587
10698
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
10588
10699
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -10590,7 +10701,7 @@ export interface HeadObjectOutput {
|
|
|
10590
10701
|
*/
|
|
10591
10702
|
ChecksumCRC32?: string | undefined;
|
|
10592
10703
|
/**
|
|
10593
|
-
* <p>The
|
|
10704
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32C</code> checksum of the object. This checksum is only present if the checksum was uploaded
|
|
10594
10705
|
* 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
|
|
10595
10706
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
10596
10707
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -10598,7 +10709,14 @@ export interface HeadObjectOutput {
|
|
|
10598
10709
|
*/
|
|
10599
10710
|
ChecksumCRC32C?: string | undefined;
|
|
10600
10711
|
/**
|
|
10601
|
-
* <p>The
|
|
10712
|
+
* <p>The Base64 encoded, 64-bit <code>CRC-64NVME</code> checksum of the object. For more
|
|
10713
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
10714
|
+
* in the Amazon S3 User Guide</a>.</p>
|
|
10715
|
+
* @public
|
|
10716
|
+
*/
|
|
10717
|
+
ChecksumCRC64NVME?: string | undefined;
|
|
10718
|
+
/**
|
|
10719
|
+
* <p>The Base64 encoded, 160-bit <code>SHA-1</code> digest of the object. This will only be present if the object was uploaded
|
|
10602
10720
|
* 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
|
|
10603
10721
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
10604
10722
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -10606,13 +10724,23 @@ export interface HeadObjectOutput {
|
|
|
10606
10724
|
*/
|
|
10607
10725
|
ChecksumSHA1?: string | undefined;
|
|
10608
10726
|
/**
|
|
10609
|
-
* <p>The
|
|
10727
|
+
* <p>The Base64 encoded, 256-bit <code>SHA-256</code> digest of the object. This will only be present if the object was uploaded
|
|
10610
10728
|
* 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
|
|
10611
10729
|
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
10612
10730
|
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
10613
10731
|
* @public
|
|
10614
10732
|
*/
|
|
10615
10733
|
ChecksumSHA256?: string | undefined;
|
|
10734
|
+
/**
|
|
10735
|
+
* <p>The checksum type, which determines how part-level checksums are combined to create an
|
|
10736
|
+
* object-level checksum for multipart objects. You can use this header response to verify
|
|
10737
|
+
* that the checksum type that is received is the same checksum type that was specified in
|
|
10738
|
+
* <code>CreateMultipartUpload</code> request. For more
|
|
10739
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
10740
|
+
* in the Amazon S3 User Guide</a>.</p>
|
|
10741
|
+
* @public
|
|
10742
|
+
*/
|
|
10743
|
+
ChecksumType?: ChecksumType | undefined;
|
|
10616
10744
|
/**
|
|
10617
10745
|
* <p>An entity tag (ETag) is an opaque identifier assigned by a web server to a specific
|
|
10618
10746
|
* version of a resource found at a URL.</p>
|
|
@@ -11516,6 +11644,12 @@ export interface MultipartUpload {
|
|
|
11516
11644
|
* @public
|
|
11517
11645
|
*/
|
|
11518
11646
|
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
11647
|
+
/**
|
|
11648
|
+
* <p>The checksum type that is used to calculate the object’s
|
|
11649
|
+
* checksum value. 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>
|
|
11650
|
+
* @public
|
|
11651
|
+
*/
|
|
11652
|
+
ChecksumType?: ChecksumType | undefined;
|
|
11519
11653
|
}
|
|
11520
11654
|
/**
|
|
11521
11655
|
* @public
|
|
@@ -11885,6 +12019,12 @@ export interface _Object {
|
|
|
11885
12019
|
* @public
|
|
11886
12020
|
*/
|
|
11887
12021
|
ChecksumAlgorithm?: ChecksumAlgorithm[] | undefined;
|
|
12022
|
+
/**
|
|
12023
|
+
* <p>The checksum type that is used to calculate the object’s
|
|
12024
|
+
* checksum value. 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>
|
|
12025
|
+
* @public
|
|
12026
|
+
*/
|
|
12027
|
+
ChecksumType?: ChecksumType | undefined;
|
|
11888
12028
|
/**
|
|
11889
12029
|
* <p>Size in bytes of the object</p>
|
|
11890
12030
|
* @public
|
|
@@ -12460,6 +12600,12 @@ export interface ObjectVersion {
|
|
|
12460
12600
|
* @public
|
|
12461
12601
|
*/
|
|
12462
12602
|
ChecksumAlgorithm?: ChecksumAlgorithm[] | undefined;
|
|
12603
|
+
/**
|
|
12604
|
+
* <p>The checksum type that is used to calculate the object’s
|
|
12605
|
+
* checksum value. 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>
|
|
12606
|
+
* @public
|
|
12607
|
+
*/
|
|
12608
|
+
ChecksumType?: ChecksumType | undefined;
|
|
12463
12609
|
/**
|
|
12464
12610
|
* <p>Size in bytes of the object.</p>
|
|
12465
12611
|
* @public
|
|
@@ -12722,34 +12868,33 @@ export interface Part {
|
|
|
12722
12868
|
*/
|
|
12723
12869
|
Size?: number | undefined;
|
|
12724
12870
|
/**
|
|
12725
|
-
* <p>
|
|
12726
|
-
*
|
|
12727
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
12728
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
12871
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32</code> checksum of the part. This checksum is present
|
|
12872
|
+
* if the object was uploaded with the <code>CRC-32</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>
|
|
12729
12873
|
* @public
|
|
12730
12874
|
*/
|
|
12731
12875
|
ChecksumCRC32?: string | undefined;
|
|
12732
12876
|
/**
|
|
12733
|
-
* <p>The
|
|
12734
|
-
*
|
|
12735
|
-
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
12736
|
-
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
12877
|
+
* <p>The Base64 encoded, 32-bit <code>CRC-32C</code> checksum of the part. This checksum is present
|
|
12878
|
+
* if the object was uploaded with the <code>CRC-32C</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>
|
|
12737
12879
|
* @public
|
|
12738
12880
|
*/
|
|
12739
12881
|
ChecksumCRC32C?: string | undefined;
|
|
12740
12882
|
/**
|
|
12741
|
-
* <p>The
|
|
12742
|
-
*
|
|
12743
|
-
*
|
|
12744
|
-
*
|
|
12883
|
+
* <p>The Base64 encoded, 64-bit <code>CRC-64NVME</code> checksum of the part. This checksum is present
|
|
12884
|
+
* if the multipart upload request was created with the <code>CRC-64NVME</code> checksum algorithm, or if the object was uploaded without a
|
|
12885
|
+
* checksum (and Amazon S3 added the default checksum, <code>CRC-64NVME</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>
|
|
12886
|
+
* @public
|
|
12887
|
+
*/
|
|
12888
|
+
ChecksumCRC64NVME?: string | undefined;
|
|
12889
|
+
/**
|
|
12890
|
+
* <p>The Base64 encoded, 160-bit <code>SHA-1</code> checksum of the part. This checksum is present
|
|
12891
|
+
* if the object was uploaded with the <code>SHA-1</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>
|
|
12745
12892
|
* @public
|
|
12746
12893
|
*/
|
|
12747
12894
|
ChecksumSHA1?: string | undefined;
|
|
12748
12895
|
/**
|
|
12749
|
-
* <p>
|
|
12750
|
-
*
|
|
12751
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
12752
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
12896
|
+
* <p>The Base64 encoded, 256-bit <code>SHA-256</code> checksum of the part. This checksum is present
|
|
12897
|
+
* if the object was uploaded with the <code>SHA-256</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>
|
|
12753
12898
|
* @public
|
|
12754
12899
|
*/
|
|
12755
12900
|
ChecksumSHA256?: string | undefined;
|
|
@@ -12873,6 +13018,16 @@ export interface ListPartsOutput {
|
|
|
12873
13018
|
* @public
|
|
12874
13019
|
*/
|
|
12875
13020
|
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
13021
|
+
/**
|
|
13022
|
+
* <p>The checksum type, which determines how part-level checksums are combined to create an
|
|
13023
|
+
* object-level checksum for multipart objects. You can use this header response to verify
|
|
13024
|
+
* that the checksum type that is received is the same checksum type that was specified in
|
|
13025
|
+
* <code>CreateMultipartUpload</code> request. For more
|
|
13026
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
13027
|
+
* in the Amazon S3 User Guide</a>.</p>
|
|
13028
|
+
* @public
|
|
13029
|
+
*/
|
|
13030
|
+
ChecksumType?: ChecksumType | undefined;
|
|
12876
13031
|
}
|
|
12877
13032
|
/**
|
|
12878
13033
|
* @public
|
|
@@ -13029,7 +13184,7 @@ export interface PutBucketAclRequest {
|
|
|
13029
13184
|
*/
|
|
13030
13185
|
Bucket: string | undefined;
|
|
13031
13186
|
/**
|
|
13032
|
-
* <p>The
|
|
13187
|
+
* <p>The Base64 encoded 128-bit <code>MD5</code> digest of the data. This header must be used as a message
|
|
13033
13188
|
* integrity check to verify that the request body was not corrupted in transit. For more
|
|
13034
13189
|
* information, go to <a href="http://www.ietf.org/rfc/rfc1864.txt">RFC
|
|
13035
13190
|
* 1864.</a>
|
|
@@ -13110,21 +13265,6 @@ export interface PutBucketAnalyticsConfigurationRequest {
|
|
|
13110
13265
|
*/
|
|
13111
13266
|
ExpectedBucketOwner?: string | undefined;
|
|
13112
13267
|
}
|
|
13113
|
-
/**
|
|
13114
|
-
* <p>Describes the cross-origin access configuration for objects in an Amazon S3 bucket. For more
|
|
13115
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html">Enabling
|
|
13116
|
-
* Cross-Origin Resource Sharing</a> in the
|
|
13117
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
13118
|
-
* @public
|
|
13119
|
-
*/
|
|
13120
|
-
export interface CORSConfiguration {
|
|
13121
|
-
/**
|
|
13122
|
-
* <p>A set of origins and methods (cross-origin access that you want to allow). You can add
|
|
13123
|
-
* up to 100 rules to the configuration.</p>
|
|
13124
|
-
* @public
|
|
13125
|
-
*/
|
|
13126
|
-
CORSRules: CORSRule[] | undefined;
|
|
13127
|
-
}
|
|
13128
13268
|
/**
|
|
13129
13269
|
* @internal
|
|
13130
13270
|
*/
|