@aws-sdk/client-s3 3.674.0 → 3.676.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-types/commands/DeleteObjectCommand.d.ts +10 -10
- package/dist-types/commands/GetObjectTaggingCommand.d.ts +19 -19
- package/dist-types/commands/PutObjectCommand.d.ts +41 -41
- package/dist-types/commands/UploadPartCopyCommand.d.ts +13 -13
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -1
- package/package.json +5 -5
|
@@ -152,28 +152,28 @@ declare const DeleteObjectCommand_base: {
|
|
|
152
152
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
153
153
|
*
|
|
154
154
|
* @public
|
|
155
|
-
* @example To delete an object
|
|
155
|
+
* @example To delete an object (from a non-versioned bucket)
|
|
156
156
|
* ```javascript
|
|
157
|
-
* // The following example deletes an object from
|
|
157
|
+
* // The following example deletes an object from a non-versioned bucket.
|
|
158
158
|
* const input = {
|
|
159
|
-
* "Bucket": "
|
|
160
|
-
* "Key": "
|
|
159
|
+
* "Bucket": "ExampleBucket",
|
|
160
|
+
* "Key": "HappyFace.jpg"
|
|
161
161
|
* };
|
|
162
162
|
* const command = new DeleteObjectCommand(input);
|
|
163
163
|
* await client.send(command);
|
|
164
|
-
* // example id: to-delete-an-object-
|
|
164
|
+
* // example id: to-delete-an-object-from-a-non-versioned-bucket-1481588533089
|
|
165
165
|
* ```
|
|
166
166
|
*
|
|
167
|
-
* @example To delete an object
|
|
167
|
+
* @example To delete an object
|
|
168
168
|
* ```javascript
|
|
169
|
-
* // The following example deletes an object from
|
|
169
|
+
* // The following example deletes an object from an S3 bucket.
|
|
170
170
|
* const input = {
|
|
171
|
-
* "Bucket": "
|
|
172
|
-
* "Key": "
|
|
171
|
+
* "Bucket": "examplebucket",
|
|
172
|
+
* "Key": "objectkey.jpg"
|
|
173
173
|
* };
|
|
174
174
|
* const command = new DeleteObjectCommand(input);
|
|
175
175
|
* await client.send(command);
|
|
176
|
-
* // example id: to-delete-an-object-
|
|
176
|
+
* // example id: to-delete-an-object-1472850136595
|
|
177
177
|
* ```
|
|
178
178
|
*
|
|
179
179
|
*/
|
|
@@ -96,12 +96,13 @@ declare const GetObjectTaggingCommand_base: {
|
|
|
96
96
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
97
97
|
*
|
|
98
98
|
* @public
|
|
99
|
-
* @example To retrieve tag set of
|
|
99
|
+
* @example To retrieve tag set of a specific object version
|
|
100
100
|
* ```javascript
|
|
101
|
-
* // The following example retrieves tag set of an object.
|
|
101
|
+
* // The following example retrieves tag set of an object. The request specifies object version.
|
|
102
102
|
* const input = {
|
|
103
103
|
* "Bucket": "examplebucket",
|
|
104
|
-
* "Key": "
|
|
104
|
+
* "Key": "exampleobject",
|
|
105
|
+
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
|
|
105
106
|
* };
|
|
106
107
|
* const command = new GetObjectTaggingCommand(input);
|
|
107
108
|
* const response = await client.send(command);
|
|
@@ -109,27 +110,22 @@ declare const GetObjectTaggingCommand_base: {
|
|
|
109
110
|
* {
|
|
110
111
|
* "TagSet": [
|
|
111
112
|
* {
|
|
112
|
-
* "Key": "
|
|
113
|
-
* "Value": "
|
|
114
|
-
* },
|
|
115
|
-
* {
|
|
116
|
-
* "Key": "Key3",
|
|
117
|
-
* "Value": "Value3"
|
|
113
|
+
* "Key": "Key1",
|
|
114
|
+
* "Value": "Value1"
|
|
118
115
|
* }
|
|
119
116
|
* ],
|
|
120
|
-
* "VersionId": "
|
|
117
|
+
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
|
|
121
118
|
* }
|
|
122
119
|
* *\/
|
|
123
|
-
* // example id: to-retrieve-tag-set-of-
|
|
120
|
+
* // example id: to-retrieve-tag-set-of-a-specific-object-version-1483400283663
|
|
124
121
|
* ```
|
|
125
122
|
*
|
|
126
|
-
* @example To retrieve tag set of
|
|
123
|
+
* @example To retrieve tag set of an object
|
|
127
124
|
* ```javascript
|
|
128
|
-
* // The following example retrieves tag set of an object.
|
|
125
|
+
* // The following example retrieves tag set of an object.
|
|
129
126
|
* const input = {
|
|
130
127
|
* "Bucket": "examplebucket",
|
|
131
|
-
* "Key": "
|
|
132
|
-
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
|
|
128
|
+
* "Key": "HappyFace.jpg"
|
|
133
129
|
* };
|
|
134
130
|
* const command = new GetObjectTaggingCommand(input);
|
|
135
131
|
* const response = await client.send(command);
|
|
@@ -137,14 +133,18 @@ declare const GetObjectTaggingCommand_base: {
|
|
|
137
133
|
* {
|
|
138
134
|
* "TagSet": [
|
|
139
135
|
* {
|
|
140
|
-
* "Key": "
|
|
141
|
-
* "Value": "
|
|
136
|
+
* "Key": "Key4",
|
|
137
|
+
* "Value": "Value4"
|
|
138
|
+
* },
|
|
139
|
+
* {
|
|
140
|
+
* "Key": "Key3",
|
|
141
|
+
* "Value": "Value3"
|
|
142
142
|
* }
|
|
143
143
|
* ],
|
|
144
|
-
* "VersionId": "
|
|
144
|
+
* "VersionId": "null"
|
|
145
145
|
* }
|
|
146
146
|
* *\/
|
|
147
|
-
* // example id: to-retrieve-tag-set-of-
|
|
147
|
+
* // example id: to-retrieve-tag-set-of-an-object-1481833847896
|
|
148
148
|
* ```
|
|
149
149
|
*
|
|
150
150
|
*/
|
|
@@ -238,43 +238,46 @@ declare const PutObjectCommand_base: {
|
|
|
238
238
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
239
239
|
*
|
|
240
240
|
* @public
|
|
241
|
-
* @example To
|
|
241
|
+
* @example To create an object.
|
|
242
242
|
* ```javascript
|
|
243
|
-
* // The following example
|
|
243
|
+
* // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
|
|
244
244
|
* const input = {
|
|
245
|
-
* "ACL": "authenticated-read",
|
|
246
245
|
* "Body": "filetoupload",
|
|
247
246
|
* "Bucket": "examplebucket",
|
|
248
|
-
* "Key": "
|
|
247
|
+
* "Key": "objectkey"
|
|
249
248
|
* };
|
|
250
249
|
* const command = new PutObjectCommand(input);
|
|
251
250
|
* const response = await client.send(command);
|
|
252
251
|
* /* response ==
|
|
253
252
|
* {
|
|
254
253
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
255
|
-
* "VersionId": "
|
|
254
|
+
* "VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ"
|
|
256
255
|
* }
|
|
257
256
|
* *\/
|
|
258
|
-
* // example id: to-
|
|
257
|
+
* // example id: to-create-an-object-1483147613675
|
|
259
258
|
* ```
|
|
260
259
|
*
|
|
261
|
-
* @example To
|
|
260
|
+
* @example To upload object and specify user-defined metadata
|
|
262
261
|
* ```javascript
|
|
263
|
-
* // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
|
|
262
|
+
* // The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response.
|
|
264
263
|
* const input = {
|
|
265
264
|
* "Body": "filetoupload",
|
|
266
265
|
* "Bucket": "examplebucket",
|
|
267
|
-
* "Key": "
|
|
266
|
+
* "Key": "exampleobject",
|
|
267
|
+
* "Metadata": {
|
|
268
|
+
* "metadata1": "value1",
|
|
269
|
+
* "metadata2": "value2"
|
|
270
|
+
* }
|
|
268
271
|
* };
|
|
269
272
|
* const command = new PutObjectCommand(input);
|
|
270
273
|
* const response = await client.send(command);
|
|
271
274
|
* /* response ==
|
|
272
275
|
* {
|
|
273
276
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
274
|
-
* "VersionId": "
|
|
277
|
+
* "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0"
|
|
275
278
|
* }
|
|
276
279
|
* *\/
|
|
277
|
-
* // example id: to-
|
|
280
|
+
* // example id: to-upload-object-and-specify-user-defined-metadata-1483396974757
|
|
278
281
|
* ```
|
|
279
282
|
*
|
|
280
283
|
* @example To upload an object
|
|
@@ -296,35 +299,35 @@ declare const PutObjectCommand_base: {
|
|
|
296
299
|
* // example id: to-upload-an-object-1481760101010
|
|
297
300
|
* ```
|
|
298
301
|
*
|
|
299
|
-
* @example To upload an object and specify
|
|
302
|
+
* @example To upload an object and specify canned ACL.
|
|
300
303
|
* ```javascript
|
|
301
|
-
* // The following example uploads
|
|
304
|
+
* // The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
|
|
302
305
|
* const input = {
|
|
303
|
-
* "
|
|
306
|
+
* "ACL": "authenticated-read",
|
|
307
|
+
* "Body": "filetoupload",
|
|
304
308
|
* "Bucket": "examplebucket",
|
|
305
|
-
* "Key": "
|
|
306
|
-
* "Tagging": "key1=value1&key2=value2"
|
|
309
|
+
* "Key": "exampleobject"
|
|
307
310
|
* };
|
|
308
311
|
* const command = new PutObjectCommand(input);
|
|
309
312
|
* const response = await client.send(command);
|
|
310
313
|
* /* response ==
|
|
311
314
|
* {
|
|
312
315
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
313
|
-
* "VersionId": "
|
|
316
|
+
* "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
|
|
314
317
|
* }
|
|
315
318
|
* *\/
|
|
316
|
-
* // example id: to-upload-an-object-and-specify-
|
|
319
|
+
* // example id: to-upload-an-object-and-specify-canned-acl-1483397779571
|
|
317
320
|
* ```
|
|
318
321
|
*
|
|
319
|
-
* @example To upload an object
|
|
322
|
+
* @example To upload an object (specify optional headers)
|
|
320
323
|
* ```javascript
|
|
321
|
-
* // The following example uploads an object. The request specifies
|
|
324
|
+
* // The following example uploads an object. The request specifies optional request headers to directs S3 to use specific storage class and use server-side encryption.
|
|
322
325
|
* const input = {
|
|
323
|
-
* "Body": "
|
|
326
|
+
* "Body": "HappyFace.jpg",
|
|
324
327
|
* "Bucket": "examplebucket",
|
|
325
|
-
* "Key": "
|
|
328
|
+
* "Key": "HappyFace.jpg",
|
|
326
329
|
* "ServerSideEncryption": "AES256",
|
|
327
|
-
* "
|
|
330
|
+
* "StorageClass": "STANDARD_IA"
|
|
328
331
|
* };
|
|
329
332
|
* const command = new PutObjectCommand(input);
|
|
330
333
|
* const response = await client.send(command);
|
|
@@ -332,55 +335,52 @@ declare const PutObjectCommand_base: {
|
|
|
332
335
|
* {
|
|
333
336
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
334
337
|
* "ServerSideEncryption": "AES256",
|
|
335
|
-
* "VersionId": "
|
|
338
|
+
* "VersionId": "CG612hodqujkf8FaaNfp8U..FIhLROcp"
|
|
336
339
|
* }
|
|
337
340
|
* *\/
|
|
338
|
-
* // example id: to-upload-an-object-
|
|
341
|
+
* // example id: to-upload-an-object-(specify-optional-headers)
|
|
339
342
|
* ```
|
|
340
343
|
*
|
|
341
|
-
* @example To upload an object
|
|
344
|
+
* @example To upload an object and specify optional tags
|
|
342
345
|
* ```javascript
|
|
343
|
-
* // The following example uploads an object. The request specifies optional
|
|
346
|
+
* // The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object.
|
|
344
347
|
* const input = {
|
|
345
|
-
* "Body": "HappyFace.jpg",
|
|
348
|
+
* "Body": "c:\\HappyFace.jpg",
|
|
346
349
|
* "Bucket": "examplebucket",
|
|
347
350
|
* "Key": "HappyFace.jpg",
|
|
348
|
-
* "
|
|
349
|
-
* "StorageClass": "STANDARD_IA"
|
|
351
|
+
* "Tagging": "key1=value1&key2=value2"
|
|
350
352
|
* };
|
|
351
353
|
* const command = new PutObjectCommand(input);
|
|
352
354
|
* const response = await client.send(command);
|
|
353
355
|
* /* response ==
|
|
354
356
|
* {
|
|
355
357
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
356
|
-
* "
|
|
357
|
-
* "VersionId": "CG612hodqujkf8FaaNfp8U..FIhLROcp"
|
|
358
|
+
* "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
|
|
358
359
|
* }
|
|
359
360
|
* *\/
|
|
360
|
-
* // example id: to-upload-an-object-
|
|
361
|
+
* // example id: to-upload-an-object-and-specify-optional-tags-1481762310955
|
|
361
362
|
* ```
|
|
362
363
|
*
|
|
363
|
-
* @example To upload object and specify
|
|
364
|
+
* @example To upload an object and specify server-side encryption and object tags
|
|
364
365
|
* ```javascript
|
|
365
|
-
* // The following example
|
|
366
|
+
* // The following example uploads an object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
|
|
366
367
|
* const input = {
|
|
367
368
|
* "Body": "filetoupload",
|
|
368
369
|
* "Bucket": "examplebucket",
|
|
369
370
|
* "Key": "exampleobject",
|
|
370
|
-
* "
|
|
371
|
-
*
|
|
372
|
-
* "metadata2": "value2"
|
|
373
|
-
* }
|
|
371
|
+
* "ServerSideEncryption": "AES256",
|
|
372
|
+
* "Tagging": "key1=value1&key2=value2"
|
|
374
373
|
* };
|
|
375
374
|
* const command = new PutObjectCommand(input);
|
|
376
375
|
* const response = await client.send(command);
|
|
377
376
|
* /* response ==
|
|
378
377
|
* {
|
|
379
378
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
380
|
-
* "
|
|
379
|
+
* "ServerSideEncryption": "AES256",
|
|
380
|
+
* "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
|
|
381
381
|
* }
|
|
382
382
|
* *\/
|
|
383
|
-
* // example id: to-upload-object-and-specify-
|
|
383
|
+
* // example id: to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831
|
|
384
384
|
* ```
|
|
385
385
|
*
|
|
386
386
|
*/
|
|
@@ -297,14 +297,15 @@ declare const UploadPartCopyCommand_base: {
|
|
|
297
297
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
298
298
|
*
|
|
299
299
|
* @public
|
|
300
|
-
* @example To upload a part by copying
|
|
300
|
+
* @example To upload a part by copying byte range from an existing object as data source
|
|
301
301
|
* ```javascript
|
|
302
|
-
* // The following example uploads a part of a multipart upload by copying
|
|
302
|
+
* // The following example uploads a part of a multipart upload by copying a specified byte range from an existing object as data source.
|
|
303
303
|
* const input = {
|
|
304
304
|
* "Bucket": "examplebucket",
|
|
305
305
|
* "CopySource": "/bucketname/sourceobjectkey",
|
|
306
|
+
* "CopySourceRange": "bytes=1-100000",
|
|
306
307
|
* "Key": "examplelargeobject",
|
|
307
|
-
* "PartNumber": "
|
|
308
|
+
* "PartNumber": "2",
|
|
308
309
|
* "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"
|
|
309
310
|
* };
|
|
310
311
|
* const command = new UploadPartCopyCommand(input);
|
|
@@ -312,23 +313,22 @@ declare const UploadPartCopyCommand_base: {
|
|
|
312
313
|
* /* response ==
|
|
313
314
|
* {
|
|
314
315
|
* "CopyPartResult": {
|
|
315
|
-
* "ETag": "\"
|
|
316
|
-
* "LastModified": "2016-12-29T21:
|
|
316
|
+
* "ETag": "\"65d16d19e65a7508a51f043180edcc36\"",
|
|
317
|
+
* "LastModified": "2016-12-29T21:44:28.000Z"
|
|
317
318
|
* }
|
|
318
319
|
* }
|
|
319
320
|
* *\/
|
|
320
|
-
* // example id: to-upload-a-part-by-copying-
|
|
321
|
+
* // example id: to-upload-a-part-by-copying-byte-range-from-an-existing-object-as-data-source-1483048068594
|
|
321
322
|
* ```
|
|
322
323
|
*
|
|
323
|
-
* @example To upload a part by copying
|
|
324
|
+
* @example To upload a part by copying data from an existing object as data source
|
|
324
325
|
* ```javascript
|
|
325
|
-
* // The following example uploads a part of a multipart upload by copying
|
|
326
|
+
* // The following example uploads a part of a multipart upload by copying data from an existing object as data source.
|
|
326
327
|
* const input = {
|
|
327
328
|
* "Bucket": "examplebucket",
|
|
328
329
|
* "CopySource": "/bucketname/sourceobjectkey",
|
|
329
|
-
* "CopySourceRange": "bytes=1-100000",
|
|
330
330
|
* "Key": "examplelargeobject",
|
|
331
|
-
* "PartNumber": "
|
|
331
|
+
* "PartNumber": "1",
|
|
332
332
|
* "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"
|
|
333
333
|
* };
|
|
334
334
|
* const command = new UploadPartCopyCommand(input);
|
|
@@ -336,12 +336,12 @@ declare const UploadPartCopyCommand_base: {
|
|
|
336
336
|
* /* response ==
|
|
337
337
|
* {
|
|
338
338
|
* "CopyPartResult": {
|
|
339
|
-
* "ETag": "\"
|
|
340
|
-
* "LastModified": "2016-12-29T21:
|
|
339
|
+
* "ETag": "\"b0c6f0e7e054ab8fa2536a2677f8734d\"",
|
|
340
|
+
* "LastModified": "2016-12-29T21:24:43.000Z"
|
|
341
341
|
* }
|
|
342
342
|
* }
|
|
343
343
|
* *\/
|
|
344
|
-
* // example id: to-upload-a-part-by-copying-
|
|
344
|
+
* // example id: to-upload-a-part-by-copying-data-from-an-existing-object-as-data-source-1483046746348
|
|
345
345
|
* ```
|
|
346
346
|
*
|
|
347
347
|
*/
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
9
9
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
11
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
12
|
-
defaultUserAgentProvider: (config
|
|
12
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
13
13
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
14
14
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
15
15
|
md5: import("@smithy/types").HashConstructor;
|
|
@@ -21,7 +21,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
region: string | import("@smithy/types").Provider<any>;
|
|
24
|
-
defaultUserAgentProvider: (config
|
|
24
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
25
|
streamHasher: import("@smithy/types").StreamHasher<import("stream").Readable> | import("@smithy/types").StreamHasher<Blob>;
|
|
26
26
|
md5: import("@smithy/types").HashConstructor;
|
|
27
27
|
sha1: import("@smithy/types").HashConstructor;
|
|
@@ -10,7 +10,9 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
10
10
|
input: any
|
|
11
11
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
12
12
|
defaultUserAgentProvider: (
|
|
13
|
-
config
|
|
13
|
+
config?:
|
|
14
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
15
|
+
| undefined
|
|
14
16
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
17
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
16
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
@@ -23,7 +23,9 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
25
|
defaultUserAgentProvider: (
|
|
26
|
-
config
|
|
26
|
+
config?:
|
|
27
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
28
|
+
| undefined
|
|
27
29
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
28
30
|
streamHasher:
|
|
29
31
|
| import("@smithy/types").StreamHasher<import("stream").Readable>
|
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.676.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",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
27
27
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
28
28
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
29
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
30
|
-
"@aws-sdk/client-sts": "3.
|
|
29
|
+
"@aws-sdk/client-sso-oidc": "3.675.0",
|
|
30
|
+
"@aws-sdk/client-sts": "3.675.0",
|
|
31
31
|
"@aws-sdk/core": "3.667.0",
|
|
32
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
32
|
+
"@aws-sdk/credential-provider-node": "3.675.0",
|
|
33
33
|
"@aws-sdk/middleware-bucket-endpoint": "3.667.0",
|
|
34
34
|
"@aws-sdk/middleware-expect-continue": "3.667.0",
|
|
35
35
|
"@aws-sdk/middleware-flexible-checksums": "3.669.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@aws-sdk/signature-v4-multi-region": "3.674.0",
|
|
45
45
|
"@aws-sdk/types": "3.667.0",
|
|
46
46
|
"@aws-sdk/util-endpoints": "3.667.0",
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.675.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-node": "3.669.0",
|
|
49
49
|
"@aws-sdk/xml-builder": "3.662.0",
|
|
50
50
|
"@smithy/config-resolver": "^3.0.9",
|