@aws-sdk/client-s3 3.52.0 → 3.53.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/CHANGELOG.md +17 -0
- package/dist-cjs/S3.js +15 -0
- package/dist-cjs/commands/CompleteMultipartUploadCommand.js +2 -0
- package/dist-cjs/commands/DeleteObjectsCommand.js +6 -2
- package/dist-cjs/commands/GetObjectAttributesCommand.js +40 -0
- package/dist-cjs/commands/GetObjectCommand.js +7 -0
- package/dist-cjs/commands/ListPartsCommand.js +2 -0
- package/dist-cjs/commands/PutBucketAccelerateConfigurationCommand.js +6 -0
- package/dist-cjs/commands/PutBucketAclCommand.js +6 -2
- package/dist-cjs/commands/PutBucketCorsCommand.js +6 -2
- package/dist-cjs/commands/PutBucketEncryptionCommand.js +6 -2
- package/dist-cjs/commands/PutBucketLifecycleConfigurationCommand.js +6 -2
- package/dist-cjs/commands/PutBucketLoggingCommand.js +6 -2
- package/dist-cjs/commands/PutBucketOwnershipControlsCommand.js +2 -2
- package/dist-cjs/commands/PutBucketPolicyCommand.js +6 -2
- package/dist-cjs/commands/PutBucketReplicationCommand.js +6 -2
- package/dist-cjs/commands/PutBucketRequestPaymentCommand.js +6 -2
- package/dist-cjs/commands/PutBucketTaggingCommand.js +6 -2
- package/dist-cjs/commands/PutBucketVersioningCommand.js +6 -2
- package/dist-cjs/commands/PutBucketWebsiteCommand.js +6 -2
- package/dist-cjs/commands/PutObjectAclCommand.js +6 -2
- package/dist-cjs/commands/PutObjectCommand.js +6 -0
- package/dist-cjs/commands/PutObjectLegalHoldCommand.js +6 -2
- package/dist-cjs/commands/PutObjectLockConfigurationCommand.js +6 -2
- package/dist-cjs/commands/PutObjectRetentionCommand.js +9 -5
- package/dist-cjs/commands/PutObjectTaggingCommand.js +9 -5
- package/dist-cjs/commands/PutPublicAccessBlockCommand.js +8 -4
- package/dist-cjs/commands/RestoreObjectCommand.js +7 -2
- package/dist-cjs/commands/UploadPartCommand.js +6 -0
- package/dist-cjs/commands/WriteGetObjectResponseCommand.js +0 -2
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/S3ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +165 -41
- package/dist-cjs/models/models_1.js +51 -1
- package/dist-cjs/protocols/Aws_restXml.js +962 -1057
- package/dist-cjs/runtimeConfig.browser.js +17 -13
- package/dist-cjs/runtimeConfig.js +17 -14
- package/dist-es/S3.js +15 -0
- package/dist-es/commands/CompleteMultipartUploadCommand.js +2 -0
- package/dist-es/commands/DeleteObjectsCommand.js +6 -2
- package/dist-es/commands/GetObjectAttributesCommand.js +43 -0
- package/dist-es/commands/GetObjectCommand.js +7 -0
- package/dist-es/commands/ListPartsCommand.js +2 -0
- package/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +6 -0
- package/dist-es/commands/PutBucketAclCommand.js +6 -2
- package/dist-es/commands/PutBucketCorsCommand.js +6 -2
- package/dist-es/commands/PutBucketEncryptionCommand.js +6 -2
- package/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +6 -2
- package/dist-es/commands/PutBucketLoggingCommand.js +6 -2
- package/dist-es/commands/PutBucketOwnershipControlsCommand.js +2 -2
- package/dist-es/commands/PutBucketPolicyCommand.js +6 -2
- package/dist-es/commands/PutBucketReplicationCommand.js +6 -2
- package/dist-es/commands/PutBucketRequestPaymentCommand.js +6 -2
- package/dist-es/commands/PutBucketTaggingCommand.js +6 -2
- package/dist-es/commands/PutBucketVersioningCommand.js +6 -2
- package/dist-es/commands/PutBucketWebsiteCommand.js +6 -2
- package/dist-es/commands/PutObjectAclCommand.js +6 -2
- package/dist-es/commands/PutObjectCommand.js +6 -0
- package/dist-es/commands/PutObjectLegalHoldCommand.js +6 -2
- package/dist-es/commands/PutObjectLockConfigurationCommand.js +6 -2
- package/dist-es/commands/PutObjectRetentionCommand.js +7 -3
- package/dist-es/commands/PutObjectTaggingCommand.js +7 -3
- package/dist-es/commands/PutPublicAccessBlockCommand.js +7 -3
- package/dist-es/commands/RestoreObjectCommand.js +7 -2
- package/dist-es/commands/UploadPartCommand.js +6 -0
- package/dist-es/commands/WriteGetObjectResponseCommand.js +0 -2
- package/dist-es/commands/index.js +1 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/S3ServiceException.js +12 -0
- package/dist-es/models/models_0.js +141 -27
- package/dist-es/models/models_1.js +38 -1
- package/dist-es/protocols/Aws_restXml.js +1366 -900
- package/dist-es/runtimeConfig.browser.js +5 -3
- package/dist-es/runtimeConfig.js +5 -4
- package/dist-types/S3.d.ts +332 -90
- package/dist-types/S3Client.d.ts +19 -7
- package/dist-types/commands/CopyObjectCommand.d.ts +11 -5
- package/dist-types/commands/CreateMultipartUploadCommand.d.ts +33 -11
- package/dist-types/commands/GetBucketCorsCommand.d.ts +7 -5
- package/dist-types/commands/GetBucketTaggingCommand.d.ts +1 -1
- package/dist-types/commands/GetObjectAclCommand.d.ts +9 -1
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +190 -0
- package/dist-types/commands/GetObjectCommand.d.ts +3 -5
- package/dist-types/commands/GetObjectLegalHoldCommand.d.ts +11 -1
- package/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +9 -0
- package/dist-types/commands/GetObjectRetentionCommand.d.ts +9 -0
- package/dist-types/commands/GetObjectTaggingCommand.d.ts +8 -3
- package/dist-types/commands/HeadObjectCommand.d.ts +6 -1
- package/dist-types/commands/ListBucketsCommand.d.ts +2 -1
- package/dist-types/commands/ListPartsCommand.d.ts +8 -0
- package/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +4 -4
- package/dist-types/commands/PutBucketEncryptionCommand.d.ts +3 -1
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +12 -4
- package/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/PutBucketVersioningCommand.d.ts +4 -4
- package/dist-types/commands/PutObjectLegalHoldCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectRetentionCommand.d.ts +1 -8
- 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 +24 -32
- package/dist-types/commands/UploadPartCopyCommand.d.ts +4 -4
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/S3ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +1065 -406
- package/dist-types/models/models_1.d.ts +434 -48
- package/dist-types/protocols/Aws_restXml.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +3 -1
- package/dist-types/ts3.4/S3.d.ts +5 -0
- package/dist-types/ts3.4/S3Client.d.ts +10 -5
- package/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/S3ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +300 -114
- package/dist-types/ts3.4/models/models_1.d.ts +135 -1
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -1
- package/package.json +41 -38
|
@@ -1,6 +1,104 @@
|
|
|
1
1
|
|
|
2
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Readable } from "stream";
|
|
3
|
-
import { Grant, ObjectCannedACL, ObjectLockLegalHoldStatus, ObjectLockMode, ReplicationStatus, RequestCharged, RequestPayer, ServerSideEncryption, StorageClass, Tagging
|
|
4
|
+
import { ChecksumAlgorithm, Grant, ObjectCannedACL, ObjectLockLegalHoldStatus, ObjectLockMode, ObjectLockRetention, PublicAccessBlockConfiguration, ReplicationStatus, RequestCharged, RequestPayer, ServerSideEncryption, StorageClass, Tagging } from "./models_0";
|
|
5
|
+
import { S3ServiceException as __BaseException } from "./S3ServiceException";
|
|
6
|
+
export interface PutObjectRetentionOutput {
|
|
7
|
+
|
|
8
|
+
RequestCharged?: RequestCharged | string;
|
|
9
|
+
}
|
|
10
|
+
export declare namespace PutObjectRetentionOutput {
|
|
11
|
+
|
|
12
|
+
const filterSensitiveLog: (obj: PutObjectRetentionOutput) => any;
|
|
13
|
+
}
|
|
14
|
+
export interface PutObjectRetentionRequest {
|
|
15
|
+
|
|
16
|
+
Bucket: string | undefined;
|
|
17
|
+
|
|
18
|
+
Key: string | undefined;
|
|
19
|
+
|
|
20
|
+
Retention?: ObjectLockRetention;
|
|
21
|
+
|
|
22
|
+
RequestPayer?: RequestPayer | string;
|
|
23
|
+
|
|
24
|
+
VersionId?: string;
|
|
25
|
+
|
|
26
|
+
BypassGovernanceRetention?: boolean;
|
|
27
|
+
|
|
28
|
+
ContentMD5?: string;
|
|
29
|
+
|
|
30
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
31
|
+
|
|
32
|
+
ExpectedBucketOwner?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace PutObjectRetentionRequest {
|
|
35
|
+
|
|
36
|
+
const filterSensitiveLog: (obj: PutObjectRetentionRequest) => any;
|
|
37
|
+
}
|
|
38
|
+
export interface PutObjectTaggingOutput {
|
|
39
|
+
|
|
40
|
+
VersionId?: string;
|
|
41
|
+
}
|
|
42
|
+
export declare namespace PutObjectTaggingOutput {
|
|
43
|
+
|
|
44
|
+
const filterSensitiveLog: (obj: PutObjectTaggingOutput) => any;
|
|
45
|
+
}
|
|
46
|
+
export interface PutObjectTaggingRequest {
|
|
47
|
+
|
|
48
|
+
Bucket: string | undefined;
|
|
49
|
+
|
|
50
|
+
Key: string | undefined;
|
|
51
|
+
|
|
52
|
+
VersionId?: string;
|
|
53
|
+
|
|
54
|
+
ContentMD5?: string;
|
|
55
|
+
|
|
56
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
57
|
+
|
|
58
|
+
Tagging: Tagging | undefined;
|
|
59
|
+
|
|
60
|
+
ExpectedBucketOwner?: string;
|
|
61
|
+
|
|
62
|
+
RequestPayer?: RequestPayer | string;
|
|
63
|
+
}
|
|
64
|
+
export declare namespace PutObjectTaggingRequest {
|
|
65
|
+
|
|
66
|
+
const filterSensitiveLog: (obj: PutObjectTaggingRequest) => any;
|
|
67
|
+
}
|
|
68
|
+
export interface PutPublicAccessBlockRequest {
|
|
69
|
+
|
|
70
|
+
Bucket: string | undefined;
|
|
71
|
+
|
|
72
|
+
ContentMD5?: string;
|
|
73
|
+
|
|
74
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
75
|
+
|
|
76
|
+
PublicAccessBlockConfiguration: PublicAccessBlockConfiguration | undefined;
|
|
77
|
+
|
|
78
|
+
ExpectedBucketOwner?: string;
|
|
79
|
+
}
|
|
80
|
+
export declare namespace PutPublicAccessBlockRequest {
|
|
81
|
+
|
|
82
|
+
const filterSensitiveLog: (obj: PutPublicAccessBlockRequest) => any;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export declare class ObjectAlreadyInActiveTierError extends __BaseException {
|
|
86
|
+
readonly name: "ObjectAlreadyInActiveTierError";
|
|
87
|
+
readonly $fault: "client";
|
|
88
|
+
|
|
89
|
+
constructor(opts: __ExceptionOptionType<ObjectAlreadyInActiveTierError, __BaseException>);
|
|
90
|
+
}
|
|
91
|
+
export interface RestoreObjectOutput {
|
|
92
|
+
|
|
93
|
+
RequestCharged?: RequestCharged | string;
|
|
94
|
+
|
|
95
|
+
RestoreOutputPath?: string;
|
|
96
|
+
}
|
|
97
|
+
export declare namespace RestoreObjectOutput {
|
|
98
|
+
|
|
99
|
+
const filterSensitiveLog: (obj: RestoreObjectOutput) => any;
|
|
100
|
+
}
|
|
101
|
+
export declare type Tier = "Bulk" | "Expedited" | "Standard";
|
|
4
102
|
|
|
5
103
|
export interface GlacierJobParameters {
|
|
6
104
|
|
|
@@ -221,6 +319,8 @@ export interface RestoreObjectRequest {
|
|
|
221
319
|
|
|
222
320
|
RequestPayer?: RequestPayer | string;
|
|
223
321
|
|
|
322
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
323
|
+
|
|
224
324
|
ExpectedBucketOwner?: string;
|
|
225
325
|
}
|
|
226
326
|
export declare namespace RestoreObjectRequest {
|
|
@@ -430,6 +530,14 @@ export interface UploadPartOutput {
|
|
|
430
530
|
|
|
431
531
|
ETag?: string;
|
|
432
532
|
|
|
533
|
+
ChecksumCRC32?: string;
|
|
534
|
+
|
|
535
|
+
ChecksumCRC32C?: string;
|
|
536
|
+
|
|
537
|
+
ChecksumSHA1?: string;
|
|
538
|
+
|
|
539
|
+
ChecksumSHA256?: string;
|
|
540
|
+
|
|
433
541
|
SSECustomerAlgorithm?: string;
|
|
434
542
|
|
|
435
543
|
SSECustomerKeyMD5?: string;
|
|
@@ -454,6 +562,16 @@ export interface UploadPartRequest {
|
|
|
454
562
|
|
|
455
563
|
ContentMD5?: string;
|
|
456
564
|
|
|
565
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
566
|
+
|
|
567
|
+
ChecksumCRC32?: string;
|
|
568
|
+
|
|
569
|
+
ChecksumCRC32C?: string;
|
|
570
|
+
|
|
571
|
+
ChecksumSHA1?: string;
|
|
572
|
+
|
|
573
|
+
ChecksumSHA256?: string;
|
|
574
|
+
|
|
457
575
|
Key: string | undefined;
|
|
458
576
|
|
|
459
577
|
PartNumber: number | undefined;
|
|
@@ -480,6 +598,14 @@ export interface CopyPartResult {
|
|
|
480
598
|
ETag?: string;
|
|
481
599
|
|
|
482
600
|
LastModified?: Date;
|
|
601
|
+
|
|
602
|
+
ChecksumCRC32?: string;
|
|
603
|
+
|
|
604
|
+
ChecksumCRC32C?: string;
|
|
605
|
+
|
|
606
|
+
ChecksumSHA1?: string;
|
|
607
|
+
|
|
608
|
+
ChecksumSHA256?: string;
|
|
483
609
|
}
|
|
484
610
|
export declare namespace CopyPartResult {
|
|
485
611
|
|
|
@@ -581,6 +707,14 @@ export interface WriteGetObjectResponseRequest {
|
|
|
581
707
|
|
|
582
708
|
ContentType?: string;
|
|
583
709
|
|
|
710
|
+
ChecksumCRC32?: string;
|
|
711
|
+
|
|
712
|
+
ChecksumCRC32C?: string;
|
|
713
|
+
|
|
714
|
+
ChecksumSHA1?: string;
|
|
715
|
+
|
|
716
|
+
ChecksumSHA256?: string;
|
|
717
|
+
|
|
584
718
|
DeleteMarker?: boolean;
|
|
585
719
|
|
|
586
720
|
ETag?: string;
|
|
@@ -43,6 +43,7 @@ import { GetBucketTaggingCommandInput, GetBucketTaggingCommandOutput } from "../
|
|
|
43
43
|
import { GetBucketVersioningCommandInput, GetBucketVersioningCommandOutput } from "../commands/GetBucketVersioningCommand";
|
|
44
44
|
import { GetBucketWebsiteCommandInput, GetBucketWebsiteCommandOutput } from "../commands/GetBucketWebsiteCommand";
|
|
45
45
|
import { GetObjectAclCommandInput, GetObjectAclCommandOutput } from "../commands/GetObjectAclCommand";
|
|
46
|
+
import { GetObjectAttributesCommandInput, GetObjectAttributesCommandOutput } from "../commands/GetObjectAttributesCommand";
|
|
46
47
|
import { GetObjectCommandInput, GetObjectCommandOutput } from "../commands/GetObjectCommand";
|
|
47
48
|
import { GetObjectLegalHoldCommandInput, GetObjectLegalHoldCommandOutput } from "../commands/GetObjectLegalHoldCommand";
|
|
48
49
|
import { GetObjectLockConfigurationCommandInput, GetObjectLockConfigurationCommandOutput } from "../commands/GetObjectLockConfigurationCommand";
|
|
@@ -136,6 +137,7 @@ export declare const serializeAws_restXmlGetBucketVersioningCommand: (input: Get
|
|
|
136
137
|
export declare const serializeAws_restXmlGetBucketWebsiteCommand: (input: GetBucketWebsiteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
138
|
export declare const serializeAws_restXmlGetObjectCommand: (input: GetObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
139
|
export declare const serializeAws_restXmlGetObjectAclCommand: (input: GetObjectAclCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
|
+
export declare const serializeAws_restXmlGetObjectAttributesCommand: (input: GetObjectAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
141
|
export declare const serializeAws_restXmlGetObjectLegalHoldCommand: (input: GetObjectLegalHoldCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
142
|
export declare const serializeAws_restXmlGetObjectLockConfigurationCommand: (input: GetObjectLockConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
141
143
|
export declare const serializeAws_restXmlGetObjectRetentionCommand: (input: GetObjectRetentionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -228,6 +230,7 @@ export declare const deserializeAws_restXmlGetBucketVersioningCommand: (output:
|
|
|
228
230
|
export declare const deserializeAws_restXmlGetBucketWebsiteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBucketWebsiteCommandOutput>;
|
|
229
231
|
export declare const deserializeAws_restXmlGetObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetObjectCommandOutput>;
|
|
230
232
|
export declare const deserializeAws_restXmlGetObjectAclCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetObjectAclCommandOutput>;
|
|
233
|
+
export declare const deserializeAws_restXmlGetObjectAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetObjectAttributesCommandOutput>;
|
|
231
234
|
export declare const deserializeAws_restXmlGetObjectLegalHoldCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetObjectLegalHoldCommandOutput>;
|
|
232
235
|
export declare const deserializeAws_restXmlGetObjectLockConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetObjectLockConfigurationCommandOutput>;
|
|
233
236
|
export declare const deserializeAws_restXmlGetObjectRetentionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetObjectRetentionCommandOutput>;
|
|
@@ -11,11 +11,13 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
11
11
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
12
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
13
|
eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
|
|
14
|
+
getAwsChunkedEncodingStream: import("@aws-sdk/types").GetAwsChunkedEncodingStream<any> | import("@aws-sdk/types").GetAwsChunkedEncodingStream<ReadableStream<any>>;
|
|
14
15
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
15
16
|
md5: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
17
18
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
18
19
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
sha1: import("@aws-sdk/types").HashConstructor;
|
|
19
21
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
20
22
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
21
23
|
streamHasher: import("@aws-sdk/types").StreamHasher<import("stream").Readable> | import("@aws-sdk/types").StreamHasher<Blob>;
|
|
@@ -12,11 +12,13 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
|
|
15
|
+
getAwsChunkedEncodingStream: import("@aws-sdk/types").GetAwsChunkedEncodingStream<any> | import("@aws-sdk/types").GetAwsChunkedEncodingStream<import("stream").Readable>;
|
|
15
16
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
16
17
|
md5: __HashConstructor;
|
|
17
18
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
18
19
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
19
20
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
21
|
+
sha1: __HashConstructor;
|
|
20
22
|
sha256: __HashConstructor;
|
|
21
23
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
22
24
|
streamHasher: import("@aws-sdk/types").StreamHasher<import("stream").Readable> | import("@aws-sdk/types").StreamHasher<Blob>;
|
|
@@ -26,9 +26,11 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
26
26
|
signingEscapePath: boolean;
|
|
27
27
|
useArnRegion: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
28
28
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
29
|
-
eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
|
|
30
29
|
streamHasher: import("@aws-sdk/types").StreamHasher<import("stream").Readable> | import("@aws-sdk/types").StreamHasher<Blob>;
|
|
31
30
|
md5: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
sha1: import("@aws-sdk/types").HashConstructor;
|
|
32
|
+
getAwsChunkedEncodingStream: import("@aws-sdk/types").GetAwsChunkedEncodingStream<any> | import("@aws-sdk/types").GetAwsChunkedEncodingStream<ReadableStream<any>>;
|
|
33
|
+
eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
|
|
32
34
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
33
35
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
34
36
|
tls?: boolean | 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.53.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,51 +19,54 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
+
"@aws-crypto/sha1-browser": "2.0.0",
|
|
22
23
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
24
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/eventstream-serde-browser": "3.
|
|
28
|
-
"@aws-sdk/eventstream-serde-config-resolver": "3.
|
|
29
|
-
"@aws-sdk/eventstream-serde-node": "3.
|
|
30
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
31
|
-
"@aws-sdk/hash-blob-browser": "3.
|
|
32
|
-
"@aws-sdk/hash-node": "3.
|
|
33
|
-
"@aws-sdk/hash-stream-node": "3.
|
|
34
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
35
|
-
"@aws-sdk/md5-js": "3.
|
|
36
|
-
"@aws-sdk/middleware-
|
|
37
|
-
"@aws-sdk/middleware-
|
|
38
|
-
"@aws-sdk/middleware-
|
|
39
|
-
"@aws-sdk/middleware-
|
|
40
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
41
|
-
"@aws-sdk/middleware-location-constraint": "3.
|
|
42
|
-
"@aws-sdk/middleware-logger": "3.
|
|
43
|
-
"@aws-sdk/middleware-retry": "3.
|
|
44
|
-
"@aws-sdk/middleware-sdk-s3": "3.
|
|
45
|
-
"@aws-sdk/middleware-serde": "3.
|
|
46
|
-
"@aws-sdk/middleware-signing": "3.
|
|
47
|
-
"@aws-sdk/middleware-ssec": "3.
|
|
48
|
-
"@aws-sdk/middleware-stack": "3.
|
|
49
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
50
|
-
"@aws-sdk/node-config-provider": "3.
|
|
51
|
-
"@aws-sdk/node-http-handler": "3.
|
|
52
|
-
"@aws-sdk/protocol-http": "3.
|
|
53
|
-
"@aws-sdk/smithy-client": "3.
|
|
54
|
-
"@aws-sdk/types": "3.
|
|
55
|
-
"@aws-sdk/url-parser": "3.
|
|
25
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
26
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
28
|
+
"@aws-sdk/eventstream-serde-browser": "3.53.0",
|
|
29
|
+
"@aws-sdk/eventstream-serde-config-resolver": "3.53.0",
|
|
30
|
+
"@aws-sdk/eventstream-serde-node": "3.53.0",
|
|
31
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
32
|
+
"@aws-sdk/hash-blob-browser": "3.53.0",
|
|
33
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
34
|
+
"@aws-sdk/hash-stream-node": "3.53.0",
|
|
35
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
36
|
+
"@aws-sdk/md5-js": "3.53.0",
|
|
37
|
+
"@aws-sdk/middleware-bucket-endpoint": "3.53.0",
|
|
38
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
39
|
+
"@aws-sdk/middleware-expect-continue": "3.53.0",
|
|
40
|
+
"@aws-sdk/middleware-flexible-checksums": "3.53.0",
|
|
41
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
42
|
+
"@aws-sdk/middleware-location-constraint": "3.53.0",
|
|
43
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
44
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
45
|
+
"@aws-sdk/middleware-sdk-s3": "3.53.0",
|
|
46
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
47
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
48
|
+
"@aws-sdk/middleware-ssec": "3.53.0",
|
|
49
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
50
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
51
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
52
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
53
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
54
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
55
|
+
"@aws-sdk/types": "3.53.0",
|
|
56
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
56
57
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
57
58
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
58
59
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
59
60
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
60
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
61
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
62
|
-
"@aws-sdk/util-
|
|
63
|
-
"@aws-sdk/util-
|
|
61
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
62
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
63
|
+
"@aws-sdk/util-stream-browser": "3.53.0",
|
|
64
|
+
"@aws-sdk/util-stream-node": "3.53.0",
|
|
65
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
66
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
64
67
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
65
68
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
66
|
-
"@aws-sdk/util-waiter": "3.
|
|
69
|
+
"@aws-sdk/util-waiter": "3.53.0",
|
|
67
70
|
"@aws-sdk/xml-builder": "3.52.0",
|
|
68
71
|
"entities": "2.2.0",
|
|
69
72
|
"fast-xml-parser": "3.19.0",
|