s3.d.ts
195 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {S3Customizations} from '../lib/services/s3';
import {WaiterConfiguration} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
import {UseDualstackConfigOptions} from '../lib/config_use_dualstack';
import {EventStream} from '../lib/event-stream/event-stream';
import {ManagedUpload as managed_upload} from '../lib/s3/managed_upload';
import {PresignedPost as presigned_post} from '../lib/s3/presigned_post';
import {Readable} from 'stream';
interface Blob {}
declare class S3 extends S3Customizations {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: S3.Types.ClientConfiguration)
config: Config & S3.Types.ClientConfiguration;
/**
* Aborts a multipart upload. To verify that all parts have been removed, so you don't get charged for the part storage, you should call the List Parts operation and ensure the parts list is empty.
*/
abortMultipartUpload(params: S3.Types.AbortMultipartUploadRequest, callback?: (err: AWSError, data: S3.Types.AbortMultipartUploadOutput) => void): Request<S3.Types.AbortMultipartUploadOutput, AWSError>;
/**
* Aborts a multipart upload. To verify that all parts have been removed, so you don't get charged for the part storage, you should call the List Parts operation and ensure the parts list is empty.
*/
abortMultipartUpload(callback?: (err: AWSError, data: S3.Types.AbortMultipartUploadOutput) => void): Request<S3.Types.AbortMultipartUploadOutput, AWSError>;
/**
* Completes a multipart upload by assembling previously uploaded parts.
*/
completeMultipartUpload(params: S3.Types.CompleteMultipartUploadRequest, callback?: (err: AWSError, data: S3.Types.CompleteMultipartUploadOutput) => void): Request<S3.Types.CompleteMultipartUploadOutput, AWSError>;
/**
* Completes a multipart upload by assembling previously uploaded parts.
*/
completeMultipartUpload(callback?: (err: AWSError, data: S3.Types.CompleteMultipartUploadOutput) => void): Request<S3.Types.CompleteMultipartUploadOutput, AWSError>;
/**
* Creates a copy of an object that is already stored in Amazon S3.
*/
copyObject(params: S3.Types.CopyObjectRequest, callback?: (err: AWSError, data: S3.Types.CopyObjectOutput) => void): Request<S3.Types.CopyObjectOutput, AWSError>;
/**
* Creates a copy of an object that is already stored in Amazon S3.
*/
copyObject(callback?: (err: AWSError, data: S3.Types.CopyObjectOutput) => void): Request<S3.Types.CopyObjectOutput, AWSError>;
/**
* Creates a new bucket.
*/
createBucket(params: S3.Types.CreateBucketRequest, callback?: (err: AWSError, data: S3.Types.CreateBucketOutput) => void): Request<S3.Types.CreateBucketOutput, AWSError>;
/**
* Creates a new bucket.
*/
createBucket(callback?: (err: AWSError, data: S3.Types.CreateBucketOutput) => void): Request<S3.Types.CreateBucketOutput, AWSError>;
/**
* Initiates a multipart upload and returns an upload ID. Note: After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.
*/
createMultipartUpload(params: S3.Types.CreateMultipartUploadRequest, callback?: (err: AWSError, data: S3.Types.CreateMultipartUploadOutput) => void): Request<S3.Types.CreateMultipartUploadOutput, AWSError>;
/**
* Initiates a multipart upload and returns an upload ID. Note: After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.
*/
createMultipartUpload(callback?: (err: AWSError, data: S3.Types.CreateMultipartUploadOutput) => void): Request<S3.Types.CreateMultipartUploadOutput, AWSError>;
/**
* Deletes the bucket. All objects (including all object versions and Delete Markers) in the bucket must be deleted before the bucket itself can be deleted.
*/
deleteBucket(params: S3.Types.DeleteBucketRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the bucket. All objects (including all object versions and Delete Markers) in the bucket must be deleted before the bucket itself can be deleted.
*/
deleteBucket(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes an analytics configuration for the bucket (specified by the analytics configuration ID). To use this operation, you must have permissions to perform the s3:PutAnalyticsConfiguration action. The bucket owner has this permission by default. The bucket owner can grant this permission to others.
*/
deleteBucketAnalyticsConfiguration(params: S3.Types.DeleteBucketAnalyticsConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes an analytics configuration for the bucket (specified by the analytics configuration ID). To use this operation, you must have permissions to perform the s3:PutAnalyticsConfiguration action. The bucket owner has this permission by default. The bucket owner can grant this permission to others.
*/
deleteBucketAnalyticsConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the CORS configuration information set for the bucket.
*/
deleteBucketCors(params: S3.Types.DeleteBucketCorsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the CORS configuration information set for the bucket.
*/
deleteBucketCors(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the server-side encryption configuration from the bucket.
*/
deleteBucketEncryption(params: S3.Types.DeleteBucketEncryptionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the server-side encryption configuration from the bucket.
*/
deleteBucketEncryption(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes an inventory configuration (identified by the inventory ID) from the bucket.
*/
deleteBucketInventoryConfiguration(params: S3.Types.DeleteBucketInventoryConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes an inventory configuration (identified by the inventory ID) from the bucket.
*/
deleteBucketInventoryConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the lifecycle configuration from the bucket.
*/
deleteBucketLifecycle(params: S3.Types.DeleteBucketLifecycleRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the lifecycle configuration from the bucket.
*/
deleteBucketLifecycle(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes a metrics configuration (specified by the metrics configuration ID) from the bucket.
*/
deleteBucketMetricsConfiguration(params: S3.Types.DeleteBucketMetricsConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes a metrics configuration (specified by the metrics configuration ID) from the bucket.
*/
deleteBucketMetricsConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the policy from the bucket.
*/
deleteBucketPolicy(params: S3.Types.DeleteBucketPolicyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the policy from the bucket.
*/
deleteBucketPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the replication configuration from the bucket. For information about replication configuration, see Cross-Region Replication (CRR) in the Amazon S3 Developer Guide.
*/
deleteBucketReplication(params: S3.Types.DeleteBucketReplicationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the replication configuration from the bucket. For information about replication configuration, see Cross-Region Replication (CRR) in the Amazon S3 Developer Guide.
*/
deleteBucketReplication(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the tags from the bucket.
*/
deleteBucketTagging(params: S3.Types.DeleteBucketTaggingRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes the tags from the bucket.
*/
deleteBucketTagging(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* This operation removes the website configuration from the bucket.
*/
deleteBucketWebsite(params: S3.Types.DeleteBucketWebsiteRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* This operation removes the website configuration from the bucket.
*/
deleteBucketWebsite(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn't a null version, Amazon S3 does not remove any objects.
*/
deleteObject(params: S3.Types.DeleteObjectRequest, callback?: (err: AWSError, data: S3.Types.DeleteObjectOutput) => void): Request<S3.Types.DeleteObjectOutput, AWSError>;
/**
* Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn't a null version, Amazon S3 does not remove any objects.
*/
deleteObject(callback?: (err: AWSError, data: S3.Types.DeleteObjectOutput) => void): Request<S3.Types.DeleteObjectOutput, AWSError>;
/**
* Removes the tag-set from an existing object.
*/
deleteObjectTagging(params: S3.Types.DeleteObjectTaggingRequest, callback?: (err: AWSError, data: S3.Types.DeleteObjectTaggingOutput) => void): Request<S3.Types.DeleteObjectTaggingOutput, AWSError>;
/**
* Removes the tag-set from an existing object.
*/
deleteObjectTagging(callback?: (err: AWSError, data: S3.Types.DeleteObjectTaggingOutput) => void): Request<S3.Types.DeleteObjectTaggingOutput, AWSError>;
/**
* This operation enables you to delete multiple objects from a bucket using a single HTTP request. You may specify up to 1000 keys.
*/
deleteObjects(params: S3.Types.DeleteObjectsRequest, callback?: (err: AWSError, data: S3.Types.DeleteObjectsOutput) => void): Request<S3.Types.DeleteObjectsOutput, AWSError>;
/**
* This operation enables you to delete multiple objects from a bucket using a single HTTP request. You may specify up to 1000 keys.
*/
deleteObjects(callback?: (err: AWSError, data: S3.Types.DeleteObjectsOutput) => void): Request<S3.Types.DeleteObjectsOutput, AWSError>;
/**
* Removes the PublicAccessBlock configuration from an Amazon S3 bucket.
*/
deletePublicAccessBlock(params: S3.Types.DeletePublicAccessBlockRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Removes the PublicAccessBlock configuration from an Amazon S3 bucket.
*/
deletePublicAccessBlock(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Returns the accelerate configuration of a bucket.
*/
getBucketAccelerateConfiguration(params: S3.Types.GetBucketAccelerateConfigurationRequest, callback?: (err: AWSError, data: S3.Types.GetBucketAccelerateConfigurationOutput) => void): Request<S3.Types.GetBucketAccelerateConfigurationOutput, AWSError>;
/**
* Returns the accelerate configuration of a bucket.
*/
getBucketAccelerateConfiguration(callback?: (err: AWSError, data: S3.Types.GetBucketAccelerateConfigurationOutput) => void): Request<S3.Types.GetBucketAccelerateConfigurationOutput, AWSError>;
/**
* Gets the access control policy for the bucket.
*/
getBucketAcl(params: S3.Types.GetBucketAclRequest, callback?: (err: AWSError, data: S3.Types.GetBucketAclOutput) => void): Request<S3.Types.GetBucketAclOutput, AWSError>;
/**
* Gets the access control policy for the bucket.
*/
getBucketAcl(callback?: (err: AWSError, data: S3.Types.GetBucketAclOutput) => void): Request<S3.Types.GetBucketAclOutput, AWSError>;
/**
* Gets an analytics configuration for the bucket (specified by the analytics configuration ID).
*/
getBucketAnalyticsConfiguration(params: S3.Types.GetBucketAnalyticsConfigurationRequest, callback?: (err: AWSError, data: S3.Types.GetBucketAnalyticsConfigurationOutput) => void): Request<S3.Types.GetBucketAnalyticsConfigurationOutput, AWSError>;
/**
* Gets an analytics configuration for the bucket (specified by the analytics configuration ID).
*/
getBucketAnalyticsConfiguration(callback?: (err: AWSError, data: S3.Types.GetBucketAnalyticsConfigurationOutput) => void): Request<S3.Types.GetBucketAnalyticsConfigurationOutput, AWSError>;
/**
* Returns the CORS configuration for the bucket.
*/
getBucketCors(params: S3.Types.GetBucketCorsRequest, callback?: (err: AWSError, data: S3.Types.GetBucketCorsOutput) => void): Request<S3.Types.GetBucketCorsOutput, AWSError>;
/**
* Returns the CORS configuration for the bucket.
*/
getBucketCors(callback?: (err: AWSError, data: S3.Types.GetBucketCorsOutput) => void): Request<S3.Types.GetBucketCorsOutput, AWSError>;
/**
* Returns the server-side encryption configuration of a bucket.
*/
getBucketEncryption(params: S3.Types.GetBucketEncryptionRequest, callback?: (err: AWSError, data: S3.Types.GetBucketEncryptionOutput) => void): Request<S3.Types.GetBucketEncryptionOutput, AWSError>;
/**
* Returns the server-side encryption configuration of a bucket.
*/
getBucketEncryption(callback?: (err: AWSError, data: S3.Types.GetBucketEncryptionOutput) => void): Request<S3.Types.GetBucketEncryptionOutput, AWSError>;
/**
* Returns an inventory configuration (identified by the inventory ID) from the bucket.
*/
getBucketInventoryConfiguration(params: S3.Types.GetBucketInventoryConfigurationRequest, callback?: (err: AWSError, data: S3.Types.GetBucketInventoryConfigurationOutput) => void): Request<S3.Types.GetBucketInventoryConfigurationOutput, AWSError>;
/**
* Returns an inventory configuration (identified by the inventory ID) from the bucket.
*/
getBucketInventoryConfiguration(callback?: (err: AWSError, data: S3.Types.GetBucketInventoryConfigurationOutput) => void): Request<S3.Types.GetBucketInventoryConfigurationOutput, AWSError>;
/**
* No longer used, see the GetBucketLifecycleConfiguration operation.
*/
getBucketLifecycle(params: S3.Types.GetBucketLifecycleRequest, callback?: (err: AWSError, data: S3.Types.GetBucketLifecycleOutput) => void): Request<S3.Types.GetBucketLifecycleOutput, AWSError>;
/**
* No longer used, see the GetBucketLifecycleConfiguration operation.
*/
getBucketLifecycle(callback?: (err: AWSError, data: S3.Types.GetBucketLifecycleOutput) => void): Request<S3.Types.GetBucketLifecycleOutput, AWSError>;
/**
* Returns the lifecycle configuration information set on the bucket.
*/
getBucketLifecycleConfiguration(params: S3.Types.GetBucketLifecycleConfigurationRequest, callback?: (err: AWSError, data: S3.Types.GetBucketLifecycleConfigurationOutput) => void): Request<S3.Types.GetBucketLifecycleConfigurationOutput, AWSError>;
/**
* Returns the lifecycle configuration information set on the bucket.
*/
getBucketLifecycleConfiguration(callback?: (err: AWSError, data: S3.Types.GetBucketLifecycleConfigurationOutput) => void): Request<S3.Types.GetBucketLifecycleConfigurationOutput, AWSError>;
/**
* Returns the region the bucket resides in.
*/
getBucketLocation(params: S3.Types.GetBucketLocationRequest, callback?: (err: AWSError, data: S3.Types.GetBucketLocationOutput) => void): Request<S3.Types.GetBucketLocationOutput, AWSError>;
/**
* Returns the region the bucket resides in.
*/
getBucketLocation(callback?: (err: AWSError, data: S3.Types.GetBucketLocationOutput) => void): Request<S3.Types.GetBucketLocationOutput, AWSError>;
/**
* Returns the logging status of a bucket and the permissions users have to view and modify that status. To use GET, you must be the bucket owner.
*/
getBucketLogging(params: S3.Types.GetBucketLoggingRequest, callback?: (err: AWSError, data: S3.Types.GetBucketLoggingOutput) => void): Request<S3.Types.GetBucketLoggingOutput, AWSError>;
/**
* Returns the logging status of a bucket and the permissions users have to view and modify that status. To use GET, you must be the bucket owner.
*/
getBucketLogging(callback?: (err: AWSError, data: S3.Types.GetBucketLoggingOutput) => void): Request<S3.Types.GetBucketLoggingOutput, AWSError>;
/**
* Gets a metrics configuration (specified by the metrics configuration ID) from the bucket.
*/
getBucketMetricsConfiguration(params: S3.Types.GetBucketMetricsConfigurationRequest, callback?: (err: AWSError, data: S3.Types.GetBucketMetricsConfigurationOutput) => void): Request<S3.Types.GetBucketMetricsConfigurationOutput, AWSError>;
/**
* Gets a metrics configuration (specified by the metrics configuration ID) from the bucket.
*/
getBucketMetricsConfiguration(callback?: (err: AWSError, data: S3.Types.GetBucketMetricsConfigurationOutput) => void): Request<S3.Types.GetBucketMetricsConfigurationOutput, AWSError>;
/**
* No longer used, see the GetBucketNotificationConfiguration operation.
*/
getBucketNotification(params: S3.Types.GetBucketNotificationConfigurationRequest, callback?: (err: AWSError, data: S3.Types.NotificationConfigurationDeprecated) => void): Request<S3.Types.NotificationConfigurationDeprecated, AWSError>;
/**
* No longer used, see the GetBucketNotificationConfiguration operation.
*/
getBucketNotification(callback?: (err: AWSError, data: S3.Types.NotificationConfigurationDeprecated) => void): Request<S3.Types.NotificationConfigurationDeprecated, AWSError>;
/**
* Returns the notification configuration of a bucket.
*/
getBucketNotificationConfiguration(params: S3.Types.GetBucketNotificationConfigurationRequest, callback?: (err: AWSError, data: S3.Types.NotificationConfiguration) => void): Request<S3.Types.NotificationConfiguration, AWSError>;
/**
* Returns the notification configuration of a bucket.
*/
getBucketNotificationConfiguration(callback?: (err: AWSError, data: S3.Types.NotificationConfiguration) => void): Request<S3.Types.NotificationConfiguration, AWSError>;
/**
* Returns the policy of a specified bucket.
*/
getBucketPolicy(params: S3.Types.GetBucketPolicyRequest, callback?: (err: AWSError, data: S3.Types.GetBucketPolicyOutput) => void): Request<S3.Types.GetBucketPolicyOutput, AWSError>;
/**
* Returns the policy of a specified bucket.
*/
getBucketPolicy(callback?: (err: AWSError, data: S3.Types.GetBucketPolicyOutput) => void): Request<S3.Types.GetBucketPolicyOutput, AWSError>;
/**
* Retrieves the policy status for an Amazon S3 bucket, indicating whether the bucket is public.
*/
getBucketPolicyStatus(params: S3.Types.GetBucketPolicyStatusRequest, callback?: (err: AWSError, data: S3.Types.GetBucketPolicyStatusOutput) => void): Request<S3.Types.GetBucketPolicyStatusOutput, AWSError>;
/**
* Retrieves the policy status for an Amazon S3 bucket, indicating whether the bucket is public.
*/
getBucketPolicyStatus(callback?: (err: AWSError, data: S3.Types.GetBucketPolicyStatusOutput) => void): Request<S3.Types.GetBucketPolicyStatusOutput, AWSError>;
/**
* Returns the replication configuration of a bucket. It can take a while to propagate the put or delete a replication configuration to all Amazon S3 systems. Therefore, a get request soon after put or delete can return a wrong result.
*/
getBucketReplication(params: S3.Types.GetBucketReplicationRequest, callback?: (err: AWSError, data: S3.Types.GetBucketReplicationOutput) => void): Request<S3.Types.GetBucketReplicationOutput, AWSError>;
/**
* Returns the replication configuration of a bucket. It can take a while to propagate the put or delete a replication configuration to all Amazon S3 systems. Therefore, a get request soon after put or delete can return a wrong result.
*/
getBucketReplication(callback?: (err: AWSError, data: S3.Types.GetBucketReplicationOutput) => void): Request<S3.Types.GetBucketReplicationOutput, AWSError>;
/**
* Returns the request payment configuration of a bucket.
*/
getBucketRequestPayment(params: S3.Types.GetBucketRequestPaymentRequest, callback?: (err: AWSError, data: S3.Types.GetBucketRequestPaymentOutput) => void): Request<S3.Types.GetBucketRequestPaymentOutput, AWSError>;
/**
* Returns the request payment configuration of a bucket.
*/
getBucketRequestPayment(callback?: (err: AWSError, data: S3.Types.GetBucketRequestPaymentOutput) => void): Request<S3.Types.GetBucketRequestPaymentOutput, AWSError>;
/**
* Returns the tag set associated with the bucket.
*/
getBucketTagging(params: S3.Types.GetBucketTaggingRequest, callback?: (err: AWSError, data: S3.Types.GetBucketTaggingOutput) => void): Request<S3.Types.GetBucketTaggingOutput, AWSError>;
/**
* Returns the tag set associated with the bucket.
*/
getBucketTagging(callback?: (err: AWSError, data: S3.Types.GetBucketTaggingOutput) => void): Request<S3.Types.GetBucketTaggingOutput, AWSError>;
/**
* Returns the versioning state of a bucket.
*/
getBucketVersioning(params: S3.Types.GetBucketVersioningRequest, callback?: (err: AWSError, data: S3.Types.GetBucketVersioningOutput) => void): Request<S3.Types.GetBucketVersioningOutput, AWSError>;
/**
* Returns the versioning state of a bucket.
*/
getBucketVersioning(callback?: (err: AWSError, data: S3.Types.GetBucketVersioningOutput) => void): Request<S3.Types.GetBucketVersioningOutput, AWSError>;
/**
* Returns the website configuration for a bucket.
*/
getBucketWebsite(params: S3.Types.GetBucketWebsiteRequest, callback?: (err: AWSError, data: S3.Types.GetBucketWebsiteOutput) => void): Request<S3.Types.GetBucketWebsiteOutput, AWSError>;
/**
* Returns the website configuration for a bucket.
*/
getBucketWebsite(callback?: (err: AWSError, data: S3.Types.GetBucketWebsiteOutput) => void): Request<S3.Types.GetBucketWebsiteOutput, AWSError>;
/**
* Retrieves objects from Amazon S3.
*/
getObject(params: S3.Types.GetObjectRequest, callback?: (err: AWSError, data: S3.Types.GetObjectOutput) => void): Request<S3.Types.GetObjectOutput, AWSError>;
/**
* Retrieves objects from Amazon S3.
*/
getObject(callback?: (err: AWSError, data: S3.Types.GetObjectOutput) => void): Request<S3.Types.GetObjectOutput, AWSError>;
/**
* Returns the access control list (ACL) of an object.
*/
getObjectAcl(params: S3.Types.GetObjectAclRequest, callback?: (err: AWSError, data: S3.Types.GetObjectAclOutput) => void): Request<S3.Types.GetObjectAclOutput, AWSError>;
/**
* Returns the access control list (ACL) of an object.
*/
getObjectAcl(callback?: (err: AWSError, data: S3.Types.GetObjectAclOutput) => void): Request<S3.Types.GetObjectAclOutput, AWSError>;
/**
* Gets an object's current Legal Hold status.
*/
getObjectLegalHold(params: S3.Types.GetObjectLegalHoldRequest, callback?: (err: AWSError, data: S3.Types.GetObjectLegalHoldOutput) => void): Request<S3.Types.GetObjectLegalHoldOutput, AWSError>;
/**
* Gets an object's current Legal Hold status.
*/
getObjectLegalHold(callback?: (err: AWSError, data: S3.Types.GetObjectLegalHoldOutput) => void): Request<S3.Types.GetObjectLegalHoldOutput, AWSError>;
/**
* Gets the object lock configuration for a bucket. The rule specified in the object lock configuration will be applied by default to every new object placed in the specified bucket.
*/
getObjectLockConfiguration(params: S3.Types.GetObjectLockConfigurationRequest, callback?: (err: AWSError, data: S3.Types.GetObjectLockConfigurationOutput) => void): Request<S3.Types.GetObjectLockConfigurationOutput, AWSError>;
/**
* Gets the object lock configuration for a bucket. The rule specified in the object lock configuration will be applied by default to every new object placed in the specified bucket.
*/
getObjectLockConfiguration(callback?: (err: AWSError, data: S3.Types.GetObjectLockConfigurationOutput) => void): Request<S3.Types.GetObjectLockConfigurationOutput, AWSError>;
/**
* Retrieves an object's retention settings.
*/
getObjectRetention(params: S3.Types.GetObjectRetentionRequest, callback?: (err: AWSError, data: S3.Types.GetObjectRetentionOutput) => void): Request<S3.Types.GetObjectRetentionOutput, AWSError>;
/**
* Retrieves an object's retention settings.
*/
getObjectRetention(callback?: (err: AWSError, data: S3.Types.GetObjectRetentionOutput) => void): Request<S3.Types.GetObjectRetentionOutput, AWSError>;
/**
* Returns the tag-set of an object.
*/
getObjectTagging(params: S3.Types.GetObjectTaggingRequest, callback?: (err: AWSError, data: S3.Types.GetObjectTaggingOutput) => void): Request<S3.Types.GetObjectTaggingOutput, AWSError>;
/**
* Returns the tag-set of an object.
*/
getObjectTagging(callback?: (err: AWSError, data: S3.Types.GetObjectTaggingOutput) => void): Request<S3.Types.GetObjectTaggingOutput, AWSError>;
/**
* Return torrent files from a bucket.
*/
getObjectTorrent(params: S3.Types.GetObjectTorrentRequest, callback?: (err: AWSError, data: S3.Types.GetObjectTorrentOutput) => void): Request<S3.Types.GetObjectTorrentOutput, AWSError>;
/**
* Return torrent files from a bucket.
*/
getObjectTorrent(callback?: (err: AWSError, data: S3.Types.GetObjectTorrentOutput) => void): Request<S3.Types.GetObjectTorrentOutput, AWSError>;
/**
* Retrieves the PublicAccessBlock configuration for an Amazon S3 bucket.
*/
getPublicAccessBlock(params: S3.Types.GetPublicAccessBlockRequest, callback?: (err: AWSError, data: S3.Types.GetPublicAccessBlockOutput) => void): Request<S3.Types.GetPublicAccessBlockOutput, AWSError>;
/**
* Retrieves the PublicAccessBlock configuration for an Amazon S3 bucket.
*/
getPublicAccessBlock(callback?: (err: AWSError, data: S3.Types.GetPublicAccessBlockOutput) => void): Request<S3.Types.GetPublicAccessBlockOutput, AWSError>;
/**
* This operation is useful to determine if a bucket exists and you have permission to access it.
*/
headBucket(params: S3.Types.HeadBucketRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* This operation is useful to determine if a bucket exists and you have permission to access it.
*/
headBucket(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you're only interested in an object's metadata. To use HEAD, you must have READ access to the object.
*/
headObject(params: S3.Types.HeadObjectRequest, callback?: (err: AWSError, data: S3.Types.HeadObjectOutput) => void): Request<S3.Types.HeadObjectOutput, AWSError>;
/**
* The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you're only interested in an object's metadata. To use HEAD, you must have READ access to the object.
*/
headObject(callback?: (err: AWSError, data: S3.Types.HeadObjectOutput) => void): Request<S3.Types.HeadObjectOutput, AWSError>;
/**
* Lists the analytics configurations for the bucket.
*/
listBucketAnalyticsConfigurations(params: S3.Types.ListBucketAnalyticsConfigurationsRequest, callback?: (err: AWSError, data: S3.Types.ListBucketAnalyticsConfigurationsOutput) => void): Request<S3.Types.ListBucketAnalyticsConfigurationsOutput, AWSError>;
/**
* Lists the analytics configurations for the bucket.
*/
listBucketAnalyticsConfigurations(callback?: (err: AWSError, data: S3.Types.ListBucketAnalyticsConfigurationsOutput) => void): Request<S3.Types.ListBucketAnalyticsConfigurationsOutput, AWSError>;
/**
* Returns a list of inventory configurations for the bucket.
*/
listBucketInventoryConfigurations(params: S3.Types.ListBucketInventoryConfigurationsRequest, callback?: (err: AWSError, data: S3.Types.ListBucketInventoryConfigurationsOutput) => void): Request<S3.Types.ListBucketInventoryConfigurationsOutput, AWSError>;
/**
* Returns a list of inventory configurations for the bucket.
*/
listBucketInventoryConfigurations(callback?: (err: AWSError, data: S3.Types.ListBucketInventoryConfigurationsOutput) => void): Request<S3.Types.ListBucketInventoryConfigurationsOutput, AWSError>;
/**
* Lists the metrics configurations for the bucket.
*/
listBucketMetricsConfigurations(params: S3.Types.ListBucketMetricsConfigurationsRequest, callback?: (err: AWSError, data: S3.Types.ListBucketMetricsConfigurationsOutput) => void): Request<S3.Types.ListBucketMetricsConfigurationsOutput, AWSError>;
/**
* Lists the metrics configurations for the bucket.
*/
listBucketMetricsConfigurations(callback?: (err: AWSError, data: S3.Types.ListBucketMetricsConfigurationsOutput) => void): Request<S3.Types.ListBucketMetricsConfigurationsOutput, AWSError>;
/**
* Returns a list of all buckets owned by the authenticated sender of the request.
*/
listBuckets(callback?: (err: AWSError, data: S3.Types.ListBucketsOutput) => void): Request<S3.Types.ListBucketsOutput, AWSError>;
/**
* This operation lists in-progress multipart uploads.
*/
listMultipartUploads(params: S3.Types.ListMultipartUploadsRequest, callback?: (err: AWSError, data: S3.Types.ListMultipartUploadsOutput) => void): Request<S3.Types.ListMultipartUploadsOutput, AWSError>;
/**
* This operation lists in-progress multipart uploads.
*/
listMultipartUploads(callback?: (err: AWSError, data: S3.Types.ListMultipartUploadsOutput) => void): Request<S3.Types.ListMultipartUploadsOutput, AWSError>;
/**
* Returns metadata about all of the versions of objects in a bucket.
*/
listObjectVersions(params: S3.Types.ListObjectVersionsRequest, callback?: (err: AWSError, data: S3.Types.ListObjectVersionsOutput) => void): Request<S3.Types.ListObjectVersionsOutput, AWSError>;
/**
* Returns metadata about all of the versions of objects in a bucket.
*/
listObjectVersions(callback?: (err: AWSError, data: S3.Types.ListObjectVersionsOutput) => void): Request<S3.Types.ListObjectVersionsOutput, AWSError>;
/**
* Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket.
*/
listObjects(params: S3.Types.ListObjectsRequest, callback?: (err: AWSError, data: S3.Types.ListObjectsOutput) => void): Request<S3.Types.ListObjectsOutput, AWSError>;
/**
* Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket.
*/
listObjects(callback?: (err: AWSError, data: S3.Types.ListObjectsOutput) => void): Request<S3.Types.ListObjectsOutput, AWSError>;
/**
* Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket. Note: ListObjectsV2 is the revised List Objects API and we recommend you use this revised API for new application development.
*/
listObjectsV2(params: S3.Types.ListObjectsV2Request, callback?: (err: AWSError, data: S3.Types.ListObjectsV2Output) => void): Request<S3.Types.ListObjectsV2Output, AWSError>;
/**
* Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket. Note: ListObjectsV2 is the revised List Objects API and we recommend you use this revised API for new application development.
*/
listObjectsV2(callback?: (err: AWSError, data: S3.Types.ListObjectsV2Output) => void): Request<S3.Types.ListObjectsV2Output, AWSError>;
/**
* Lists the parts that have been uploaded for a specific multipart upload.
*/
listParts(params: S3.Types.ListPartsRequest, callback?: (err: AWSError, data: S3.Types.ListPartsOutput) => void): Request<S3.Types.ListPartsOutput, AWSError>;
/**
* Lists the parts that have been uploaded for a specific multipart upload.
*/
listParts(callback?: (err: AWSError, data: S3.Types.ListPartsOutput) => void): Request<S3.Types.ListPartsOutput, AWSError>;
/**
* Sets the accelerate configuration of an existing bucket.
*/
putBucketAccelerateConfiguration(params: S3.Types.PutBucketAccelerateConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the accelerate configuration of an existing bucket.
*/
putBucketAccelerateConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the permissions on a bucket using access control lists (ACL).
*/
putBucketAcl(params: S3.Types.PutBucketAclRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the permissions on a bucket using access control lists (ACL).
*/
putBucketAcl(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets an analytics configuration for the bucket (specified by the analytics configuration ID).
*/
putBucketAnalyticsConfiguration(params: S3.Types.PutBucketAnalyticsConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets an analytics configuration for the bucket (specified by the analytics configuration ID).
*/
putBucketAnalyticsConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the CORS configuration for a bucket.
*/
putBucketCors(params: S3.Types.PutBucketCorsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the CORS configuration for a bucket.
*/
putBucketCors(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Creates a new server-side encryption configuration (or replaces an existing one, if present).
*/
putBucketEncryption(params: S3.Types.PutBucketEncryptionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Creates a new server-side encryption configuration (or replaces an existing one, if present).
*/
putBucketEncryption(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Adds an inventory configuration (identified by the inventory ID) from the bucket.
*/
putBucketInventoryConfiguration(params: S3.Types.PutBucketInventoryConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Adds an inventory configuration (identified by the inventory ID) from the bucket.
*/
putBucketInventoryConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* No longer used, see the PutBucketLifecycleConfiguration operation.
*/
putBucketLifecycle(params: S3.Types.PutBucketLifecycleRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* No longer used, see the PutBucketLifecycleConfiguration operation.
*/
putBucketLifecycle(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets lifecycle configuration for your bucket. If a lifecycle configuration exists, it replaces it.
*/
putBucketLifecycleConfiguration(params: S3.Types.PutBucketLifecycleConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets lifecycle configuration for your bucket. If a lifecycle configuration exists, it replaces it.
*/
putBucketLifecycleConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the logging status of a bucket, you must be the bucket owner.
*/
putBucketLogging(params: S3.Types.PutBucketLoggingRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the logging status of a bucket, you must be the bucket owner.
*/
putBucketLogging(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets a metrics configuration (specified by the metrics configuration ID) for the bucket.
*/
putBucketMetricsConfiguration(params: S3.Types.PutBucketMetricsConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets a metrics configuration (specified by the metrics configuration ID) for the bucket.
*/
putBucketMetricsConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* No longer used, see the PutBucketNotificationConfiguration operation.
*/
putBucketNotification(params: S3.Types.PutBucketNotificationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* No longer used, see the PutBucketNotificationConfiguration operation.
*/
putBucketNotification(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Enables notifications of specified events for a bucket.
*/
putBucketNotificationConfiguration(params: S3.Types.PutBucketNotificationConfigurationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Enables notifications of specified events for a bucket.
*/
putBucketNotificationConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Applies an Amazon S3 bucket policy to an Amazon S3 bucket.
*/
putBucketPolicy(params: S3.Types.PutBucketPolicyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Applies an Amazon S3 bucket policy to an Amazon S3 bucket.
*/
putBucketPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Creates a replication configuration or replaces an existing one. For more information, see Cross-Region Replication (CRR) in the Amazon S3 Developer Guide.
*/
putBucketReplication(params: S3.Types.PutBucketReplicationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Creates a replication configuration or replaces an existing one. For more information, see Cross-Region Replication (CRR) in the Amazon S3 Developer Guide.
*/
putBucketReplication(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the request payment configuration for a bucket. By default, the bucket owner pays for downloads from the bucket. This configuration parameter enables the bucket owner (only) to specify that the person requesting the download will be charged for the download. Documentation on requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html
*/
putBucketRequestPayment(params: S3.Types.PutBucketRequestPaymentRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the request payment configuration for a bucket. By default, the bucket owner pays for downloads from the bucket. This configuration parameter enables the bucket owner (only) to specify that the person requesting the download will be charged for the download. Documentation on requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html
*/
putBucketRequestPayment(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the tags for a bucket.
*/
putBucketTagging(params: S3.Types.PutBucketTaggingRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the tags for a bucket.
*/
putBucketTagging(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the versioning state of an existing bucket. To set the versioning state, you must be the bucket owner.
*/
putBucketVersioning(params: S3.Types.PutBucketVersioningRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Sets the versioning state of an existing bucket. To set the versioning state, you must be the bucket owner.
*/
putBucketVersioning(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Set the website configuration for a bucket.
*/
putBucketWebsite(params: S3.Types.PutBucketWebsiteRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Set the website configuration for a bucket.
*/
putBucketWebsite(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Adds an object to a bucket.
*/
putObject(params: S3.Types.PutObjectRequest, callback?: (err: AWSError, data: S3.Types.PutObjectOutput) => void): Request<S3.Types.PutObjectOutput, AWSError>;
/**
* Adds an object to a bucket.
*/
putObject(callback?: (err: AWSError, data: S3.Types.PutObjectOutput) => void): Request<S3.Types.PutObjectOutput, AWSError>;
/**
* uses the acl subresource to set the access control list (ACL) permissions for an object that already exists in a bucket
*/
putObjectAcl(params: S3.Types.PutObjectAclRequest, callback?: (err: AWSError, data: S3.Types.PutObjectAclOutput) => void): Request<S3.Types.PutObjectAclOutput, AWSError>;
/**
* uses the acl subresource to set the access control list (ACL) permissions for an object that already exists in a bucket
*/
putObjectAcl(callback?: (err: AWSError, data: S3.Types.PutObjectAclOutput) => void): Request<S3.Types.PutObjectAclOutput, AWSError>;
/**
* Applies a Legal Hold configuration to the specified object.
*/
putObjectLegalHold(params: S3.Types.PutObjectLegalHoldRequest, callback?: (err: AWSError, data: S3.Types.PutObjectLegalHoldOutput) => void): Request<S3.Types.PutObjectLegalHoldOutput, AWSError>;
/**
* Applies a Legal Hold configuration to the specified object.
*/
putObjectLegalHold(callback?: (err: AWSError, data: S3.Types.PutObjectLegalHoldOutput) => void): Request<S3.Types.PutObjectLegalHoldOutput, AWSError>;
/**
* Places an object lock configuration on the specified bucket. The rule specified in the object lock configuration will be applied by default to every new object placed in the specified bucket.
*/
putObjectLockConfiguration(params: S3.Types.PutObjectLockConfigurationRequest, callback?: (err: AWSError, data: S3.Types.PutObjectLockConfigurationOutput) => void): Request<S3.Types.PutObjectLockConfigurationOutput, AWSError>;
/**
* Places an object lock configuration on the specified bucket. The rule specified in the object lock configuration will be applied by default to every new object placed in the specified bucket.
*/
putObjectLockConfiguration(callback?: (err: AWSError, data: S3.Types.PutObjectLockConfigurationOutput) => void): Request<S3.Types.PutObjectLockConfigurationOutput, AWSError>;
/**
* Places an Object Retention configuration on an object.
*/
putObjectRetention(params: S3.Types.PutObjectRetentionRequest, callback?: (err: AWSError, data: S3.Types.PutObjectRetentionOutput) => void): Request<S3.Types.PutObjectRetentionOutput, AWSError>;
/**
* Places an Object Retention configuration on an object.
*/
putObjectRetention(callback?: (err: AWSError, data: S3.Types.PutObjectRetentionOutput) => void): Request<S3.Types.PutObjectRetentionOutput, AWSError>;
/**
* Sets the supplied tag-set to an object that already exists in a bucket
*/
putObjectTagging(params: S3.Types.PutObjectTaggingRequest, callback?: (err: AWSError, data: S3.Types.PutObjectTaggingOutput) => void): Request<S3.Types.PutObjectTaggingOutput, AWSError>;
/**
* Sets the supplied tag-set to an object that already exists in a bucket
*/
putObjectTagging(callback?: (err: AWSError, data: S3.Types.PutObjectTaggingOutput) => void): Request<S3.Types.PutObjectTaggingOutput, AWSError>;
/**
* Creates or modifies the PublicAccessBlock configuration for an Amazon S3 bucket.
*/
putPublicAccessBlock(params: S3.Types.PutPublicAccessBlockRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Creates or modifies the PublicAccessBlock configuration for an Amazon S3 bucket.
*/
putPublicAccessBlock(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Restores an archived copy of an object back into Amazon S3
*/
restoreObject(params: S3.Types.RestoreObjectRequest, callback?: (err: AWSError, data: S3.Types.RestoreObjectOutput) => void): Request<S3.Types.RestoreObjectOutput, AWSError>;
/**
* Restores an archived copy of an object back into Amazon S3
*/
restoreObject(callback?: (err: AWSError, data: S3.Types.RestoreObjectOutput) => void): Request<S3.Types.RestoreObjectOutput, AWSError>;
/**
* This operation filters the contents of an Amazon S3 object based on a simple Structured Query Language (SQL) statement. In the request, along with the SQL expression, you must also specify a data serialization format (JSON or CSV) of the object. Amazon S3 uses this to parse object data into records, and returns only records that match the specified SQL expression. You must also specify the data serialization format for the response.
*/
selectObjectContent(params: S3.Types.SelectObjectContentRequest, callback?: (err: AWSError, data: S3.Types.SelectObjectContentOutput) => void): Request<S3.Types.SelectObjectContentOutput, AWSError>;
/**
* This operation filters the contents of an Amazon S3 object based on a simple Structured Query Language (SQL) statement. In the request, along with the SQL expression, you must also specify a data serialization format (JSON or CSV) of the object. Amazon S3 uses this to parse object data into records, and returns only records that match the specified SQL expression. You must also specify the data serialization format for the response.
*/
selectObjectContent(callback?: (err: AWSError, data: S3.Types.SelectObjectContentOutput) => void): Request<S3.Types.SelectObjectContentOutput, AWSError>;
/**
* Uploads a part in a multipart upload. Note: After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.
*/
uploadPart(params: S3.Types.UploadPartRequest, callback?: (err: AWSError, data: S3.Types.UploadPartOutput) => void): Request<S3.Types.UploadPartOutput, AWSError>;
/**
* Uploads a part in a multipart upload. Note: After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.
*/
uploadPart(callback?: (err: AWSError, data: S3.Types.UploadPartOutput) => void): Request<S3.Types.UploadPartOutput, AWSError>;
/**
* Uploads a part by copying data from an existing object as data source.
*/
uploadPartCopy(params: S3.Types.UploadPartCopyRequest, callback?: (err: AWSError, data: S3.Types.UploadPartCopyOutput) => void): Request<S3.Types.UploadPartCopyOutput, AWSError>;
/**
* Uploads a part by copying data from an existing object as data source.
*/
uploadPartCopy(callback?: (err: AWSError, data: S3.Types.UploadPartCopyOutput) => void): Request<S3.Types.UploadPartCopyOutput, AWSError>;
/**
* Waits for the bucketExists state by periodically calling the underlying S3.headBucketoperation every 5 seconds (at most 20 times).
*/
waitFor(state: "bucketExists", params: S3.Types.HeadBucketRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Waits for the bucketExists state by periodically calling the underlying S3.headBucketoperation every 5 seconds (at most 20 times).
*/
waitFor(state: "bucketExists", callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Waits for the bucketNotExists state by periodically calling the underlying S3.headBucketoperation every 5 seconds (at most 20 times).
*/
waitFor(state: "bucketNotExists", params: S3.Types.HeadBucketRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Waits for the bucketNotExists state by periodically calling the underlying S3.headBucketoperation every 5 seconds (at most 20 times).
*/
waitFor(state: "bucketNotExists", callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Waits for the objectExists state by periodically calling the underlying S3.headObjectoperation every 5 seconds (at most 20 times).
*/
waitFor(state: "objectExists", params: S3.Types.HeadObjectRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: S3.Types.HeadObjectOutput) => void): Request<S3.Types.HeadObjectOutput, AWSError>;
/**
* Waits for the objectExists state by periodically calling the underlying S3.headObjectoperation every 5 seconds (at most 20 times).
*/
waitFor(state: "objectExists", callback?: (err: AWSError, data: S3.Types.HeadObjectOutput) => void): Request<S3.Types.HeadObjectOutput, AWSError>;
/**
* Waits for the objectNotExists state by periodically calling the underlying S3.headObjectoperation every 5 seconds (at most 20 times).
*/
waitFor(state: "objectNotExists", params: S3.Types.HeadObjectRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: S3.Types.HeadObjectOutput) => void): Request<S3.Types.HeadObjectOutput, AWSError>;
/**
* Waits for the objectNotExists state by periodically calling the underlying S3.headObjectoperation every 5 seconds (at most 20 times).
*/
waitFor(state: "objectNotExists", callback?: (err: AWSError, data: S3.Types.HeadObjectOutput) => void): Request<S3.Types.HeadObjectOutput, AWSError>;
}
declare namespace S3 {
export import ManagedUpload = managed_upload;
export import PresignedPost = presigned_post;
}
declare namespace S3 {
export type AbortDate = Date;
export interface AbortIncompleteMultipartUpload {
/**
* Specifies the number of days after which Amazon S3 aborts an incomplete multipart upload.
*/
DaysAfterInitiation?: DaysAfterInitiation;
}
export interface AbortMultipartUploadOutput {
RequestCharged?: RequestCharged;
}
export interface AbortMultipartUploadRequest {
/**
* Name of the bucket to which the multipart upload was initiated.
*/
Bucket: BucketName;
/**
* Key of the object for which the multipart upload was initiated.
*/
Key: ObjectKey;
/**
* Upload ID that identifies the multipart upload.
*/
UploadId: MultipartUploadId;
RequestPayer?: RequestPayer;
}
export type AbortRuleId = string;
export interface AccelerateConfiguration {
/**
* Specifies the transfer acceleration status of the bucket.
*/
Status?: BucketAccelerateStatus;
}
export type AcceptRanges = string;
export interface AccessControlPolicy {
/**
* A list of grants.
*/
Grants?: Grants;
/**
* Container for the bucket owner's display name and ID.
*/
Owner?: Owner;
}
export interface AccessControlTranslation {
/**
* Specifies the replica ownership. For default and valid values, see PUT bucket replication in the Amazon Simple Storage Service API Reference.
*/
Owner: OwnerOverride;
}
export type AccountId = string;
export type AllowQuotedRecordDelimiter = boolean;
export type AllowedHeader = string;
export type AllowedHeaders = AllowedHeader[];
export type AllowedMethod = string;
export type AllowedMethods = AllowedMethod[];
export type AllowedOrigin = string;
export type AllowedOrigins = AllowedOrigin[];
export interface AnalyticsAndOperator {
/**
* The prefix to use when evaluating an AND predicate: The prefix that an object must have to be included in the metrics results.
*/
Prefix?: Prefix;
/**
* The list of tags to use when evaluating an AND predicate.
*/
Tags?: TagSet;
}
export interface AnalyticsConfiguration {
/**
* The ID that identifies the analytics configuration.
*/
Id: AnalyticsId;
/**
* The filter used to describe a set of objects for analyses. A filter must have exactly one prefix, one tag, or one conjunction (AnalyticsAndOperator). If no filter is provided, all objects will be considered in any analysis.
*/
Filter?: AnalyticsFilter;
/**
* Contains data related to access patterns to be collected and made available to analyze the tradeoffs between different storage classes.
*/
StorageClassAnalysis: StorageClassAnalysis;
}
export type AnalyticsConfigurationList = AnalyticsConfiguration[];
export interface AnalyticsExportDestination {
/**
* A destination signifying output to an S3 bucket.
*/
S3BucketDestination: AnalyticsS3BucketDestination;
}
export interface AnalyticsFilter {
/**
* The prefix to use when evaluating an analytics filter.
*/
Prefix?: Prefix;
/**
* The tag to use when evaluating an analytics filter.
*/
Tag?: Tag;
/**
* A conjunction (logical AND) of predicates, which is used in evaluating an analytics filter. The operator must have at least two predicates.
*/
And?: AnalyticsAndOperator;
}
export type AnalyticsId = string;
export interface AnalyticsS3BucketDestination {
/**
* Specifies the file format used when exporting data to Amazon S3.
*/
Format: AnalyticsS3ExportFileFormat;
/**
* The account ID that owns the destination bucket. If no account ID is provided, the owner will not be validated prior to exporting data.
*/
BucketAccountId?: AccountId;
/**
* The Amazon Resource Name (ARN) of the bucket to which data is exported.
*/
Bucket: BucketName;
/**
* The prefix to use when exporting data. The prefix is prepended to all results.
*/
Prefix?: Prefix;
}
export type AnalyticsS3ExportFileFormat = "CSV"|string;
export type Body = Buffer|Uint8Array|Blob|string|Readable;
export interface Bucket {
/**
* The name of the bucket.
*/
Name?: BucketName;
/**
* Date the bucket was created.
*/
CreationDate?: CreationDate;
}
export type BucketAccelerateStatus = "Enabled"|"Suspended"|string;
export type BucketCannedACL = "private"|"public-read"|"public-read-write"|"authenticated-read"|string;
export interface BucketLifecycleConfiguration {
/**
* A lifecycle rule for individual objects in an Amazon S3 bucket.
*/
Rules: LifecycleRules;
}
export type BucketLocationConstraint = "EU"|"eu-west-1"|"us-west-1"|"us-west-2"|"ap-south-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-northeast-1"|"sa-east-1"|"cn-north-1"|"eu-central-1"|string;
export interface BucketLoggingStatus {
/**
*
*/
LoggingEnabled?: LoggingEnabled;
}
export type BucketLogsPermission = "FULL_CONTROL"|"READ"|"WRITE"|string;
export type BucketName = string;
export type BucketVersioningStatus = "Enabled"|"Suspended"|string;
export type Buckets = Bucket[];
export type BypassGovernanceRetention = boolean;
export type BytesProcessed = number;
export type BytesReturned = number;
export type BytesScanned = number;
export interface CORSConfiguration {
/**
* A set of allowed origins and methods.
*/
CORSRules: CORSRules;
}
export interface CORSRule {
/**
* Headers that are specified in the Access-Control-Request-Headers header. These headers are allowed in a preflight OPTIONS request. In response to any preflight OPTIONS request, Amazon S3 returns any requested headers that are allowed.
*/
AllowedHeaders?: AllowedHeaders;
/**
* An HTTP method that you allow the origin to execute. Valid values are GET, PUT, HEAD, POST, and DELETE.
*/
AllowedMethods: AllowedMethods;
/**
* One or more origins you want customers to be able to access the bucket from.
*/
AllowedOrigins: AllowedOrigins;
/**
* One or more headers in the response that you want customers to be able to access from their applications (for example, from a JavaScript XMLHttpRequest object).
*/
ExposeHeaders?: ExposeHeaders;
/**
* The time in seconds that your browser is to cache the preflight response for the specified resource.
*/
MaxAgeSeconds?: MaxAgeSeconds;
}
export type CORSRules = CORSRule[];
export interface CSVInput {
/**
* Describes the first line of input. Valid values: None, Ignore, Use.
*/
FileHeaderInfo?: FileHeaderInfo;
/**
* The single character used to indicate a row should be ignored when present at the start of a row.
*/
Comments?: Comments;
/**
* The single character used for escaping the quote character inside an already escaped value.
*/
QuoteEscapeCharacter?: QuoteEscapeCharacter;
/**
* The value used to separate individual records.
*/
RecordDelimiter?: RecordDelimiter;
/**
* The value used to separate individual fields in a record.
*/
FieldDelimiter?: FieldDelimiter;
/**
* Value used for escaping where the field delimiter is part of the value.
*/
QuoteCharacter?: QuoteCharacter;
/**
* Specifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance.
*/
AllowQuotedRecordDelimiter?: AllowQuotedRecordDelimiter;
}
export interface CSVOutput {
/**
* Indicates whether or not all output fields should be quoted.
*/
QuoteFields?: QuoteFields;
/**
* Th single character used for escaping the quote character inside an already escaped value.
*/
QuoteEscapeCharacter?: QuoteEscapeCharacter;
/**
* The value used to separate individual records.
*/
RecordDelimiter?: RecordDelimiter;
/**
* The value used to separate individual fields in a record.
*/
FieldDelimiter?: FieldDelimiter;
/**
* The value used for escaping where the field delimiter is part of the value.
*/
QuoteCharacter?: QuoteCharacter;
}
export type CacheControl = string;
export type CloudFunction = string;
export interface CloudFunctionConfiguration {
Id?: NotificationId;
Event?: Event;
/**
*
*/
Events?: EventList;
/**
*
*/
CloudFunction?: CloudFunction;
/**
*
*/
InvocationRole?: CloudFunctionInvocationRole;
}
export type CloudFunctionInvocationRole = string;
export type Code = string;
export type Comments = string;
export interface CommonPrefix {
/**
*
*/
Prefix?: Prefix;
}
export type CommonPrefixList = CommonPrefix[];
export interface CompleteMultipartUploadOutput {
/**
*
*/
Location?: Location;
/**
*
*/
Bucket?: BucketName;
/**
*
*/
Key?: ObjectKey;
/**
* If the object expiration is configured, this will contain the expiration date (expiry-date) and rule ID (rule-id). The value of rule-id is URL encoded.
*/
Expiration?: Expiration;
/**
* Entity tag of the object.
*/
ETag?: ETag;
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* Version of the object.
*/
VersionId?: ObjectVersionId;
/**
* If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
*/
SSEKMSKeyId?: SSEKMSKeyId;
RequestCharged?: RequestCharged;
}
export interface CompleteMultipartUploadRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
Key: ObjectKey;
/**
*
*/
MultipartUpload?: CompletedMultipartUpload;
/**
*
*/
UploadId: MultipartUploadId;
RequestPayer?: RequestPayer;
}
export interface CompletedMultipartUpload {
/**
*
*/
Parts?: CompletedPartList;
}
export interface CompletedPart {
/**
* Entity tag returned when the part was uploaded.
*/
ETag?: ETag;
/**
* Part number that identifies the part. This is a positive integer between 1 and 10,000.
*/
PartNumber?: PartNumber;
}
export type CompletedPartList = CompletedPart[];
export type CompressionType = "NONE"|"GZIP"|"BZIP2"|string;
export interface Condition {
/**
* The HTTP error code when the redirect is applied. In the event of an error, if the error code equals this value, then the specified redirect is applied. Required when parent element Condition is specified and sibling KeyPrefixEquals is not specified. If both are specified, then both must be true for the redirect to be applied.
*/
HttpErrorCodeReturnedEquals?: HttpErrorCodeReturnedEquals;
/**
* The object key name prefix when the redirect is applied. For example, to redirect requests for ExamplePage.html, the key prefix will be ExamplePage.html. To redirect request for all pages with the prefix docs/, the key prefix will be /docs, which identifies all objects in the docs/ folder. Required when the parent element Condition is specified and sibling HttpErrorCodeReturnedEquals is not specified. If both conditions are specified, both must be true for the redirect to be applied.
*/
KeyPrefixEquals?: KeyPrefixEquals;
}
export type ConfirmRemoveSelfBucketAccess = boolean;
export type ContentDisposition = string;
export type ContentEncoding = string;
export type ContentLanguage = string;
export type ContentLength = number;
export type ContentMD5 = string;
export type ContentRange = string;
export type ContentType = string;
export interface ContinuationEvent {
}
export interface CopyObjectOutput {
/**
*
*/
CopyObjectResult?: CopyObjectResult;
/**
* If the object expiration is configured, the response includes this header.
*/
Expiration?: Expiration;
/**
*
*/
CopySourceVersionId?: CopySourceVersionId;
/**
* Version ID of the newly created copy.
*/
VersionId?: ObjectVersionId;
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
*/
SSEKMSKeyId?: SSEKMSKeyId;
/**
* If present, specifies the AWS KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.
*/
SSEKMSEncryptionContext?: SSEKMSEncryptionContext;
RequestCharged?: RequestCharged;
}
export interface CopyObjectRequest {
/**
* The canned ACL to apply to the object.
*/
ACL?: ObjectCannedACL;
/**
*
*/
Bucket: BucketName;
/**
* Specifies caching behavior along the request/reply chain.
*/
CacheControl?: CacheControl;
/**
* Specifies presentational information for the object.
*/
ContentDisposition?: ContentDisposition;
/**
* Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
*/
ContentEncoding?: ContentEncoding;
/**
* The language the content is in.
*/
ContentLanguage?: ContentLanguage;
/**
* A standard MIME type describing the format of the object data.
*/
ContentType?: ContentType;
/**
* The name of the source bucket and key name of the source object, separated by a slash (/). Must be URL-encoded.
*/
CopySource: CopySource;
/**
* Copies the object if its entity tag (ETag) matches the specified tag.
*/
CopySourceIfMatch?: CopySourceIfMatch;
/**
* Copies the object if it has been modified since the specified time.
*/
CopySourceIfModifiedSince?: CopySourceIfModifiedSince;
/**
* Copies the object if its entity tag (ETag) is different than the specified ETag.
*/
CopySourceIfNoneMatch?: CopySourceIfNoneMatch;
/**
* Copies the object if it hasn't been modified since the specified time.
*/
CopySourceIfUnmodifiedSince?: CopySourceIfUnmodifiedSince;
/**
* The date and time at which the object is no longer cacheable.
*/
Expires?: Expires;
/**
* Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
*/
GrantFullControl?: GrantFullControl;
/**
* Allows grantee to read the object data and its metadata.
*/
GrantRead?: GrantRead;
/**
* Allows grantee to read the object ACL.
*/
GrantReadACP?: GrantReadACP;
/**
* Allows grantee to write the ACL for the applicable object.
*/
GrantWriteACP?: GrantWriteACP;
/**
*
*/
Key: ObjectKey;
/**
* A map of metadata to store with the object in S3.
*/
Metadata?: Metadata;
/**
* Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request.
*/
MetadataDirective?: MetadataDirective;
/**
* Specifies whether the object tag-set are copied from the source object or replaced with tag-set provided in the request.
*/
TaggingDirective?: TaggingDirective;
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* The type of storage to use for the object. Defaults to 'STANDARD'.
*/
StorageClass?: StorageClass;
/**
* If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
*/
WebsiteRedirectLocation?: WebsiteRedirectLocation;
/**
* Specifies the algorithm to use to when encrypting the object (e.g., AES256).
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side-encryption-customer-algorithm header.
*/
SSECustomerKey?: SSECustomerKey;
/**
* Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
*/
SSEKMSKeyId?: SSEKMSKeyId;
/**
* Specifies the AWS KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.
*/
SSEKMSEncryptionContext?: SSEKMSEncryptionContext;
/**
* Specifies the algorithm to use when decrypting the source object (e.g., AES256).
*/
CopySourceSSECustomerAlgorithm?: CopySourceSSECustomerAlgorithm;
/**
* Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created.
*/
CopySourceSSECustomerKey?: CopySourceSSECustomerKey;
/**
* Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.
*/
CopySourceSSECustomerKeyMD5?: CopySourceSSECustomerKeyMD5;
RequestPayer?: RequestPayer;
/**
* The tag-set for the object destination object this value must be used in conjunction with the TaggingDirective. The tag-set must be encoded as URL Query parameters
*/
Tagging?: TaggingHeader;
/**
* The object lock mode that you want to apply to the copied object.
*/
ObjectLockMode?: ObjectLockMode;
/**
* The date and time when you want the copied object's object lock to expire.
*/
ObjectLockRetainUntilDate?: ObjectLockRetainUntilDate;
/**
* Specifies whether you want to apply a Legal Hold to the copied object.
*/
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus;
}
export interface CopyObjectResult {
/**
*
*/
ETag?: ETag;
/**
*
*/
LastModified?: LastModified;
}
export interface CopyPartResult {
/**
* Entity tag of the object.
*/
ETag?: ETag;
/**
* Date and time at which the object was uploaded.
*/
LastModified?: LastModified;
}
export type CopySource = string;
export type CopySourceIfMatch = string;
export type CopySourceIfModifiedSince = Date;
export type CopySourceIfNoneMatch = string;
export type CopySourceIfUnmodifiedSince = Date;
export type CopySourceRange = string;
export type CopySourceSSECustomerAlgorithm = string;
export type CopySourceSSECustomerKey = Buffer|Uint8Array|Blob|string;
export type CopySourceSSECustomerKeyMD5 = string;
export type CopySourceVersionId = string;
export interface CreateBucketConfiguration {
/**
* Specifies the region where the bucket will be created. If you don't specify a region, the bucket is created in US East (N. Virginia) Region (us-east-1).
*/
LocationConstraint?: BucketLocationConstraint;
}
export interface CreateBucketOutput {
/**
*
*/
Location?: Location;
}
export interface CreateBucketRequest {
/**
* The canned ACL to apply to the bucket.
*/
ACL?: BucketCannedACL;
/**
*
*/
Bucket: BucketName;
/**
*
*/
CreateBucketConfiguration?: CreateBucketConfiguration;
/**
* Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
*/
GrantFullControl?: GrantFullControl;
/**
* Allows grantee to list the objects in the bucket.
*/
GrantRead?: GrantRead;
/**
* Allows grantee to read the bucket ACL.
*/
GrantReadACP?: GrantReadACP;
/**
* Allows grantee to create, overwrite, and delete any object in the bucket.
*/
GrantWrite?: GrantWrite;
/**
* Allows grantee to write the ACL for the applicable bucket.
*/
GrantWriteACP?: GrantWriteACP;
/**
* Specifies whether you want Amazon S3 object lock to be enabled for the new bucket.
*/
ObjectLockEnabledForBucket?: ObjectLockEnabledForBucket;
}
export interface CreateMultipartUploadOutput {
/**
* Date when multipart upload will become eligible for abort operation by lifecycle.
*/
AbortDate?: AbortDate;
/**
* Id of the lifecycle rule that makes a multipart upload eligible for abort operation.
*/
AbortRuleId?: AbortRuleId;
/**
* Name of the bucket to which the multipart upload was initiated.
*/
Bucket?: BucketName;
/**
* Object key for which the multipart upload was initiated.
*/
Key?: ObjectKey;
/**
* ID for the initiated multipart upload.
*/
UploadId?: MultipartUploadId;
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
*/
SSEKMSKeyId?: SSEKMSKeyId;
/**
* If present, specifies the AWS KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.
*/
SSEKMSEncryptionContext?: SSEKMSEncryptionContext;
RequestCharged?: RequestCharged;
}
export interface CreateMultipartUploadRequest {
/**
* The canned ACL to apply to the object.
*/
ACL?: ObjectCannedACL;
/**
*
*/
Bucket: BucketName;
/**
* Specifies caching behavior along the request/reply chain.
*/
CacheControl?: CacheControl;
/**
* Specifies presentational information for the object.
*/
ContentDisposition?: ContentDisposition;
/**
* Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
*/
ContentEncoding?: ContentEncoding;
/**
* The language the content is in.
*/
ContentLanguage?: ContentLanguage;
/**
* A standard MIME type describing the format of the object data.
*/
ContentType?: ContentType;
/**
* The date and time at which the object is no longer cacheable.
*/
Expires?: Expires;
/**
* Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
*/
GrantFullControl?: GrantFullControl;
/**
* Allows grantee to read the object data and its metadata.
*/
GrantRead?: GrantRead;
/**
* Allows grantee to read the object ACL.
*/
GrantReadACP?: GrantReadACP;
/**
* Allows grantee to write the ACL for the applicable object.
*/
GrantWriteACP?: GrantWriteACP;
/**
*
*/
Key: ObjectKey;
/**
* A map of metadata to store with the object in S3.
*/
Metadata?: Metadata;
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* The type of storage to use for the object. Defaults to 'STANDARD'.
*/
StorageClass?: StorageClass;
/**
* If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
*/
WebsiteRedirectLocation?: WebsiteRedirectLocation;
/**
* Specifies the algorithm to use to when encrypting the object (e.g., AES256).
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side-encryption-customer-algorithm header.
*/
SSECustomerKey?: SSECustomerKey;
/**
* Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
*/
SSEKMSKeyId?: SSEKMSKeyId;
/**
* Specifies the AWS KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.
*/
SSEKMSEncryptionContext?: SSEKMSEncryptionContext;
RequestPayer?: RequestPayer;
/**
* The tag-set for the object. The tag-set must be encoded as URL Query parameters
*/
Tagging?: TaggingHeader;
/**
* Specifies the object lock mode that you want to apply to the uploaded object.
*/
ObjectLockMode?: ObjectLockMode;
/**
* Specifies the date and time when you want the object lock to expire.
*/
ObjectLockRetainUntilDate?: ObjectLockRetainUntilDate;
/**
* Specifies whether you want to apply a Legal Hold to the uploaded object.
*/
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus;
}
export type CreationDate = Date;
export type _Date = Date;
export type Days = number;
export type DaysAfterInitiation = number;
export interface DefaultRetention {
/**
* The default object lock retention mode you want to apply to new objects placed in the specified bucket.
*/
Mode?: ObjectLockRetentionMode;
/**
* The number of days that you want to specify for the default retention period.
*/
Days?: Days;
/**
* The number of years that you want to specify for the default retention period.
*/
Years?: Years;
}
export interface Delete {
/**
*
*/
Objects: ObjectIdentifierList;
/**
* Element to enable quiet mode for the request. When you add this element, you must set its value to true.
*/
Quiet?: Quiet;
}
export interface DeleteBucketAnalyticsConfigurationRequest {
/**
* The name of the bucket from which an analytics configuration is deleted.
*/
Bucket: BucketName;
/**
* The ID that identifies the analytics configuration.
*/
Id: AnalyticsId;
}
export interface DeleteBucketCorsRequest {
/**
*
*/
Bucket: BucketName;
}
export interface DeleteBucketEncryptionRequest {
/**
* The name of the bucket containing the server-side encryption configuration to delete.
*/
Bucket: BucketName;
}
export interface DeleteBucketInventoryConfigurationRequest {
/**
* The name of the bucket containing the inventory configuration to delete.
*/
Bucket: BucketName;
/**
* The ID used to identify the inventory configuration.
*/
Id: InventoryId;
}
export interface DeleteBucketLifecycleRequest {
/**
*
*/
Bucket: BucketName;
}
export interface DeleteBucketMetricsConfigurationRequest {
/**
* The name of the bucket containing the metrics configuration to delete.
*/
Bucket: BucketName;
/**
* The ID used to identify the metrics configuration.
*/
Id: MetricsId;
}
export interface DeleteBucketPolicyRequest {
/**
*
*/
Bucket: BucketName;
}
export interface DeleteBucketReplicationRequest {
/**
* The bucket name. It can take a while to propagate the deletion of a replication configuration to all Amazon S3 systems.
*/
Bucket: BucketName;
}
export interface DeleteBucketRequest {
/**
*
*/
Bucket: BucketName;
}
export interface DeleteBucketTaggingRequest {
/**
*
*/
Bucket: BucketName;
}
export interface DeleteBucketWebsiteRequest {
/**
*
*/
Bucket: BucketName;
}
export type DeleteMarker = boolean;
export interface DeleteMarkerEntry {
/**
*
*/
Owner?: Owner;
/**
* The object key.
*/
Key?: ObjectKey;
/**
* Version ID of an object.
*/
VersionId?: ObjectVersionId;
/**
* Specifies whether the object is (true) or is not (false) the latest version of an object.
*/
IsLatest?: IsLatest;
/**
* Date and time the object was last modified.
*/
LastModified?: LastModified;
}
export interface DeleteMarkerReplication {
/**
* The status of the delete marker replication. In the current implementation, Amazon S3 doesn't replicate the delete markers. The status must be Disabled.
*/
Status?: DeleteMarkerReplicationStatus;
}
export type DeleteMarkerReplicationStatus = "Enabled"|"Disabled"|string;
export type DeleteMarkerVersionId = string;
export type DeleteMarkers = DeleteMarkerEntry[];
export interface DeleteObjectOutput {
/**
* Specifies whether the versioned object that was permanently deleted was (true) or was not (false) a delete marker.
*/
DeleteMarker?: DeleteMarker;
/**
* Returns the version ID of the delete marker created as a result of the DELETE operation.
*/
VersionId?: ObjectVersionId;
RequestCharged?: RequestCharged;
}
export interface DeleteObjectRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
Key: ObjectKey;
/**
* The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
*/
MFA?: MFA;
/**
* VersionId used to reference a specific version of the object.
*/
VersionId?: ObjectVersionId;
RequestPayer?: RequestPayer;
/**
* Indicates whether Amazon S3 object lock should bypass governance-mode restrictions to process this operation.
*/
BypassGovernanceRetention?: BypassGovernanceRetention;
}
export interface DeleteObjectTaggingOutput {
/**
* The versionId of the object the tag-set was removed from.
*/
VersionId?: ObjectVersionId;
}
export interface DeleteObjectTaggingRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
Key: ObjectKey;
/**
* The versionId of the object that the tag-set will be removed from.
*/
VersionId?: ObjectVersionId;
}
export interface DeleteObjectsOutput {
/**
*
*/
Deleted?: DeletedObjects;
RequestCharged?: RequestCharged;
/**
*
*/
Errors?: Errors;
}
export interface DeleteObjectsRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
Delete: Delete;
/**
* The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
*/
MFA?: MFA;
RequestPayer?: RequestPayer;
/**
* Specifies whether you want to delete this object even if it has a Governance-type object lock in place. You must have sufficient permissions to perform this operation.
*/
BypassGovernanceRetention?: BypassGovernanceRetention;
}
export interface DeletePublicAccessBlockRequest {
/**
* The Amazon S3 bucket whose PublicAccessBlock configuration you want to delete.
*/
Bucket: BucketName;
}
export interface DeletedObject {
/**
*
*/
Key?: ObjectKey;
/**
*
*/
VersionId?: ObjectVersionId;
/**
*
*/
DeleteMarker?: DeleteMarker;
/**
*
*/
DeleteMarkerVersionId?: DeleteMarkerVersionId;
}
export type DeletedObjects = DeletedObject[];
export type Delimiter = string;
export type Description = string;
export interface Destination {
/**
* The Amazon Resource Name (ARN) of the bucket where you want Amazon S3 to store replicas of the object identified by the rule. A replication configuration can replicate objects to only one destination bucket. If there are multiple rules in your replication configuration, all rules must specify the same destination bucket.
*/
Bucket: BucketName;
/**
* Destination bucket owner account ID. In a cross-account scenario, if you direct Amazon S3 to change replica ownership to the AWS account that owns the destination bucket by specifying the AccessControlTranslation property, this is the account ID of the destination bucket owner. For more information, see Cross-Region Replication Additional Configuration: Change Replica Owner in the Amazon Simple Storage Service Developer Guide.
*/
Account?: AccountId;
/**
* The storage class to use when replicating objects, such as standard or reduced redundancy. By default, Amazon S3 uses the storage class of the source object to create the object replica. For valid values, see the StorageClass element of the PUT Bucket replication action in the Amazon Simple Storage Service API Reference.
*/
StorageClass?: StorageClass;
/**
* Specify this only in a cross-account scenario (where source and destination bucket owners are not the same), and you want to change replica ownership to the AWS account that owns the destination bucket. If this is not specified in the replication configuration, the replicas are owned by same AWS account that owns the source object.
*/
AccessControlTranslation?: AccessControlTranslation;
/**
* A container that provides information about encryption. If SourceSelectionCriteria is specified, you must specify this element.
*/
EncryptionConfiguration?: EncryptionConfiguration;
}
export type DisplayName = string;
export type ETag = string;
export type EmailAddress = string;
export type EnableRequestProgress = boolean;
export type EncodingType = "url"|string;
export interface Encryption {
/**
* The server-side encryption algorithm used when storing job results in Amazon S3 (e.g., AES256, aws:kms).
*/
EncryptionType: ServerSideEncryption;
/**
* If the encryption type is aws:kms, this optional value specifies the AWS KMS key ID to use for encryption of job results.
*/
KMSKeyId?: SSEKMSKeyId;
/**
* If the encryption type is aws:kms, this optional value can be used to specify the encryption context for the restore results.
*/
KMSContext?: KMSContext;
}
export interface EncryptionConfiguration {
/**
* Specifies the AWS KMS Key ID (Key ARN or Alias ARN) for the destination bucket. Amazon S3 uses this key to encrypt replica objects.
*/
ReplicaKmsKeyID?: ReplicaKmsKeyID;
}
export type End = number;
export interface EndEvent {
}
export interface Error {
/**
*
*/
Key?: ObjectKey;
/**
*
*/
VersionId?: ObjectVersionId;
/**
*
*/
Code?: Code;
/**
*
*/
Message?: Message;
}
export interface ErrorDocument {
/**
* The object key name to use when a 4XX class error occurs.
*/
Key: ObjectKey;
}
export type Errors = Error[];
export type Event = "s3:ReducedRedundancyLostObject"|"s3:ObjectCreated:*"|"s3:ObjectCreated:Put"|"s3:ObjectCreated:Post"|"s3:ObjectCreated:Copy"|"s3:ObjectCreated:CompleteMultipartUpload"|"s3:ObjectRemoved:*"|"s3:ObjectRemoved:Delete"|"s3:ObjectRemoved:DeleteMarkerCreated"|"s3:ObjectRestore:Post"|"s3:ObjectRestore:Completed"|string;
export type EventList = Event[];
export type Expiration = string;
export type ExpirationStatus = "Enabled"|"Disabled"|string;
export type ExpiredObjectDeleteMarker = boolean;
export type Expires = Date;
export type ExposeHeader = string;
export type ExposeHeaders = ExposeHeader[];
export type Expression = string;
export type ExpressionType = "SQL"|string;
export type FetchOwner = boolean;
export type FieldDelimiter = string;
export type FileHeaderInfo = "USE"|"IGNORE"|"NONE"|string;
export interface FilterRule {
/**
* The object key name prefix or suffix identifying one or more objects to which the filtering rule applies. The maximum length is 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, see Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.
*/
Name?: FilterRuleName;
/**
* The value that the filter searches for in object key names.
*/
Value?: FilterRuleValue;
}
export type FilterRuleList = FilterRule[];
export type FilterRuleName = "prefix"|"suffix"|string;
export type FilterRuleValue = string;
export interface GetBucketAccelerateConfigurationOutput {
/**
* The accelerate configuration of the bucket.
*/
Status?: BucketAccelerateStatus;
}
export interface GetBucketAccelerateConfigurationRequest {
/**
* Name of the bucket for which the accelerate configuration is retrieved.
*/
Bucket: BucketName;
}
export interface GetBucketAclOutput {
/**
*
*/
Owner?: Owner;
/**
* A list of grants.
*/
Grants?: Grants;
}
export interface GetBucketAclRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketAnalyticsConfigurationOutput {
/**
* The configuration and any analyses for the analytics filter.
*/
AnalyticsConfiguration?: AnalyticsConfiguration;
}
export interface GetBucketAnalyticsConfigurationRequest {
/**
* The name of the bucket from which an analytics configuration is retrieved.
*/
Bucket: BucketName;
/**
* The ID that identifies the analytics configuration.
*/
Id: AnalyticsId;
}
export interface GetBucketCorsOutput {
/**
*
*/
CORSRules?: CORSRules;
}
export interface GetBucketCorsRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketEncryptionOutput {
/**
*
*/
ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
}
export interface GetBucketEncryptionRequest {
/**
* The name of the bucket from which the server-side encryption configuration is retrieved.
*/
Bucket: BucketName;
}
export interface GetBucketInventoryConfigurationOutput {
/**
* Specifies the inventory configuration.
*/
InventoryConfiguration?: InventoryConfiguration;
}
export interface GetBucketInventoryConfigurationRequest {
/**
* The name of the bucket containing the inventory configuration to retrieve.
*/
Bucket: BucketName;
/**
* The ID used to identify the inventory configuration.
*/
Id: InventoryId;
}
export interface GetBucketLifecycleConfigurationOutput {
/**
*
*/
Rules?: LifecycleRules;
}
export interface GetBucketLifecycleConfigurationRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketLifecycleOutput {
/**
*
*/
Rules?: Rules;
}
export interface GetBucketLifecycleRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketLocationOutput {
/**
*
*/
LocationConstraint?: BucketLocationConstraint;
}
export interface GetBucketLocationRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketLoggingOutput {
/**
*
*/
LoggingEnabled?: LoggingEnabled;
}
export interface GetBucketLoggingRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketMetricsConfigurationOutput {
/**
* Specifies the metrics configuration.
*/
MetricsConfiguration?: MetricsConfiguration;
}
export interface GetBucketMetricsConfigurationRequest {
/**
* The name of the bucket containing the metrics configuration to retrieve.
*/
Bucket: BucketName;
/**
* The ID used to identify the metrics configuration.
*/
Id: MetricsId;
}
export interface GetBucketNotificationConfigurationRequest {
/**
* Name of the bucket to get the notification configuration for.
*/
Bucket: BucketName;
}
export interface GetBucketPolicyOutput {
/**
* The bucket policy as a JSON document.
*/
Policy?: Policy;
}
export interface GetBucketPolicyRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketPolicyStatusOutput {
/**
* The policy status for the specified bucket.
*/
PolicyStatus?: PolicyStatus;
}
export interface GetBucketPolicyStatusRequest {
/**
* The name of the Amazon S3 bucket whose policy status you want to retrieve.
*/
Bucket: BucketName;
}
export interface GetBucketReplicationOutput {
/**
*
*/
ReplicationConfiguration?: ReplicationConfiguration;
}
export interface GetBucketReplicationRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketRequestPaymentOutput {
/**
* Specifies who pays for the download and request fees.
*/
Payer?: Payer;
}
export interface GetBucketRequestPaymentRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketTaggingOutput {
/**
*
*/
TagSet: TagSet;
}
export interface GetBucketTaggingRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketVersioningOutput {
/**
* The versioning state of the bucket.
*/
Status?: BucketVersioningStatus;
/**
* Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is only returned if the bucket has been configured with MFA delete. If the bucket has never been so configured, this element is not returned.
*/
MFADelete?: MFADeleteStatus;
}
export interface GetBucketVersioningRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetBucketWebsiteOutput {
/**
*
*/
RedirectAllRequestsTo?: RedirectAllRequestsTo;
/**
*
*/
IndexDocument?: IndexDocument;
/**
*
*/
ErrorDocument?: ErrorDocument;
/**
*
*/
RoutingRules?: RoutingRules;
}
export interface GetBucketWebsiteRequest {
/**
*
*/
Bucket: BucketName;
}
export interface GetObjectAclOutput {
/**
*
*/
Owner?: Owner;
/**
* A list of grants.
*/
Grants?: Grants;
RequestCharged?: RequestCharged;
}
export interface GetObjectAclRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
Key: ObjectKey;
/**
* VersionId used to reference a specific version of the object.
*/
VersionId?: ObjectVersionId;
RequestPayer?: RequestPayer;
}
export interface GetObjectLegalHoldOutput {
/**
* The current Legal Hold status for the specified object.
*/
LegalHold?: ObjectLockLegalHold;
}
export interface GetObjectLegalHoldRequest {
/**
* The bucket containing the object whose Legal Hold status you want to retrieve.
*/
Bucket: BucketName;
/**
* The key name for the object whose Legal Hold status you want to retrieve.
*/
Key: ObjectKey;
/**
* The version ID of the object whose Legal Hold status you want to retrieve.
*/
VersionId?: ObjectVersionId;
RequestPayer?: RequestPayer;
}
export interface GetObjectLockConfigurationOutput {
/**
* The specified bucket's object lock configuration.
*/
ObjectLockConfiguration?: ObjectLockConfiguration;
}
export interface GetObjectLockConfigurationRequest {
/**
* The bucket whose object lock configuration you want to retrieve.
*/
Bucket: BucketName;
}
export interface GetObjectOutput {
/**
* Object data.
*/
Body?: Body;
/**
* Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.
*/
DeleteMarker?: DeleteMarker;
/**
*
*/
AcceptRanges?: AcceptRanges;
/**
* If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.
*/
Expiration?: Expiration;
/**
* Provides information about object restoration operation and expiration time of the restored object copy.
*/
Restore?: Restore;
/**
* Last modified date of the object
*/
LastModified?: LastModified;
/**
* Size of the body in bytes.
*/
ContentLength?: ContentLength;
/**
* An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL
*/
ETag?: ETag;
/**
* This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.
*/
MissingMeta?: MissingMeta;
/**
* Version of the object.
*/
VersionId?: ObjectVersionId;
/**
* Specifies caching behavior along the request/reply chain.
*/
CacheControl?: CacheControl;
/**
* Specifies presentational information for the object.
*/
ContentDisposition?: ContentDisposition;
/**
* Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
*/
ContentEncoding?: ContentEncoding;
/**
* The language the content is in.
*/
ContentLanguage?: ContentLanguage;
/**
* The portion of the object returned in the response.
*/
ContentRange?: ContentRange;
/**
* A standard MIME type describing the format of the object data.
*/
ContentType?: ContentType;
/**
* The date and time at which the object is no longer cacheable.
*/
Expires?: Expires;
/**
* If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
*/
WebsiteRedirectLocation?: WebsiteRedirectLocation;
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* A map of metadata to store with the object in S3.
*/
Metadata?: Metadata;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
*/
SSEKMSKeyId?: SSEKMSKeyId;
/**
*
*/
StorageClass?: StorageClass;
RequestCharged?: RequestCharged;
/**
*
*/
ReplicationStatus?: ReplicationStatus;
/**
* The count of parts this object has.
*/
PartsCount?: PartsCount;
/**
* The number of tags, if any, on the object.
*/
TagCount?: TagCount;
/**
* The object lock mode currently in place for this object.
*/
ObjectLockMode?: ObjectLockMode;
/**
* The date and time when this object's object lock will expire.
*/
ObjectLockRetainUntilDate?: ObjectLockRetainUntilDate;
/**
* Indicates whether this object has an active legal hold. This field is only returned if you have permission to view an object's legal hold status.
*/
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus;
}
export interface GetObjectRequest {
/**
*
*/
Bucket: BucketName;
/**
* Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
*/
IfMatch?: IfMatch;
/**
* Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
*/
IfModifiedSince?: IfModifiedSince;
/**
* Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
*/
IfNoneMatch?: IfNoneMatch;
/**
* Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
*/
IfUnmodifiedSince?: IfUnmodifiedSince;
/**
*
*/
Key: ObjectKey;
/**
* Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
*/
Range?: Range;
/**
* Sets the Cache-Control header of the response.
*/
ResponseCacheControl?: ResponseCacheControl;
/**
* Sets the Content-Disposition header of the response
*/
ResponseContentDisposition?: ResponseContentDisposition;
/**
* Sets the Content-Encoding header of the response.
*/
ResponseContentEncoding?: ResponseContentEncoding;
/**
* Sets the Content-Language header of the response.
*/
ResponseContentLanguage?: ResponseContentLanguage;
/**
* Sets the Content-Type header of the response.
*/
ResponseContentType?: ResponseContentType;
/**
* Sets the Expires header of the response.
*/
ResponseExpires?: ResponseExpires;
/**
* VersionId used to reference a specific version of the object.
*/
VersionId?: ObjectVersionId;
/**
* Specifies the algorithm to use to when encrypting the object (e.g., AES256).
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side-encryption-customer-algorithm header.
*/
SSECustomerKey?: SSECustomerKey;
/**
* Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
RequestPayer?: RequestPayer;
/**
* Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' GET request for the part specified. Useful for downloading just a part of an object.
*/
PartNumber?: PartNumber;
}
export interface GetObjectRetentionOutput {
/**
* The container element for an object's retention settings.
*/
Retention?: ObjectLockRetention;
}
export interface GetObjectRetentionRequest {
/**
* The bucket containing the object whose retention settings you want to retrieve.
*/
Bucket: BucketName;
/**
* The key name for the object whose retention settings you want to retrieve.
*/
Key: ObjectKey;
/**
* The version ID for the object whose retention settings you want to retrieve.
*/
VersionId?: ObjectVersionId;
RequestPayer?: RequestPayer;
}
export interface GetObjectTaggingOutput {
/**
*
*/
VersionId?: ObjectVersionId;
/**
*
*/
TagSet: TagSet;
}
export interface GetObjectTaggingRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
Key: ObjectKey;
/**
*
*/
VersionId?: ObjectVersionId;
}
export interface GetObjectTorrentOutput {
/**
*
*/
Body?: Body;
RequestCharged?: RequestCharged;
}
export interface GetObjectTorrentRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
Key: ObjectKey;
RequestPayer?: RequestPayer;
}
export interface GetPublicAccessBlockOutput {
/**
* The PublicAccessBlock configuration currently in effect for this Amazon S3 bucket.
*/
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
}
export interface GetPublicAccessBlockRequest {
/**
* The name of the Amazon S3 bucket whose PublicAccessBlock configuration you want to retrieve.
*/
Bucket: BucketName;
}
export interface GlacierJobParameters {
/**
* Glacier retrieval tier at which the restore will be processed.
*/
Tier: Tier;
}
export interface Grant {
/**
*
*/
Grantee?: Grantee;
/**
* Specifies the permission given to the grantee.
*/
Permission?: Permission;
}
export type GrantFullControl = string;
export type GrantRead = string;
export type GrantReadACP = string;
export type GrantWrite = string;
export type GrantWriteACP = string;
export interface Grantee {
/**
* Screen name of the grantee.
*/
DisplayName?: DisplayName;
/**
* Email address of the grantee.
*/
EmailAddress?: EmailAddress;
/**
* The canonical user ID of the grantee.
*/
ID?: ID;
/**
* Type of grantee
*/
Type: Type;
/**
* URI of the grantee group.
*/
URI?: URI;
}
export type Grants = Grant[];
export interface HeadBucketRequest {
/**
*
*/
Bucket: BucketName;
}
export interface HeadObjectOutput {
/**
* Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.
*/
DeleteMarker?: DeleteMarker;
/**
*
*/
AcceptRanges?: AcceptRanges;
/**
* If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.
*/
Expiration?: Expiration;
/**
* Provides information about object restoration operation and expiration time of the restored object copy.
*/
Restore?: Restore;
/**
* Last modified date of the object
*/
LastModified?: LastModified;
/**
* Size of the body in bytes.
*/
ContentLength?: ContentLength;
/**
* An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL
*/
ETag?: ETag;
/**
* This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.
*/
MissingMeta?: MissingMeta;
/**
* Version of the object.
*/
VersionId?: ObjectVersionId;
/**
* Specifies caching behavior along the request/reply chain.
*/
CacheControl?: CacheControl;
/**
* Specifies presentational information for the object.
*/
ContentDisposition?: ContentDisposition;
/**
* Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
*/
ContentEncoding?: ContentEncoding;
/**
* The language the content is in.
*/
ContentLanguage?: ContentLanguage;
/**
* A standard MIME type describing the format of the object data.
*/
ContentType?: ContentType;
/**
* The date and time at which the object is no longer cacheable.
*/
Expires?: Expires;
/**
* If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
*/
WebsiteRedirectLocation?: WebsiteRedirectLocation;
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* A map of metadata to store with the object in S3.
*/
Metadata?: Metadata;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
*/
SSEKMSKeyId?: SSEKMSKeyId;
/**
*
*/
StorageClass?: StorageClass;
RequestCharged?: RequestCharged;
/**
*
*/
ReplicationStatus?: ReplicationStatus;
/**
* The count of parts this object has.
*/
PartsCount?: PartsCount;
/**
* The object lock mode currently in place for this object.
*/
ObjectLockMode?: ObjectLockMode;
/**
* The date and time when this object's object lock expires.
*/
ObjectLockRetainUntilDate?: ObjectLockRetainUntilDate;
/**
* The Legal Hold status for the specified object.
*/
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus;
}
export interface HeadObjectRequest {
/**
*
*/
Bucket: BucketName;
/**
* Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
*/
IfMatch?: IfMatch;
/**
* Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
*/
IfModifiedSince?: IfModifiedSince;
/**
* Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
*/
IfNoneMatch?: IfNoneMatch;
/**
* Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
*/
IfUnmodifiedSince?: IfUnmodifiedSince;
/**
*
*/
Key: ObjectKey;
/**
* Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
*/
Range?: Range;
/**
* VersionId used to reference a specific version of the object.
*/
VersionId?: ObjectVersionId;
/**
* Specifies the algorithm to use to when encrypting the object (e.g., AES256).
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side-encryption-customer-algorithm header.
*/
SSECustomerKey?: SSECustomerKey;
/**
* Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
RequestPayer?: RequestPayer;
/**
* Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' HEAD request for the part specified. Useful querying about the size of the part and the number of parts in this object.
*/
PartNumber?: PartNumber;
}
export type HostName = string;
export type HttpErrorCodeReturnedEquals = string;
export type HttpRedirectCode = string;
export type ID = string;
export type IfMatch = string;
export type IfModifiedSince = Date;
export type IfNoneMatch = string;
export type IfUnmodifiedSince = Date;
export interface IndexDocument {
/**
* A suffix that is appended to a request that is for a directory on the website endpoint (e.g. if the suffix is index.html and you make a request to samplebucket/images/ the data that is returned will be for the object with the key name images/index.html) The suffix must not be empty and must not include a slash character.
*/
Suffix: Suffix;
}
export type Initiated = Date;
export interface Initiator {
/**
* If the principal is an AWS account, it provides the Canonical User ID. If the principal is an IAM User, it provides a user ARN value.
*/
ID?: ID;
/**
* Name of the Principal.
*/
DisplayName?: DisplayName;
}
export interface InputSerialization {
/**
* Describes the serialization of a CSV-encoded object.
*/
CSV?: CSVInput;
/**
* Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.
*/
CompressionType?: CompressionType;
/**
* Specifies JSON as object's input serialization format.
*/
JSON?: JSONInput;
/**
* Specifies Parquet as object's input serialization format.
*/
Parquet?: ParquetInput;
}
export interface InventoryConfiguration {
/**
* Contains information about where to publish the inventory results.
*/
Destination: InventoryDestination;
/**
* Specifies whether the inventory is enabled or disabled. If set to True, an inventory list is generated. If set to False, no inventory list is generated.
*/
IsEnabled: IsEnabled;
/**
* Specifies an inventory filter. The inventory only includes objects that meet the filter's criteria.
*/
Filter?: InventoryFilter;
/**
* The ID used to identify the inventory configuration.
*/
Id: InventoryId;
/**
* Object versions to include in the inventory list. If set to All, the list includes all the object versions, which adds the version-related fields VersionId, IsLatest, and DeleteMarker to the list. If set to Current, the list does not contain these version-related fields.
*/
IncludedObjectVersions: InventoryIncludedObjectVersions;
/**
* Contains the optional fields that are included in the inventory results.
*/
OptionalFields?: InventoryOptionalFields;
/**
* Specifies the schedule for generating inventory results.
*/
Schedule: InventorySchedule;
}
export type InventoryConfigurationList = InventoryConfiguration[];
export interface InventoryDestination {
/**
* Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.
*/
S3BucketDestination: InventoryS3BucketDestination;
}
export interface InventoryEncryption {
/**
* Specifies the use of SSE-S3 to encrypt delivered Inventory reports.
*/
SSES3?: SSES3;
/**
* Specifies the use of SSE-KMS to encrypt delivered Inventory reports.
*/
SSEKMS?: SSEKMS;
}
export interface InventoryFilter {
/**
* The prefix that an object must have to be included in the inventory results.
*/
Prefix: Prefix;
}
export type InventoryFormat = "CSV"|"ORC"|"Parquet"|string;
export type InventoryFrequency = "Daily"|"Weekly"|string;
export type InventoryId = string;
export type InventoryIncludedObjectVersions = "All"|"Current"|string;
export type InventoryOptionalField = "Size"|"LastModifiedDate"|"StorageClass"|"ETag"|"IsMultipartUploaded"|"ReplicationStatus"|"EncryptionStatus"|"ObjectLockRetainUntilDate"|"ObjectLockMode"|"ObjectLockLegalHoldStatus"|"IntelligentTieringAccessTier"|string;
export type InventoryOptionalFields = InventoryOptionalField[];
export interface InventoryS3BucketDestination {
/**
* The ID of the account that owns the destination bucket.
*/
AccountId?: AccountId;
/**
* The Amazon resource name (ARN) of the bucket where inventory results will be published.
*/
Bucket: BucketName;
/**
* Specifies the output format of the inventory results.
*/
Format: InventoryFormat;
/**
* The prefix that is prepended to all inventory results.
*/
Prefix?: Prefix;
/**
* Contains the type of server-side encryption used to encrypt the inventory results.
*/
Encryption?: InventoryEncryption;
}
export interface InventorySchedule {
/**
* Specifies how frequently inventory results are produced.
*/
Frequency: InventoryFrequency;
}
export type IsEnabled = boolean;
export type IsLatest = boolean;
export type IsPublic = boolean;
export type IsTruncated = boolean;
export interface JSONInput {
/**
* The type of JSON. Valid values: Document, Lines.
*/
Type?: JSONType;
}
export interface JSONOutput {
/**
* The value used to separate individual records in the output.
*/
RecordDelimiter?: RecordDelimiter;
}
export type JSONType = "DOCUMENT"|"LINES"|string;
export type KMSContext = string;
export type KeyCount = number;
export type KeyMarker = string;
export type KeyPrefixEquals = string;
export type LambdaFunctionArn = string;
export interface LambdaFunctionConfiguration {
Id?: NotificationId;
/**
* The Amazon Resource Name (ARN) of the AWS Lambda function that Amazon S3 invokes when the specified event type occurs.
*/
LambdaFunctionArn: LambdaFunctionArn;
/**
* The Amazon S3 bucket event for which to invoke the AWS Lambda function. For more information, see Supported Event Types in the Amazon Simple Storage Service Developer Guide.
*/
Events: EventList;
/**
*
*/
Filter?: NotificationConfigurationFilter;
}
export type LambdaFunctionConfigurationList = LambdaFunctionConfiguration[];
export type LastModified = Date;
export interface LifecycleConfiguration {
/**
*
*/
Rules: Rules;
}
export interface LifecycleExpiration {
/**
* Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.
*/
Date?: _Date;
/**
* Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.
*/
Days?: Days;
/**
* Indicates whether Amazon S3 will remove a delete marker with no noncurrent versions. If set to true, the delete marker will be expired; if set to false the policy takes no action. This cannot be specified with Days or Date in a Lifecycle Expiration Policy.
*/
ExpiredObjectDeleteMarker?: ExpiredObjectDeleteMarker;
}
export interface LifecycleRule {
/**
*
*/
Expiration?: LifecycleExpiration;
/**
* Unique identifier for the rule. The value cannot be longer than 255 characters.
*/
ID?: ID;
/**
* Prefix identifying one or more objects to which the rule applies. This is No longer used; use Filter instead.
*/
Prefix?: Prefix;
/**
*
*/
Filter?: LifecycleRuleFilter;
/**
* If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.
*/
Status: ExpirationStatus;
/**
*
*/
Transitions?: TransitionList;
/**
*
*/
NoncurrentVersionTransitions?: NoncurrentVersionTransitionList;
/**
*
*/
NoncurrentVersionExpiration?: NoncurrentVersionExpiration;
/**
*
*/
AbortIncompleteMultipartUpload?: AbortIncompleteMultipartUpload;
}
export interface LifecycleRuleAndOperator {
/**
*
*/
Prefix?: Prefix;
/**
* All of these tags must exist in the object's tag set in order for the rule to apply.
*/
Tags?: TagSet;
}
export interface LifecycleRuleFilter {
/**
* Prefix identifying one or more objects to which the rule applies.
*/
Prefix?: Prefix;
/**
* This tag must exist in the object's tag set in order for the rule to apply.
*/
Tag?: Tag;
/**
*
*/
And?: LifecycleRuleAndOperator;
}
export type LifecycleRules = LifecycleRule[];
export interface ListBucketAnalyticsConfigurationsOutput {
/**
* Indicates whether the returned list of analytics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.
*/
IsTruncated?: IsTruncated;
/**
* The ContinuationToken that represents where this request began.
*/
ContinuationToken?: Token;
/**
* NextContinuationToken is sent when isTruncated is true, which indicates that there are more analytics configurations to list. The next request must include this NextContinuationToken. The token is obfuscated and is not a usable value.
*/
NextContinuationToken?: NextToken;
/**
* The list of analytics configurations for a bucket.
*/
AnalyticsConfigurationList?: AnalyticsConfigurationList;
}
export interface ListBucketAnalyticsConfigurationsRequest {
/**
* The name of the bucket from which analytics configurations are retrieved.
*/
Bucket: BucketName;
/**
* The ContinuationToken that represents a placeholder from where this request should begin.
*/
ContinuationToken?: Token;
}
export interface ListBucketInventoryConfigurationsOutput {
/**
* If sent in the request, the marker that is used as a starting point for this inventory configuration list response.
*/
ContinuationToken?: Token;
/**
* The list of inventory configurations for a bucket.
*/
InventoryConfigurationList?: InventoryConfigurationList;
/**
* Indicates whether the returned list of inventory configurations is truncated in this response. A value of true indicates that the list is truncated.
*/
IsTruncated?: IsTruncated;
/**
* The marker used to continue this inventory configuration listing. Use the NextContinuationToken from this response to continue the listing in a subsequent request. The continuation token is an opaque value that Amazon S3 understands.
*/
NextContinuationToken?: NextToken;
}
export interface ListBucketInventoryConfigurationsRequest {
/**
* The name of the bucket containing the inventory configurations to retrieve.
*/
Bucket: BucketName;
/**
* The marker used to continue an inventory configuration listing that has been truncated. Use the NextContinuationToken from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.
*/
ContinuationToken?: Token;
}
export interface ListBucketMetricsConfigurationsOutput {
/**
* Indicates whether the returned list of metrics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.
*/
IsTruncated?: IsTruncated;
/**
* The marker that is used as a starting point for this metrics configuration list response. This value is present if it was sent in the request.
*/
ContinuationToken?: Token;
/**
* The marker used to continue a metrics configuration listing that has been truncated. Use the NextContinuationToken from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.
*/
NextContinuationToken?: NextToken;
/**
* The list of metrics configurations for a bucket.
*/
MetricsConfigurationList?: MetricsConfigurationList;
}
export interface ListBucketMetricsConfigurationsRequest {
/**
* The name of the bucket containing the metrics configurations to retrieve.
*/
Bucket: BucketName;
/**
* The marker that is used to continue a metrics configuration listing that has been truncated. Use the NextContinuationToken from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.
*/
ContinuationToken?: Token;
}
export interface ListBucketsOutput {
/**
*
*/
Buckets?: Buckets;
/**
*
*/
Owner?: Owner;
}
export interface ListMultipartUploadsOutput {
/**
* Name of the bucket to which the multipart upload was initiated.
*/
Bucket?: BucketName;
/**
* The key at or after which the listing began.
*/
KeyMarker?: KeyMarker;
/**
* Upload ID after which listing began.
*/
UploadIdMarker?: UploadIdMarker;
/**
* When a list is truncated, this element specifies the value that should be used for the key-marker request parameter in a subsequent request.
*/
NextKeyMarker?: NextKeyMarker;
/**
* When a prefix is provided in the request, this field contains the specified prefix. The result contains only keys starting with the specified prefix.
*/
Prefix?: Prefix;
/**
*
*/
Delimiter?: Delimiter;
/**
* When a list is truncated, this element specifies the value that should be used for the upload-id-marker request parameter in a subsequent request.
*/
NextUploadIdMarker?: NextUploadIdMarker;
/**
* Maximum number of multipart uploads that could have been included in the response.
*/
MaxUploads?: MaxUploads;
/**
* Indicates whether the returned list of multipart uploads is truncated. A value of true indicates that the list was truncated. The list can be truncated if the number of multipart uploads exceeds the limit allowed or specified by max uploads.
*/
IsTruncated?: IsTruncated;
/**
*
*/
Uploads?: MultipartUploadList;
/**
*
*/
CommonPrefixes?: CommonPrefixList;
/**
* Encoding type used by Amazon S3 to encode object keys in the response.
*/
EncodingType?: EncodingType;
}
export interface ListMultipartUploadsRequest {
/**
*
*/
Bucket: BucketName;
/**
* Character you use to group keys.
*/
Delimiter?: Delimiter;
EncodingType?: EncodingType;
/**
* Together with upload-id-marker, this parameter specifies the multipart upload after which listing should begin.
*/
KeyMarker?: KeyMarker;
/**
* Sets the maximum number of multipart uploads, from 1 to 1,000, to return in the response body. 1,000 is the maximum number of uploads that can be returned in a response.
*/
MaxUploads?: MaxUploads;
/**
* Lists in-progress uploads only for those keys that begin with the specified prefix.
*/
Prefix?: Prefix;
/**
* Together with key-marker, specifies the multipart upload after which listing should begin. If key-marker is not specified, the upload-id-marker parameter is ignored.
*/
UploadIdMarker?: UploadIdMarker;
}
export interface ListObjectVersionsOutput {
/**
* A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria. If your results were truncated, you can make a follow-up paginated request using the NextKeyMarker and NextVersionIdMarker response parameters as a starting place in another request to return the rest of the results.
*/
IsTruncated?: IsTruncated;
/**
* Marks the last Key returned in a truncated response.
*/
KeyMarker?: KeyMarker;
/**
*
*/
VersionIdMarker?: VersionIdMarker;
/**
* Use this value for the key marker request parameter in a subsequent request.
*/
NextKeyMarker?: NextKeyMarker;
/**
* Use this value for the next version id marker parameter in a subsequent request.
*/
NextVersionIdMarker?: NextVersionIdMarker;
/**
*
*/
Versions?: ObjectVersionList;
/**
*
*/
DeleteMarkers?: DeleteMarkers;
/**
*
*/
Name?: BucketName;
/**
*
*/
Prefix?: Prefix;
/**
*
*/
Delimiter?: Delimiter;
/**
*
*/
MaxKeys?: MaxKeys;
/**
*
*/
CommonPrefixes?: CommonPrefixList;
/**
* Encoding type used by Amazon S3 to encode object keys in the response.
*/
EncodingType?: EncodingType;
}
export interface ListObjectVersionsRequest {
/**
*
*/
Bucket: BucketName;
/**
* A delimiter is a character you use to group keys.
*/
Delimiter?: Delimiter;
EncodingType?: EncodingType;
/**
* Specifies the key to start with when listing objects in a bucket.
*/
KeyMarker?: KeyMarker;
/**
* Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.
*/
MaxKeys?: MaxKeys;
/**
* Limits the response to keys that begin with the specified prefix.
*/
Prefix?: Prefix;
/**
* Specifies the object version you want to start listing from.
*/
VersionIdMarker?: VersionIdMarker;
}
export interface ListObjectsOutput {
/**
* A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria.
*/
IsTruncated?: IsTruncated;
/**
*
*/
Marker?: Marker;
/**
* When response is truncated (the IsTruncated element value in the response is true), you can use the key name in this field as marker in the subsequent request to get next set of objects. Amazon S3 lists objects in alphabetical order Note: This element is returned only if you have delimiter request parameter specified. If response does not include the NextMaker and it is truncated, you can use the value of the last Key in the response as the marker in the subsequent request to get the next set of object keys.
*/
NextMarker?: NextMarker;
/**
*
*/
Contents?: ObjectList;
/**
*
*/
Name?: BucketName;
/**
*
*/
Prefix?: Prefix;
/**
*
*/
Delimiter?: Delimiter;
/**
*
*/
MaxKeys?: MaxKeys;
/**
*
*/
CommonPrefixes?: CommonPrefixList;
/**
* Encoding type used by Amazon S3 to encode object keys in the response.
*/
EncodingType?: EncodingType;
}
export interface ListObjectsRequest {
/**
*
*/
Bucket: BucketName;
/**
* A delimiter is a character you use to group keys.
*/
Delimiter?: Delimiter;
EncodingType?: EncodingType;
/**
* Specifies the key to start with when listing objects in a bucket.
*/
Marker?: Marker;
/**
* Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.
*/
MaxKeys?: MaxKeys;
/**
* Limits the response to keys that begin with the specified prefix.
*/
Prefix?: Prefix;
/**
* Confirms that the requester knows that she or he will be charged for the list objects request. Bucket owners need not specify this parameter in their requests.
*/
RequestPayer?: RequestPayer;
}
export interface ListObjectsV2Output {
/**
* A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria.
*/
IsTruncated?: IsTruncated;
/**
* Metadata about each object returned.
*/
Contents?: ObjectList;
/**
* Name of the bucket to list.
*/
Name?: BucketName;
/**
* Limits the response to keys that begin with the specified prefix.
*/
Prefix?: Prefix;
/**
* A delimiter is a character you use to group keys.
*/
Delimiter?: Delimiter;
/**
* Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.
*/
MaxKeys?: MaxKeys;
/**
* CommonPrefixes contains all (if there are any) keys between Prefix and the next occurrence of the string specified by delimiter
*/
CommonPrefixes?: CommonPrefixList;
/**
* Encoding type used by Amazon S3 to encode object keys in the response.
*/
EncodingType?: EncodingType;
/**
* KeyCount is the number of keys returned with this request. KeyCount will always be less than equals to MaxKeys field. Say you ask for 50 keys, your result will include less than equals 50 keys
*/
KeyCount?: KeyCount;
/**
* ContinuationToken indicates Amazon S3 that the list is being continued on this bucket with a token. ContinuationToken is obfuscated and is not a real key
*/
ContinuationToken?: Token;
/**
* NextContinuationToken is sent when isTruncated is true which means there are more keys in the bucket that can be listed. The next list requests to Amazon S3 can be continued with this NextContinuationToken. NextContinuationToken is obfuscated and is not a real key
*/
NextContinuationToken?: NextToken;
/**
* StartAfter is where you want Amazon S3 to start listing from. Amazon S3 starts listing after this specified key. StartAfter can be any key in the bucket
*/
StartAfter?: StartAfter;
}
export interface ListObjectsV2Request {
/**
* Name of the bucket to list.
*/
Bucket: BucketName;
/**
* A delimiter is a character you use to group keys.
*/
Delimiter?: Delimiter;
/**
* Encoding type used by Amazon S3 to encode object keys in the response.
*/
EncodingType?: EncodingType;
/**
* Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.
*/
MaxKeys?: MaxKeys;
/**
* Limits the response to keys that begin with the specified prefix.
*/
Prefix?: Prefix;
/**
* ContinuationToken indicates Amazon S3 that the list is being continued on this bucket with a token. ContinuationToken is obfuscated and is not a real key
*/
ContinuationToken?: Token;
/**
* The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true
*/
FetchOwner?: FetchOwner;
/**
* StartAfter is where you want Amazon S3 to start listing from. Amazon S3 starts listing after this specified key. StartAfter can be any key in the bucket
*/
StartAfter?: StartAfter;
/**
* Confirms that the requester knows that she or he will be charged for the list objects request in V2 style. Bucket owners need not specify this parameter in their requests.
*/
RequestPayer?: RequestPayer;
}
export interface ListPartsOutput {
/**
* Date when multipart upload will become eligible for abort operation by lifecycle.
*/
AbortDate?: AbortDate;
/**
* Id of the lifecycle rule that makes a multipart upload eligible for abort operation.
*/
AbortRuleId?: AbortRuleId;
/**
* Name of the bucket to which the multipart upload was initiated.
*/
Bucket?: BucketName;
/**
* Object key for which the multipart upload was initiated.
*/
Key?: ObjectKey;
/**
* Upload ID identifying the multipart upload whose parts are being listed.
*/
UploadId?: MultipartUploadId;
/**
* Part number after which listing begins.
*/
PartNumberMarker?: PartNumberMarker;
/**
* When a list is truncated, this element specifies the last part in the list, as well as the value to use for the part-number-marker request parameter in a subsequent request.
*/
NextPartNumberMarker?: NextPartNumberMarker;
/**
* Maximum number of parts that were allowed in the response.
*/
MaxParts?: MaxParts;
/**
* Indicates whether the returned list of parts is truncated.
*/
IsTruncated?: IsTruncated;
/**
*
*/
Parts?: Parts;
/**
* Identifies who initiated the multipart upload.
*/
Initiator?: Initiator;
/**
*
*/
Owner?: Owner;
/**
* The class of storage used to store the object.
*/
StorageClass?: StorageClass;
RequestCharged?: RequestCharged;
}
export interface ListPartsRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
Key: ObjectKey;
/**
* Sets the maximum number of parts to return.
*/
MaxParts?: MaxParts;
/**
* Specifies the part after which listing should begin. Only parts with higher part numbers will be listed.
*/
PartNumberMarker?: PartNumberMarker;
/**
* Upload ID identifying the multipart upload whose parts are being listed.
*/
UploadId: MultipartUploadId;
RequestPayer?: RequestPayer;
}
export type Location = string;
export type LocationPrefix = string;
export interface LoggingEnabled {
/**
* Specifies the bucket where you want Amazon S3 to store server access logs. You can have your logs delivered to any bucket that you own, including the same bucket that is being logged. You can also configure multiple buckets to deliver their logs to the same target bucket. In this case you should choose a different TargetPrefix for each source bucket so that the delivered log files can be distinguished by key.
*/
TargetBucket: TargetBucket;
/**
*
*/
TargetGrants?: TargetGrants;
/**
* A prefix for all log object keys. If you store log files from multiple Amazon S3 buckets in a single bucket, you can use a prefix to distinguish which log files came from which bucket.
*/
TargetPrefix: TargetPrefix;
}
export type MFA = string;
export type MFADelete = "Enabled"|"Disabled"|string;
export type MFADeleteStatus = "Enabled"|"Disabled"|string;
export type Marker = string;
export type MaxAgeSeconds = number;
export type MaxKeys = number;
export type MaxParts = number;
export type MaxUploads = number;
export type Message = string;
export type Metadata = {[key: string]: MetadataValue};
export type MetadataDirective = "COPY"|"REPLACE"|string;
export interface MetadataEntry {
/**
*
*/
Name?: MetadataKey;
/**
*
*/
Value?: MetadataValue;
}
export type MetadataKey = string;
export type MetadataValue = string;
export interface MetricsAndOperator {
/**
* The prefix used when evaluating an AND predicate.
*/
Prefix?: Prefix;
/**
* The list of tags used when evaluating an AND predicate.
*/
Tags?: TagSet;
}
export interface MetricsConfiguration {
/**
* The ID used to identify the metrics configuration.
*/
Id: MetricsId;
/**
* Specifies a metrics configuration filter. The metrics configuration will only include objects that meet the filter's criteria. A filter must be a prefix, a tag, or a conjunction (MetricsAndOperator).
*/
Filter?: MetricsFilter;
}
export type MetricsConfigurationList = MetricsConfiguration[];
export interface MetricsFilter {
/**
* The prefix used when evaluating a metrics filter.
*/
Prefix?: Prefix;
/**
* The tag used when evaluating a metrics filter.
*/
Tag?: Tag;
/**
* A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.
*/
And?: MetricsAndOperator;
}
export type MetricsId = string;
export type MissingMeta = number;
export interface MultipartUpload {
/**
* Upload ID that identifies the multipart upload.
*/
UploadId?: MultipartUploadId;
/**
* Key of the object for which the multipart upload was initiated.
*/
Key?: ObjectKey;
/**
* Date and time at which the multipart upload was initiated.
*/
Initiated?: Initiated;
/**
* The class of storage used to store the object.
*/
StorageClass?: StorageClass;
/**
*
*/
Owner?: Owner;
/**
* Identifies who initiated the multipart upload.
*/
Initiator?: Initiator;
}
export type MultipartUploadId = string;
export type MultipartUploadList = MultipartUpload[];
export type NextKeyMarker = string;
export type NextMarker = string;
export type NextPartNumberMarker = number;
export type NextToken = string;
export type NextUploadIdMarker = string;
export type NextVersionIdMarker = string;
export interface NoncurrentVersionExpiration {
/**
* Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.
*/
NoncurrentDays?: Days;
}
export interface NoncurrentVersionTransition {
/**
* Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.
*/
NoncurrentDays?: Days;
/**
* The class of storage used to store the object.
*/
StorageClass?: TransitionStorageClass;
}
export type NoncurrentVersionTransitionList = NoncurrentVersionTransition[];
export interface NotificationConfiguration {
/**
* The topic to which notifications are sent and the events for which notifications are generated.
*/
TopicConfigurations?: TopicConfigurationList;
/**
* The Amazon Simple Queue Service queues to publish messages to and the events for which to publish messages.
*/
QueueConfigurations?: QueueConfigurationList;
/**
* Describes the AWS Lambda functions to invoke and the events for which to invoke them.
*/
LambdaFunctionConfigurations?: LambdaFunctionConfigurationList;
}
export interface NotificationConfigurationDeprecated {
/**
*
*/
TopicConfiguration?: TopicConfigurationDeprecated;
/**
*
*/
QueueConfiguration?: QueueConfigurationDeprecated;
/**
*
*/
CloudFunctionConfiguration?: CloudFunctionConfiguration;
}
export interface NotificationConfigurationFilter {
/**
*
*/
Key?: S3KeyFilter;
}
export type NotificationId = string;
export interface Object {
/**
*
*/
Key?: ObjectKey;
/**
*
*/
LastModified?: LastModified;
/**
*
*/
ETag?: ETag;
/**
*
*/
Size?: Size;
/**
* The class of storage used to store the object.
*/
StorageClass?: ObjectStorageClass;
/**
*
*/
Owner?: Owner;
}
export type ObjectCannedACL = "private"|"public-read"|"public-read-write"|"authenticated-read"|"aws-exec-read"|"bucket-owner-read"|"bucket-owner-full-control"|string;
export interface ObjectIdentifier {
/**
* Key name of the object to delete.
*/
Key: ObjectKey;
/**
* VersionId for the specific version of the object to delete.
*/
VersionId?: ObjectVersionId;
}
export type ObjectIdentifierList = ObjectIdentifier[];
export type ObjectKey = string;
export type ObjectList = Object[];
export interface ObjectLockConfiguration {
/**
* Indicates whether this bucket has an object lock configuration enabled.
*/
ObjectLockEnabled?: ObjectLockEnabled;
/**
* The object lock rule in place for the specified object.
*/
Rule?: ObjectLockRule;
}
export type ObjectLockEnabled = "Enabled"|string;
export type ObjectLockEnabledForBucket = boolean;
export interface ObjectLockLegalHold {
/**
* Indicates whether the specified object has a Legal Hold in place.
*/
Status?: ObjectLockLegalHoldStatus;
}
export type ObjectLockLegalHoldStatus = "ON"|"OFF"|string;
export type ObjectLockMode = "GOVERNANCE"|"COMPLIANCE"|string;
export type ObjectLockRetainUntilDate = Date;
export interface ObjectLockRetention {
/**
* Indicates the Retention mode for the specified object.
*/
Mode?: ObjectLockRetentionMode;
/**
* The date on which this object lock retention expires.
*/
RetainUntilDate?: _Date;
}
export type ObjectLockRetentionMode = "GOVERNANCE"|"COMPLIANCE"|string;
export interface ObjectLockRule {
/**
* The default retention period that you want to apply to new objects placed in the specified bucket.
*/
DefaultRetention?: DefaultRetention;
}
export type ObjectLockToken = string;
export type ObjectStorageClass = "STANDARD"|"REDUCED_REDUNDANCY"|"GLACIER"|"STANDARD_IA"|"ONEZONE_IA"|"INTELLIGENT_TIERING"|"DEEP_ARCHIVE"|string;
export interface ObjectVersion {
/**
*
*/
ETag?: ETag;
/**
* Size in bytes of the object.
*/
Size?: Size;
/**
* The class of storage used to store the object.
*/
StorageClass?: ObjectVersionStorageClass;
/**
* The object key.
*/
Key?: ObjectKey;
/**
* Version ID of an object.
*/
VersionId?: ObjectVersionId;
/**
* Specifies whether the object is (true) or is not (false) the latest version of an object.
*/
IsLatest?: IsLatest;
/**
* Date and time the object was last modified.
*/
LastModified?: LastModified;
/**
*
*/
Owner?: Owner;
}
export type ObjectVersionId = string;
export type ObjectVersionList = ObjectVersion[];
export type ObjectVersionStorageClass = "STANDARD"|string;
export interface OutputLocation {
/**
* Describes an S3 location that will receive the results of the restore request.
*/
S3?: S3Location;
}
export interface OutputSerialization {
/**
* Describes the serialization of CSV-encoded Select results.
*/
CSV?: CSVOutput;
/**
* Specifies JSON as request's output serialization format.
*/
JSON?: JSONOutput;
}
export interface Owner {
/**
*
*/
DisplayName?: DisplayName;
/**
*
*/
ID?: ID;
}
export type OwnerOverride = "Destination"|string;
export interface ParquetInput {
}
export interface Part {
/**
* Part number identifying the part. This is a positive integer between 1 and 10,000.
*/
PartNumber?: PartNumber;
/**
* Date and time at which the part was uploaded.
*/
LastModified?: LastModified;
/**
* Entity tag returned when the part was uploaded.
*/
ETag?: ETag;
/**
* Size in bytes of the uploaded part data.
*/
Size?: Size;
}
export type PartNumber = number;
export type PartNumberMarker = number;
export type Parts = Part[];
export type PartsCount = number;
export type Payer = "Requester"|"BucketOwner"|string;
export type Permission = "FULL_CONTROL"|"WRITE"|"WRITE_ACP"|"READ"|"READ_ACP"|string;
export type Policy = string;
export interface PolicyStatus {
/**
* The policy status for this bucket. TRUE indicates that this bucket is public. FALSE indicates that the bucket is not public.
*/
IsPublic?: IsPublic;
}
export type Prefix = string;
export type Priority = number;
export interface Progress {
/**
* The current number of object bytes scanned.
*/
BytesScanned?: BytesScanned;
/**
* The current number of uncompressed object bytes processed.
*/
BytesProcessed?: BytesProcessed;
/**
* The current number of bytes of records payload data returned.
*/
BytesReturned?: BytesReturned;
}
export interface ProgressEvent {
/**
* The Progress event details.
*/
Details?: Progress;
}
export type Protocol = "http"|"https"|string;
export interface PublicAccessBlockConfiguration {
/**
* Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public. PUT Object calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
*/
BlockPublicAcls?: Setting;
/**
* Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
*/
IgnorePublicAcls?: Setting;
/**
* Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
*/
BlockPublicPolicy?: Setting;
/**
* Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS services and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
*/
RestrictPublicBuckets?: Setting;
}
export interface PutBucketAccelerateConfigurationRequest {
/**
* Name of the bucket for which the accelerate configuration is set.
*/
Bucket: BucketName;
/**
* Specifies the Accelerate Configuration you want to set for the bucket.
*/
AccelerateConfiguration: AccelerateConfiguration;
}
export interface PutBucketAclRequest {
/**
* The canned ACL to apply to the bucket.
*/
ACL?: BucketCannedACL;
/**
* Contains the elements that set the ACL permissions for an object per grantee.
*/
AccessControlPolicy?: AccessControlPolicy;
/**
*
*/
Bucket: BucketName;
/**
*
*/
ContentMD5?: ContentMD5;
/**
* Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
*/
GrantFullControl?: GrantFullControl;
/**
* Allows grantee to list the objects in the bucket.
*/
GrantRead?: GrantRead;
/**
* Allows grantee to read the bucket ACL.
*/
GrantReadACP?: GrantReadACP;
/**
* Allows grantee to create, overwrite, and delete any object in the bucket.
*/
GrantWrite?: GrantWrite;
/**
* Allows grantee to write the ACL for the applicable bucket.
*/
GrantWriteACP?: GrantWriteACP;
}
export interface PutBucketAnalyticsConfigurationRequest {
/**
* The name of the bucket to which an analytics configuration is stored.
*/
Bucket: BucketName;
/**
* The ID that identifies the analytics configuration.
*/
Id: AnalyticsId;
/**
* The configuration and any analyses for the analytics filter.
*/
AnalyticsConfiguration: AnalyticsConfiguration;
}
export interface PutBucketCorsRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
CORSConfiguration: CORSConfiguration;
/**
*
*/
ContentMD5?: ContentMD5;
}
export interface PutBucketEncryptionRequest {
/**
* Specifies default encryption for a bucket using server-side encryption with Amazon S3-managed keys (SSE-S3) or AWS KMS-managed keys (SSE-KMS). For information about the Amazon S3 default encryption feature, see Amazon S3 Default Bucket Encryption in the Amazon Simple Storage Service Developer Guide.
*/
Bucket: BucketName;
/**
* The base64-encoded 128-bit MD5 digest of the server-side encryption configuration. This parameter is auto-populated when using the command from the CLI.
*/
ContentMD5?: ContentMD5;
/**
*
*/
ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration;
}
export interface PutBucketInventoryConfigurationRequest {
/**
* The name of the bucket where the inventory configuration will be stored.
*/
Bucket: BucketName;
/**
* The ID used to identify the inventory configuration.
*/
Id: InventoryId;
/**
* Specifies the inventory configuration.
*/
InventoryConfiguration: InventoryConfiguration;
}
export interface PutBucketLifecycleConfigurationRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
LifecycleConfiguration?: BucketLifecycleConfiguration;
}
export interface PutBucketLifecycleRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
ContentMD5?: ContentMD5;
/**
*
*/
LifecycleConfiguration?: LifecycleConfiguration;
}
export interface PutBucketLoggingRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
BucketLoggingStatus: BucketLoggingStatus;
/**
*
*/
ContentMD5?: ContentMD5;
}
export interface PutBucketMetricsConfigurationRequest {
/**
* The name of the bucket for which the metrics configuration is set.
*/
Bucket: BucketName;
/**
* The ID used to identify the metrics configuration.
*/
Id: MetricsId;
/**
* Specifies the metrics configuration.
*/
MetricsConfiguration: MetricsConfiguration;
}
export interface PutBucketNotificationConfigurationRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
NotificationConfiguration: NotificationConfiguration;
}
export interface PutBucketNotificationRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
ContentMD5?: ContentMD5;
/**
*
*/
NotificationConfiguration: NotificationConfigurationDeprecated;
}
export interface PutBucketPolicyRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
ContentMD5?: ContentMD5;
/**
* Set this parameter to true to confirm that you want to remove your permissions to change this bucket policy in the future.
*/
ConfirmRemoveSelfBucketAccess?: ConfirmRemoveSelfBucketAccess;
/**
* The bucket policy as a JSON document.
*/
Policy: Policy;
}
export interface PutBucketReplicationRequest {
/**
*
*/
Bucket: BucketName;
/**
* The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit.
*/
ContentMD5?: ContentMD5;
/**
*
*/
ReplicationConfiguration: ReplicationConfiguration;
/**
* A token that allows Amazon S3 object lock to be enabled for an existing bucket.
*/
Token?: ObjectLockToken;
}
export interface PutBucketRequestPaymentRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
ContentMD5?: ContentMD5;
/**
*
*/
RequestPaymentConfiguration: RequestPaymentConfiguration;
}
export interface PutBucketTaggingRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
ContentMD5?: ContentMD5;
/**
*
*/
Tagging: Tagging;
}
export interface PutBucketVersioningRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
ContentMD5?: ContentMD5;
/**
* The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
*/
MFA?: MFA;
/**
*
*/
VersioningConfiguration: VersioningConfiguration;
}
export interface PutBucketWebsiteRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
ContentMD5?: ContentMD5;
/**
*
*/
WebsiteConfiguration: WebsiteConfiguration;
}
export interface PutObjectAclOutput {
RequestCharged?: RequestCharged;
}
export interface PutObjectAclRequest {
/**
* The canned ACL to apply to the object.
*/
ACL?: ObjectCannedACL;
/**
* Contains the elements that set the ACL permissions for an object per grantee.
*/
AccessControlPolicy?: AccessControlPolicy;
/**
*
*/
Bucket: BucketName;
/**
*
*/
ContentMD5?: ContentMD5;
/**
* Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
*/
GrantFullControl?: GrantFullControl;
/**
* Allows grantee to list the objects in the bucket.
*/
GrantRead?: GrantRead;
/**
* Allows grantee to read the bucket ACL.
*/
GrantReadACP?: GrantReadACP;
/**
* Allows grantee to create, overwrite, and delete any object in the bucket.
*/
GrantWrite?: GrantWrite;
/**
* Allows grantee to write the ACL for the applicable bucket.
*/
GrantWriteACP?: GrantWriteACP;
/**
*
*/
Key: ObjectKey;
RequestPayer?: RequestPayer;
/**
* VersionId used to reference a specific version of the object.
*/
VersionId?: ObjectVersionId;
}
export interface PutObjectLegalHoldOutput {
RequestCharged?: RequestCharged;
}
export interface PutObjectLegalHoldRequest {
/**
* The bucket containing the object that you want to place a Legal Hold on.
*/
Bucket: BucketName;
/**
* The key name for the object that you want to place a Legal Hold on.
*/
Key: ObjectKey;
/**
* Container element for the Legal Hold configuration you want to apply to the specified object.
*/
LegalHold?: ObjectLockLegalHold;
RequestPayer?: RequestPayer;
/**
* The version ID of the object that you want to place a Legal Hold on.
*/
VersionId?: ObjectVersionId;
/**
* The MD5 hash for the request body.
*/
ContentMD5?: ContentMD5;
}
export interface PutObjectLockConfigurationOutput {
RequestCharged?: RequestCharged;
}
export interface PutObjectLockConfigurationRequest {
/**
* The bucket whose object lock configuration you want to create or replace.
*/
Bucket: BucketName;
/**
* The object lock configuration that you want to apply to the specified bucket.
*/
ObjectLockConfiguration?: ObjectLockConfiguration;
RequestPayer?: RequestPayer;
/**
* A token to allow Amazon S3 object lock to be enabled for an existing bucket.
*/
Token?: ObjectLockToken;
/**
* The MD5 hash for the request body.
*/
ContentMD5?: ContentMD5;
}
export interface PutObjectOutput {
/**
* If the object expiration is configured, this will contain the expiration date (expiry-date) and rule ID (rule-id). The value of rule-id is URL encoded.
*/
Expiration?: Expiration;
/**
* Entity tag for the uploaded object.
*/
ETag?: ETag;
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* Version of the object.
*/
VersionId?: ObjectVersionId;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
*/
SSEKMSKeyId?: SSEKMSKeyId;
/**
* If present, specifies the AWS KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.
*/
SSEKMSEncryptionContext?: SSEKMSEncryptionContext;
RequestCharged?: RequestCharged;
}
export interface PutObjectRequest {
/**
* The canned ACL to apply to the object.
*/
ACL?: ObjectCannedACL;
/**
* Object data.
*/
Body?: Body;
/**
* Name of the bucket to which the PUT operation was initiated.
*/
Bucket: BucketName;
/**
* Specifies caching behavior along the request/reply chain.
*/
CacheControl?: CacheControl;
/**
* Specifies presentational information for the object.
*/
ContentDisposition?: ContentDisposition;
/**
* Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
*/
ContentEncoding?: ContentEncoding;
/**
* The language the content is in.
*/
ContentLanguage?: ContentLanguage;
/**
* Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.
*/
ContentLength?: ContentLength;
/**
* The base64-encoded 128-bit MD5 digest of the part data. This parameter is auto-populated when using the command from the CLI. This parameted is required if object lock parameters are specified.
*/
ContentMD5?: ContentMD5;
/**
* A standard MIME type describing the format of the object data.
*/
ContentType?: ContentType;
/**
* The date and time at which the object is no longer cacheable.
*/
Expires?: Expires;
/**
* Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
*/
GrantFullControl?: GrantFullControl;
/**
* Allows grantee to read the object data and its metadata.
*/
GrantRead?: GrantRead;
/**
* Allows grantee to read the object ACL.
*/
GrantReadACP?: GrantReadACP;
/**
* Allows grantee to write the ACL for the applicable object.
*/
GrantWriteACP?: GrantWriteACP;
/**
* Object key for which the PUT operation was initiated.
*/
Key: ObjectKey;
/**
* A map of metadata to store with the object in S3.
*/
Metadata?: Metadata;
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* The type of storage to use for the object. Defaults to 'STANDARD'.
*/
StorageClass?: StorageClass;
/**
* If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
*/
WebsiteRedirectLocation?: WebsiteRedirectLocation;
/**
* Specifies the algorithm to use to when encrypting the object (e.g., AES256).
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side-encryption-customer-algorithm header.
*/
SSECustomerKey?: SSECustomerKey;
/**
* Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
*/
SSEKMSKeyId?: SSEKMSKeyId;
/**
* Specifies the AWS KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.
*/
SSEKMSEncryptionContext?: SSEKMSEncryptionContext;
RequestPayer?: RequestPayer;
/**
* The tag-set for the object. The tag-set must be encoded as URL Query parameters. (For example, "Key1=Value1")
*/
Tagging?: TaggingHeader;
/**
* The object lock mode that you want to apply to this object.
*/
ObjectLockMode?: ObjectLockMode;
/**
* The date and time when you want this object's object lock to expire.
*/
ObjectLockRetainUntilDate?: ObjectLockRetainUntilDate;
/**
* The Legal Hold status that you want to apply to the specified object.
*/
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus;
}
export interface PutObjectRetentionOutput {
RequestCharged?: RequestCharged;
}
export interface PutObjectRetentionRequest {
/**
* The bucket that contains the object you want to apply this Object Retention configuration to.
*/
Bucket: BucketName;
/**
* The key name for the object that you want to apply this Object Retention configuration to.
*/
Key: ObjectKey;
/**
* The container element for the Object Retention configuration.
*/
Retention?: ObjectLockRetention;
RequestPayer?: RequestPayer;
/**
* The version ID for the object that you want to apply this Object Retention configuration to.
*/
VersionId?: ObjectVersionId;
/**
* Indicates whether this operation should bypass Governance-mode restrictions.j
*/
BypassGovernanceRetention?: BypassGovernanceRetention;
/**
* The MD5 hash for the request body.
*/
ContentMD5?: ContentMD5;
}
export interface PutObjectTaggingOutput {
/**
*
*/
VersionId?: ObjectVersionId;
}
export interface PutObjectTaggingRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
Key: ObjectKey;
/**
*
*/
VersionId?: ObjectVersionId;
/**
*
*/
ContentMD5?: ContentMD5;
/**
*
*/
Tagging: Tagging;
}
export interface PutPublicAccessBlockRequest {
/**
* The name of the Amazon S3 bucket whose PublicAccessBlock configuration you want to set.
*/
Bucket: BucketName;
/**
* The MD5 hash of the PutPublicAccessBlock request body.
*/
ContentMD5?: ContentMD5;
/**
* The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see The Meaning of "Public" in the Amazon Simple Storage Service Developer Guide.
*/
PublicAccessBlockConfiguration: PublicAccessBlockConfiguration;
}
export type QueueArn = string;
export interface QueueConfiguration {
Id?: NotificationId;
/**
* The Amazon Resource Name (ARN) of the Amazon SQS queue to which Amazon S3 publishes a message when it detects events of the specified type.
*/
QueueArn: QueueArn;
/**
*
*/
Events: EventList;
/**
*
*/
Filter?: NotificationConfigurationFilter;
}
export interface QueueConfigurationDeprecated {
Id?: NotificationId;
Event?: Event;
/**
*
*/
Events?: EventList;
/**
*
*/
Queue?: QueueArn;
}
export type QueueConfigurationList = QueueConfiguration[];
export type Quiet = boolean;
export type QuoteCharacter = string;
export type QuoteEscapeCharacter = string;
export type QuoteFields = "ALWAYS"|"ASNEEDED"|string;
export type Range = string;
export type RecordDelimiter = string;
export interface RecordsEvent {
/**
* The byte array of partial, one or more result records.
*/
Payload?: Buffer;
}
export interface Redirect {
/**
* The host name to use in the redirect request.
*/
HostName?: HostName;
/**
* The HTTP redirect code to use on the response. Not required if one of the siblings is present.
*/
HttpRedirectCode?: HttpRedirectCode;
/**
* Protocol to use when redirecting requests. The default is the protocol that is used in the original request.
*/
Protocol?: Protocol;
/**
* The object key prefix to use in the redirect request. For example, to redirect requests for all pages with prefix docs/ (objects in the docs/ folder) to documents/, you can set a condition block with KeyPrefixEquals set to docs/ and in the Redirect set ReplaceKeyPrefixWith to /documents. Not required if one of the siblings is present. Can be present only if ReplaceKeyWith is not provided.
*/
ReplaceKeyPrefixWith?: ReplaceKeyPrefixWith;
/**
* The specific object key to use in the redirect request. For example, redirect request to error.html. Not required if one of the siblings is present. Can be present only if ReplaceKeyPrefixWith is not provided.
*/
ReplaceKeyWith?: ReplaceKeyWith;
}
export interface RedirectAllRequestsTo {
/**
* Name of the host where requests are redirected.
*/
HostName: HostName;
/**
* Protocol to use when redirecting requests. The default is the protocol that is used in the original request.
*/
Protocol?: Protocol;
}
export type ReplaceKeyPrefixWith = string;
export type ReplaceKeyWith = string;
export type ReplicaKmsKeyID = string;
export interface ReplicationConfiguration {
/**
* The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that Amazon S3 assumes when replicating objects. For more information, see How to Set Up Cross-Region Replication in the Amazon Simple Storage Service Developer Guide.
*/
Role: Role;
/**
* A container for one or more replication rules. A replication configuration must have at least one rule and can contain a maximum of 1,000 rules.
*/
Rules: ReplicationRules;
}
export interface ReplicationRule {
/**
* A unique identifier for the rule. The maximum value is 255 characters.
*/
ID?: ID;
/**
* The priority associated with the rule. If you specify multiple rules in a replication configuration, Amazon S3 prioritizes the rules to prevent conflicts when filtering. If two or more rules identify the same object based on a specified filter, the rule with higher priority takes precedence. For example: Same object quality prefix based filter criteria If prefixes you specified in multiple rules overlap Same object qualify tag based filter criteria specified in multiple rules For more information, see Cross-Region Replication (CRR) in the Amazon S3 Developer Guide.
*/
Priority?: Priority;
/**
* An object keyname prefix that identifies the object or objects to which the rule applies. The maximum prefix length is 1,024 characters. To include all objects in a bucket, specify an empty string.
*/
Prefix?: Prefix;
/**
*
*/
Filter?: ReplicationRuleFilter;
/**
* Specifies whether the rule is enabled.
*/
Status: ReplicationRuleStatus;
/**
* A container that describes additional filters for identifying the source objects that you want to replicate. You can choose to enable or disable the replication of these objects. Currently, Amazon S3 supports only the filter that you can specify for objects created with server-side encryption using an AWS KMS-Managed Key (SSE-KMS).
*/
SourceSelectionCriteria?: SourceSelectionCriteria;
/**
* A container for information about the replication destination.
*/
Destination: Destination;
/**
*
*/
DeleteMarkerReplication?: DeleteMarkerReplication;
}
export interface ReplicationRuleAndOperator {
/**
*
*/
Prefix?: Prefix;
/**
*
*/
Tags?: TagSet;
}
export interface ReplicationRuleFilter {
/**
* An object keyname prefix that identifies the subset of objects to which the rule applies.
*/
Prefix?: Prefix;
/**
* A container for specifying a tag key and value. The rule applies only to objects that have the tag in their tag set.
*/
Tag?: Tag;
/**
* A container for specifying rule filters. The filters determine the subset of objects to which the rule applies. This element is required only if you specify more than one filter. For example: If you specify both a Prefix and a Tag filter, wrap these filters in an And tag. If you specify a filter based on multiple tags, wrap the Tag elements in an And tag.
*/
And?: ReplicationRuleAndOperator;
}
export type ReplicationRuleStatus = "Enabled"|"Disabled"|string;
export type ReplicationRules = ReplicationRule[];
export type ReplicationStatus = "COMPLETE"|"PENDING"|"FAILED"|"REPLICA"|string;
export type RequestCharged = "requester"|string;
export type RequestPayer = "requester"|string;
export interface RequestPaymentConfiguration {
/**
* Specifies who pays for the download and request fees.
*/
Payer: Payer;
}
export interface RequestProgress {
/**
* Specifies whether periodic QueryProgress frames should be sent. Valid values: TRUE, FALSE. Default value: FALSE.
*/
Enabled?: EnableRequestProgress;
}
export type ResponseCacheControl = string;
export type ResponseContentDisposition = string;
export type ResponseContentEncoding = string;
export type ResponseContentLanguage = string;
export type ResponseContentType = string;
export type ResponseExpires = Date;
export type Restore = string;
export interface RestoreObjectOutput {
RequestCharged?: RequestCharged;
/**
* Indicates the path in the provided S3 output location where Select results will be restored to.
*/
RestoreOutputPath?: RestoreOutputPath;
}
export interface RestoreObjectRequest {
/**
*
*/
Bucket: BucketName;
/**
*
*/
Key: ObjectKey;
/**
*
*/
VersionId?: ObjectVersionId;
/**
*
*/
RestoreRequest?: RestoreRequest;
RequestPayer?: RequestPayer;
}
export type RestoreOutputPath = string;
export interface RestoreRequest {
/**
* Lifetime of the active copy in days. Do not use with restores that specify OutputLocation.
*/
Days?: Days;
/**
* Glacier related parameters pertaining to this job. Do not use with restores that specify OutputLocation.
*/
GlacierJobParameters?: GlacierJobParameters;
/**
* Type of restore request.
*/
Type?: RestoreRequestType;
/**
* Glacier retrieval tier at which the restore will be processed.
*/
Tier?: Tier;
/**
* The optional description for the job.
*/
Description?: Description;
/**
* Describes the parameters for Select job types.
*/
SelectParameters?: SelectParameters;
/**
* Describes the location where the restore job's output is stored.
*/
OutputLocation?: OutputLocation;
}
export type RestoreRequestType = "SELECT"|string;
export type Role = string;
export interface RoutingRule {
/**
* A container for describing a condition that must be met for the specified redirect to apply. For example, 1. If request is for pages in the /docs folder, redirect to the /documents folder. 2. If request results in HTTP error 4xx, redirect request to another host where you might process the error.
*/
Condition?: Condition;
/**
* Container for redirect information. You can redirect requests to another host, to another page, or with another protocol. In the event of an error, you can specify a different error code to return.
*/
Redirect: Redirect;
}
export type RoutingRules = RoutingRule[];
export interface Rule {
/**
*
*/
Expiration?: LifecycleExpiration;
/**
* Unique identifier for the rule. The value can't be longer than 255 characters.
*/
ID?: ID;
/**
* Object key prefix that identifies one or more objects to which this rule applies.
*/
Prefix: Prefix;
/**
* If Enabled, the rule is currently being applied. If Disabled, the rule is not currently being applied.
*/
Status: ExpirationStatus;
/**
*
*/
Transition?: Transition;
/**
*
*/
NoncurrentVersionTransition?: NoncurrentVersionTransition;
/**
*
*/
NoncurrentVersionExpiration?: NoncurrentVersionExpiration;
/**
*
*/
AbortIncompleteMultipartUpload?: AbortIncompleteMultipartUpload;
}
export type Rules = Rule[];
export interface S3KeyFilter {
/**
*
*/
FilterRules?: FilterRuleList;
}
export interface S3Location {
/**
* The name of the bucket where the restore results will be placed.
*/
BucketName: BucketName;
/**
* The prefix that is prepended to the restore results for this request.
*/
Prefix: LocationPrefix;
/**
*
*/
Encryption?: Encryption;
/**
* The canned ACL to apply to the restore results.
*/
CannedACL?: ObjectCannedACL;
/**
* A list of grants that control access to the staged results.
*/
AccessControlList?: Grants;
/**
* The tag-set that is applied to the restore results.
*/
Tagging?: Tagging;
/**
* A list of metadata to store with the restore results in S3.
*/
UserMetadata?: UserMetadata;
/**
* The class of storage used to store the restore results.
*/
StorageClass?: StorageClass;
}
export type SSECustomerAlgorithm = string;
export type SSECustomerKey = Buffer|Uint8Array|Blob|string;
export type SSECustomerKeyMD5 = string;
export interface SSEKMS {
/**
* Specifies the ID of the AWS Key Management Service (KMS) master encryption key to use for encrypting Inventory reports.
*/
KeyId: SSEKMSKeyId;
}
export type SSEKMSEncryptionContext = string;
export type SSEKMSKeyId = string;
export interface SSES3 {
}
export interface ScanRange {
/**
* Specifies the start of the byte range. This parameter is optional. Valid values: non-negative integers. The default value is 0.
*/
Start?: Start;
/**
* Specifies the end of the byte range. This parameter is optional. Valid values: non-negative integers. The default value is one less than the size of the object being queried.
*/
End?: End;
}
export type SelectObjectContentEventStream = EventStream<{Records?:RecordsEvent,Stats?:StatsEvent,Progress?:ProgressEvent,Cont?:ContinuationEvent,End?:EndEvent}>;
export interface SelectObjectContentOutput {
/**
*
*/
Payload?: SelectObjectContentEventStream;
}
export interface SelectObjectContentRequest {
/**
* The S3 bucket.
*/
Bucket: BucketName;
/**
* The object key.
*/
Key: ObjectKey;
/**
* The SSE Algorithm used to encrypt the object. For more information, see Server-Side Encryption (Using Customer-Provided Encryption Keys.
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* The SSE Customer Key. For more information, see Server-Side Encryption (Using Customer-Provided Encryption Keys.
*/
SSECustomerKey?: SSECustomerKey;
/**
* The SSE Customer Key MD5. For more information, see Server-Side Encryption (Using Customer-Provided Encryption Keys.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* The expression that is used to query the object.
*/
Expression: Expression;
/**
* The type of the provided expression (for example., SQL).
*/
ExpressionType: ExpressionType;
/**
* Specifies if periodic request progress information should be enabled.
*/
RequestProgress?: RequestProgress;
/**
* Describes the format of the data in the object that is being queried.
*/
InputSerialization: InputSerialization;
/**
* Describes the format of the data that you want Amazon S3 to return in response.
*/
OutputSerialization: OutputSerialization;
/**
* Specifies the byte range of the object to get the records from. A record is processed when its first byte is contained by the range. This parameter is optional, but when specified, it must not be empty. See RFC 2616, Section 14.35.1 about how to specify the start and end of the range.
*/
ScanRange?: ScanRange;
}
export interface SelectParameters {
/**
* Describes the serialization format of the object.
*/
InputSerialization: InputSerialization;
/**
* The type of the provided expression (e.g., SQL).
*/
ExpressionType: ExpressionType;
/**
* The expression that is used to query the object.
*/
Expression: Expression;
/**
* Describes how the results of the Select job are serialized.
*/
OutputSerialization: OutputSerialization;
}
export type ServerSideEncryption = "AES256"|"aws:kms"|string;
export interface ServerSideEncryptionByDefault {
/**
* Server-side encryption algorithm to use for the default encryption.
*/
SSEAlgorithm: ServerSideEncryption;
/**
* KMS master key ID to use for the default encryption. This parameter is allowed if and only if SSEAlgorithm is set to aws:kms.
*/
KMSMasterKeyID?: SSEKMSKeyId;
}
export interface ServerSideEncryptionConfiguration {
/**
* Container for information about a particular server-side encryption configuration rule.
*/
Rules: ServerSideEncryptionRules;
}
export interface ServerSideEncryptionRule {
/**
* Specifies the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied.
*/
ApplyServerSideEncryptionByDefault?: ServerSideEncryptionByDefault;
}
export type ServerSideEncryptionRules = ServerSideEncryptionRule[];
export type Setting = boolean;
export type Size = number;
export interface SourceSelectionCriteria {
/**
* A container for filter information for the selection of Amazon S3 objects encrypted with AWS KMS. If you include SourceSelectionCriteria in the replication configuration, this element is required.
*/
SseKmsEncryptedObjects?: SseKmsEncryptedObjects;
}
export interface SseKmsEncryptedObjects {
/**
* Specifies whether Amazon S3 replicates objects created with server-side encryption using an AWS KMS-managed key.
*/
Status: SseKmsEncryptedObjectsStatus;
}
export type SseKmsEncryptedObjectsStatus = "Enabled"|"Disabled"|string;
export type Start = number;
export type StartAfter = string;
export interface Stats {
/**
* The total number of object bytes scanned.
*/
BytesScanned?: BytesScanned;
/**
* The total number of uncompressed object bytes processed.
*/
BytesProcessed?: BytesProcessed;
/**
* The total number of bytes of records payload data returned.
*/
BytesReturned?: BytesReturned;
}
export interface StatsEvent {
/**
* The Stats event details.
*/
Details?: Stats;
}
export type StorageClass = "STANDARD"|"REDUCED_REDUNDANCY"|"STANDARD_IA"|"ONEZONE_IA"|"INTELLIGENT_TIERING"|"GLACIER"|"DEEP_ARCHIVE"|string;
export interface StorageClassAnalysis {
/**
* Specifies how data related to the storage class analysis for an Amazon S3 bucket should be exported.
*/
DataExport?: StorageClassAnalysisDataExport;
}
export interface StorageClassAnalysisDataExport {
/**
* The version of the output schema to use when exporting data. Must be V_1.
*/
OutputSchemaVersion: StorageClassAnalysisSchemaVersion;
/**
* The place to store the data for an analysis.
*/
Destination: AnalyticsExportDestination;
}
export type StorageClassAnalysisSchemaVersion = "V_1"|string;
export type Suffix = string;
export interface Tag {
/**
* Name of the tag.
*/
Key: ObjectKey;
/**
* Value of the tag.
*/
Value: Value;
}
export type TagCount = number;
export type TagSet = Tag[];
export interface Tagging {
/**
*
*/
TagSet: TagSet;
}
export type TaggingDirective = "COPY"|"REPLACE"|string;
export type TaggingHeader = string;
export type TargetBucket = string;
export interface TargetGrant {
/**
*
*/
Grantee?: Grantee;
/**
* Logging permissions assigned to the Grantee for the bucket.
*/
Permission?: BucketLogsPermission;
}
export type TargetGrants = TargetGrant[];
export type TargetPrefix = string;
export type Tier = "Standard"|"Bulk"|"Expedited"|string;
export type Token = string;
export type TopicArn = string;
export interface TopicConfiguration {
Id?: NotificationId;
/**
* The Amazon Resource Name (ARN) of the Amazon SNS topic to which Amazon S3 publishes a message when it detects events of the specified type.
*/
TopicArn: TopicArn;
/**
* The Amazon S3 bucket event about which to send notifications. For more information, see Supported Event Types in the Amazon Simple Storage Service Developer Guide.
*/
Events: EventList;
/**
*
*/
Filter?: NotificationConfigurationFilter;
}
export interface TopicConfigurationDeprecated {
Id?: NotificationId;
/**
*
*/
Events?: EventList;
/**
* Bucket event for which to send notifications.
*/
Event?: Event;
/**
* Amazon SNS topic to which Amazon S3 will publish a message to report the specified events for the bucket.
*/
Topic?: TopicArn;
}
export type TopicConfigurationList = TopicConfiguration[];
export interface Transition {
/**
* Indicates when objects are transitioned to the specified storage class. The date value must be in ISO 8601 format. The time is always midnight UTC.
*/
Date?: _Date;
/**
* Indicates the number of days after creation when objects are transitioned to the specified storage class. The value must be a positive integer.
*/
Days?: Days;
/**
* The storage class to which you want the object to transition.
*/
StorageClass?: TransitionStorageClass;
}
export type TransitionList = Transition[];
export type TransitionStorageClass = "GLACIER"|"STANDARD_IA"|"ONEZONE_IA"|"INTELLIGENT_TIERING"|"DEEP_ARCHIVE"|string;
export type Type = "CanonicalUser"|"AmazonCustomerByEmail"|"Group"|string;
export type URI = string;
export type UploadIdMarker = string;
export interface UploadPartCopyOutput {
/**
* The version of the source object that was copied, if you have enabled versioning on the source bucket.
*/
CopySourceVersionId?: CopySourceVersionId;
/**
*
*/
CopyPartResult?: CopyPartResult;
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
*/
SSEKMSKeyId?: SSEKMSKeyId;
RequestCharged?: RequestCharged;
}
export interface UploadPartCopyRequest {
/**
*
*/
Bucket: BucketName;
/**
* The name of the source bucket and key name of the source object, separated by a slash (/). Must be URL-encoded.
*/
CopySource: CopySource;
/**
* Copies the object if its entity tag (ETag) matches the specified tag.
*/
CopySourceIfMatch?: CopySourceIfMatch;
/**
* Copies the object if it has been modified since the specified time.
*/
CopySourceIfModifiedSince?: CopySourceIfModifiedSince;
/**
* Copies the object if its entity tag (ETag) is different than the specified ETag.
*/
CopySourceIfNoneMatch?: CopySourceIfNoneMatch;
/**
* Copies the object if it hasn't been modified since the specified time.
*/
CopySourceIfUnmodifiedSince?: CopySourceIfUnmodifiedSince;
/**
* The range of bytes to copy from the source object. The range value must use the form bytes=first-last, where the first and last are the zero-based byte offsets to copy. For example, bytes=0-9 indicates that you want to copy the first ten bytes of the source. You can copy a range only if the source object is greater than 5 MB.
*/
CopySourceRange?: CopySourceRange;
/**
*
*/
Key: ObjectKey;
/**
* Part number of part being copied. This is a positive integer between 1 and 10,000.
*/
PartNumber: PartNumber;
/**
* Upload ID identifying the multipart upload whose part is being copied.
*/
UploadId: MultipartUploadId;
/**
* Specifies the algorithm to use to when encrypting the object (e.g., AES256).
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side-encryption-customer-algorithm header. This must be the same encryption key specified in the initiate multipart upload request.
*/
SSECustomerKey?: SSECustomerKey;
/**
* Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* Specifies the algorithm to use when decrypting the source object (e.g., AES256).
*/
CopySourceSSECustomerAlgorithm?: CopySourceSSECustomerAlgorithm;
/**
* Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created.
*/
CopySourceSSECustomerKey?: CopySourceSSECustomerKey;
/**
* Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.
*/
CopySourceSSECustomerKeyMD5?: CopySourceSSECustomerKeyMD5;
RequestPayer?: RequestPayer;
}
export interface UploadPartOutput {
/**
* The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/
ServerSideEncryption?: ServerSideEncryption;
/**
* Entity tag for the uploaded object.
*/
ETag?: ETag;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
/**
* If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
*/
SSEKMSKeyId?: SSEKMSKeyId;
RequestCharged?: RequestCharged;
}
export interface UploadPartRequest {
/**
* Object data.
*/
Body?: Body;
/**
* Name of the bucket to which the multipart upload was initiated.
*/
Bucket: BucketName;
/**
* Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.
*/
ContentLength?: ContentLength;
/**
* The base64-encoded 128-bit MD5 digest of the part data. This parameter is auto-populated when using the command from the CLI. This parameted is required if object lock parameters are specified.
*/
ContentMD5?: ContentMD5;
/**
* Object key for which the multipart upload was initiated.
*/
Key: ObjectKey;
/**
* Part number of part being uploaded. This is a positive integer between 1 and 10,000.
*/
PartNumber: PartNumber;
/**
* Upload ID identifying the multipart upload whose part is being uploaded.
*/
UploadId: MultipartUploadId;
/**
* Specifies the algorithm to use to when encrypting the object (e.g., AES256).
*/
SSECustomerAlgorithm?: SSECustomerAlgorithm;
/**
* Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side-encryption-customer-algorithm header. This must be the same encryption key specified in the initiate multipart upload request.
*/
SSECustomerKey?: SSECustomerKey;
/**
* Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.
*/
SSECustomerKeyMD5?: SSECustomerKeyMD5;
RequestPayer?: RequestPayer;
}
export type UserMetadata = MetadataEntry[];
export type Value = string;
export type VersionIdMarker = string;
export interface VersioningConfiguration {
/**
* Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is only returned if the bucket has been configured with MFA delete. If the bucket has never been so configured, this element is not returned.
*/
MFADelete?: MFADelete;
/**
* The versioning state of the bucket.
*/
Status?: BucketVersioningStatus;
}
export interface WebsiteConfiguration {
/**
* The name of the error document for the website.
*/
ErrorDocument?: ErrorDocument;
/**
* The name of the index document for the website.
*/
IndexDocument?: IndexDocument;
/**
* The redirect behavior for every request to this bucket's website endpoint. If you specify this property, you can't specify any other property.
*/
RedirectAllRequestsTo?: RedirectAllRequestsTo;
/**
* Rules that define when a redirect is applied and the redirect behavior.
*/
RoutingRules?: RoutingRules;
}
export type WebsiteRedirectLocation = string;
export type Years = number;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2006-03-01"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & UseDualstackConfigOptions & ClientApiVersions;
/**
* Contains interfaces for use with the S3 client.
*/
export import Types = S3;
}
export = S3;