@apicity/s3 0.3.3

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/README.md ADDED
@@ -0,0 +1,1725 @@
1
+ # @apicity/s3
2
+
3
+ [![npm](https://img.shields.io/npm/v/@apicity/s3?color=cb0000)](https://www.npmjs.com/package/@apicity/s3)
4
+ [![zero dependencies](https://img.shields.io/badge/dependencies-0-brightgreen)](package.json)
5
+ [![TypeScript](https://img.shields.io/badge/TypeScript-strict-blue?logo=typescript&logoColor=white)](tsconfig.json)
6
+ [![docs](https://img.shields.io/badge/docs-docs.aws.amazon.com-blue)](https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html)
7
+
8
+ S3-compatible object storage provider.
9
+
10
+ ## Installation
11
+
12
+ ```bash
13
+ npm install @apicity/s3
14
+ # or
15
+ pnpm add @apicity/s3
16
+ ```
17
+
18
+ ## Quick Start
19
+
20
+ ```typescript
21
+ import { createS3 } from "@apicity/s3";
22
+
23
+ const s3 = createS3({
24
+ accessKeyId: process.env.S3_ACCESS_KEY_ID!,
25
+ secretAccessKey: process.env.S3_SECRET_ACCESS_KEY!,
26
+ region: process.env.S3_REGION ?? "us-east-1",
27
+ endpoint: process.env.S3_ENDPOINT,
28
+ });
29
+ ```
30
+
31
+ ## API Reference
32
+
33
+ 112 endpoints across 3 groups. Each method mirrors an upstream URL path.
34
+
35
+ ### buckets
36
+
37
+ <details>
38
+ <summary><code>PUT</code> <b><code>s3.buckets.create</code></b></summary>
39
+
40
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}</code>
41
+
42
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html)
43
+
44
+ ```typescript
45
+ const res = await s3.buckets.create({ /* ... */ });
46
+ ```
47
+
48
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
49
+
50
+ </details>
51
+
52
+ <details>
53
+ <summary><code>POST</code> <b><code>s3.buckets.createMetadataConfiguration</code></b></summary>
54
+
55
+ <code>POST https://s3.us-east-1.amazonaws.com/{bucket}?metadataConfiguration</code>
56
+
57
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html)
58
+
59
+ ```typescript
60
+ const res = await s3.buckets.createMetadataConfiguration({ /* ... */ });
61
+ ```
62
+
63
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
64
+
65
+ </details>
66
+
67
+ <details>
68
+ <summary><code>POST</code> <b><code>s3.buckets.createMetadataTableConfiguration</code></b></summary>
69
+
70
+ <code>POST https://s3.us-east-1.amazonaws.com/{bucket}?metadataTable</code>
71
+
72
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataTableConfiguration.html)
73
+
74
+ ```typescript
75
+ const res = await s3.buckets.createMetadataTableConfiguration({ /* ... */ });
76
+ ```
77
+
78
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
79
+
80
+ </details>
81
+
82
+ <details>
83
+ <summary><code>GET</code> <b><code>s3.buckets.createSession</code></b></summary>
84
+
85
+ <code>GET https://s3express-{param}.{param}.amazonaws.com/{bucket}?session</code>
86
+
87
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateSession.html)
88
+
89
+ ```typescript
90
+ const res = await s3.buckets.createSession({ /* ... */ });
91
+ ```
92
+
93
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
94
+
95
+ </details>
96
+
97
+ <details>
98
+ <summary><code>DELETE</code> <b><code>s3.buckets.del</code></b></summary>
99
+
100
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}</code>
101
+
102
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html)
103
+
104
+ ```typescript
105
+ const res = await s3.buckets.del({ /* ... */ });
106
+ ```
107
+
108
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
109
+
110
+ </details>
111
+
112
+ <details>
113
+ <summary><code>DELETE</code> <b><code>s3.buckets.delAnalytics</code></b></summary>
114
+
115
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?analytics{query}</code>
116
+
117
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketAnalyticsConfiguration.html)
118
+
119
+ ```typescript
120
+ const res = await s3.buckets.delAnalytics({ /* ... */ });
121
+ ```
122
+
123
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
124
+
125
+ </details>
126
+
127
+ <details>
128
+ <summary><code>DELETE</code> <b><code>s3.buckets.delCors</code></b></summary>
129
+
130
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?cors</code>
131
+
132
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketCors.html)
133
+
134
+ ```typescript
135
+ const res = await s3.buckets.delCors({ /* ... */ });
136
+ ```
137
+
138
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
139
+
140
+ </details>
141
+
142
+ <details>
143
+ <summary><code>DELETE</code> <b><code>s3.buckets.delEncryption</code></b></summary>
144
+
145
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?encryption</code>
146
+
147
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html)
148
+
149
+ ```typescript
150
+ const res = await s3.buckets.delEncryption({ /* ... */ });
151
+ ```
152
+
153
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
154
+
155
+ </details>
156
+
157
+ <details>
158
+ <summary><code>DELETE</code> <b><code>s3.buckets.delIntelligentTiering</code></b></summary>
159
+
160
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?intelligent-tiering{query}</code>
161
+
162
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketIntelligentTieringConfiguration.html)
163
+
164
+ ```typescript
165
+ const res = await s3.buckets.delIntelligentTiering({ /* ... */ });
166
+ ```
167
+
168
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
169
+
170
+ </details>
171
+
172
+ <details>
173
+ <summary><code>DELETE</code> <b><code>s3.buckets.delInventory</code></b></summary>
174
+
175
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?inventory{query}</code>
176
+
177
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketInventoryConfiguration.html)
178
+
179
+ ```typescript
180
+ const res = await s3.buckets.delInventory({ /* ... */ });
181
+ ```
182
+
183
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
184
+
185
+ </details>
186
+
187
+ <details>
188
+ <summary><code>DELETE</code> <b><code>s3.buckets.delLifecycle</code></b></summary>
189
+
190
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?lifecycle</code>
191
+
192
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketLifecycle.html)
193
+
194
+ ```typescript
195
+ const res = await s3.buckets.delLifecycle({ /* ... */ });
196
+ ```
197
+
198
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
199
+
200
+ </details>
201
+
202
+ <details>
203
+ <summary><code>DELETE</code> <b><code>s3.buckets.delMetadataConfiguration</code></b></summary>
204
+
205
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?metadataConfiguration</code>
206
+
207
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketMetadataConfiguration.html)
208
+
209
+ ```typescript
210
+ const res = await s3.buckets.delMetadataConfiguration({ /* ... */ });
211
+ ```
212
+
213
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
214
+
215
+ </details>
216
+
217
+ <details>
218
+ <summary><code>DELETE</code> <b><code>s3.buckets.delMetadataTableConfiguration</code></b></summary>
219
+
220
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?metadataTable</code>
221
+
222
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketMetadataTableConfiguration.html)
223
+
224
+ ```typescript
225
+ const res = await s3.buckets.delMetadataTableConfiguration({ /* ... */ });
226
+ ```
227
+
228
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
229
+
230
+ </details>
231
+
232
+ <details>
233
+ <summary><code>DELETE</code> <b><code>s3.buckets.delMetrics</code></b></summary>
234
+
235
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?metrics{query}</code>
236
+
237
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketMetricsConfiguration.html)
238
+
239
+ ```typescript
240
+ const res = await s3.buckets.delMetrics({ /* ... */ });
241
+ ```
242
+
243
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
244
+
245
+ </details>
246
+
247
+ <details>
248
+ <summary><code>DELETE</code> <b><code>s3.buckets.delOwnershipControls</code></b></summary>
249
+
250
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?ownershipControls</code>
251
+
252
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketOwnershipControls.html)
253
+
254
+ ```typescript
255
+ const res = await s3.buckets.delOwnershipControls({ /* ... */ });
256
+ ```
257
+
258
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
259
+
260
+ </details>
261
+
262
+ <details>
263
+ <summary><code>DELETE</code> <b><code>s3.buckets.delPolicy</code></b></summary>
264
+
265
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?policy</code>
266
+
267
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketPolicy.html)
268
+
269
+ ```typescript
270
+ const res = await s3.buckets.delPolicy({ /* ... */ });
271
+ ```
272
+
273
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
274
+
275
+ </details>
276
+
277
+ <details>
278
+ <summary><code>DELETE</code> <b><code>s3.buckets.delPublicAccessBlock</code></b></summary>
279
+
280
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?publicAccessBlock</code>
281
+
282
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeletePublicAccessBlock.html)
283
+
284
+ ```typescript
285
+ const res = await s3.buckets.delPublicAccessBlock({ /* ... */ });
286
+ ```
287
+
288
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
289
+
290
+ </details>
291
+
292
+ <details>
293
+ <summary><code>DELETE</code> <b><code>s3.buckets.delReplication</code></b></summary>
294
+
295
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?replication</code>
296
+
297
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketReplication.html)
298
+
299
+ ```typescript
300
+ const res = await s3.buckets.delReplication({ /* ... */ });
301
+ ```
302
+
303
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
304
+
305
+ </details>
306
+
307
+ <details>
308
+ <summary><code>DELETE</code> <b><code>s3.buckets.delTagging</code></b></summary>
309
+
310
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?tagging</code>
311
+
312
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketTagging.html)
313
+
314
+ ```typescript
315
+ const res = await s3.buckets.delTagging({ /* ... */ });
316
+ ```
317
+
318
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
319
+
320
+ </details>
321
+
322
+ <details>
323
+ <summary><code>DELETE</code> <b><code>s3.buckets.delWebsite</code></b></summary>
324
+
325
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}?website</code>
326
+
327
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketWebsite.html)
328
+
329
+ ```typescript
330
+ const res = await s3.buckets.delWebsite({ /* ... */ });
331
+ ```
332
+
333
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
334
+
335
+ </details>
336
+
337
+ <details>
338
+ <summary><code>GET</code> <b><code>s3.buckets.getAbac</code></b></summary>
339
+
340
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?abac</code>
341
+
342
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAbac.html)
343
+
344
+ ```typescript
345
+ const res = await s3.buckets.getAbac({ /* ... */ });
346
+ ```
347
+
348
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
349
+
350
+ </details>
351
+
352
+ <details>
353
+ <summary><code>GET</code> <b><code>s3.buckets.getAccelerateConfiguration</code></b></summary>
354
+
355
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?accelerate</code>
356
+
357
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAccelerateConfiguration.html)
358
+
359
+ ```typescript
360
+ const res = await s3.buckets.getAccelerateConfiguration({ /* ... */ });
361
+ ```
362
+
363
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
364
+
365
+ </details>
366
+
367
+ <details>
368
+ <summary><code>GET</code> <b><code>s3.buckets.getAcl</code></b></summary>
369
+
370
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?acl</code>
371
+
372
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAcl.html)
373
+
374
+ ```typescript
375
+ const res = await s3.buckets.getAcl({ /* ... */ });
376
+ ```
377
+
378
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
379
+
380
+ </details>
381
+
382
+ <details>
383
+ <summary><code>GET</code> <b><code>s3.buckets.getAnalytics</code></b></summary>
384
+
385
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?analytics{query}</code>
386
+
387
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAnalyticsConfiguration.html)
388
+
389
+ ```typescript
390
+ const res = await s3.buckets.getAnalytics({ /* ... */ });
391
+ ```
392
+
393
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
394
+
395
+ </details>
396
+
397
+ <details>
398
+ <summary><code>GET</code> <b><code>s3.buckets.getCors</code></b></summary>
399
+
400
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?cors</code>
401
+
402
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketCors.html)
403
+
404
+ ```typescript
405
+ const res = await s3.buckets.getCors({ /* ... */ });
406
+ ```
407
+
408
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
409
+
410
+ </details>
411
+
412
+ <details>
413
+ <summary><code>GET</code> <b><code>s3.buckets.getEncryption</code></b></summary>
414
+
415
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?encryption</code>
416
+
417
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html)
418
+
419
+ ```typescript
420
+ const res = await s3.buckets.getEncryption({ /* ... */ });
421
+ ```
422
+
423
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
424
+
425
+ </details>
426
+
427
+ <details>
428
+ <summary><code>GET</code> <b><code>s3.buckets.getIntelligentTiering</code></b></summary>
429
+
430
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?intelligent-tiering{query}</code>
431
+
432
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketIntelligentTieringConfiguration.html)
433
+
434
+ ```typescript
435
+ const res = await s3.buckets.getIntelligentTiering({ /* ... */ });
436
+ ```
437
+
438
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
439
+
440
+ </details>
441
+
442
+ <details>
443
+ <summary><code>GET</code> <b><code>s3.buckets.getInventory</code></b></summary>
444
+
445
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?inventory{query}</code>
446
+
447
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketInventoryConfiguration.html)
448
+
449
+ ```typescript
450
+ const res = await s3.buckets.getInventory({ /* ... */ });
451
+ ```
452
+
453
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
454
+
455
+ </details>
456
+
457
+ <details>
458
+ <summary><code>GET</code> <b><code>s3.buckets.getLifecycle</code></b></summary>
459
+
460
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?lifecycle</code>
461
+
462
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycleConfiguration.html)
463
+
464
+ ```typescript
465
+ const res = await s3.buckets.getLifecycle({ /* ... */ });
466
+ ```
467
+
468
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
469
+
470
+ </details>
471
+
472
+ <details>
473
+ <summary><code>GET</code> <b><code>s3.buckets.getLifecycleLegacy</code></b></summary>
474
+
475
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?lifecycle</code>
476
+
477
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycle.html)
478
+
479
+ ```typescript
480
+ const res = await s3.buckets.getLifecycleLegacy({ /* ... */ });
481
+ ```
482
+
483
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
484
+
485
+ </details>
486
+
487
+ <details>
488
+ <summary><code>GET</code> <b><code>s3.buckets.getLogging</code></b></summary>
489
+
490
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?logging</code>
491
+
492
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLogging.html)
493
+
494
+ ```typescript
495
+ const res = await s3.buckets.getLogging({ /* ... */ });
496
+ ```
497
+
498
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
499
+
500
+ </details>
501
+
502
+ <details>
503
+ <summary><code>GET</code> <b><code>s3.buckets.getMetadataConfiguration</code></b></summary>
504
+
505
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?metadataConfiguration</code>
506
+
507
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketMetadataConfiguration.html)
508
+
509
+ ```typescript
510
+ const res = await s3.buckets.getMetadataConfiguration({ /* ... */ });
511
+ ```
512
+
513
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
514
+
515
+ </details>
516
+
517
+ <details>
518
+ <summary><code>GET</code> <b><code>s3.buckets.getMetadataTableConfiguration</code></b></summary>
519
+
520
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?metadataTable</code>
521
+
522
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketMetadataTableConfiguration.html)
523
+
524
+ ```typescript
525
+ const res = await s3.buckets.getMetadataTableConfiguration({ /* ... */ });
526
+ ```
527
+
528
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
529
+
530
+ </details>
531
+
532
+ <details>
533
+ <summary><code>GET</code> <b><code>s3.buckets.getMetrics</code></b></summary>
534
+
535
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?metrics{query}</code>
536
+
537
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketMetricsConfiguration.html)
538
+
539
+ ```typescript
540
+ const res = await s3.buckets.getMetrics({ /* ... */ });
541
+ ```
542
+
543
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
544
+
545
+ </details>
546
+
547
+ <details>
548
+ <summary><code>GET</code> <b><code>s3.buckets.getNotification</code></b></summary>
549
+
550
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?notification</code>
551
+
552
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketNotificationConfiguration.html)
553
+
554
+ ```typescript
555
+ const res = await s3.buckets.getNotification({ /* ... */ });
556
+ ```
557
+
558
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
559
+
560
+ </details>
561
+
562
+ <details>
563
+ <summary><code>GET</code> <b><code>s3.buckets.getNotificationLegacy</code></b></summary>
564
+
565
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?notification</code>
566
+
567
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketNotification.html)
568
+
569
+ ```typescript
570
+ const res = await s3.buckets.getNotificationLegacy({ /* ... */ });
571
+ ```
572
+
573
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
574
+
575
+ </details>
576
+
577
+ <details>
578
+ <summary><code>GET</code> <b><code>s3.buckets.getObjectLockConfiguration</code></b></summary>
579
+
580
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?object-lock</code>
581
+
582
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectLockConfiguration.html)
583
+
584
+ ```typescript
585
+ const res = await s3.buckets.getObjectLockConfiguration({ /* ... */ });
586
+ ```
587
+
588
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
589
+
590
+ </details>
591
+
592
+ <details>
593
+ <summary><code>GET</code> <b><code>s3.buckets.getOwnershipControls</code></b></summary>
594
+
595
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?ownershipControls</code>
596
+
597
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketOwnershipControls.html)
598
+
599
+ ```typescript
600
+ const res = await s3.buckets.getOwnershipControls({ /* ... */ });
601
+ ```
602
+
603
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
604
+
605
+ </details>
606
+
607
+ <details>
608
+ <summary><code>GET</code> <b><code>s3.buckets.getPolicy</code></b></summary>
609
+
610
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?policy</code>
611
+
612
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketPolicy.html)
613
+
614
+ ```typescript
615
+ const res = await s3.buckets.getPolicy({ /* ... */ });
616
+ ```
617
+
618
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
619
+
620
+ </details>
621
+
622
+ <details>
623
+ <summary><code>GET</code> <b><code>s3.buckets.getPolicyStatus</code></b></summary>
624
+
625
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?policyStatus</code>
626
+
627
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketPolicyStatus.html)
628
+
629
+ ```typescript
630
+ const res = await s3.buckets.getPolicyStatus({ /* ... */ });
631
+ ```
632
+
633
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
634
+
635
+ </details>
636
+
637
+ <details>
638
+ <summary><code>GET</code> <b><code>s3.buckets.getPublicAccessBlock</code></b></summary>
639
+
640
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?publicAccessBlock</code>
641
+
642
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetPublicAccessBlock.html)
643
+
644
+ ```typescript
645
+ const res = await s3.buckets.getPublicAccessBlock({ /* ... */ });
646
+ ```
647
+
648
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
649
+
650
+ </details>
651
+
652
+ <details>
653
+ <summary><code>GET</code> <b><code>s3.buckets.getReplication</code></b></summary>
654
+
655
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?replication</code>
656
+
657
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketReplication.html)
658
+
659
+ ```typescript
660
+ const res = await s3.buckets.getReplication({ /* ... */ });
661
+ ```
662
+
663
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
664
+
665
+ </details>
666
+
667
+ <details>
668
+ <summary><code>GET</code> <b><code>s3.buckets.getRequestPayment</code></b></summary>
669
+
670
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?requestPayment</code>
671
+
672
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketRequestPayment.html)
673
+
674
+ ```typescript
675
+ const res = await s3.buckets.getRequestPayment({ /* ... */ });
676
+ ```
677
+
678
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
679
+
680
+ </details>
681
+
682
+ <details>
683
+ <summary><code>GET</code> <b><code>s3.buckets.getTagging</code></b></summary>
684
+
685
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?tagging</code>
686
+
687
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketTagging.html)
688
+
689
+ ```typescript
690
+ const res = await s3.buckets.getTagging({ /* ... */ });
691
+ ```
692
+
693
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
694
+
695
+ </details>
696
+
697
+ <details>
698
+ <summary><code>GET</code> <b><code>s3.buckets.getVersioning</code></b></summary>
699
+
700
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?versioning</code>
701
+
702
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketVersioning.html)
703
+
704
+ ```typescript
705
+ const res = await s3.buckets.getVersioning({ /* ... */ });
706
+ ```
707
+
708
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
709
+
710
+ </details>
711
+
712
+ <details>
713
+ <summary><code>GET</code> <b><code>s3.buckets.getWebsite</code></b></summary>
714
+
715
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?website</code>
716
+
717
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketWebsite.html)
718
+
719
+ ```typescript
720
+ const res = await s3.buckets.getWebsite({ /* ... */ });
721
+ ```
722
+
723
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
724
+
725
+ </details>
726
+
727
+ <details>
728
+ <summary><code>HEAD</code> <b><code>s3.buckets.head</code></b></summary>
729
+
730
+ <code>HEAD https://s3.us-east-1.amazonaws.com/{bucket}</code>
731
+
732
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadBucket.html)
733
+
734
+ ```typescript
735
+ const res = await s3.buckets.head({ /* ... */ });
736
+ ```
737
+
738
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
739
+
740
+ </details>
741
+
742
+ <details>
743
+ <summary><code>GET</code> <b><code>s3.buckets.list</code></b></summary>
744
+
745
+ <code>GET https://s3.us-east-1.amazonaws.com/</code>
746
+
747
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBuckets.html)
748
+
749
+ ```typescript
750
+ const res = await s3.buckets.list({ /* ... */ });
751
+ ```
752
+
753
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
754
+
755
+ </details>
756
+
757
+ <details>
758
+ <summary><code>GET</code> <b><code>s3.buckets.listAnalytics</code></b></summary>
759
+
760
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?analytics{query}</code>
761
+
762
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketAnalyticsConfigurations.html)
763
+
764
+ ```typescript
765
+ const res = await s3.buckets.listAnalytics({ /* ... */ });
766
+ ```
767
+
768
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
769
+
770
+ </details>
771
+
772
+ <details>
773
+ <summary><code>GET</code> <b><code>s3.buckets.listDirectory</code></b></summary>
774
+
775
+ <code>GET https://s3express-control.{param}.amazonaws.com/{query}</code>
776
+
777
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListDirectoryBuckets.html)
778
+
779
+ ```typescript
780
+ const res = await s3.buckets.listDirectory({ /* ... */ });
781
+ ```
782
+
783
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
784
+
785
+ </details>
786
+
787
+ <details>
788
+ <summary><code>GET</code> <b><code>s3.buckets.listIntelligentTiering</code></b></summary>
789
+
790
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?intelligent-tiering{query}</code>
791
+
792
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketIntelligentTieringConfigurations.html)
793
+
794
+ ```typescript
795
+ const res = await s3.buckets.listIntelligentTiering({ /* ... */ });
796
+ ```
797
+
798
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
799
+
800
+ </details>
801
+
802
+ <details>
803
+ <summary><code>GET</code> <b><code>s3.buckets.listInventory</code></b></summary>
804
+
805
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?inventory{query}</code>
806
+
807
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketInventoryConfigurations.html)
808
+
809
+ ```typescript
810
+ const res = await s3.buckets.listInventory({ /* ... */ });
811
+ ```
812
+
813
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
814
+
815
+ </details>
816
+
817
+ <details>
818
+ <summary><code>GET</code> <b><code>s3.buckets.listMetrics</code></b></summary>
819
+
820
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?metrics{query}</code>
821
+
822
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketMetricsConfigurations.html)
823
+
824
+ ```typescript
825
+ const res = await s3.buckets.listMetrics({ /* ... */ });
826
+ ```
827
+
828
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
829
+
830
+ </details>
831
+
832
+ <details>
833
+ <summary><code>GET</code> <b><code>s3.buckets.location</code></b></summary>
834
+
835
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?location</code>
836
+
837
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLocation.html)
838
+
839
+ ```typescript
840
+ const res = await s3.buckets.location({ /* ... */ });
841
+ ```
842
+
843
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
844
+
845
+ </details>
846
+
847
+ <details>
848
+ <summary><code>PUT</code> <b><code>s3.buckets.putAbac</code></b></summary>
849
+
850
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?abac</code>
851
+
852
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAbac.html)
853
+
854
+ ```typescript
855
+ const res = await s3.buckets.putAbac({ /* ... */ });
856
+ ```
857
+
858
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
859
+
860
+ </details>
861
+
862
+ <details>
863
+ <summary><code>PUT</code> <b><code>s3.buckets.putAccelerateConfiguration</code></b></summary>
864
+
865
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?accelerate</code>
866
+
867
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAccelerateConfiguration.html)
868
+
869
+ ```typescript
870
+ const res = await s3.buckets.putAccelerateConfiguration({ /* ... */ });
871
+ ```
872
+
873
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
874
+
875
+ </details>
876
+
877
+ <details>
878
+ <summary><code>PUT</code> <b><code>s3.buckets.putAcl</code></b></summary>
879
+
880
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?acl</code>
881
+
882
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAcl.html)
883
+
884
+ ```typescript
885
+ const res = await s3.buckets.putAcl({ /* ... */ });
886
+ ```
887
+
888
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
889
+
890
+ </details>
891
+
892
+ <details>
893
+ <summary><code>PUT</code> <b><code>s3.buckets.putAnalytics</code></b></summary>
894
+
895
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?analytics{query}</code>
896
+
897
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAnalyticsConfiguration.html)
898
+
899
+ ```typescript
900
+ const res = await s3.buckets.putAnalytics({ /* ... */ });
901
+ ```
902
+
903
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
904
+
905
+ </details>
906
+
907
+ <details>
908
+ <summary><code>PUT</code> <b><code>s3.buckets.putCors</code></b></summary>
909
+
910
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?cors</code>
911
+
912
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketCors.html)
913
+
914
+ ```typescript
915
+ const res = await s3.buckets.putCors({ /* ... */ });
916
+ ```
917
+
918
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
919
+
920
+ </details>
921
+
922
+ <details>
923
+ <summary><code>PUT</code> <b><code>s3.buckets.putEncryption</code></b></summary>
924
+
925
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?encryption</code>
926
+
927
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html)
928
+
929
+ ```typescript
930
+ const res = await s3.buckets.putEncryption({ /* ... */ });
931
+ ```
932
+
933
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
934
+
935
+ </details>
936
+
937
+ <details>
938
+ <summary><code>PUT</code> <b><code>s3.buckets.putIntelligentTiering</code></b></summary>
939
+
940
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?intelligent-tiering{query}</code>
941
+
942
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketIntelligentTieringConfiguration.html)
943
+
944
+ ```typescript
945
+ const res = await s3.buckets.putIntelligentTiering({ /* ... */ });
946
+ ```
947
+
948
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
949
+
950
+ </details>
951
+
952
+ <details>
953
+ <summary><code>PUT</code> <b><code>s3.buckets.putInventory</code></b></summary>
954
+
955
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?inventory{query}</code>
956
+
957
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketInventoryConfiguration.html)
958
+
959
+ ```typescript
960
+ const res = await s3.buckets.putInventory({ /* ... */ });
961
+ ```
962
+
963
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
964
+
965
+ </details>
966
+
967
+ <details>
968
+ <summary><code>PUT</code> <b><code>s3.buckets.putLifecycle</code></b></summary>
969
+
970
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?lifecycle</code>
971
+
972
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html)
973
+
974
+ ```typescript
975
+ const res = await s3.buckets.putLifecycle({ /* ... */ });
976
+ ```
977
+
978
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
979
+
980
+ </details>
981
+
982
+ <details>
983
+ <summary><code>PUT</code> <b><code>s3.buckets.putLifecycleLegacy</code></b></summary>
984
+
985
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?lifecycle</code>
986
+
987
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycle.html)
988
+
989
+ ```typescript
990
+ const res = await s3.buckets.putLifecycleLegacy({ /* ... */ });
991
+ ```
992
+
993
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
994
+
995
+ </details>
996
+
997
+ <details>
998
+ <summary><code>PUT</code> <b><code>s3.buckets.putLogging</code></b></summary>
999
+
1000
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?logging</code>
1001
+
1002
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLogging.html)
1003
+
1004
+ ```typescript
1005
+ const res = await s3.buckets.putLogging({ /* ... */ });
1006
+ ```
1007
+
1008
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1009
+
1010
+ </details>
1011
+
1012
+ <details>
1013
+ <summary><code>PUT</code> <b><code>s3.buckets.putMetrics</code></b></summary>
1014
+
1015
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?metrics{query}</code>
1016
+
1017
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketMetricsConfiguration.html)
1018
+
1019
+ ```typescript
1020
+ const res = await s3.buckets.putMetrics({ /* ... */ });
1021
+ ```
1022
+
1023
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1024
+
1025
+ </details>
1026
+
1027
+ <details>
1028
+ <summary><code>PUT</code> <b><code>s3.buckets.putNotification</code></b></summary>
1029
+
1030
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?notification</code>
1031
+
1032
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketNotificationConfiguration.html)
1033
+
1034
+ ```typescript
1035
+ const res = await s3.buckets.putNotification({ /* ... */ });
1036
+ ```
1037
+
1038
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1039
+
1040
+ </details>
1041
+
1042
+ <details>
1043
+ <summary><code>PUT</code> <b><code>s3.buckets.putNotificationLegacy</code></b></summary>
1044
+
1045
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?notification</code>
1046
+
1047
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketNotification.html)
1048
+
1049
+ ```typescript
1050
+ const res = await s3.buckets.putNotificationLegacy({ /* ... */ });
1051
+ ```
1052
+
1053
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1054
+
1055
+ </details>
1056
+
1057
+ <details>
1058
+ <summary><code>PUT</code> <b><code>s3.buckets.putObjectLockConfiguration</code></b></summary>
1059
+
1060
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?object-lock</code>
1061
+
1062
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectLockConfiguration.html)
1063
+
1064
+ ```typescript
1065
+ const res = await s3.buckets.putObjectLockConfiguration({ /* ... */ });
1066
+ ```
1067
+
1068
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1069
+
1070
+ </details>
1071
+
1072
+ <details>
1073
+ <summary><code>PUT</code> <b><code>s3.buckets.putOwnershipControls</code></b></summary>
1074
+
1075
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?ownershipControls</code>
1076
+
1077
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketOwnershipControls.html)
1078
+
1079
+ ```typescript
1080
+ const res = await s3.buckets.putOwnershipControls({ /* ... */ });
1081
+ ```
1082
+
1083
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1084
+
1085
+ </details>
1086
+
1087
+ <details>
1088
+ <summary><code>PUT</code> <b><code>s3.buckets.putPolicy</code></b></summary>
1089
+
1090
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?policy</code>
1091
+
1092
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketPolicy.html)
1093
+
1094
+ ```typescript
1095
+ const res = await s3.buckets.putPolicy({ /* ... */ });
1096
+ ```
1097
+
1098
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1099
+
1100
+ </details>
1101
+
1102
+ <details>
1103
+ <summary><code>PUT</code> <b><code>s3.buckets.putPublicAccessBlock</code></b></summary>
1104
+
1105
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?publicAccessBlock</code>
1106
+
1107
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutPublicAccessBlock.html)
1108
+
1109
+ ```typescript
1110
+ const res = await s3.buckets.putPublicAccessBlock({ /* ... */ });
1111
+ ```
1112
+
1113
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1114
+
1115
+ </details>
1116
+
1117
+ <details>
1118
+ <summary><code>PUT</code> <b><code>s3.buckets.putReplication</code></b></summary>
1119
+
1120
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?replication</code>
1121
+
1122
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketReplication.html)
1123
+
1124
+ ```typescript
1125
+ const res = await s3.buckets.putReplication({ /* ... */ });
1126
+ ```
1127
+
1128
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1129
+
1130
+ </details>
1131
+
1132
+ <details>
1133
+ <summary><code>PUT</code> <b><code>s3.buckets.putRequestPayment</code></b></summary>
1134
+
1135
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?requestPayment</code>
1136
+
1137
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketRequestPayment.html)
1138
+
1139
+ ```typescript
1140
+ const res = await s3.buckets.putRequestPayment({ /* ... */ });
1141
+ ```
1142
+
1143
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1144
+
1145
+ </details>
1146
+
1147
+ <details>
1148
+ <summary><code>PUT</code> <b><code>s3.buckets.putTagging</code></b></summary>
1149
+
1150
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?tagging</code>
1151
+
1152
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketTagging.html)
1153
+
1154
+ ```typescript
1155
+ const res = await s3.buckets.putTagging({ /* ... */ });
1156
+ ```
1157
+
1158
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1159
+
1160
+ </details>
1161
+
1162
+ <details>
1163
+ <summary><code>PUT</code> <b><code>s3.buckets.putVersioning</code></b></summary>
1164
+
1165
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?versioning</code>
1166
+
1167
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketVersioning.html)
1168
+
1169
+ ```typescript
1170
+ const res = await s3.buckets.putVersioning({ /* ... */ });
1171
+ ```
1172
+
1173
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1174
+
1175
+ </details>
1176
+
1177
+ <details>
1178
+ <summary><code>PUT</code> <b><code>s3.buckets.putWebsite</code></b></summary>
1179
+
1180
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?website</code>
1181
+
1182
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketWebsite.html)
1183
+
1184
+ ```typescript
1185
+ const res = await s3.buckets.putWebsite({ /* ... */ });
1186
+ ```
1187
+
1188
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1189
+
1190
+ </details>
1191
+
1192
+ <details>
1193
+ <summary><code>PUT</code> <b><code>s3.buckets.updateMetadataInventoryTable</code></b></summary>
1194
+
1195
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?metadataInventoryTable</code>
1196
+
1197
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_UpdateBucketMetadataInventoryTableConfiguration.html)
1198
+
1199
+ ```typescript
1200
+ const res = await s3.buckets.updateMetadataInventoryTable({ /* ... */ });
1201
+ ```
1202
+
1203
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1204
+
1205
+ </details>
1206
+
1207
+ <details>
1208
+ <summary><code>PUT</code> <b><code>s3.buckets.updateMetadataJournalTable</code></b></summary>
1209
+
1210
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}?metadataJournalTable</code>
1211
+
1212
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_UpdateBucketMetadataJournalTableConfiguration.html)
1213
+
1214
+ ```typescript
1215
+ const res = await s3.buckets.updateMetadataJournalTable({ /* ... */ });
1216
+ ```
1217
+
1218
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1219
+
1220
+ </details>
1221
+
1222
+ ### objectLambda
1223
+
1224
+ <details>
1225
+ <summary><code>POST</code> <b><code>s3.objectLambda.writeGetObjectResponse</code></b></summary>
1226
+
1227
+ <code>POST https://{param}.s3-object-lambda.{param}.amazonaws.com/WriteGetObjectResponse</code>
1228
+
1229
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_WriteGetObjectResponse.html)
1230
+
1231
+ ```typescript
1232
+ const res = await s3.objectLambda.writeGetObjectResponse({ /* ... */ });
1233
+ ```
1234
+
1235
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1236
+
1237
+ </details>
1238
+
1239
+ ### objects
1240
+
1241
+ <details>
1242
+ <summary><code>DELETE</code> <b><code>s3.objects.abortMultipartUpload</code></b></summary>
1243
+
1244
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}/{key}{query}</code>
1245
+
1246
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_AbortMultipartUpload.html)
1247
+
1248
+ ```typescript
1249
+ const res = await s3.objects.abortMultipartUpload({ /* ... */ });
1250
+ ```
1251
+
1252
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1253
+
1254
+ </details>
1255
+
1256
+ <details>
1257
+ <summary><code>POST</code> <b><code>s3.objects.completeMultipartUpload</code></b></summary>
1258
+
1259
+ <code>POST https://s3.us-east-1.amazonaws.com/{bucket}/{key}{query}</code>
1260
+
1261
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_CompleteMultipartUpload.html)
1262
+
1263
+ ```typescript
1264
+ const res = await s3.objects.completeMultipartUpload({ /* ... */ });
1265
+ ```
1266
+
1267
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1268
+
1269
+ </details>
1270
+
1271
+ <details>
1272
+ <summary><code>PUT</code> <b><code>s3.objects.copy</code></b></summary>
1273
+
1274
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}/{key}</code>
1275
+
1276
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html)
1277
+
1278
+ ```typescript
1279
+ const res = await s3.objects.copy({ /* ... */ });
1280
+ ```
1281
+
1282
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1283
+
1284
+ </details>
1285
+
1286
+ <details>
1287
+ <summary><code>POST</code> <b><code>s3.objects.createMultipartUpload</code></b></summary>
1288
+
1289
+ <code>POST https://s3.us-east-1.amazonaws.com/{bucket}/{key}?uploads</code>
1290
+
1291
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html)
1292
+
1293
+ ```typescript
1294
+ const res = await s3.objects.createMultipartUpload({ /* ... */ });
1295
+ ```
1296
+
1297
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1298
+
1299
+ </details>
1300
+
1301
+ <details>
1302
+ <summary><code>DELETE</code> <b><code>s3.objects.del</code></b></summary>
1303
+
1304
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}/{key}{query}</code>
1305
+
1306
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html)
1307
+
1308
+ ```typescript
1309
+ const res = await s3.objects.del({ /* ... */ });
1310
+ ```
1311
+
1312
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1313
+
1314
+ </details>
1315
+
1316
+ <details>
1317
+ <summary><code>POST</code> <b><code>s3.objects.delMany</code></b></summary>
1318
+
1319
+ <code>POST https://s3.us-east-1.amazonaws.com/{bucket}?delete</code>
1320
+
1321
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjects.html)
1322
+
1323
+ ```typescript
1324
+ const res = await s3.objects.delMany({ /* ... */ });
1325
+ ```
1326
+
1327
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1328
+
1329
+ </details>
1330
+
1331
+ <details>
1332
+ <summary><code>DELETE</code> <b><code>s3.objects.delTagging</code></b></summary>
1333
+
1334
+ <code>DELETE https://s3.us-east-1.amazonaws.com/{bucket}/{key}?tagging{query}</code>
1335
+
1336
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjectTagging.html)
1337
+
1338
+ ```typescript
1339
+ const res = await s3.objects.delTagging({ /* ... */ });
1340
+ ```
1341
+
1342
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1343
+
1344
+ </details>
1345
+
1346
+ <details>
1347
+ <summary><code>GET</code> <b><code>s3.objects.get</code></b></summary>
1348
+
1349
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}/{key}{query}</code>
1350
+
1351
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html)
1352
+
1353
+ ```typescript
1354
+ const res = await s3.objects.get({ /* ... */ });
1355
+ ```
1356
+
1357
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1358
+
1359
+ </details>
1360
+
1361
+ <details>
1362
+ <summary><code>GET</code> <b><code>s3.objects.getAcl</code></b></summary>
1363
+
1364
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}/{key}?acl{query}</code>
1365
+
1366
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAcl.html)
1367
+
1368
+ ```typescript
1369
+ const res = await s3.objects.getAcl({ /* ... */ });
1370
+ ```
1371
+
1372
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1373
+
1374
+ </details>
1375
+
1376
+ <details>
1377
+ <summary><code>GET</code> <b><code>s3.objects.getAttributes</code></b></summary>
1378
+
1379
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}/{key}?attributes{query}</code>
1380
+
1381
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAttributes.html)
1382
+
1383
+ ```typescript
1384
+ const res = await s3.objects.getAttributes({ /* ... */ });
1385
+ ```
1386
+
1387
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1388
+
1389
+ </details>
1390
+
1391
+ <details>
1392
+ <summary><code>GET</code> <b><code>s3.objects.getLegalHold</code></b></summary>
1393
+
1394
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}/{key}?legal-hold{query}</code>
1395
+
1396
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectLegalHold.html)
1397
+
1398
+ ```typescript
1399
+ const res = await s3.objects.getLegalHold({ /* ... */ });
1400
+ ```
1401
+
1402
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1403
+
1404
+ </details>
1405
+
1406
+ <details>
1407
+ <summary><code>GET</code> <b><code>s3.objects.getRetention</code></b></summary>
1408
+
1409
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}/{key}?retention{query}</code>
1410
+
1411
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectRetention.html)
1412
+
1413
+ ```typescript
1414
+ const res = await s3.objects.getRetention({ /* ... */ });
1415
+ ```
1416
+
1417
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1418
+
1419
+ </details>
1420
+
1421
+ <details>
1422
+ <summary><code>GET</code> <b><code>s3.objects.getStream</code></b></summary>
1423
+
1424
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}/{key}{query}</code>
1425
+
1426
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html)
1427
+
1428
+ ```typescript
1429
+ const res = await s3.objects.getStream({ /* ... */ });
1430
+ ```
1431
+
1432
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1433
+
1434
+ </details>
1435
+
1436
+ <details>
1437
+ <summary><code>GET</code> <b><code>s3.objects.getTagging</code></b></summary>
1438
+
1439
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}/{key}?tagging{query}</code>
1440
+
1441
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTagging.html)
1442
+
1443
+ ```typescript
1444
+ const res = await s3.objects.getTagging({ /* ... */ });
1445
+ ```
1446
+
1447
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1448
+
1449
+ </details>
1450
+
1451
+ <details>
1452
+ <summary><code>GET</code> <b><code>s3.objects.getTorrent</code></b></summary>
1453
+
1454
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}/{key}?torrent{query}</code>
1455
+
1456
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTorrent.html)
1457
+
1458
+ ```typescript
1459
+ const res = await s3.objects.getTorrent({ /* ... */ });
1460
+ ```
1461
+
1462
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1463
+
1464
+ </details>
1465
+
1466
+ <details>
1467
+ <summary><code>HEAD</code> <b><code>s3.objects.head</code></b></summary>
1468
+
1469
+ <code>HEAD https://s3.us-east-1.amazonaws.com/{bucket}/{key}{query}</code>
1470
+
1471
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadObject.html)
1472
+
1473
+ ```typescript
1474
+ const res = await s3.objects.head({ /* ... */ });
1475
+ ```
1476
+
1477
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1478
+
1479
+ </details>
1480
+
1481
+ <details>
1482
+ <summary><code>GET</code> <b><code>s3.objects.list</code></b></summary>
1483
+
1484
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?list-type=2{query}</code>
1485
+
1486
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html)
1487
+
1488
+ ```typescript
1489
+ const res = await s3.objects.list({ /* ... */ });
1490
+ ```
1491
+
1492
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1493
+
1494
+ </details>
1495
+
1496
+ <details>
1497
+ <summary><code>GET</code> <b><code>s3.objects.listLegacy</code></b></summary>
1498
+
1499
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}{query}</code>
1500
+
1501
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjects.html)
1502
+
1503
+ ```typescript
1504
+ const res = await s3.objects.listLegacy({ /* ... */ });
1505
+ ```
1506
+
1507
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1508
+
1509
+ </details>
1510
+
1511
+ <details>
1512
+ <summary><code>GET</code> <b><code>s3.objects.listMultipartUploads</code></b></summary>
1513
+
1514
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?uploads{query}</code>
1515
+
1516
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListMultipartUploads.html)
1517
+
1518
+ ```typescript
1519
+ const res = await s3.objects.listMultipartUploads({ /* ... */ });
1520
+ ```
1521
+
1522
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1523
+
1524
+ </details>
1525
+
1526
+ <details>
1527
+ <summary><code>GET</code> <b><code>s3.objects.listParts</code></b></summary>
1528
+
1529
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}/{key}{query}</code>
1530
+
1531
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html)
1532
+
1533
+ ```typescript
1534
+ const res = await s3.objects.listParts({ /* ... */ });
1535
+ ```
1536
+
1537
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1538
+
1539
+ </details>
1540
+
1541
+ <details>
1542
+ <summary><code>GET</code> <b><code>s3.objects.listVersions</code></b></summary>
1543
+
1544
+ <code>GET https://s3.us-east-1.amazonaws.com/{bucket}?versions{query}</code>
1545
+
1546
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectVersions.html)
1547
+
1548
+ ```typescript
1549
+ const res = await s3.objects.listVersions({ /* ... */ });
1550
+ ```
1551
+
1552
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1553
+
1554
+ </details>
1555
+
1556
+ <details>
1557
+ <summary><code>PUT</code> <b><code>s3.objects.put</code></b></summary>
1558
+
1559
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}/{key}</code>
1560
+
1561
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html)
1562
+
1563
+ ```typescript
1564
+ const res = await s3.objects.put({ /* ... */ });
1565
+ ```
1566
+
1567
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1568
+
1569
+ </details>
1570
+
1571
+ <details>
1572
+ <summary><code>PUT</code> <b><code>s3.objects.putAcl</code></b></summary>
1573
+
1574
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}/{key}?acl{query}</code>
1575
+
1576
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectAcl.html)
1577
+
1578
+ ```typescript
1579
+ const res = await s3.objects.putAcl({ /* ... */ });
1580
+ ```
1581
+
1582
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1583
+
1584
+ </details>
1585
+
1586
+ <details>
1587
+ <summary><code>PUT</code> <b><code>s3.objects.putLegalHold</code></b></summary>
1588
+
1589
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}/{key}?legal-hold{query}</code>
1590
+
1591
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectLegalHold.html)
1592
+
1593
+ ```typescript
1594
+ const res = await s3.objects.putLegalHold({ /* ... */ });
1595
+ ```
1596
+
1597
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1598
+
1599
+ </details>
1600
+
1601
+ <details>
1602
+ <summary><code>PUT</code> <b><code>s3.objects.putRetention</code></b></summary>
1603
+
1604
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}/{key}?retention{query}</code>
1605
+
1606
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectRetention.html)
1607
+
1608
+ ```typescript
1609
+ const res = await s3.objects.putRetention({ /* ... */ });
1610
+ ```
1611
+
1612
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1613
+
1614
+ </details>
1615
+
1616
+ <details>
1617
+ <summary><code>PUT</code> <b><code>s3.objects.putTagging</code></b></summary>
1618
+
1619
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}/{key}?tagging{query}</code>
1620
+
1621
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectTagging.html)
1622
+
1623
+ ```typescript
1624
+ const res = await s3.objects.putTagging({ /* ... */ });
1625
+ ```
1626
+
1627
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1628
+
1629
+ </details>
1630
+
1631
+ <details>
1632
+ <summary><code>PUT</code> <b><code>s3.objects.rename</code></b></summary>
1633
+
1634
+ <code>PUT https://s3express-{param}.{param}.amazonaws.com/{bucket}/{key}?renameObject</code>
1635
+
1636
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_RenameObject.html)
1637
+
1638
+ ```typescript
1639
+ const res = await s3.objects.rename({ /* ... */ });
1640
+ ```
1641
+
1642
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1643
+
1644
+ </details>
1645
+
1646
+ <details>
1647
+ <summary><code>POST</code> <b><code>s3.objects.restore</code></b></summary>
1648
+
1649
+ <code>POST https://s3.us-east-1.amazonaws.com/{bucket}/{key}?restore{query}</code>
1650
+
1651
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html)
1652
+
1653
+ ```typescript
1654
+ const res = await s3.objects.restore({ /* ... */ });
1655
+ ```
1656
+
1657
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1658
+
1659
+ </details>
1660
+
1661
+ <details>
1662
+ <summary><code>POST</code> <b><code>s3.objects.selectContent</code></b></summary>
1663
+
1664
+ <code>POST https://s3.us-east-1.amazonaws.com/{bucket}/{key}?select&select-type=2</code>
1665
+
1666
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_SelectObjectContent.html)
1667
+
1668
+ ```typescript
1669
+ const res = await s3.objects.selectContent({ /* ... */ });
1670
+ ```
1671
+
1672
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1673
+
1674
+ </details>
1675
+
1676
+ <details>
1677
+ <summary><code>PUT</code> <b><code>s3.objects.updateEncryption</code></b></summary>
1678
+
1679
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}/{key}?encryption{query}</code>
1680
+
1681
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_UpdateObjectEncryption.html)
1682
+
1683
+ ```typescript
1684
+ const res = await s3.objects.updateEncryption({ /* ... */ });
1685
+ ```
1686
+
1687
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1688
+
1689
+ </details>
1690
+
1691
+ <details>
1692
+ <summary><code>PUT</code> <b><code>s3.objects.uploadPart</code></b></summary>
1693
+
1694
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}/{key}{query}</code>
1695
+
1696
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html)
1697
+
1698
+ ```typescript
1699
+ const res = await s3.objects.uploadPart({ /* ... */ });
1700
+ ```
1701
+
1702
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1703
+
1704
+ </details>
1705
+
1706
+ <details>
1707
+ <summary><code>PUT</code> <b><code>s3.objects.uploadPartCopy</code></b></summary>
1708
+
1709
+ <code>PUT https://s3.us-east-1.amazonaws.com/{bucket}/{key}{query}</code>
1710
+
1711
+ [Upstream docs ↗](https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPartCopy.html)
1712
+
1713
+ ```typescript
1714
+ const res = await s3.objects.uploadPartCopy({ /* ... */ });
1715
+ ```
1716
+
1717
+ Source: [`packages/provider/s3/src/s3.ts`](src/s3.ts)
1718
+
1719
+ </details>
1720
+
1721
+ Part of the [apicity](https://github.com/justintanner/apicity) monorepo.
1722
+
1723
+ ## License
1724
+
1725
+ MIT — see [LICENSE](LICENSE).