@aws-sdk/client-s3 3.608.0 → 3.609.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 +6 -0
- package/dist-es/protocols/Aws_restXml.js +6 -0
- package/dist-types/commands/CopyObjectCommand.d.ts +4 -4
- package/dist-types/commands/CreateBucketCommand.d.ts +13 -13
- package/dist-types/commands/DeleteObjectCommand.d.ts +10 -10
- package/dist-types/commands/DeleteObjectTaggingCommand.d.ts +11 -11
- package/dist-types/commands/DeleteObjectsCommand.d.ts +1 -1
- package/dist-types/commands/GetObjectCommand.d.ts +19 -19
- package/dist-types/commands/GetObjectTaggingCommand.d.ts +19 -19
- package/dist-types/commands/HeadObjectCommand.d.ts +6 -0
- package/dist-types/commands/PutObjectCommand.d.ts +50 -50
- package/dist-types/commands/UploadPartCopyCommand.d.ts +19 -17
- package/dist-types/models/models_0.d.ts +48 -15
- package/dist-types/ts3.4/models/models_0.d.ts +6 -0
- package/package.json +52 -52
package/dist-cjs/index.js
CHANGED
|
@@ -2058,6 +2058,12 @@ var se_HeadObjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2058
2058
|
b.p("Bucket", () => input.Bucket, "{Bucket}", false);
|
|
2059
2059
|
b.p("Key", () => input.Key, "{Key+}", true);
|
|
2060
2060
|
const query = (0, import_smithy_client.map)({
|
|
2061
|
+
[_rcc]: [, input[_RCC]],
|
|
2062
|
+
[_rcd]: [, input[_RCD]],
|
|
2063
|
+
[_rce]: [, input[_RCE]],
|
|
2064
|
+
[_rcl]: [, input[_RCL]],
|
|
2065
|
+
[_rct]: [, input[_RCT]],
|
|
2066
|
+
[_re]: [() => input.ResponseExpires !== void 0, () => (0, import_smithy_client.dateToUtcString)(input[_RE]).toString()],
|
|
2061
2067
|
[_vI]: [, input[_VI]],
|
|
2062
2068
|
[_pN]: [() => input.PartNumber !== void 0, () => input[_PN].toString()]
|
|
2063
2069
|
});
|
|
@@ -942,6 +942,12 @@ export const se_HeadObjectCommand = async (input, context) => {
|
|
|
942
942
|
b.p("Bucket", () => input.Bucket, "{Bucket}", false);
|
|
943
943
|
b.p("Key", () => input.Key, "{Key+}", true);
|
|
944
944
|
const query = map({
|
|
945
|
+
[_rcc]: [, input[_RCC]],
|
|
946
|
+
[_rcd]: [, input[_RCD]],
|
|
947
|
+
[_rce]: [, input[_RCE]],
|
|
948
|
+
[_rcl]: [, input[_RCL]],
|
|
949
|
+
[_rct]: [, input[_RCT]],
|
|
950
|
+
[_re]: [() => input.ResponseExpires !== void 0, () => __dateToUtcString(input[_RE]).toString()],
|
|
945
951
|
[_vI]: [, input[_VI]],
|
|
946
952
|
[_pN]: [() => input.PartNumber !== void 0, () => input[_PN].toString()],
|
|
947
953
|
});
|
|
@@ -121,10 +121,10 @@ declare const CopyObjectCommand_base: {
|
|
|
121
121
|
* </dd>
|
|
122
122
|
* <dt>Response and special errors</dt>
|
|
123
123
|
* <dd>
|
|
124
|
-
* <p>When the request is an HTTP 1.1 request, the response is chunk encoded.
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
* to
|
|
124
|
+
* <p>When the request is an HTTP 1.1 request, the response is chunk encoded. When
|
|
125
|
+
* the request is not an HTTP 1.1 request, the response would not contain the
|
|
126
|
+
* <code>Content-Length</code>. You always need to read the entire response body
|
|
127
|
+
* to check if the copy succeeds. </p>
|
|
128
128
|
* <ul>
|
|
129
129
|
* <li>
|
|
130
130
|
* <p>If the copy is successful, you receive a response with information about the copied
|
|
@@ -216,39 +216,39 @@ declare const CreateBucketCommand_base: {
|
|
|
216
216
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
217
217
|
*
|
|
218
218
|
* @public
|
|
219
|
-
* @example To create a bucket
|
|
219
|
+
* @example To create a bucket in a specific region
|
|
220
220
|
* ```javascript
|
|
221
|
-
* // The following example creates a bucket.
|
|
221
|
+
* // The following example creates a bucket. The request specifies an AWS region where to create the bucket.
|
|
222
222
|
* const input = {
|
|
223
|
-
* "Bucket": "examplebucket"
|
|
223
|
+
* "Bucket": "examplebucket",
|
|
224
|
+
* "CreateBucketConfiguration": {
|
|
225
|
+
* "LocationConstraint": "eu-west-1"
|
|
226
|
+
* }
|
|
224
227
|
* };
|
|
225
228
|
* const command = new CreateBucketCommand(input);
|
|
226
229
|
* const response = await client.send(command);
|
|
227
230
|
* /* response ==
|
|
228
231
|
* {
|
|
229
|
-
* "Location": "/
|
|
232
|
+
* "Location": "http://examplebucket.<Region>.s3.amazonaws.com/"
|
|
230
233
|
* }
|
|
231
234
|
* *\/
|
|
232
|
-
* // example id: to-create-a-bucket
|
|
235
|
+
* // example id: to-create-a-bucket-in-a-specific-region-1483399072992
|
|
233
236
|
* ```
|
|
234
237
|
*
|
|
235
|
-
* @example To create a bucket
|
|
238
|
+
* @example To create a bucket
|
|
236
239
|
* ```javascript
|
|
237
|
-
* // The following example creates a bucket.
|
|
240
|
+
* // The following example creates a bucket.
|
|
238
241
|
* const input = {
|
|
239
|
-
* "Bucket": "examplebucket"
|
|
240
|
-
* "CreateBucketConfiguration": {
|
|
241
|
-
* "LocationConstraint": "eu-west-1"
|
|
242
|
-
* }
|
|
242
|
+
* "Bucket": "examplebucket"
|
|
243
243
|
* };
|
|
244
244
|
* const command = new CreateBucketCommand(input);
|
|
245
245
|
* const response = await client.send(command);
|
|
246
246
|
* /* response ==
|
|
247
247
|
* {
|
|
248
|
-
* "Location": "
|
|
248
|
+
* "Location": "/examplebucket"
|
|
249
249
|
* }
|
|
250
250
|
* *\/
|
|
251
|
-
* // example id: to-create-a-bucket
|
|
251
|
+
* // example id: to-create-a-bucket--1472851826060
|
|
252
252
|
* ```
|
|
253
253
|
*
|
|
254
254
|
*/
|
|
@@ -161,28 +161,28 @@ declare const DeleteObjectCommand_base: {
|
|
|
161
161
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
162
162
|
*
|
|
163
163
|
* @public
|
|
164
|
-
* @example To delete an object
|
|
164
|
+
* @example To delete an object
|
|
165
165
|
* ```javascript
|
|
166
|
-
* // The following example deletes an object from
|
|
166
|
+
* // The following example deletes an object from an S3 bucket.
|
|
167
167
|
* const input = {
|
|
168
|
-
* "Bucket": "
|
|
169
|
-
* "Key": "
|
|
168
|
+
* "Bucket": "examplebucket",
|
|
169
|
+
* "Key": "objectkey.jpg"
|
|
170
170
|
* };
|
|
171
171
|
* const command = new DeleteObjectCommand(input);
|
|
172
172
|
* await client.send(command);
|
|
173
|
-
* // example id: to-delete-an-object-
|
|
173
|
+
* // example id: to-delete-an-object-1472850136595
|
|
174
174
|
* ```
|
|
175
175
|
*
|
|
176
|
-
* @example To delete an object
|
|
176
|
+
* @example To delete an object (from a non-versioned bucket)
|
|
177
177
|
* ```javascript
|
|
178
|
-
* // The following example deletes an object from
|
|
178
|
+
* // The following example deletes an object from a non-versioned bucket.
|
|
179
179
|
* const input = {
|
|
180
|
-
* "Bucket": "
|
|
181
|
-
* "Key": "
|
|
180
|
+
* "Bucket": "ExampleBucket",
|
|
181
|
+
* "Key": "HappyFace.jpg"
|
|
182
182
|
* };
|
|
183
183
|
* const command = new DeleteObjectCommand(input);
|
|
184
184
|
* await client.send(command);
|
|
185
|
-
* // example id: to-delete-an-object-
|
|
185
|
+
* // example id: to-delete-an-object-from-a-non-versioned-bucket-1481588533089
|
|
186
186
|
* ```
|
|
187
187
|
*
|
|
188
188
|
*/
|
|
@@ -80,39 +80,39 @@ declare const DeleteObjectTaggingCommand_base: {
|
|
|
80
80
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
81
81
|
*
|
|
82
82
|
* @public
|
|
83
|
-
* @example To remove tag set from an object
|
|
83
|
+
* @example To remove tag set from an object
|
|
84
84
|
* ```javascript
|
|
85
|
-
* // The following example removes tag set associated with the specified object
|
|
85
|
+
* // The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the operation removes tag set from the latest object version.
|
|
86
86
|
* const input = {
|
|
87
87
|
* "Bucket": "examplebucket",
|
|
88
|
-
* "Key": "HappyFace.jpg"
|
|
89
|
-
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
|
|
88
|
+
* "Key": "HappyFace.jpg"
|
|
90
89
|
* };
|
|
91
90
|
* const command = new DeleteObjectTaggingCommand(input);
|
|
92
91
|
* const response = await client.send(command);
|
|
93
92
|
* /* response ==
|
|
94
93
|
* {
|
|
95
|
-
* "VersionId": "
|
|
94
|
+
* "VersionId": "null"
|
|
96
95
|
* }
|
|
97
96
|
* *\/
|
|
98
|
-
* // example id: to-remove-tag-set-from-an-object-
|
|
97
|
+
* // example id: to-remove-tag-set-from-an-object-1483145342862
|
|
99
98
|
* ```
|
|
100
99
|
*
|
|
101
|
-
* @example To remove tag set from an object
|
|
100
|
+
* @example To remove tag set from an object version
|
|
102
101
|
* ```javascript
|
|
103
|
-
* // The following example removes tag set associated with the specified object.
|
|
102
|
+
* // The following example removes tag set associated with the specified object version. The request specifies both the object key and object version.
|
|
104
103
|
* const input = {
|
|
105
104
|
* "Bucket": "examplebucket",
|
|
106
|
-
* "Key": "HappyFace.jpg"
|
|
105
|
+
* "Key": "HappyFace.jpg",
|
|
106
|
+
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
|
|
107
107
|
* };
|
|
108
108
|
* const command = new DeleteObjectTaggingCommand(input);
|
|
109
109
|
* const response = await client.send(command);
|
|
110
110
|
* /* response ==
|
|
111
111
|
* {
|
|
112
|
-
* "VersionId": "
|
|
112
|
+
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
|
|
113
113
|
* }
|
|
114
114
|
* *\/
|
|
115
|
-
* // example id: to-remove-tag-set-from-an-object-
|
|
115
|
+
* // example id: to-remove-tag-set-from-an-object-version-1483145285913
|
|
116
116
|
* ```
|
|
117
117
|
*
|
|
118
118
|
*/
|
|
@@ -86,7 +86,7 @@ declare const DeleteObjectsCommand_base: {
|
|
|
86
86
|
* <p>
|
|
87
87
|
* <b>
|
|
88
88
|
* <code>s3:DeleteObjectVersion</code>
|
|
89
|
-
* </b> - To delete a specific version of an object from a
|
|
89
|
+
* </b> - To delete a specific version of an object from a versioning-enabled bucket, you must specify the <code>s3:DeleteObjectVersion</code> permission.</p>
|
|
90
90
|
* </li>
|
|
91
91
|
* </ul>
|
|
92
92
|
* </li>
|
|
@@ -276,53 +276,53 @@ declare const GetObjectCommand_base: {
|
|
|
276
276
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
277
277
|
*
|
|
278
278
|
* @public
|
|
279
|
-
* @example To retrieve
|
|
279
|
+
* @example To retrieve an object
|
|
280
280
|
* ```javascript
|
|
281
|
-
* // The following example retrieves an object for an S3 bucket.
|
|
281
|
+
* // The following example retrieves an object for an S3 bucket.
|
|
282
282
|
* const input = {
|
|
283
283
|
* "Bucket": "examplebucket",
|
|
284
|
-
* "Key": "
|
|
285
|
-
* "Range": "bytes=0-9"
|
|
284
|
+
* "Key": "HappyFace.jpg"
|
|
286
285
|
* };
|
|
287
286
|
* const command = new GetObjectCommand(input);
|
|
288
287
|
* const response = await client.send(command);
|
|
289
288
|
* /* response ==
|
|
290
289
|
* {
|
|
291
290
|
* "AcceptRanges": "bytes",
|
|
292
|
-
* "ContentLength": "
|
|
293
|
-
* "
|
|
294
|
-
* "
|
|
295
|
-
* "
|
|
296
|
-
* "LastModified": "Thu, 09 Oct 2014 22:57:28 GMT",
|
|
291
|
+
* "ContentLength": "3191",
|
|
292
|
+
* "ContentType": "image/jpeg",
|
|
293
|
+
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
294
|
+
* "LastModified": "Thu, 15 Dec 2016 01:19:41 GMT",
|
|
297
295
|
* "Metadata": {},
|
|
296
|
+
* "TagCount": 2,
|
|
298
297
|
* "VersionId": "null"
|
|
299
298
|
* }
|
|
300
299
|
* *\/
|
|
301
|
-
* // example id: to-retrieve-
|
|
300
|
+
* // example id: to-retrieve-an-object-1481827837012
|
|
302
301
|
* ```
|
|
303
302
|
*
|
|
304
|
-
* @example To retrieve an object
|
|
303
|
+
* @example To retrieve a byte range of an object
|
|
305
304
|
* ```javascript
|
|
306
|
-
* // The following example retrieves an object for an S3 bucket.
|
|
305
|
+
* // The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a specific byte range.
|
|
307
306
|
* const input = {
|
|
308
307
|
* "Bucket": "examplebucket",
|
|
309
|
-
* "Key": "
|
|
308
|
+
* "Key": "SampleFile.txt",
|
|
309
|
+
* "Range": "bytes=0-9"
|
|
310
310
|
* };
|
|
311
311
|
* const command = new GetObjectCommand(input);
|
|
312
312
|
* const response = await client.send(command);
|
|
313
313
|
* /* response ==
|
|
314
314
|
* {
|
|
315
315
|
* "AcceptRanges": "bytes",
|
|
316
|
-
* "ContentLength": "
|
|
317
|
-
* "
|
|
318
|
-
* "
|
|
319
|
-
* "
|
|
316
|
+
* "ContentLength": "10",
|
|
317
|
+
* "ContentRange": "bytes 0-9/43",
|
|
318
|
+
* "ContentType": "text/plain",
|
|
319
|
+
* "ETag": "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
|
|
320
|
+
* "LastModified": "Thu, 09 Oct 2014 22:57:28 GMT",
|
|
320
321
|
* "Metadata": {},
|
|
321
|
-
* "TagCount": 2,
|
|
322
322
|
* "VersionId": "null"
|
|
323
323
|
* }
|
|
324
324
|
* *\/
|
|
325
|
-
* // example id: to-retrieve-an-object
|
|
325
|
+
* // example id: to-retrieve-a-byte-range-of-an-object--1481832674603
|
|
326
326
|
* ```
|
|
327
327
|
*
|
|
328
328
|
*/
|
|
@@ -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
|
*/
|
|
@@ -176,6 +176,12 @@ declare const HeadObjectCommand_base: {
|
|
|
176
176
|
* IfUnmodifiedSince: new Date("TIMESTAMP"),
|
|
177
177
|
* Key: "STRING_VALUE", // required
|
|
178
178
|
* Range: "STRING_VALUE",
|
|
179
|
+
* ResponseCacheControl: "STRING_VALUE",
|
|
180
|
+
* ResponseContentDisposition: "STRING_VALUE",
|
|
181
|
+
* ResponseContentEncoding: "STRING_VALUE",
|
|
182
|
+
* ResponseContentLanguage: "STRING_VALUE",
|
|
183
|
+
* ResponseContentType: "STRING_VALUE",
|
|
184
|
+
* ResponseExpires: new Date("TIMESTAMP"),
|
|
179
185
|
* VersionId: "STRING_VALUE",
|
|
180
186
|
* SSECustomerAlgorithm: "STRING_VALUE",
|
|
181
187
|
* SSECustomerKey: "STRING_VALUE",
|
|
@@ -234,56 +234,55 @@ declare const PutObjectCommand_base: {
|
|
|
234
234
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
235
235
|
*
|
|
236
236
|
* @public
|
|
237
|
-
* @example To upload an object and specify
|
|
237
|
+
* @example To upload an object and specify canned ACL.
|
|
238
238
|
* ```javascript
|
|
239
|
-
* // The following example uploads
|
|
239
|
+
* // 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.
|
|
240
240
|
* const input = {
|
|
241
|
+
* "ACL": "authenticated-read",
|
|
241
242
|
* "Body": "filetoupload",
|
|
242
243
|
* "Bucket": "examplebucket",
|
|
243
|
-
* "Key": "exampleobject"
|
|
244
|
-
* "ServerSideEncryption": "AES256",
|
|
245
|
-
* "Tagging": "key1=value1&key2=value2"
|
|
244
|
+
* "Key": "exampleobject"
|
|
246
245
|
* };
|
|
247
246
|
* const command = new PutObjectCommand(input);
|
|
248
247
|
* const response = await client.send(command);
|
|
249
248
|
* /* response ==
|
|
250
249
|
* {
|
|
251
250
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
252
|
-
* "
|
|
253
|
-
* "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
|
|
251
|
+
* "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
|
|
254
252
|
* }
|
|
255
253
|
* *\/
|
|
256
|
-
* // example id: to-upload-an-object-and-specify-
|
|
254
|
+
* // example id: to-upload-an-object-and-specify-canned-acl-1483397779571
|
|
257
255
|
* ```
|
|
258
256
|
*
|
|
259
|
-
* @example To
|
|
257
|
+
* @example To upload an object and specify optional tags
|
|
260
258
|
* ```javascript
|
|
261
|
-
* // The following example
|
|
259
|
+
* // 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.
|
|
262
260
|
* const input = {
|
|
263
|
-
* "Body": "
|
|
261
|
+
* "Body": "c:\\HappyFace.jpg",
|
|
264
262
|
* "Bucket": "examplebucket",
|
|
265
|
-
* "Key": "
|
|
263
|
+
* "Key": "HappyFace.jpg",
|
|
264
|
+
* "Tagging": "key1=value1&key2=value2"
|
|
266
265
|
* };
|
|
267
266
|
* const command = new PutObjectCommand(input);
|
|
268
267
|
* const response = await client.send(command);
|
|
269
268
|
* /* response ==
|
|
270
269
|
* {
|
|
271
270
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
272
|
-
* "VersionId": "
|
|
271
|
+
* "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
|
|
273
272
|
* }
|
|
274
273
|
* *\/
|
|
275
|
-
* // example id: to-
|
|
274
|
+
* // example id: to-upload-an-object-and-specify-optional-tags-1481762310955
|
|
276
275
|
* ```
|
|
277
276
|
*
|
|
278
|
-
* @example To upload an object
|
|
277
|
+
* @example To upload an object and specify server-side encryption and object tags
|
|
279
278
|
* ```javascript
|
|
280
|
-
* // The following example uploads an object. The request specifies optional request
|
|
279
|
+
* // 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.
|
|
281
280
|
* const input = {
|
|
282
|
-
* "Body": "
|
|
281
|
+
* "Body": "filetoupload",
|
|
283
282
|
* "Bucket": "examplebucket",
|
|
284
|
-
* "Key": "
|
|
283
|
+
* "Key": "exampleobject",
|
|
285
284
|
* "ServerSideEncryption": "AES256",
|
|
286
|
-
* "
|
|
285
|
+
* "Tagging": "key1=value1&key2=value2"
|
|
287
286
|
* };
|
|
288
287
|
* const command = new PutObjectCommand(input);
|
|
289
288
|
* const response = await client.send(command);
|
|
@@ -291,92 +290,93 @@ declare const PutObjectCommand_base: {
|
|
|
291
290
|
* {
|
|
292
291
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
293
292
|
* "ServerSideEncryption": "AES256",
|
|
294
|
-
* "VersionId": "
|
|
293
|
+
* "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
|
|
295
294
|
* }
|
|
296
295
|
* *\/
|
|
297
|
-
* // example id: to-upload-an-object-
|
|
296
|
+
* // example id: to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831
|
|
298
297
|
* ```
|
|
299
298
|
*
|
|
300
|
-
* @example To upload an object
|
|
299
|
+
* @example To upload an object
|
|
301
300
|
* ```javascript
|
|
302
|
-
* // The following example uploads an object
|
|
301
|
+
* // The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object.
|
|
303
302
|
* const input = {
|
|
304
|
-
* "Body": "
|
|
303
|
+
* "Body": "HappyFace.jpg",
|
|
305
304
|
* "Bucket": "examplebucket",
|
|
306
|
-
* "Key": "HappyFace.jpg"
|
|
307
|
-
* "Tagging": "key1=value1&key2=value2"
|
|
305
|
+
* "Key": "HappyFace.jpg"
|
|
308
306
|
* };
|
|
309
307
|
* const command = new PutObjectCommand(input);
|
|
310
308
|
* const response = await client.send(command);
|
|
311
309
|
* /* response ==
|
|
312
310
|
* {
|
|
313
311
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
314
|
-
* "VersionId": "
|
|
312
|
+
* "VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
|
|
315
313
|
* }
|
|
316
314
|
* *\/
|
|
317
|
-
* // example id: to-upload-an-object-
|
|
315
|
+
* // example id: to-upload-an-object-1481760101010
|
|
318
316
|
* ```
|
|
319
317
|
*
|
|
320
|
-
* @example To
|
|
318
|
+
* @example To create an object.
|
|
321
319
|
* ```javascript
|
|
322
|
-
* // The following example creates an object.
|
|
320
|
+
* // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
|
|
323
321
|
* const input = {
|
|
324
322
|
* "Body": "filetoupload",
|
|
325
323
|
* "Bucket": "examplebucket",
|
|
326
|
-
* "Key": "
|
|
327
|
-
* "Metadata": {
|
|
328
|
-
* "metadata1": "value1",
|
|
329
|
-
* "metadata2": "value2"
|
|
330
|
-
* }
|
|
324
|
+
* "Key": "objectkey"
|
|
331
325
|
* };
|
|
332
326
|
* const command = new PutObjectCommand(input);
|
|
333
327
|
* const response = await client.send(command);
|
|
334
328
|
* /* response ==
|
|
335
329
|
* {
|
|
336
330
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
337
|
-
* "VersionId": "
|
|
331
|
+
* "VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ"
|
|
338
332
|
* }
|
|
339
333
|
* *\/
|
|
340
|
-
* // example id: to-
|
|
334
|
+
* // example id: to-create-an-object-1483147613675
|
|
341
335
|
* ```
|
|
342
336
|
*
|
|
343
|
-
* @example To upload an object
|
|
337
|
+
* @example To upload an object (specify optional headers)
|
|
344
338
|
* ```javascript
|
|
345
|
-
* // The following example uploads
|
|
339
|
+
* // 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.
|
|
346
340
|
* const input = {
|
|
347
|
-
* "
|
|
348
|
-
* "Body": "filetoupload",
|
|
341
|
+
* "Body": "HappyFace.jpg",
|
|
349
342
|
* "Bucket": "examplebucket",
|
|
350
|
-
* "Key": "
|
|
343
|
+
* "Key": "HappyFace.jpg",
|
|
344
|
+
* "ServerSideEncryption": "AES256",
|
|
345
|
+
* "StorageClass": "STANDARD_IA"
|
|
351
346
|
* };
|
|
352
347
|
* const command = new PutObjectCommand(input);
|
|
353
348
|
* const response = await client.send(command);
|
|
354
349
|
* /* response ==
|
|
355
350
|
* {
|
|
356
351
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
357
|
-
* "
|
|
352
|
+
* "ServerSideEncryption": "AES256",
|
|
353
|
+
* "VersionId": "CG612hodqujkf8FaaNfp8U..FIhLROcp"
|
|
358
354
|
* }
|
|
359
355
|
* *\/
|
|
360
|
-
* // example id: to-upload-an-object-
|
|
356
|
+
* // example id: to-upload-an-object-(specify-optional-headers)
|
|
361
357
|
* ```
|
|
362
358
|
*
|
|
363
|
-
* @example To upload
|
|
359
|
+
* @example To upload object and specify user-defined metadata
|
|
364
360
|
* ```javascript
|
|
365
|
-
* // The following example
|
|
361
|
+
* // The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response.
|
|
366
362
|
* const input = {
|
|
367
|
-
* "Body": "
|
|
363
|
+
* "Body": "filetoupload",
|
|
368
364
|
* "Bucket": "examplebucket",
|
|
369
|
-
* "Key": "
|
|
365
|
+
* "Key": "exampleobject",
|
|
366
|
+
* "Metadata": {
|
|
367
|
+
* "metadata1": "value1",
|
|
368
|
+
* "metadata2": "value2"
|
|
369
|
+
* }
|
|
370
370
|
* };
|
|
371
371
|
* const command = new PutObjectCommand(input);
|
|
372
372
|
* const response = await client.send(command);
|
|
373
373
|
* /* response ==
|
|
374
374
|
* {
|
|
375
375
|
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
|
376
|
-
* "VersionId": "
|
|
376
|
+
* "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0"
|
|
377
377
|
* }
|
|
378
378
|
* *\/
|
|
379
|
-
* // example id: to-upload-
|
|
379
|
+
* // example id: to-upload-object-and-specify-user-defined-metadata-1483396974757
|
|
380
380
|
* ```
|
|
381
381
|
*
|
|
382
382
|
*/
|
|
@@ -83,7 +83,7 @@ declare const UploadPartCopyCommand_base: {
|
|
|
83
83
|
* </li>
|
|
84
84
|
* </ul>
|
|
85
85
|
* <p>For information about permissions required to use the multipart upload API, see
|
|
86
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/
|
|
86
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpuoverview.html#mpuAndPermissions">Multipart upload API and permissions</a> in the
|
|
87
87
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
88
88
|
* </li>
|
|
89
89
|
* <li>
|
|
@@ -97,9 +97,11 @@ declare const UploadPartCopyCommand_base: {
|
|
|
97
97
|
* directory bucket, you must have the <b>
|
|
98
98
|
* <code>s3express:CreateSession</code>
|
|
99
99
|
* </b> permission in
|
|
100
|
-
* the <code>Action</code> element of a policy to read the object
|
|
101
|
-
* .
|
|
102
|
-
*
|
|
100
|
+
* the <code>Action</code> element of a policy to read the object. By
|
|
101
|
+
* default, the session is in the <code>ReadWrite</code> mode. If you
|
|
102
|
+
* want to restrict the access, you can explicitly set the
|
|
103
|
+
* <code>s3express:SessionMode</code> condition key to
|
|
104
|
+
* <code>ReadOnly</code> on the copy source bucket.</p>
|
|
103
105
|
* </li>
|
|
104
106
|
* <li>
|
|
105
107
|
* <p>If the copy destination is a directory bucket, you must have the
|
|
@@ -264,14 +266,15 @@ declare const UploadPartCopyCommand_base: {
|
|
|
264
266
|
* <p>Base exception class for all service exceptions from S3 service.</p>
|
|
265
267
|
*
|
|
266
268
|
* @public
|
|
267
|
-
* @example To upload a part by copying
|
|
269
|
+
* @example To upload a part by copying byte range from an existing object as data source
|
|
268
270
|
* ```javascript
|
|
269
|
-
* // The following example uploads a part of a multipart upload by copying
|
|
271
|
+
* // The following example uploads a part of a multipart upload by copying a specified byte range from an existing object as data source.
|
|
270
272
|
* const input = {
|
|
271
273
|
* "Bucket": "examplebucket",
|
|
272
274
|
* "CopySource": "/bucketname/sourceobjectkey",
|
|
275
|
+
* "CopySourceRange": "bytes=1-100000",
|
|
273
276
|
* "Key": "examplelargeobject",
|
|
274
|
-
* "PartNumber": "
|
|
277
|
+
* "PartNumber": "2",
|
|
275
278
|
* "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"
|
|
276
279
|
* };
|
|
277
280
|
* const command = new UploadPartCopyCommand(input);
|
|
@@ -279,23 +282,22 @@ declare const UploadPartCopyCommand_base: {
|
|
|
279
282
|
* /* response ==
|
|
280
283
|
* {
|
|
281
284
|
* "CopyPartResult": {
|
|
282
|
-
* "ETag": "\"
|
|
283
|
-
* "LastModified": "2016-12-29T21:
|
|
285
|
+
* "ETag": "\"65d16d19e65a7508a51f043180edcc36\"",
|
|
286
|
+
* "LastModified": "2016-12-29T21:44:28.000Z"
|
|
284
287
|
* }
|
|
285
288
|
* }
|
|
286
289
|
* *\/
|
|
287
|
-
* // example id: to-upload-a-part-by-copying-
|
|
290
|
+
* // example id: to-upload-a-part-by-copying-byte-range-from-an-existing-object-as-data-source-1483048068594
|
|
288
291
|
* ```
|
|
289
292
|
*
|
|
290
|
-
* @example To upload a part by copying
|
|
293
|
+
* @example To upload a part by copying data from an existing object as data source
|
|
291
294
|
* ```javascript
|
|
292
|
-
* // The following example uploads a part of a multipart upload by copying
|
|
295
|
+
* // The following example uploads a part of a multipart upload by copying data from an existing object as data source.
|
|
293
296
|
* const input = {
|
|
294
297
|
* "Bucket": "examplebucket",
|
|
295
298
|
* "CopySource": "/bucketname/sourceobjectkey",
|
|
296
|
-
* "CopySourceRange": "bytes=1-100000",
|
|
297
299
|
* "Key": "examplelargeobject",
|
|
298
|
-
* "PartNumber": "
|
|
300
|
+
* "PartNumber": "1",
|
|
299
301
|
* "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"
|
|
300
302
|
* };
|
|
301
303
|
* const command = new UploadPartCopyCommand(input);
|
|
@@ -303,12 +305,12 @@ declare const UploadPartCopyCommand_base: {
|
|
|
303
305
|
* /* response ==
|
|
304
306
|
* {
|
|
305
307
|
* "CopyPartResult": {
|
|
306
|
-
* "ETag": "\"
|
|
307
|
-
* "LastModified": "2016-12-29T21:
|
|
308
|
+
* "ETag": "\"b0c6f0e7e054ab8fa2536a2677f8734d\"",
|
|
309
|
+
* "LastModified": "2016-12-29T21:24:43.000Z"
|
|
308
310
|
* }
|
|
309
311
|
* }
|
|
310
312
|
* *\/
|
|
311
|
-
* // example id: to-upload-a-part-by-copying-
|
|
313
|
+
* // example id: to-upload-a-part-by-copying-data-from-an-existing-object-as-data-source-1483046746348
|
|
312
314
|
* ```
|
|
313
315
|
*
|
|
314
316
|
*/
|
|
@@ -2621,7 +2621,7 @@ export interface SessionCredentials {
|
|
|
2621
2621
|
*/
|
|
2622
2622
|
export interface CreateSessionOutput {
|
|
2623
2623
|
/**
|
|
2624
|
-
* <p>The established temporary security credentials
|
|
2624
|
+
* <p>The established temporary security credentials for the created session.</p>
|
|
2625
2625
|
* @public
|
|
2626
2626
|
*/
|
|
2627
2627
|
Credentials: SessionCredentials | undefined;
|
|
@@ -6315,9 +6315,9 @@ export interface NoncurrentVersionExpiration {
|
|
|
6315
6315
|
*/
|
|
6316
6316
|
NoncurrentDays?: number;
|
|
6317
6317
|
/**
|
|
6318
|
-
* <p>Specifies how many
|
|
6319
|
-
*
|
|
6320
|
-
* versions
|
|
6318
|
+
* <p>Specifies how many noncurrent versions Amazon S3 will retain. You can specify up to 100
|
|
6319
|
+
* noncurrent versions to retain. Amazon S3 will permanently delete any additional noncurrent
|
|
6320
|
+
* versions beyond the specified number to retain. For more information about noncurrent
|
|
6321
6321
|
* versions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/intro-lifecycle-rules.html">Lifecycle configuration
|
|
6322
6322
|
* elements</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
6323
6323
|
* @public
|
|
@@ -6366,10 +6366,10 @@ export interface NoncurrentVersionTransition {
|
|
|
6366
6366
|
*/
|
|
6367
6367
|
StorageClass?: TransitionStorageClass;
|
|
6368
6368
|
/**
|
|
6369
|
-
* <p>Specifies how many
|
|
6370
|
-
*
|
|
6371
|
-
*
|
|
6372
|
-
* versions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/intro-lifecycle-rules.html">Lifecycle configuration
|
|
6369
|
+
* <p>Specifies how many noncurrent versions Amazon S3 will retain in the same storage class before
|
|
6370
|
+
* transitioning objects. You can specify up to 100 noncurrent versions to retain. Amazon S3 will
|
|
6371
|
+
* transition any additional noncurrent versions beyond the specified number to retain. For
|
|
6372
|
+
* more information about noncurrent versions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/intro-lifecycle-rules.html">Lifecycle configuration
|
|
6373
6373
|
* elements</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
6374
6374
|
* @public
|
|
6375
6375
|
*/
|
|
@@ -7959,10 +7959,11 @@ export interface ErrorDocument {
|
|
|
7959
7959
|
*/
|
|
7960
7960
|
export interface IndexDocument {
|
|
7961
7961
|
/**
|
|
7962
|
-
* <p>A suffix that is appended to a request that is for a directory on the website endpoint
|
|
7963
|
-
* (
|
|
7964
|
-
*
|
|
7965
|
-
* suffix must not be empty and must not
|
|
7962
|
+
* <p>A suffix that is appended to a request that is for a directory on the website endpoint.
|
|
7963
|
+
* (For example, if the suffix is <code>index.html</code> and you make a request to
|
|
7964
|
+
* <code>samplebucket/images/</code>, the data that is returned will be for the object with
|
|
7965
|
+
* the key name <code>images/index.html</code>.) The suffix must not be empty and must not
|
|
7966
|
+
* include a slash character.</p>
|
|
7966
7967
|
* <important>
|
|
7967
7968
|
* <p>Replacement must be made for object keys containing special characters (such as carriage returns) when using
|
|
7968
7969
|
* XML requests. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints">
|
|
@@ -10179,6 +10180,36 @@ export interface HeadObjectRequest {
|
|
|
10179
10180
|
* @public
|
|
10180
10181
|
*/
|
|
10181
10182
|
Range?: string;
|
|
10183
|
+
/**
|
|
10184
|
+
* <p>Sets the <code>Cache-Control</code> header of the response.</p>
|
|
10185
|
+
* @public
|
|
10186
|
+
*/
|
|
10187
|
+
ResponseCacheControl?: string;
|
|
10188
|
+
/**
|
|
10189
|
+
* <p>Sets the <code>Content-Disposition</code> header of the response.</p>
|
|
10190
|
+
* @public
|
|
10191
|
+
*/
|
|
10192
|
+
ResponseContentDisposition?: string;
|
|
10193
|
+
/**
|
|
10194
|
+
* <p>Sets the <code>Content-Encoding</code> header of the response.</p>
|
|
10195
|
+
* @public
|
|
10196
|
+
*/
|
|
10197
|
+
ResponseContentEncoding?: string;
|
|
10198
|
+
/**
|
|
10199
|
+
* <p>Sets the <code>Content-Language</code> header of the response.</p>
|
|
10200
|
+
* @public
|
|
10201
|
+
*/
|
|
10202
|
+
ResponseContentLanguage?: string;
|
|
10203
|
+
/**
|
|
10204
|
+
* <p>Sets the <code>Content-Type</code> header of the response.</p>
|
|
10205
|
+
* @public
|
|
10206
|
+
*/
|
|
10207
|
+
ResponseContentType?: string;
|
|
10208
|
+
/**
|
|
10209
|
+
* <p>Sets the <code>Expires</code> header of the response.</p>
|
|
10210
|
+
* @public
|
|
10211
|
+
*/
|
|
10212
|
+
ResponseExpires?: Date;
|
|
10182
10213
|
/**
|
|
10183
10214
|
* <p>Version ID used to reference a specific version of the object.</p>
|
|
10184
10215
|
* <note>
|
|
@@ -11101,7 +11132,8 @@ export interface ListObjectsOutput {
|
|
|
11101
11132
|
/**
|
|
11102
11133
|
* <p>Encoding type used by Amazon S3 to encode object keys in the response. If using
|
|
11103
11134
|
* <code>url</code>, non-ASCII characters used in an object's key name will be URL encoded.
|
|
11104
|
-
* For example, the object test_file(3).png will appear as
|
|
11135
|
+
* For example, the object <code>test_file(3).png</code> will appear as
|
|
11136
|
+
* <code>test_file%283%29.png</code>.</p>
|
|
11105
11137
|
* @public
|
|
11106
11138
|
*/
|
|
11107
11139
|
EncodingType?: EncodingType;
|
|
@@ -11383,8 +11415,9 @@ export interface ListObjectsV2Request {
|
|
|
11383
11415
|
Delimiter?: string;
|
|
11384
11416
|
/**
|
|
11385
11417
|
* <p>Encoding type used by Amazon S3 to encode object keys in the response. If using
|
|
11386
|
-
*
|
|
11387
|
-
* For example, the object test_file(3).png will appear as
|
|
11418
|
+
* <code>url</code>, non-ASCII characters used in an object's key name will be URL encoded.
|
|
11419
|
+
* For example, the object <code>test_file(3).png</code> will appear as
|
|
11420
|
+
* <code>test_file%283%29.png</code>.</p>
|
|
11388
11421
|
* @public
|
|
11389
11422
|
*/
|
|
11390
11423
|
EncodingType?: EncodingType;
|
|
@@ -1670,6 +1670,12 @@ export interface HeadObjectRequest {
|
|
|
1670
1670
|
IfUnmodifiedSince?: Date;
|
|
1671
1671
|
Key: string | undefined;
|
|
1672
1672
|
Range?: string;
|
|
1673
|
+
ResponseCacheControl?: string;
|
|
1674
|
+
ResponseContentDisposition?: string;
|
|
1675
|
+
ResponseContentEncoding?: string;
|
|
1676
|
+
ResponseContentLanguage?: string;
|
|
1677
|
+
ResponseContentType?: string;
|
|
1678
|
+
ResponseExpires?: Date;
|
|
1673
1679
|
VersionId?: string;
|
|
1674
1680
|
SSECustomerAlgorithm?: string;
|
|
1675
1681
|
SSECustomerKey?: string;
|
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.609.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,64 +26,64 @@
|
|
|
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.
|
|
31
|
-
"@aws-sdk/core": "3.
|
|
32
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
33
|
-
"@aws-sdk/middleware-bucket-endpoint": "3.
|
|
34
|
-
"@aws-sdk/middleware-expect-continue": "3.
|
|
35
|
-
"@aws-sdk/middleware-flexible-checksums": "3.
|
|
36
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
37
|
-
"@aws-sdk/middleware-location-constraint": "3.
|
|
38
|
-
"@aws-sdk/middleware-logger": "3.
|
|
39
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
40
|
-
"@aws-sdk/middleware-sdk-s3": "3.
|
|
41
|
-
"@aws-sdk/middleware-signing": "3.
|
|
42
|
-
"@aws-sdk/middleware-ssec": "3.
|
|
43
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
44
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
45
|
-
"@aws-sdk/signature-v4-multi-region": "3.
|
|
46
|
-
"@aws-sdk/types": "3.
|
|
47
|
-
"@aws-sdk/util-endpoints": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
50
|
-
"@aws-sdk/xml-builder": "3.
|
|
51
|
-
"@smithy/config-resolver": "^3.0.
|
|
52
|
-
"@smithy/core": "^2.2.
|
|
53
|
-
"@smithy/eventstream-serde-browser": "^3.0.
|
|
54
|
-
"@smithy/eventstream-serde-config-resolver": "^3.0.
|
|
55
|
-
"@smithy/eventstream-serde-node": "^3.0.
|
|
56
|
-
"@smithy/fetch-http-handler": "^3.0
|
|
57
|
-
"@smithy/hash-blob-browser": "^3.1.
|
|
58
|
-
"@smithy/hash-node": "^3.0.
|
|
59
|
-
"@smithy/hash-stream-node": "^3.1.
|
|
60
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
61
|
-
"@smithy/md5-js": "^3.0.
|
|
62
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
63
|
-
"@smithy/middleware-endpoint": "^3.0.
|
|
64
|
-
"@smithy/middleware-retry": "^3.0.
|
|
65
|
-
"@smithy/middleware-serde": "^3.0.
|
|
66
|
-
"@smithy/middleware-stack": "^3.0.
|
|
67
|
-
"@smithy/node-config-provider": "^3.1.
|
|
68
|
-
"@smithy/node-http-handler": "^3.
|
|
69
|
-
"@smithy/protocol-http": "^4.0.
|
|
70
|
-
"@smithy/smithy-client": "^3.1.
|
|
71
|
-
"@smithy/types": "^3.
|
|
72
|
-
"@smithy/url-parser": "^3.0.
|
|
29
|
+
"@aws-sdk/client-sso-oidc": "3.609.0",
|
|
30
|
+
"@aws-sdk/client-sts": "3.609.0",
|
|
31
|
+
"@aws-sdk/core": "3.609.0",
|
|
32
|
+
"@aws-sdk/credential-provider-node": "3.609.0",
|
|
33
|
+
"@aws-sdk/middleware-bucket-endpoint": "3.609.0",
|
|
34
|
+
"@aws-sdk/middleware-expect-continue": "3.609.0",
|
|
35
|
+
"@aws-sdk/middleware-flexible-checksums": "3.609.0",
|
|
36
|
+
"@aws-sdk/middleware-host-header": "3.609.0",
|
|
37
|
+
"@aws-sdk/middleware-location-constraint": "3.609.0",
|
|
38
|
+
"@aws-sdk/middleware-logger": "3.609.0",
|
|
39
|
+
"@aws-sdk/middleware-recursion-detection": "3.609.0",
|
|
40
|
+
"@aws-sdk/middleware-sdk-s3": "3.609.0",
|
|
41
|
+
"@aws-sdk/middleware-signing": "3.609.0",
|
|
42
|
+
"@aws-sdk/middleware-ssec": "3.609.0",
|
|
43
|
+
"@aws-sdk/middleware-user-agent": "3.609.0",
|
|
44
|
+
"@aws-sdk/region-config-resolver": "3.609.0",
|
|
45
|
+
"@aws-sdk/signature-v4-multi-region": "3.609.0",
|
|
46
|
+
"@aws-sdk/types": "3.609.0",
|
|
47
|
+
"@aws-sdk/util-endpoints": "3.609.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.609.0",
|
|
50
|
+
"@aws-sdk/xml-builder": "3.609.0",
|
|
51
|
+
"@smithy/config-resolver": "^3.0.4",
|
|
52
|
+
"@smithy/core": "^2.2.4",
|
|
53
|
+
"@smithy/eventstream-serde-browser": "^3.0.4",
|
|
54
|
+
"@smithy/eventstream-serde-config-resolver": "^3.0.3",
|
|
55
|
+
"@smithy/eventstream-serde-node": "^3.0.4",
|
|
56
|
+
"@smithy/fetch-http-handler": "^3.2.0",
|
|
57
|
+
"@smithy/hash-blob-browser": "^3.1.2",
|
|
58
|
+
"@smithy/hash-node": "^3.0.3",
|
|
59
|
+
"@smithy/hash-stream-node": "^3.1.2",
|
|
60
|
+
"@smithy/invalid-dependency": "^3.0.3",
|
|
61
|
+
"@smithy/md5-js": "^3.0.3",
|
|
62
|
+
"@smithy/middleware-content-length": "^3.0.3",
|
|
63
|
+
"@smithy/middleware-endpoint": "^3.0.4",
|
|
64
|
+
"@smithy/middleware-retry": "^3.0.7",
|
|
65
|
+
"@smithy/middleware-serde": "^3.0.3",
|
|
66
|
+
"@smithy/middleware-stack": "^3.0.3",
|
|
67
|
+
"@smithy/node-config-provider": "^3.1.3",
|
|
68
|
+
"@smithy/node-http-handler": "^3.1.1",
|
|
69
|
+
"@smithy/protocol-http": "^4.0.3",
|
|
70
|
+
"@smithy/smithy-client": "^3.1.5",
|
|
71
|
+
"@smithy/types": "^3.3.0",
|
|
72
|
+
"@smithy/url-parser": "^3.0.3",
|
|
73
73
|
"@smithy/util-base64": "^3.0.0",
|
|
74
74
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
75
75
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
76
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
77
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
78
|
-
"@smithy/util-endpoints": "^2.0.
|
|
79
|
-
"@smithy/util-retry": "^3.0.
|
|
80
|
-
"@smithy/util-stream": "^3.0.
|
|
76
|
+
"@smithy/util-defaults-mode-browser": "^3.0.7",
|
|
77
|
+
"@smithy/util-defaults-mode-node": "^3.0.7",
|
|
78
|
+
"@smithy/util-endpoints": "^2.0.4",
|
|
79
|
+
"@smithy/util-retry": "^3.0.3",
|
|
80
|
+
"@smithy/util-stream": "^3.0.5",
|
|
81
81
|
"@smithy/util-utf8": "^3.0.0",
|
|
82
|
-
"@smithy/util-waiter": "^3.
|
|
82
|
+
"@smithy/util-waiter": "^3.1.2",
|
|
83
83
|
"tslib": "^2.6.2"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
86
|
+
"@aws-sdk/signature-v4-crt": "3.609.0",
|
|
87
87
|
"@tsconfig/node16": "16.1.3",
|
|
88
88
|
"@types/chai": "^4.2.11",
|
|
89
89
|
"@types/mocha": "^8.0.4",
|