cloudfront.d.ts
155 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
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {CloudFrontCustomizations} from '../lib/services/cloudfront';
import {WaiterConfiguration} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
import {Signer as signer} from '../lib/cloudfront/signer';
interface Blob {}
declare class CloudFront extends CloudFrontCustomizations {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: CloudFront.Types.ClientConfiguration)
config: Config & CloudFront.Types.ClientConfiguration;
/**
* Creates a new origin access identity. If you're using Amazon S3 for your origin, you can use an origin access identity to require users to access your content using a CloudFront URL instead of the Amazon S3 URL. For more information about how to use origin access identities, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
*/
createCloudFrontOriginAccessIdentity(params: CloudFront.Types.CreateCloudFrontOriginAccessIdentityRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.CreateCloudFrontOriginAccessIdentityResult, AWSError>;
/**
* Creates a new origin access identity. If you're using Amazon S3 for your origin, you can use an origin access identity to require users to access your content using a CloudFront URL instead of the Amazon S3 URL. For more information about how to use origin access identities, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
*/
createCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: CloudFront.Types.CreateCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.CreateCloudFrontOriginAccessIdentityResult, AWSError>;
/**
* Creates a new web distribution. You create a CloudFront distribution to tell CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery. Send a POST request to the /CloudFront API version/distribution/distribution ID resource. When you update a distribution, there are more required fields than when you create a distribution. When you update your distribution by using UpdateDistribution, follow the steps included in the documentation to get the current configuration and then make your updates. This helps to make sure that you include all of the required fields. To view a summary, see Required Fields for Create Distribution and Update Distribution in the Amazon CloudFront Developer Guide.
*/
createDistribution(params: CloudFront.Types.CreateDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionResult) => void): Request<CloudFront.Types.CreateDistributionResult, AWSError>;
/**
* Creates a new web distribution. You create a CloudFront distribution to tell CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery. Send a POST request to the /CloudFront API version/distribution/distribution ID resource. When you update a distribution, there are more required fields than when you create a distribution. When you update your distribution by using UpdateDistribution, follow the steps included in the documentation to get the current configuration and then make your updates. This helps to make sure that you include all of the required fields. To view a summary, see Required Fields for Create Distribution and Update Distribution in the Amazon CloudFront Developer Guide.
*/
createDistribution(callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionResult) => void): Request<CloudFront.Types.CreateDistributionResult, AWSError>;
/**
* Create a new distribution with tags.
*/
createDistributionWithTags(params: CloudFront.Types.CreateDistributionWithTagsRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateDistributionWithTagsResult, AWSError>;
/**
* Create a new distribution with tags.
*/
createDistributionWithTags(callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateDistributionWithTagsResult, AWSError>;
/**
* Create a new field-level encryption configuration.
*/
createFieldLevelEncryptionConfig(params: CloudFront.Types.CreateFieldLevelEncryptionConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.CreateFieldLevelEncryptionConfigResult, AWSError>;
/**
* Create a new field-level encryption configuration.
*/
createFieldLevelEncryptionConfig(callback?: (err: AWSError, data: CloudFront.Types.CreateFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.CreateFieldLevelEncryptionConfigResult, AWSError>;
/**
* Create a field-level encryption profile.
*/
createFieldLevelEncryptionProfile(params: CloudFront.Types.CreateFieldLevelEncryptionProfileRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.CreateFieldLevelEncryptionProfileResult, AWSError>;
/**
* Create a field-level encryption profile.
*/
createFieldLevelEncryptionProfile(callback?: (err: AWSError, data: CloudFront.Types.CreateFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.CreateFieldLevelEncryptionProfileResult, AWSError>;
/**
* Create a new invalidation.
*/
createInvalidation(params: CloudFront.Types.CreateInvalidationRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateInvalidationResult) => void): Request<CloudFront.Types.CreateInvalidationResult, AWSError>;
/**
* Create a new invalidation.
*/
createInvalidation(callback?: (err: AWSError, data: CloudFront.Types.CreateInvalidationResult) => void): Request<CloudFront.Types.CreateInvalidationResult, AWSError>;
/**
* Add a new public key to CloudFront to use, for example, for field-level encryption. You can add a maximum of 10 public keys with one AWS account.
*/
createPublicKey(params: CloudFront.Types.CreatePublicKeyRequest, callback?: (err: AWSError, data: CloudFront.Types.CreatePublicKeyResult) => void): Request<CloudFront.Types.CreatePublicKeyResult, AWSError>;
/**
* Add a new public key to CloudFront to use, for example, for field-level encryption. You can add a maximum of 10 public keys with one AWS account.
*/
createPublicKey(callback?: (err: AWSError, data: CloudFront.Types.CreatePublicKeyResult) => void): Request<CloudFront.Types.CreatePublicKeyResult, AWSError>;
/**
* Creates a new RTMP distribution. An RTMP distribution is similar to a web distribution, but an RTMP distribution streams media files using the Adobe Real-Time Messaging Protocol (RTMP) instead of serving files using HTTP. To create a new distribution, submit a POST request to the CloudFront API version/distribution resource. The request body must include a document with a StreamingDistributionConfig element. The response echoes the StreamingDistributionConfig element and returns other information about the RTMP distribution. To get the status of your request, use the GET StreamingDistribution API action. When the value of Enabled is true and the value of Status is Deployed, your distribution is ready. A distribution usually deploys in less than 15 minutes. For more information about web distributions, see Working with RTMP Distributions in the Amazon CloudFront Developer Guide. Beginning with the 2012-05-05 version of the CloudFront API, we made substantial changes to the format of the XML document that you include in the request body when you create or update a web distribution or an RTMP distribution, and when you invalidate objects. With previous versions of the API, we discovered that it was too easy to accidentally delete one or more values for an element that accepts multiple values, for example, CNAMEs and trusted signers. Our changes for the 2012-05-05 release are intended to prevent these accidental deletions and to notify you when there's a mismatch between the number of values you say you're specifying in the Quantity element and the number of values specified.
*/
createStreamingDistribution(params: CloudFront.Types.CreateStreamingDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateStreamingDistributionResult) => void): Request<CloudFront.Types.CreateStreamingDistributionResult, AWSError>;
/**
* Creates a new RTMP distribution. An RTMP distribution is similar to a web distribution, but an RTMP distribution streams media files using the Adobe Real-Time Messaging Protocol (RTMP) instead of serving files using HTTP. To create a new distribution, submit a POST request to the CloudFront API version/distribution resource. The request body must include a document with a StreamingDistributionConfig element. The response echoes the StreamingDistributionConfig element and returns other information about the RTMP distribution. To get the status of your request, use the GET StreamingDistribution API action. When the value of Enabled is true and the value of Status is Deployed, your distribution is ready. A distribution usually deploys in less than 15 minutes. For more information about web distributions, see Working with RTMP Distributions in the Amazon CloudFront Developer Guide. Beginning with the 2012-05-05 version of the CloudFront API, we made substantial changes to the format of the XML document that you include in the request body when you create or update a web distribution or an RTMP distribution, and when you invalidate objects. With previous versions of the API, we discovered that it was too easy to accidentally delete one or more values for an element that accepts multiple values, for example, CNAMEs and trusted signers. Our changes for the 2012-05-05 release are intended to prevent these accidental deletions and to notify you when there's a mismatch between the number of values you say you're specifying in the Quantity element and the number of values specified.
*/
createStreamingDistribution(callback?: (err: AWSError, data: CloudFront.Types.CreateStreamingDistributionResult) => void): Request<CloudFront.Types.CreateStreamingDistributionResult, AWSError>;
/**
* Create a new streaming distribution with tags.
*/
createStreamingDistributionWithTags(params: CloudFront.Types.CreateStreamingDistributionWithTagsRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateStreamingDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateStreamingDistributionWithTagsResult, AWSError>;
/**
* Create a new streaming distribution with tags.
*/
createStreamingDistributionWithTags(callback?: (err: AWSError, data: CloudFront.Types.CreateStreamingDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateStreamingDistributionWithTagsResult, AWSError>;
/**
* Delete an origin access identity.
*/
deleteCloudFrontOriginAccessIdentity(params: CloudFront.Types.DeleteCloudFrontOriginAccessIdentityRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Delete an origin access identity.
*/
deleteCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Delete a distribution.
*/
deleteDistribution(params: CloudFront.Types.DeleteDistributionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Delete a distribution.
*/
deleteDistribution(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Remove a field-level encryption configuration.
*/
deleteFieldLevelEncryptionConfig(params: CloudFront.Types.DeleteFieldLevelEncryptionConfigRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Remove a field-level encryption configuration.
*/
deleteFieldLevelEncryptionConfig(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Remove a field-level encryption profile.
*/
deleteFieldLevelEncryptionProfile(params: CloudFront.Types.DeleteFieldLevelEncryptionProfileRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Remove a field-level encryption profile.
*/
deleteFieldLevelEncryptionProfile(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Remove a public key you previously added to CloudFront.
*/
deletePublicKey(params: CloudFront.Types.DeletePublicKeyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Remove a public key you previously added to CloudFront.
*/
deletePublicKey(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Delete a streaming distribution. To delete an RTMP distribution using the CloudFront API, perform the following steps. To delete an RTMP distribution using the CloudFront API: Disable the RTMP distribution. Submit a GET Streaming Distribution Config request to get the current configuration and the Etag header for the distribution. Update the XML document that was returned in the response to your GET Streaming Distribution Config request to change the value of Enabled to false. Submit a PUT Streaming Distribution Config request to update the configuration for your distribution. In the request body, include the XML document that you updated in Step 3. Then set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GET Streaming Distribution Config request in Step 2. Review the response to the PUT Streaming Distribution Config request to confirm that the distribution was successfully disabled. Submit a GET Streaming Distribution Config request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed. Submit a DELETE Streaming Distribution request. Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GET Streaming Distribution Config request in Step 2. Review the response to your DELETE Streaming Distribution request to confirm that the distribution was successfully deleted. For information about deleting a distribution using the CloudFront console, see Deleting a Distribution in the Amazon CloudFront Developer Guide.
*/
deleteStreamingDistribution(params: CloudFront.Types.DeleteStreamingDistributionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Delete a streaming distribution. To delete an RTMP distribution using the CloudFront API, perform the following steps. To delete an RTMP distribution using the CloudFront API: Disable the RTMP distribution. Submit a GET Streaming Distribution Config request to get the current configuration and the Etag header for the distribution. Update the XML document that was returned in the response to your GET Streaming Distribution Config request to change the value of Enabled to false. Submit a PUT Streaming Distribution Config request to update the configuration for your distribution. In the request body, include the XML document that you updated in Step 3. Then set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GET Streaming Distribution Config request in Step 2. Review the response to the PUT Streaming Distribution Config request to confirm that the distribution was successfully disabled. Submit a GET Streaming Distribution Config request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed. Submit a DELETE Streaming Distribution request. Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GET Streaming Distribution Config request in Step 2. Review the response to your DELETE Streaming Distribution request to confirm that the distribution was successfully deleted. For information about deleting a distribution using the CloudFront console, see Deleting a Distribution in the Amazon CloudFront Developer Guide.
*/
deleteStreamingDistribution(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Get the information about an origin access identity.
*/
getCloudFrontOriginAccessIdentity(params: CloudFront.Types.GetCloudFrontOriginAccessIdentityRequest, callback?: (err: AWSError, data: CloudFront.Types.GetCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.GetCloudFrontOriginAccessIdentityResult, AWSError>;
/**
* Get the information about an origin access identity.
*/
getCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: CloudFront.Types.GetCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.GetCloudFrontOriginAccessIdentityResult, AWSError>;
/**
* Get the configuration information about an origin access identity.
*/
getCloudFrontOriginAccessIdentityConfig(params: CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigResult) => void): Request<CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigResult, AWSError>;
/**
* Get the configuration information about an origin access identity.
*/
getCloudFrontOriginAccessIdentityConfig(callback?: (err: AWSError, data: CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigResult) => void): Request<CloudFront.Types.GetCloudFrontOriginAccessIdentityConfigResult, AWSError>;
/**
* Get the information about a distribution.
*/
getDistribution(params: CloudFront.Types.GetDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.GetDistributionResult) => void): Request<CloudFront.Types.GetDistributionResult, AWSError>;
/**
* Get the information about a distribution.
*/
getDistribution(callback?: (err: AWSError, data: CloudFront.Types.GetDistributionResult) => void): Request<CloudFront.Types.GetDistributionResult, AWSError>;
/**
* Get the configuration information about a distribution.
*/
getDistributionConfig(params: CloudFront.Types.GetDistributionConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetDistributionConfigResult) => void): Request<CloudFront.Types.GetDistributionConfigResult, AWSError>;
/**
* Get the configuration information about a distribution.
*/
getDistributionConfig(callback?: (err: AWSError, data: CloudFront.Types.GetDistributionConfigResult) => void): Request<CloudFront.Types.GetDistributionConfigResult, AWSError>;
/**
* Get the field-level encryption configuration information.
*/
getFieldLevelEncryption(params: CloudFront.Types.GetFieldLevelEncryptionRequest, callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionResult, AWSError>;
/**
* Get the field-level encryption configuration information.
*/
getFieldLevelEncryption(callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionResult, AWSError>;
/**
* Get the field-level encryption configuration information.
*/
getFieldLevelEncryptionConfig(params: CloudFront.Types.GetFieldLevelEncryptionConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionConfigResult, AWSError>;
/**
* Get the field-level encryption configuration information.
*/
getFieldLevelEncryptionConfig(callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionConfigResult, AWSError>;
/**
* Get the field-level encryption profile information.
*/
getFieldLevelEncryptionProfile(params: CloudFront.Types.GetFieldLevelEncryptionProfileRequest, callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionProfileResult, AWSError>;
/**
* Get the field-level encryption profile information.
*/
getFieldLevelEncryptionProfile(callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionProfileResult, AWSError>;
/**
* Get the field-level encryption profile configuration information.
*/
getFieldLevelEncryptionProfileConfig(params: CloudFront.Types.GetFieldLevelEncryptionProfileConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionProfileConfigResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionProfileConfigResult, AWSError>;
/**
* Get the field-level encryption profile configuration information.
*/
getFieldLevelEncryptionProfileConfig(callback?: (err: AWSError, data: CloudFront.Types.GetFieldLevelEncryptionProfileConfigResult) => void): Request<CloudFront.Types.GetFieldLevelEncryptionProfileConfigResult, AWSError>;
/**
* Get the information about an invalidation.
*/
getInvalidation(params: CloudFront.Types.GetInvalidationRequest, callback?: (err: AWSError, data: CloudFront.Types.GetInvalidationResult) => void): Request<CloudFront.Types.GetInvalidationResult, AWSError>;
/**
* Get the information about an invalidation.
*/
getInvalidation(callback?: (err: AWSError, data: CloudFront.Types.GetInvalidationResult) => void): Request<CloudFront.Types.GetInvalidationResult, AWSError>;
/**
* Get the public key information.
*/
getPublicKey(params: CloudFront.Types.GetPublicKeyRequest, callback?: (err: AWSError, data: CloudFront.Types.GetPublicKeyResult) => void): Request<CloudFront.Types.GetPublicKeyResult, AWSError>;
/**
* Get the public key information.
*/
getPublicKey(callback?: (err: AWSError, data: CloudFront.Types.GetPublicKeyResult) => void): Request<CloudFront.Types.GetPublicKeyResult, AWSError>;
/**
* Return public key configuration informaation
*/
getPublicKeyConfig(params: CloudFront.Types.GetPublicKeyConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetPublicKeyConfigResult) => void): Request<CloudFront.Types.GetPublicKeyConfigResult, AWSError>;
/**
* Return public key configuration informaation
*/
getPublicKeyConfig(callback?: (err: AWSError, data: CloudFront.Types.GetPublicKeyConfigResult) => void): Request<CloudFront.Types.GetPublicKeyConfigResult, AWSError>;
/**
* Gets information about a specified RTMP distribution, including the distribution configuration.
*/
getStreamingDistribution(params: CloudFront.Types.GetStreamingDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionResult) => void): Request<CloudFront.Types.GetStreamingDistributionResult, AWSError>;
/**
* Gets information about a specified RTMP distribution, including the distribution configuration.
*/
getStreamingDistribution(callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionResult) => void): Request<CloudFront.Types.GetStreamingDistributionResult, AWSError>;
/**
* Get the configuration information about a streaming distribution.
*/
getStreamingDistributionConfig(params: CloudFront.Types.GetStreamingDistributionConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionConfigResult) => void): Request<CloudFront.Types.GetStreamingDistributionConfigResult, AWSError>;
/**
* Get the configuration information about a streaming distribution.
*/
getStreamingDistributionConfig(callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionConfigResult) => void): Request<CloudFront.Types.GetStreamingDistributionConfigResult, AWSError>;
/**
* Lists origin access identities.
*/
listCloudFrontOriginAccessIdentities(params: CloudFront.Types.ListCloudFrontOriginAccessIdentitiesRequest, callback?: (err: AWSError, data: CloudFront.Types.ListCloudFrontOriginAccessIdentitiesResult) => void): Request<CloudFront.Types.ListCloudFrontOriginAccessIdentitiesResult, AWSError>;
/**
* Lists origin access identities.
*/
listCloudFrontOriginAccessIdentities(callback?: (err: AWSError, data: CloudFront.Types.ListCloudFrontOriginAccessIdentitiesResult) => void): Request<CloudFront.Types.ListCloudFrontOriginAccessIdentitiesResult, AWSError>;
/**
* List CloudFront distributions.
*/
listDistributions(params: CloudFront.Types.ListDistributionsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsResult) => void): Request<CloudFront.Types.ListDistributionsResult, AWSError>;
/**
* List CloudFront distributions.
*/
listDistributions(callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsResult) => void): Request<CloudFront.Types.ListDistributionsResult, AWSError>;
/**
* List the distributions that are associated with a specified AWS WAF web ACL.
*/
listDistributionsByWebACLId(params: CloudFront.Types.ListDistributionsByWebACLIdRequest, callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByWebACLIdResult) => void): Request<CloudFront.Types.ListDistributionsByWebACLIdResult, AWSError>;
/**
* List the distributions that are associated with a specified AWS WAF web ACL.
*/
listDistributionsByWebACLId(callback?: (err: AWSError, data: CloudFront.Types.ListDistributionsByWebACLIdResult) => void): Request<CloudFront.Types.ListDistributionsByWebACLIdResult, AWSError>;
/**
* List all field-level encryption configurations that have been created in CloudFront for this account.
*/
listFieldLevelEncryptionConfigs(params: CloudFront.Types.ListFieldLevelEncryptionConfigsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListFieldLevelEncryptionConfigsResult) => void): Request<CloudFront.Types.ListFieldLevelEncryptionConfigsResult, AWSError>;
/**
* List all field-level encryption configurations that have been created in CloudFront for this account.
*/
listFieldLevelEncryptionConfigs(callback?: (err: AWSError, data: CloudFront.Types.ListFieldLevelEncryptionConfigsResult) => void): Request<CloudFront.Types.ListFieldLevelEncryptionConfigsResult, AWSError>;
/**
* Request a list of field-level encryption profiles that have been created in CloudFront for this account.
*/
listFieldLevelEncryptionProfiles(params: CloudFront.Types.ListFieldLevelEncryptionProfilesRequest, callback?: (err: AWSError, data: CloudFront.Types.ListFieldLevelEncryptionProfilesResult) => void): Request<CloudFront.Types.ListFieldLevelEncryptionProfilesResult, AWSError>;
/**
* Request a list of field-level encryption profiles that have been created in CloudFront for this account.
*/
listFieldLevelEncryptionProfiles(callback?: (err: AWSError, data: CloudFront.Types.ListFieldLevelEncryptionProfilesResult) => void): Request<CloudFront.Types.ListFieldLevelEncryptionProfilesResult, AWSError>;
/**
* Lists invalidation batches.
*/
listInvalidations(params: CloudFront.Types.ListInvalidationsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListInvalidationsResult) => void): Request<CloudFront.Types.ListInvalidationsResult, AWSError>;
/**
* Lists invalidation batches.
*/
listInvalidations(callback?: (err: AWSError, data: CloudFront.Types.ListInvalidationsResult) => void): Request<CloudFront.Types.ListInvalidationsResult, AWSError>;
/**
* List all public keys that have been added to CloudFront for this account.
*/
listPublicKeys(params: CloudFront.Types.ListPublicKeysRequest, callback?: (err: AWSError, data: CloudFront.Types.ListPublicKeysResult) => void): Request<CloudFront.Types.ListPublicKeysResult, AWSError>;
/**
* List all public keys that have been added to CloudFront for this account.
*/
listPublicKeys(callback?: (err: AWSError, data: CloudFront.Types.ListPublicKeysResult) => void): Request<CloudFront.Types.ListPublicKeysResult, AWSError>;
/**
* List streaming distributions.
*/
listStreamingDistributions(params: CloudFront.Types.ListStreamingDistributionsRequest, callback?: (err: AWSError, data: CloudFront.Types.ListStreamingDistributionsResult) => void): Request<CloudFront.Types.ListStreamingDistributionsResult, AWSError>;
/**
* List streaming distributions.
*/
listStreamingDistributions(callback?: (err: AWSError, data: CloudFront.Types.ListStreamingDistributionsResult) => void): Request<CloudFront.Types.ListStreamingDistributionsResult, AWSError>;
/**
* List tags for a CloudFront resource.
*/
listTagsForResource(params: CloudFront.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: CloudFront.Types.ListTagsForResourceResult) => void): Request<CloudFront.Types.ListTagsForResourceResult, AWSError>;
/**
* List tags for a CloudFront resource.
*/
listTagsForResource(callback?: (err: AWSError, data: CloudFront.Types.ListTagsForResourceResult) => void): Request<CloudFront.Types.ListTagsForResourceResult, AWSError>;
/**
* Add tags to a CloudFront resource.
*/
tagResource(params: CloudFront.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Add tags to a CloudFront resource.
*/
tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Remove tags from a CloudFront resource.
*/
untagResource(params: CloudFront.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Remove tags from a CloudFront resource.
*/
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Update an origin access identity.
*/
updateCloudFrontOriginAccessIdentity(params: CloudFront.Types.UpdateCloudFrontOriginAccessIdentityRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.UpdateCloudFrontOriginAccessIdentityResult, AWSError>;
/**
* Update an origin access identity.
*/
updateCloudFrontOriginAccessIdentity(callback?: (err: AWSError, data: CloudFront.Types.UpdateCloudFrontOriginAccessIdentityResult) => void): Request<CloudFront.Types.UpdateCloudFrontOriginAccessIdentityResult, AWSError>;
/**
* Updates the configuration for a web distribution. When you update a distribution, there are more required fields than when you create a distribution. When you update your distribution by using this API action, follow the steps here to get the current configuration and then make your updates, to make sure that you include all of the required fields. To view a summary, see Required Fields for Create Distribution and Update Distribution in the Amazon CloudFront Developer Guide. The update process includes getting the current distribution configuration, updating the XML document that is returned to make your changes, and then submitting an UpdateDistribution request to make the updates. For information about updating a distribution using the CloudFront console instead, see Creating a Distribution in the Amazon CloudFront Developer Guide. To update a web distribution using the CloudFront API Submit a GetDistributionConfig request to get the current configuration and an Etag header for the distribution. If you update the distribution again, you must get a new Etag header. Update the XML document that was returned in the response to your GetDistributionConfig request to include your changes. When you edit the XML file, be aware of the following: You must strip out the ETag parameter that is returned. Additional fields are required when you update a distribution. There may be fields included in the XML file for features that you haven't configured for your distribution. This is expected and required to successfully update the distribution. You can't change the value of CallerReference. If you try to change this value, CloudFront returns an IllegalUpdate error. The new configuration replaces the existing configuration; the values that you specify in an UpdateDistribution request are not merged into your existing configuration. When you add, delete, or replace values in an element that allows multiple values (for example, CNAME), you must specify all of the values that you want to appear in the updated distribution. In addition, you must update the corresponding Quantity element. Submit an UpdateDistribution request to update the configuration for your distribution: In the request body, include the XML document that you updated in Step 2. The request body must include an XML document with a DistributionConfig element. Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GetDistributionConfig request in Step 1. Review the response to the UpdateDistribution request to confirm that the configuration was successfully updated. Optional: Submit a GetDistribution request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed.
*/
updateDistribution(params: CloudFront.Types.UpdateDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionResult) => void): Request<CloudFront.Types.UpdateDistributionResult, AWSError>;
/**
* Updates the configuration for a web distribution. When you update a distribution, there are more required fields than when you create a distribution. When you update your distribution by using this API action, follow the steps here to get the current configuration and then make your updates, to make sure that you include all of the required fields. To view a summary, see Required Fields for Create Distribution and Update Distribution in the Amazon CloudFront Developer Guide. The update process includes getting the current distribution configuration, updating the XML document that is returned to make your changes, and then submitting an UpdateDistribution request to make the updates. For information about updating a distribution using the CloudFront console instead, see Creating a Distribution in the Amazon CloudFront Developer Guide. To update a web distribution using the CloudFront API Submit a GetDistributionConfig request to get the current configuration and an Etag header for the distribution. If you update the distribution again, you must get a new Etag header. Update the XML document that was returned in the response to your GetDistributionConfig request to include your changes. When you edit the XML file, be aware of the following: You must strip out the ETag parameter that is returned. Additional fields are required when you update a distribution. There may be fields included in the XML file for features that you haven't configured for your distribution. This is expected and required to successfully update the distribution. You can't change the value of CallerReference. If you try to change this value, CloudFront returns an IllegalUpdate error. The new configuration replaces the existing configuration; the values that you specify in an UpdateDistribution request are not merged into your existing configuration. When you add, delete, or replace values in an element that allows multiple values (for example, CNAME), you must specify all of the values that you want to appear in the updated distribution. In addition, you must update the corresponding Quantity element. Submit an UpdateDistribution request to update the configuration for your distribution: In the request body, include the XML document that you updated in Step 2. The request body must include an XML document with a DistributionConfig element. Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GetDistributionConfig request in Step 1. Review the response to the UpdateDistribution request to confirm that the configuration was successfully updated. Optional: Submit a GetDistribution request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed.
*/
updateDistribution(callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionResult) => void): Request<CloudFront.Types.UpdateDistributionResult, AWSError>;
/**
* Update a field-level encryption configuration.
*/
updateFieldLevelEncryptionConfig(params: CloudFront.Types.UpdateFieldLevelEncryptionConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.UpdateFieldLevelEncryptionConfigResult, AWSError>;
/**
* Update a field-level encryption configuration.
*/
updateFieldLevelEncryptionConfig(callback?: (err: AWSError, data: CloudFront.Types.UpdateFieldLevelEncryptionConfigResult) => void): Request<CloudFront.Types.UpdateFieldLevelEncryptionConfigResult, AWSError>;
/**
* Update a field-level encryption profile.
*/
updateFieldLevelEncryptionProfile(params: CloudFront.Types.UpdateFieldLevelEncryptionProfileRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.UpdateFieldLevelEncryptionProfileResult, AWSError>;
/**
* Update a field-level encryption profile.
*/
updateFieldLevelEncryptionProfile(callback?: (err: AWSError, data: CloudFront.Types.UpdateFieldLevelEncryptionProfileResult) => void): Request<CloudFront.Types.UpdateFieldLevelEncryptionProfileResult, AWSError>;
/**
* Update public key information. Note that the only value you can change is the comment.
*/
updatePublicKey(params: CloudFront.Types.UpdatePublicKeyRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdatePublicKeyResult) => void): Request<CloudFront.Types.UpdatePublicKeyResult, AWSError>;
/**
* Update public key information. Note that the only value you can change is the comment.
*/
updatePublicKey(callback?: (err: AWSError, data: CloudFront.Types.UpdatePublicKeyResult) => void): Request<CloudFront.Types.UpdatePublicKeyResult, AWSError>;
/**
* Update a streaming distribution.
*/
updateStreamingDistribution(params: CloudFront.Types.UpdateStreamingDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateStreamingDistributionResult) => void): Request<CloudFront.Types.UpdateStreamingDistributionResult, AWSError>;
/**
* Update a streaming distribution.
*/
updateStreamingDistribution(callback?: (err: AWSError, data: CloudFront.Types.UpdateStreamingDistributionResult) => void): Request<CloudFront.Types.UpdateStreamingDistributionResult, AWSError>;
/**
* Waits for the distributionDeployed state by periodically calling the underlying CloudFront.getDistributionoperation every 60 seconds (at most 35 times). Wait until a distribution is deployed.
*/
waitFor(state: "distributionDeployed", params: CloudFront.Types.GetDistributionRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: CloudFront.Types.GetDistributionResult) => void): Request<CloudFront.Types.GetDistributionResult, AWSError>;
/**
* Waits for the distributionDeployed state by periodically calling the underlying CloudFront.getDistributionoperation every 60 seconds (at most 35 times). Wait until a distribution is deployed.
*/
waitFor(state: "distributionDeployed", callback?: (err: AWSError, data: CloudFront.Types.GetDistributionResult) => void): Request<CloudFront.Types.GetDistributionResult, AWSError>;
/**
* Waits for the invalidationCompleted state by periodically calling the underlying CloudFront.getInvalidationoperation every 20 seconds (at most 30 times). Wait until an invalidation has completed.
*/
waitFor(state: "invalidationCompleted", params: CloudFront.Types.GetInvalidationRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: CloudFront.Types.GetInvalidationResult) => void): Request<CloudFront.Types.GetInvalidationResult, AWSError>;
/**
* Waits for the invalidationCompleted state by periodically calling the underlying CloudFront.getInvalidationoperation every 20 seconds (at most 30 times). Wait until an invalidation has completed.
*/
waitFor(state: "invalidationCompleted", callback?: (err: AWSError, data: CloudFront.Types.GetInvalidationResult) => void): Request<CloudFront.Types.GetInvalidationResult, AWSError>;
/**
* Waits for the streamingDistributionDeployed state by periodically calling the underlying CloudFront.getStreamingDistributionoperation every 60 seconds (at most 25 times). Wait until a streaming distribution is deployed.
*/
waitFor(state: "streamingDistributionDeployed", params: CloudFront.Types.GetStreamingDistributionRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionResult) => void): Request<CloudFront.Types.GetStreamingDistributionResult, AWSError>;
/**
* Waits for the streamingDistributionDeployed state by periodically calling the underlying CloudFront.getStreamingDistributionoperation every 60 seconds (at most 25 times). Wait until a streaming distribution is deployed.
*/
waitFor(state: "streamingDistributionDeployed", callback?: (err: AWSError, data: CloudFront.Types.GetStreamingDistributionResult) => void): Request<CloudFront.Types.GetStreamingDistributionResult, AWSError>;
}
declare namespace CloudFront {
export import Signer = signer;
}
declare namespace CloudFront {
export interface ActiveTrustedSigners {
/**
* Enabled is true if any of the AWS accounts listed in the TrustedSigners complex type for this distribution have active CloudFront key pairs. If not, Enabled is false.
*/
Enabled: boolean;
/**
* The number of trusted signers specified in the TrustedSigners complex type.
*/
Quantity: integer;
/**
* A complex type that contains one Signer complex type for each trusted signer that is specified in the TrustedSigners complex type.
*/
Items?: SignerList;
}
export interface AliasICPRecordal {
/**
* A domain name associated with a distribution.
*/
CNAME?: string;
/**
* The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside of China. The status values returned are the following: APPROVED indicates that the associated CNAME has a valid ICP recordal number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can correspond to different ICP recordals. To be marked as APPROVED, that is, valid to use with China region, a CNAME must have one ICP recordal number associated with it. SUSPENDED indicates that the associated CNAME does not have a valid ICP recordal number. PENDING indicates that at least one CNAME associated with the distribution does not have a valid ICP recordal number.
*/
ICPRecordalStatus?: ICPRecordalStatus;
}
export type AliasICPRecordals = AliasICPRecordal[];
export type AliasList = string[];
export interface Aliases {
/**
* The number of CNAME aliases, if any, that you want to associate with this distribution.
*/
Quantity: integer;
/**
* A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.
*/
Items?: AliasList;
}
export interface AllowedMethods {
/**
* The number of HTTP methods that you want CloudFront to forward to your origin. Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD, and OPTIONS requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests).
*/
Quantity: integer;
/**
* A complex type that contains the HTTP methods that you want CloudFront to process and forward to your origin.
*/
Items: MethodsList;
CachedMethods?: CachedMethods;
}
export type AwsAccountNumberList = string[];
export interface CacheBehavior {
/**
* The pattern (for example, images/*.jpg) that specifies which requests to apply the behavior to. When CloudFront receives a viewer request, the requested path is compared with path patterns in the order in which cache behaviors are listed in the distribution. You can optionally include a slash (/) at the beginning of the path pattern. For example, /images/*.jpg. CloudFront behavior is the same with or without the leading /. The path pattern for the default cache behavior is * and cannot be changed. If the request for an object does not match the path pattern for any cache behaviors, CloudFront applies the behavior in the default cache behavior. For more information, see Path Pattern in the Amazon CloudFront Developer Guide.
*/
PathPattern: string;
/**
* The value of ID for the origin that you want CloudFront to route requests to when a request matches the path pattern either for a cache behavior or for the default cache behavior in your distribution.
*/
TargetOriginId: string;
/**
* A complex type that specifies how CloudFront handles query strings and cookies.
*/
ForwardedValues: ForwardedValues;
/**
* A complex type that specifies the AWS accounts, if any, that you want to allow to create signed URLs for private content. If you want to require signed URLs in requests for objects in the target origin that match the PathPattern for this cache behavior, specify true for Enabled, and specify the applicable values for Quantity and Items. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide. If you don't want to require signed URLs in requests for objects that match PathPattern, specify false for Enabled and 0 for Quantity. Omit Items. To add, change, or remove one or more trusted signers, change Enabled to true (if it's currently false), change Quantity as applicable, and specify all of the trusted signers that you want to include in the updated distribution.
*/
TrustedSigners: TrustedSigners;
/**
* The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options: allow-all: Viewers can use HTTP or HTTPS. redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL. https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden). For more information about requiring the HTTPS protocol, see Using an HTTPS Connection to Access Your Objects in the Amazon CloudFront Developer Guide. The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.
*/
ViewerProtocolPolicy: ViewerProtocolPolicy;
/**
* The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide. You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).
*/
MinTTL: long;
AllowedMethods?: AllowedMethods;
/**
* Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.
*/
SmoothStreaming?: boolean;
/**
* The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.
*/
DefaultTTL?: long;
/**
* The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.
*/
MaxTTL?: long;
/**
* Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.
*/
Compress?: boolean;
/**
* A complex type that contains zero or more Lambda function associations for a cache behavior.
*/
LambdaFunctionAssociations?: LambdaFunctionAssociations;
/**
* The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for a cache behavior or for the default cache behavior in your distribution.
*/
FieldLevelEncryptionId?: string;
}
export type CacheBehaviorList = CacheBehavior[];
export interface CacheBehaviors {
/**
* The number of cache behaviors for this distribution.
*/
Quantity: integer;
/**
* Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.
*/
Items?: CacheBehaviorList;
}
export interface CachedMethods {
/**
* The number of HTTP methods for which you want CloudFront to cache responses. Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for caching responses to GET, HEAD, and OPTIONS requests).
*/
Quantity: integer;
/**
* A complex type that contains the HTTP methods that you want CloudFront to cache responses to.
*/
Items: MethodsList;
}
export type CertificateSource = "cloudfront"|"iam"|"acm"|string;
export interface CloudFrontOriginAccessIdentity {
/**
* The ID for the origin access identity, for example, E74FTE3AJFJ256A.
*/
Id: string;
/**
* The Amazon S3 canonical user ID for the origin access identity, used when giving the origin access identity read permission to an object in Amazon S3.
*/
S3CanonicalUserId: string;
/**
* The current configuration information for the identity.
*/
CloudFrontOriginAccessIdentityConfig?: CloudFrontOriginAccessIdentityConfig;
}
export interface CloudFrontOriginAccessIdentityConfig {
/**
* A unique value (for example, a date-time stamp) that ensures that the request can't be replayed. If the value of CallerReference is new (regardless of the content of the CloudFrontOriginAccessIdentityConfig object), a new origin access identity is created. If the CallerReference is a value already sent in a previous identity request, and the content of the CloudFrontOriginAccessIdentityConfig is identical to the original request (ignoring white space), the response includes the same information returned to the original request. If the CallerReference is a value you already sent in a previous request to create an identity, but the content of the CloudFrontOriginAccessIdentityConfig is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists error.
*/
CallerReference: string;
/**
* Any comments you want to include about the origin access identity.
*/
Comment: string;
}
export interface CloudFrontOriginAccessIdentityList {
/**
* Use this when paginating results to indicate where to begin in your list of origin access identities. The results include identities in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last identity on that page).
*/
Marker: string;
/**
* If IsTruncated is true, this element is present and contains the value you can use for the Marker request parameter to continue listing your origin access identities where they left off.
*/
NextMarker?: string;
/**
* The maximum number of origin access identities you want in the response body.
*/
MaxItems: integer;
/**
* A flag that indicates whether more origin access identities remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more items in the list.
*/
IsTruncated: boolean;
/**
* The number of CloudFront origin access identities that were created by the current AWS account.
*/
Quantity: integer;
/**
* A complex type that contains one CloudFrontOriginAccessIdentitySummary element for each origin access identity that was created by the current AWS account.
*/
Items?: CloudFrontOriginAccessIdentitySummaryList;
}
export interface CloudFrontOriginAccessIdentitySummary {
/**
* The ID for the origin access identity. For example: E74FTE3AJFJ256A.
*/
Id: string;
/**
* The Amazon S3 canonical user ID for the origin access identity, which you use when giving the origin access identity read permission to an object in Amazon S3.
*/
S3CanonicalUserId: string;
/**
* The comment for this origin access identity, as originally specified when created.
*/
Comment: string;
}
export type CloudFrontOriginAccessIdentitySummaryList = CloudFrontOriginAccessIdentitySummary[];
export type CommentType = string;
export interface ContentTypeProfile {
/**
* The format for a field-level encryption content type-profile mapping.
*/
Format: Format;
/**
* The profile ID for a field-level encryption content type-profile mapping.
*/
ProfileId?: string;
/**
* The content type for a field-level encryption content type-profile mapping.
*/
ContentType: string;
}
export interface ContentTypeProfileConfig {
/**
* The setting in a field-level encryption content type-profile mapping that specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.
*/
ForwardWhenContentTypeIsUnknown: boolean;
/**
* The configuration for a field-level encryption content type-profile.
*/
ContentTypeProfiles?: ContentTypeProfiles;
}
export type ContentTypeProfileList = ContentTypeProfile[];
export interface ContentTypeProfiles {
/**
* The number of field-level encryption content type-profile mappings.
*/
Quantity: integer;
/**
* Items in a field-level encryption content type-profile mapping.
*/
Items?: ContentTypeProfileList;
}
export type CookieNameList = string[];
export interface CookieNames {
/**
* The number of different cookies that you want CloudFront to forward to the origin for this cache behavior.
*/
Quantity: integer;
/**
* A complex type that contains one Name element for each cookie that you want CloudFront to forward to the origin for this cache behavior.
*/
Items?: CookieNameList;
}
export interface CookiePreference {
/**
* Specifies which cookies to forward to the origin for this cache behavior: all, none, or the list of cookies specified in the WhitelistedNames complex type. Amazon S3 doesn't process cookies. When the cache behavior is forwarding requests to an Amazon S3 origin, specify none for the Forward element.
*/
Forward: ItemSelection;
/**
* Required if you specify whitelist for the value of Forward:. A complex type that specifies how many different cookies you want CloudFront to forward to the origin for this cache behavior and, if you want to forward selected cookies, the names of those cookies. If you specify all or none for the value of Forward, omit WhitelistedNames. If you change the value of Forward from whitelist to all or none and you don't delete the WhitelistedNames element and its child elements, CloudFront deletes them automatically. For the current limit on the number of cookie names that you can whitelist for each cache behavior, see CloudFront Limits in the AWS General Reference.
*/
WhitelistedNames?: CookieNames;
}
export interface CreateCloudFrontOriginAccessIdentityRequest {
/**
* The current configuration information for the identity.
*/
CloudFrontOriginAccessIdentityConfig: CloudFrontOriginAccessIdentityConfig;
}
export interface CreateCloudFrontOriginAccessIdentityResult {
/**
* The origin access identity's information.
*/
CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity;
/**
* The fully qualified URI of the new origin access identity just created. For example: https://cloudfront.amazonaws.com/2010-11-01/origin-access-identity/cloudfront/E74FTE3AJFJ256A.
*/
Location?: string;
/**
* The current version of the origin access identity created.
*/
ETag?: string;
}
export interface CreateDistributionRequest {
/**
* The distribution's configuration information.
*/
DistributionConfig: DistributionConfig;
}
export interface CreateDistributionResult {
/**
* The distribution's information.
*/
Distribution?: Distribution;
/**
* The fully qualified URI of the new distribution resource just created. For example: https://cloudfront.amazonaws.com/2010-11-01/distribution/EDFDVBD632BHDS5.
*/
Location?: string;
/**
* The current version of the distribution created.
*/
ETag?: string;
}
export interface CreateDistributionWithTagsRequest {
/**
* The distribution's configuration information.
*/
DistributionConfigWithTags: DistributionConfigWithTags;
}
export interface CreateDistributionWithTagsResult {
/**
* The distribution's information.
*/
Distribution?: Distribution;
/**
* The fully qualified URI of the new distribution resource just created. For example: https://cloudfront.amazonaws.com/2010-11-01/distribution/EDFDVBD632BHDS5.
*/
Location?: string;
/**
* The current version of the distribution created.
*/
ETag?: string;
}
export interface CreateFieldLevelEncryptionConfigRequest {
/**
* The request to create a new field-level encryption configuration.
*/
FieldLevelEncryptionConfig: FieldLevelEncryptionConfig;
}
export interface CreateFieldLevelEncryptionConfigResult {
/**
* Returned when you create a new field-level encryption configuration.
*/
FieldLevelEncryption?: FieldLevelEncryption;
/**
* The fully qualified URI of the new configuration resource just created. For example: https://cloudfront.amazonaws.com/2010-11-01/field-level-encryption-config/EDFDVBD632BHDS5.
*/
Location?: string;
/**
* The current version of the field level encryption configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface CreateFieldLevelEncryptionProfileRequest {
/**
* The request to create a field-level encryption profile.
*/
FieldLevelEncryptionProfileConfig: FieldLevelEncryptionProfileConfig;
}
export interface CreateFieldLevelEncryptionProfileResult {
/**
* Returned when you create a new field-level encryption profile.
*/
FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile;
/**
* The fully qualified URI of the new profile resource just created. For example: https://cloudfront.amazonaws.com/2010-11-01/field-level-encryption-profile/EDFDVBD632BHDS5.
*/
Location?: string;
/**
* The current version of the field level encryption profile. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface CreateInvalidationRequest {
/**
* The distribution's id.
*/
DistributionId: string;
/**
* The batch information for the invalidation.
*/
InvalidationBatch: InvalidationBatch;
}
export interface CreateInvalidationResult {
/**
* The fully qualified URI of the distribution and invalidation batch request, including the Invalidation ID.
*/
Location?: string;
/**
* The invalidation's information.
*/
Invalidation?: Invalidation;
}
export interface CreatePublicKeyRequest {
/**
* The request to add a public key to CloudFront.
*/
PublicKeyConfig: PublicKeyConfig;
}
export interface CreatePublicKeyResult {
/**
* Returned when you add a public key.
*/
PublicKey?: PublicKey;
/**
* The fully qualified URI of the new public key resource just created. For example: https://cloudfront.amazonaws.com/2010-11-01/cloudfront-public-key/EDFDVBD632BHDS5.
*/
Location?: string;
/**
* The current version of the public key. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface CreateStreamingDistributionRequest {
/**
* The streaming distribution's configuration information.
*/
StreamingDistributionConfig: StreamingDistributionConfig;
}
export interface CreateStreamingDistributionResult {
/**
* The streaming distribution's information.
*/
StreamingDistribution?: StreamingDistribution;
/**
* The fully qualified URI of the new streaming distribution resource just created. For example: https://cloudfront.amazonaws.com/2010-11-01/streaming-distribution/EGTXBD79H29TRA8.
*/
Location?: string;
/**
* The current version of the streaming distribution created.
*/
ETag?: string;
}
export interface CreateStreamingDistributionWithTagsRequest {
/**
* The streaming distribution's configuration information.
*/
StreamingDistributionConfigWithTags: StreamingDistributionConfigWithTags;
}
export interface CreateStreamingDistributionWithTagsResult {
/**
* The streaming distribution's information.
*/
StreamingDistribution?: StreamingDistribution;
/**
* The fully qualified URI of the new streaming distribution resource just created. For example: https://cloudfront.amazonaws.com/2010-11-01/streaming-distribution/EGTXBD79H29TRA8.
*/
Location?: string;
/**
* The current version of the distribution created.
*/
ETag?: string;
}
export interface CustomErrorResponse {
/**
* The HTTP status code for which you want to specify a custom error page and/or a caching duration.
*/
ErrorCode: integer;
/**
* The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by ErrorCode, for example, /4xx-errors/403-forbidden.html. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true: The value of PathPattern matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named /4xx-errors. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, /4xx-errors/*. The value of TargetOriginId specifies the value of the ID element for the origin that contains your custom error pages. If you specify a value for ResponsePagePath, you must also specify a value for ResponseCode. If you don't want to specify a value, include an empty element, <ResponsePagePath>, in the XML document. We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.
*/
ResponsePagePath?: string;
/**
* The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example: Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute 200, the response typically won't be intercepted. If you don't care about distinguishing among different client errors or server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or 5xx errors. You might want to return a 200 status code (OK) and static website so your customers don't know that your website is down. If you specify a value for ResponseCode, you must also specify a value for ResponsePagePath. If you don't want to specify a value, include an empty element, <ResponseCode>, in the XML document.
*/
ResponseCode?: string;
/**
* The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in ErrorCode. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available. If you don't want to specify a value, include an empty element, <ErrorCachingMinTTL>, in the XML document. For more information, see Customizing Error Responses in the Amazon CloudFront Developer Guide.
*/
ErrorCachingMinTTL?: long;
}
export type CustomErrorResponseList = CustomErrorResponse[];
export interface CustomErrorResponses {
/**
* The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If Quantity is 0, you can omit Items.
*/
Quantity: integer;
/**
* A complex type that contains a CustomErrorResponse element for each HTTP status code for which you want to specify a custom error page and/or a caching duration.
*/
Items?: CustomErrorResponseList;
}
export interface CustomHeaders {
/**
* The number of custom headers, if any, for this distribution.
*/
Quantity: integer;
/**
* Optional: A list that contains one OriginCustomHeader element for each custom header that you want CloudFront to forward to the origin. If Quantity is 0, omit Items.
*/
Items?: OriginCustomHeadersList;
}
export interface CustomOriginConfig {
/**
* The HTTP port the custom origin listens on.
*/
HTTPPort: integer;
/**
* The HTTPS port the custom origin listens on.
*/
HTTPSPort: integer;
/**
* The origin protocol policy to apply to your origin.
*/
OriginProtocolPolicy: OriginProtocolPolicy;
/**
* The SSL/TLS protocols that you want CloudFront to use when communicating with your origin over HTTPS.
*/
OriginSslProtocols?: OriginSslProtocols;
/**
* You can create a custom origin read timeout. All timeout units are in seconds. The default origin read timeout is 30 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum timeout length is 4 seconds; the maximum is 60 seconds. If you need to increase the maximum time limit, contact the AWS Support Center.
*/
OriginReadTimeout?: integer;
/**
* You can create a custom keep-alive timeout. All timeout units are in seconds. The default keep-alive timeout is 5 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum timeout length is 1 second; the maximum is 60 seconds. If you need to increase the maximum time limit, contact the AWS Support Center.
*/
OriginKeepaliveTimeout?: integer;
}
export interface DefaultCacheBehavior {
/**
* The value of ID for the origin that you want CloudFront to route requests to when a request matches the path pattern either for a cache behavior or for the default cache behavior in your distribution.
*/
TargetOriginId: string;
/**
* A complex type that specifies how CloudFront handles query strings and cookies.
*/
ForwardedValues: ForwardedValues;
/**
* A complex type that specifies the AWS accounts, if any, that you want to allow to create signed URLs for private content. If you want to require signed URLs in requests for objects in the target origin that match the PathPattern for this cache behavior, specify true for Enabled, and specify the applicable values for Quantity and Items. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide. If you don't want to require signed URLs in requests for objects that match PathPattern, specify false for Enabled and 0 for Quantity. Omit Items. To add, change, or remove one or more trusted signers, change Enabled to true (if it's currently false), change Quantity as applicable, and specify all of the trusted signers that you want to include in the updated distribution.
*/
TrustedSigners: TrustedSigners;
/**
* The protocol that viewers can use to access the files in the origin specified by TargetOriginId when a request matches the path pattern in PathPattern. You can specify the following options: allow-all: Viewers can use HTTP or HTTPS. redirect-to-https: If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL. https-only: If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden). For more information about requiring the HTTPS protocol, see Using an HTTPS Connection to Access Your Objects in the Amazon CloudFront Developer Guide. The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.
*/
ViewerProtocolPolicy: ViewerProtocolPolicy;
/**
* The minimum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide. You must specify 0 for MinTTL if you configure CloudFront to forward all headers to your origin (under Headers, if you specify 1 for Quantity and * for Name).
*/
MinTTL: long;
AllowedMethods?: AllowedMethods;
/**
* Indicates whether you want to distribute media files in the Microsoft Smooth Streaming format using the origin that is associated with this cache behavior. If so, specify true; if not, specify false. If you specify true for SmoothStreaming, you can still distribute other content using this cache behavior if the content matches the value of PathPattern.
*/
SmoothStreaming?: boolean;
/**
* The default amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin does not add HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.
*/
DefaultTTL?: long;
/**
* The maximum amount of time that you want objects to stay in CloudFront caches before CloudFront forwards another request to your origin to determine whether the object has been updated. The value that you specify applies only when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires to objects. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.
*/
MaxTTL?: long;
/**
* Whether you want CloudFront to automatically compress certain files for this cache behavior. If so, specify true; if not, specify false. For more information, see Serving Compressed Files in the Amazon CloudFront Developer Guide.
*/
Compress?: boolean;
/**
* A complex type that contains zero or more Lambda function associations for a cache behavior.
*/
LambdaFunctionAssociations?: LambdaFunctionAssociations;
/**
* The value of ID for the field-level encryption configuration that you want CloudFront to use for encrypting specific fields of data for a cache behavior or for the default cache behavior in your distribution.
*/
FieldLevelEncryptionId?: string;
}
export interface DeleteCloudFrontOriginAccessIdentityRequest {
/**
* The origin access identity's ID.
*/
Id: string;
/**
* The value of the ETag header you received from a previous GET or PUT request. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface DeleteDistributionRequest {
/**
* The distribution ID.
*/
Id: string;
/**
* The value of the ETag header that you received when you disabled the distribution. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface DeleteFieldLevelEncryptionConfigRequest {
/**
* The ID of the configuration you want to delete from CloudFront.
*/
Id: string;
/**
* The value of the ETag header that you received when retrieving the configuration identity to delete. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface DeleteFieldLevelEncryptionProfileRequest {
/**
* Request the ID of the profile you want to delete from CloudFront.
*/
Id: string;
/**
* The value of the ETag header that you received when retrieving the profile to delete. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface DeletePublicKeyRequest {
/**
* The ID of the public key you want to remove from CloudFront.
*/
Id: string;
/**
* The value of the ETag header that you received when retrieving the public key identity to delete. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface DeleteStreamingDistributionRequest {
/**
* The distribution ID.
*/
Id: string;
/**
* The value of the ETag header that you received when you disabled the streaming distribution. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface Distribution {
/**
* The identifier for the distribution. For example: EDFDVBD632BHDS5.
*/
Id: string;
/**
* The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your AWS account ID.
*/
ARN: string;
/**
* This response element indicates the current status of the distribution. When the status is Deployed, the distribution's information is fully propagated to all CloudFront edge locations.
*/
Status: string;
/**
* The date and time the distribution was last modified.
*/
LastModifiedTime: timestamp;
/**
* The number of invalidation batches currently in progress.
*/
InProgressInvalidationBatches: integer;
/**
* The domain name corresponding to the distribution, for example, d111111abcdef8.cloudfront.net.
*/
DomainName: string;
/**
* CloudFront automatically adds this element to the response only if you've set up the distribution to serve private content with signed URLs. The element lists the key pair IDs that CloudFront is aware of for each trusted signer. The Signer child element lists the AWS account number of the trusted signer (or an empty Self element if the signer is you). The Signer element also includes the IDs of any active key pairs associated with the trusted signer's AWS account. If no KeyPairId element appears for a Signer, that signer can't create working signed URLs.
*/
ActiveTrustedSigners: ActiveTrustedSigners;
/**
* The current configuration information for the distribution. Send a GET request to the /CloudFront API version/distribution ID/config resource.
*/
DistributionConfig: DistributionConfig;
/**
* AWS services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions. For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with AWS services in China.
*/
AliasICPRecordals?: AliasICPRecordals;
}
export interface DistributionConfig {
/**
* A unique value (for example, a date-time stamp) that ensures that the request can't be replayed. If the value of CallerReference is new (regardless of the content of the DistributionConfig object), CloudFront creates a new distribution. If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.
*/
CallerReference: string;
/**
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
*/
Aliases?: Aliases;
/**
* The object that you want CloudFront to request from your origin (for example, index.html) when a viewer requests the root URL for your distribution (http://www.example.com) instead of an object in your distribution (http://www.example.com/product-description.html). Specifying a default root object avoids exposing the contents of your distribution. Specify only the object name, for example, index.html. Don't add a / before the object name. If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject element. To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject element. To replace the default root object, update the distribution configuration and specify the new object. For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.
*/
DefaultRootObject?: string;
/**
* A complex type that contains information about origins for this distribution.
*/
Origins: Origins;
/**
* A complex type that contains information about origin groups for this distribution.
*/
OriginGroups?: OriginGroups;
/**
* A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.
*/
DefaultCacheBehavior: DefaultCacheBehavior;
/**
* A complex type that contains zero or more CacheBehavior elements.
*/
CacheBehaviors?: CacheBehaviors;
/**
* A complex type that controls the following: Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer. How long CloudFront caches HTTP status codes in the 4xx and 5xx range. For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.
*/
CustomErrorResponses?: CustomErrorResponses;
/**
* Any comments you want to include about the distribution. If you don't want to specify a comment, include an empty Comment element. To delete an existing comment, update the distribution configuration and include an empty Comment element. To add or change a comment, update the distribution configuration and specify the new comment.
*/
Comment: CommentType;
/**
* A complex type that controls whether access logs are written for the distribution. For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.
*/
Logging?: LoggingConfig;
/**
* The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All, CloudFront responds to requests for your objects from all CloudFront edge locations. If you specify a price class other than PriceClass_All, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance. For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing. For price class information, scroll down to see the table at the bottom of the page.
*/
PriceClass?: PriceClass;
/**
* From this field, you can enable or disable the selected distribution.
*/
Enabled: boolean;
/**
* A complex type that specifies whether you want viewers to use HTTP or HTTPS to request your objects, whether you're using an alternate domain name with HTTPS, and if so, if you're using AWS Certificate Manager (ACM) or a third-party certificate authority.
*/
ViewerCertificate?: ViewerCertificate;
/**
* A complex type that identifies ways in which you want to restrict distribution of your content.
*/
Restrictions?: Restrictions;
/**
* A unique identifier that specifies the AWS WAF web ACL, if any, to associate with this distribution. AWS WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about AWS WAF, see the AWS WAF Developer Guide.
*/
WebACLId?: string;
/**
* (Optional) Specify the maximum HTTP version that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version. For viewers and CloudFront to use HTTP/2, viewers must support TLS 1.2 or later, and must support Server Name Identification (SNI). In general, configuring CloudFront to communicate with viewers using HTTP/2 reduces latency. You can improve performance by optimizing for HTTP/2. For more information, do an Internet search for "http/2 optimization."
*/
HttpVersion?: HttpVersion;
/**
* If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true. If you specify false, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution. In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide. If you're using an Amazon Route 53 alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true: You enable IPv6 for the distribution You're using alternate domain names in the URLs for your objects For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Amazon Route 53 Developer Guide. If you created a CNAME resource record set, either with Amazon Route 53 or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.
*/
IsIPV6Enabled?: boolean;
}
export interface DistributionConfigWithTags {
/**
* A distribution configuration.
*/
DistributionConfig: DistributionConfig;
/**
* A complex type that contains zero or more Tag elements.
*/
Tags: Tags;
}
export interface DistributionList {
/**
* The value you provided for the Marker request parameter.
*/
Marker: string;
/**
* If IsTruncated is true, this element is present and contains the value you can use for the Marker request parameter to continue listing your distributions where they left off.
*/
NextMarker?: string;
/**
* The value you provided for the MaxItems request parameter.
*/
MaxItems: integer;
/**
* A flag that indicates whether more distributions remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more distributions in the list.
*/
IsTruncated: boolean;
/**
* The number of distributions that were created by the current AWS account.
*/
Quantity: integer;
/**
* A complex type that contains one DistributionSummary element for each distribution that was created by the current AWS account.
*/
Items?: DistributionSummaryList;
}
export interface DistributionSummary {
/**
* The identifier for the distribution. For example: EDFDVBD632BHDS5.
*/
Id: string;
/**
* The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your AWS account ID.
*/
ARN: string;
/**
* The current status of the distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations.
*/
Status: string;
/**
* The date and time the distribution was last modified.
*/
LastModifiedTime: timestamp;
/**
* The domain name that corresponds to the distribution, for example, d111111abcdef8.cloudfront.net.
*/
DomainName: string;
/**
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
*/
Aliases: Aliases;
/**
* A complex type that contains information about origins for this distribution.
*/
Origins: Origins;
/**
* A complex type that contains information about origin groups for this distribution.
*/
OriginGroups?: OriginGroups;
/**
* A complex type that describes the default cache behavior if you don't specify a CacheBehavior element or if files don't match any of the values of PathPattern in CacheBehavior elements. You must create exactly one default cache behavior.
*/
DefaultCacheBehavior: DefaultCacheBehavior;
/**
* A complex type that contains zero or more CacheBehavior elements.
*/
CacheBehaviors: CacheBehaviors;
/**
* A complex type that contains zero or more CustomErrorResponses elements.
*/
CustomErrorResponses: CustomErrorResponses;
/**
* The comment originally specified when this distribution was created.
*/
Comment: string;
/**
* A complex type that contains information about price class for this streaming distribution.
*/
PriceClass: PriceClass;
/**
* Whether the distribution is enabled to accept user requests for content.
*/
Enabled: boolean;
/**
* A complex type that specifies whether you want viewers to use HTTP or HTTPS to request your objects, whether you're using an alternate domain name with HTTPS, and if so, if you're using AWS Certificate Manager (ACM) or a third-party certificate authority.
*/
ViewerCertificate: ViewerCertificate;
/**
* A complex type that identifies ways in which you want to restrict distribution of your content.
*/
Restrictions: Restrictions;
/**
* The Web ACL Id (if any) associated with the distribution.
*/
WebACLId: string;
/**
* Specify the maximum HTTP version that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 will automatically use an earlier version.
*/
HttpVersion: HttpVersion;
/**
* Whether CloudFront responds to IPv6 DNS requests with an IPv6 address for your distribution.
*/
IsIPV6Enabled: boolean;
/**
* AWS services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions. For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with AWS services in China.
*/
AliasICPRecordals?: AliasICPRecordals;
}
export type DistributionSummaryList = DistributionSummary[];
export interface EncryptionEntities {
/**
* Number of field pattern items in a field-level encryption content type-profile mapping.
*/
Quantity: integer;
/**
* An array of field patterns in a field-level encryption content type-profile mapping.
*/
Items?: EncryptionEntityList;
}
export interface EncryptionEntity {
/**
* The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.
*/
PublicKeyId: string;
/**
* The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.
*/
ProviderId: string;
/**
* Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (*). You can't overlap field patterns. For example, you can't have both ABC* and AB*. Note that field patterns are case-sensitive.
*/
FieldPatterns: FieldPatterns;
}
export type EncryptionEntityList = EncryptionEntity[];
export type EventType = "viewer-request"|"viewer-response"|"origin-request"|"origin-response"|string;
export interface FieldLevelEncryption {
/**
* The configuration ID for a field-level encryption configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.
*/
Id: string;
/**
* The last time the field-level encryption configuration was changed.
*/
LastModifiedTime: timestamp;
/**
* A complex data type that includes the profile configurations specified for field-level encryption.
*/
FieldLevelEncryptionConfig: FieldLevelEncryptionConfig;
}
export interface FieldLevelEncryptionConfig {
/**
* A unique number that ensures the request can't be replayed.
*/
CallerReference: string;
/**
* An optional comment about the configuration.
*/
Comment?: string;
/**
* A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
*/
QueryArgProfileConfig?: QueryArgProfileConfig;
/**
* A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
*/
ContentTypeProfileConfig?: ContentTypeProfileConfig;
}
export interface FieldLevelEncryptionList {
/**
* If there are more elements to be listed, this element is present and contains the value that you can use for the Marker request parameter to continue listing your configurations where you left off.
*/
NextMarker?: string;
/**
* The maximum number of elements you want in the response body.
*/
MaxItems: integer;
/**
* The number of field-level encryption items.
*/
Quantity: integer;
/**
* An array of field-level encryption items.
*/
Items?: FieldLevelEncryptionSummaryList;
}
export interface FieldLevelEncryptionProfile {
/**
* The ID for a field-level encryption profile configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.
*/
Id: string;
/**
* The last time the field-level encryption profile was updated.
*/
LastModifiedTime: timestamp;
/**
* A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.
*/
FieldLevelEncryptionProfileConfig: FieldLevelEncryptionProfileConfig;
}
export interface FieldLevelEncryptionProfileConfig {
/**
* Profile name for the field-level encryption profile.
*/
Name: string;
/**
* A unique number that ensures that the request can't be replayed.
*/
CallerReference: string;
/**
* An optional comment for the field-level encryption profile.
*/
Comment?: string;
/**
* A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.
*/
EncryptionEntities: EncryptionEntities;
}
export interface FieldLevelEncryptionProfileList {
/**
* If there are more elements to be listed, this element is present and contains the value that you can use for the Marker request parameter to continue listing your profiles where you left off.
*/
NextMarker?: string;
/**
* The maximum number of field-level encryption profiles you want in the response body.
*/
MaxItems: integer;
/**
* The number of field-level encryption profiles.
*/
Quantity: integer;
/**
* The field-level encryption profile items.
*/
Items?: FieldLevelEncryptionProfileSummaryList;
}
export interface FieldLevelEncryptionProfileSummary {
/**
* ID for the field-level encryption profile summary.
*/
Id: string;
/**
* The time when the the field-level encryption profile summary was last updated.
*/
LastModifiedTime: timestamp;
/**
* Name for the field-level encryption profile summary.
*/
Name: string;
/**
* A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.
*/
EncryptionEntities: EncryptionEntities;
/**
* An optional comment for the field-level encryption profile summary.
*/
Comment?: string;
}
export type FieldLevelEncryptionProfileSummaryList = FieldLevelEncryptionProfileSummary[];
export interface FieldLevelEncryptionSummary {
/**
* The unique ID of a field-level encryption item.
*/
Id: string;
/**
* The last time that the summary of field-level encryption items was modified.
*/
LastModifiedTime: timestamp;
/**
* An optional comment about the field-level encryption item.
*/
Comment?: string;
/**
* A summary of a query argument-profile mapping.
*/
QueryArgProfileConfig?: QueryArgProfileConfig;
/**
* A summary of a content type-profile mapping.
*/
ContentTypeProfileConfig?: ContentTypeProfileConfig;
}
export type FieldLevelEncryptionSummaryList = FieldLevelEncryptionSummary[];
export type FieldPatternList = string[];
export interface FieldPatterns {
/**
* The number of field-level encryption field patterns.
*/
Quantity: integer;
/**
* An array of the field-level encryption field patterns.
*/
Items?: FieldPatternList;
}
export type Format = "URLEncoded"|string;
export interface ForwardedValues {
/**
* Indicates whether you want CloudFront to forward query strings to the origin that is associated with this cache behavior and cache based on the query string parameters. CloudFront behavior depends on the value of QueryString and on the values that you specify for QueryStringCacheKeys, if any: If you specify true for QueryString and you don't specify any values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin and caches based on all query string parameters. Depending on how many query string parameters and values you have, this can adversely affect performance because CloudFront must forward more requests to the origin. If you specify true for QueryString and you specify one or more values for QueryStringCacheKeys, CloudFront forwards all query string parameters to the origin, but it only caches based on the query string parameters that you specify. If you specify false for QueryString, CloudFront doesn't forward any query string parameters to the origin, and doesn't cache based on query string parameters. For more information, see Configuring CloudFront to Cache Based on Query String Parameters in the Amazon CloudFront Developer Guide.
*/
QueryString: boolean;
/**
* A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see How CloudFront Forwards, Caches, and Logs Cookies in the Amazon CloudFront Developer Guide.
*/
Cookies: CookiePreference;
/**
* A complex type that specifies the Headers, if any, that you want CloudFront to forward to the origin for this cache behavior (whitelisted headers). For the headers that you specify, CloudFront also caches separate versions of a specified object that is based on the header values in viewer requests. For more information, see Caching Content Based on Request Headers in the Amazon CloudFront Developer Guide.
*/
Headers?: Headers;
/**
* A complex type that contains information about the query string parameters that you want CloudFront to use for caching for this cache behavior.
*/
QueryStringCacheKeys?: QueryStringCacheKeys;
}
export interface GeoRestriction {
/**
* The method that you want to use to restrict distribution of your content by country: none: No geo restriction is enabled, meaning access to content is not restricted by client geo location. blacklist: The Location elements specify the countries in which you don't want CloudFront to distribute your content. whitelist: The Location elements specify the countries in which you want CloudFront to distribute your content.
*/
RestrictionType: GeoRestrictionType;
/**
* When geo restriction is enabled, this is the number of countries in your whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, and you can omit Items.
*/
Quantity: integer;
/**
* A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content (whitelist) or not distribute your content (blacklist). The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist. Include one Location element for each country. CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.
*/
Items?: LocationList;
}
export type GeoRestrictionType = "blacklist"|"whitelist"|"none"|string;
export interface GetCloudFrontOriginAccessIdentityConfigRequest {
/**
* The identity's ID.
*/
Id: string;
}
export interface GetCloudFrontOriginAccessIdentityConfigResult {
/**
* The origin access identity's configuration information.
*/
CloudFrontOriginAccessIdentityConfig?: CloudFrontOriginAccessIdentityConfig;
/**
* The current version of the configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetCloudFrontOriginAccessIdentityRequest {
/**
* The identity's ID.
*/
Id: string;
}
export interface GetCloudFrontOriginAccessIdentityResult {
/**
* The origin access identity's information.
*/
CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity;
/**
* The current version of the origin access identity's information. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetDistributionConfigRequest {
/**
* The distribution's ID. If the ID is empty, an empty distribution configuration is returned.
*/
Id: string;
}
export interface GetDistributionConfigResult {
/**
* The distribution's configuration information.
*/
DistributionConfig?: DistributionConfig;
/**
* The current version of the configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetDistributionRequest {
/**
* The distribution's ID. If the ID is empty, an empty distribution configuration is returned.
*/
Id: string;
}
export interface GetDistributionResult {
/**
* The distribution's information.
*/
Distribution?: Distribution;
/**
* The current version of the distribution's information. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetFieldLevelEncryptionConfigRequest {
/**
* Request the ID for the field-level encryption configuration information.
*/
Id: string;
}
export interface GetFieldLevelEncryptionConfigResult {
/**
* Return the field-level encryption configuration information.
*/
FieldLevelEncryptionConfig?: FieldLevelEncryptionConfig;
/**
* The current version of the field level encryption configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetFieldLevelEncryptionProfileConfigRequest {
/**
* Get the ID for the field-level encryption profile configuration information.
*/
Id: string;
}
export interface GetFieldLevelEncryptionProfileConfigResult {
/**
* Return the field-level encryption profile configuration information.
*/
FieldLevelEncryptionProfileConfig?: FieldLevelEncryptionProfileConfig;
/**
* The current version of the field-level encryption profile configuration result. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetFieldLevelEncryptionProfileRequest {
/**
* Get the ID for the field-level encryption profile information.
*/
Id: string;
}
export interface GetFieldLevelEncryptionProfileResult {
/**
* Return the field-level encryption profile information.
*/
FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile;
/**
* The current version of the field level encryption profile. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetFieldLevelEncryptionRequest {
/**
* Request the ID for the field-level encryption configuration information.
*/
Id: string;
}
export interface GetFieldLevelEncryptionResult {
/**
* Return the field-level encryption configuration information.
*/
FieldLevelEncryption?: FieldLevelEncryption;
/**
* The current version of the field level encryption configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetInvalidationRequest {
/**
* The distribution's ID.
*/
DistributionId: string;
/**
* The identifier for the invalidation request, for example, IDFDVBD632BHDS5.
*/
Id: string;
}
export interface GetInvalidationResult {
/**
* The invalidation's information. For more information, see Invalidation Complex Type.
*/
Invalidation?: Invalidation;
}
export interface GetPublicKeyConfigRequest {
/**
* Request the ID for the public key configuration.
*/
Id: string;
}
export interface GetPublicKeyConfigResult {
/**
* Return the result for the public key configuration.
*/
PublicKeyConfig?: PublicKeyConfig;
/**
* The current version of the public key configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetPublicKeyRequest {
/**
* Request the ID for the public key.
*/
Id: string;
}
export interface GetPublicKeyResult {
/**
* Return the public key.
*/
PublicKey?: PublicKey;
/**
* The current version of the public key. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetStreamingDistributionConfigRequest {
/**
* The streaming distribution's ID.
*/
Id: string;
}
export interface GetStreamingDistributionConfigResult {
/**
* The streaming distribution's configuration information.
*/
StreamingDistributionConfig?: StreamingDistributionConfig;
/**
* The current version of the configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface GetStreamingDistributionRequest {
/**
* The streaming distribution's ID.
*/
Id: string;
}
export interface GetStreamingDistributionResult {
/**
* The streaming distribution's information.
*/
StreamingDistribution?: StreamingDistribution;
/**
* The current version of the streaming distribution's information. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export type HeaderList = string[];
export interface Headers {
/**
* The number of different headers that you want CloudFront to base caching on for this cache behavior. You can configure each cache behavior in a web distribution to do one of the following: Forward all headers to your origin: Specify 1 for Quantity and * for Name. CloudFront doesn't cache the objects that are associated with this cache behavior. Instead, CloudFront sends every request to the origin. Forward a whitelist of headers you specify: Specify the number of headers that you want CloudFront to base caching on. Then specify the header names in Name elements. CloudFront caches your objects based on the values in the specified headers. Forward only the default headers: Specify 0 for Quantity and omit Items. In this configuration, CloudFront doesn't cache based on the values in the request headers. Regardless of which option you choose, CloudFront forwards headers to your origin based on whether the origin is an S3 bucket or a custom origin. See the following documentation: S3 bucket: See HTTP Request Headers That CloudFront Removes or Updates Custom origin: See HTTP Request Headers and CloudFront Behavior
*/
Quantity: integer;
/**
* A list that contains one Name element for each header that you want CloudFront to use for caching in this cache behavior. If Quantity is 0, omit Items.
*/
Items?: HeaderList;
}
export type HttpVersion = "http1.1"|"http2"|string;
export type ICPRecordalStatus = "APPROVED"|"SUSPENDED"|"PENDING"|string;
export interface Invalidation {
/**
* The identifier for the invalidation request. For example: IDFDVBD632BHDS5.
*/
Id: string;
/**
* The status of the invalidation request. When the invalidation batch is finished, the status is Completed.
*/
Status: string;
/**
* The date and time the invalidation request was first made.
*/
CreateTime: timestamp;
/**
* The current invalidation information for the batch request.
*/
InvalidationBatch: InvalidationBatch;
}
export interface InvalidationBatch {
/**
* A complex type that contains information about the objects that you want to invalidate. For more information, see Specifying the Objects to Invalidate in the Amazon CloudFront Developer Guide.
*/
Paths: Paths;
/**
* A value that you specify to uniquely identify an invalidation request. CloudFront uses the value to prevent you from accidentally resubmitting an identical request. Whenever you create a new invalidation request, you must specify a new value for CallerReference and change other values in the request as applicable. One way to ensure that the value of CallerReference is unique is to use a timestamp, for example, 20120301090000. If you make a second invalidation request with the same value for CallerReference, and if the rest of the request is the same, CloudFront doesn't create a new invalidation request. Instead, CloudFront returns information about the invalidation request that you previously created with the same CallerReference. If CallerReference is a value you already sent in a previous invalidation batch request but the content of any Path is different from the original request, CloudFront returns an InvalidationBatchAlreadyExists error.
*/
CallerReference: string;
}
export interface InvalidationList {
/**
* The value that you provided for the Marker request parameter.
*/
Marker: string;
/**
* If IsTruncated is true, this element is present and contains the value that you can use for the Marker request parameter to continue listing your invalidation batches where they left off.
*/
NextMarker?: string;
/**
* The value that you provided for the MaxItems request parameter.
*/
MaxItems: integer;
/**
* A flag that indicates whether more invalidation batch requests remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more invalidation batches in the list.
*/
IsTruncated: boolean;
/**
* The number of invalidation batches that were created by the current AWS account.
*/
Quantity: integer;
/**
* A complex type that contains one InvalidationSummary element for each invalidation batch created by the current AWS account.
*/
Items?: InvalidationSummaryList;
}
export interface InvalidationSummary {
/**
* The unique ID for an invalidation request.
*/
Id: string;
/**
* The time that an invalidation request was created.
*/
CreateTime: timestamp;
/**
* The status of an invalidation request.
*/
Status: string;
}
export type InvalidationSummaryList = InvalidationSummary[];
export type ItemSelection = "none"|"whitelist"|"all"|string;
export type KeyPairIdList = string[];
export interface KeyPairIds {
/**
* The number of active CloudFront key pairs for AwsAccountNumber. For more information, see ActiveTrustedSigners.
*/
Quantity: integer;
/**
* A complex type that lists the active CloudFront key pairs, if any, that are associated with AwsAccountNumber. For more information, see ActiveTrustedSigners.
*/
Items?: KeyPairIdList;
}
export type LambdaFunctionARN = string;
export interface LambdaFunctionAssociation {
/**
* The ARN of the Lambda function. You must specify the ARN of a function version; you can't specify a Lambda alias or $LATEST.
*/
LambdaFunctionARN: LambdaFunctionARN;
/**
* Specifies the event type that triggers a Lambda function invocation. You can specify the following values: viewer-request: The function executes when CloudFront receives a request from a viewer and before it checks to see whether the requested object is in the edge cache. origin-request: The function executes only when CloudFront forwards a request to your origin. When the requested object is in the edge cache, the function doesn't execute. origin-response: The function executes after CloudFront receives a response from the origin and before it caches the object in the response. When the requested object is in the edge cache, the function doesn't execute. viewer-response: The function executes before CloudFront returns the requested object to the viewer. The function executes regardless of whether the object was already in the edge cache. If the origin returns an HTTP status code other than HTTP 200 (OK), the function doesn't execute.
*/
EventType: EventType;
/**
* A flag that allows a Lambda function to have read access to the body content. For more information, see Accessing the Request Body by Choosing the Include Body Option in the Amazon CloudFront Developer Guide.
*/
IncludeBody?: boolean;
}
export type LambdaFunctionAssociationList = LambdaFunctionAssociation[];
export interface LambdaFunctionAssociations {
/**
* The number of Lambda function associations for this cache behavior.
*/
Quantity: integer;
/**
* Optional: A complex type that contains LambdaFunctionAssociation items for this cache behavior. If Quantity is 0, you can omit Items.
*/
Items?: LambdaFunctionAssociationList;
}
export interface ListCloudFrontOriginAccessIdentitiesRequest {
/**
* Use this when paginating results to indicate where to begin in your list of origin access identities. The results include identities in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last identity on that page).
*/
Marker?: string;
/**
* The maximum number of origin access identities you want in the response body.
*/
MaxItems?: string;
}
export interface ListCloudFrontOriginAccessIdentitiesResult {
/**
* The CloudFrontOriginAccessIdentityList type.
*/
CloudFrontOriginAccessIdentityList?: CloudFrontOriginAccessIdentityList;
}
export interface ListDistributionsByWebACLIdRequest {
/**
* Use Marker and MaxItems to control pagination of results. If you have more than MaxItems distributions that satisfy the request, the response includes a NextMarker element. To get the next page of results, submit another request. For the value of Marker, specify the value of NextMarker from the last response. (For the first request, omit Marker.)
*/
Marker?: string;
/**
* The maximum number of distributions that you want CloudFront to return in the response body. The maximum and default values are both 100.
*/
MaxItems?: string;
/**
* The ID of the AWS WAF web ACL that you want to list the associated distributions. If you specify "null" for the ID, the request returns a list of the distributions that aren't associated with a web ACL.
*/
WebACLId: string;
}
export interface ListDistributionsByWebACLIdResult {
/**
* The DistributionList type.
*/
DistributionList?: DistributionList;
}
export interface ListDistributionsRequest {
/**
* Use this when paginating results to indicate where to begin in your list of distributions. The results include distributions in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last distribution on that page).
*/
Marker?: string;
/**
* The maximum number of distributions you want in the response body.
*/
MaxItems?: string;
}
export interface ListDistributionsResult {
/**
* The DistributionList type.
*/
DistributionList?: DistributionList;
}
export interface ListFieldLevelEncryptionConfigsRequest {
/**
* Use this when paginating results to indicate where to begin in your list of configurations. The results include configurations in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last configuration on that page).
*/
Marker?: string;
/**
* The maximum number of field-level encryption configurations you want in the response body.
*/
MaxItems?: string;
}
export interface ListFieldLevelEncryptionConfigsResult {
/**
* Returns a list of all field-level encryption configurations that have been created in CloudFront for this account.
*/
FieldLevelEncryptionList?: FieldLevelEncryptionList;
}
export interface ListFieldLevelEncryptionProfilesRequest {
/**
* Use this when paginating results to indicate where to begin in your list of profiles. The results include profiles in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last profile on that page).
*/
Marker?: string;
/**
* The maximum number of field-level encryption profiles you want in the response body.
*/
MaxItems?: string;
}
export interface ListFieldLevelEncryptionProfilesResult {
/**
* Returns a list of the field-level encryption profiles that have been created in CloudFront for this account.
*/
FieldLevelEncryptionProfileList?: FieldLevelEncryptionProfileList;
}
export interface ListInvalidationsRequest {
/**
* The distribution's ID.
*/
DistributionId: string;
/**
* Use this parameter when paginating results to indicate where to begin in your list of invalidation batches. Because the results are returned in decreasing order from most recent to oldest, the most recent results are on the first page, the second page will contain earlier results, and so on. To get the next page of results, set Marker to the value of the NextMarker from the current page's response. This value is the same as the ID of the last invalidation batch on that page.
*/
Marker?: string;
/**
* The maximum number of invalidation batches that you want in the response body.
*/
MaxItems?: string;
}
export interface ListInvalidationsResult {
/**
* Information about invalidation batches.
*/
InvalidationList?: InvalidationList;
}
export interface ListPublicKeysRequest {
/**
* Use this when paginating results to indicate where to begin in your list of public keys. The results include public keys in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last public key on that page).
*/
Marker?: string;
/**
* The maximum number of public keys you want in the response body.
*/
MaxItems?: string;
}
export interface ListPublicKeysResult {
/**
* Returns a list of all public keys that have been added to CloudFront for this account.
*/
PublicKeyList?: PublicKeyList;
}
export interface ListStreamingDistributionsRequest {
/**
* The value that you provided for the Marker request parameter.
*/
Marker?: string;
/**
* The value that you provided for the MaxItems request parameter.
*/
MaxItems?: string;
}
export interface ListStreamingDistributionsResult {
/**
* The StreamingDistributionList type.
*/
StreamingDistributionList?: StreamingDistributionList;
}
export interface ListTagsForResourceRequest {
/**
* An ARN of a CloudFront resource.
*/
Resource: ResourceARN;
}
export interface ListTagsForResourceResult {
/**
* A complex type that contains zero or more Tag elements.
*/
Tags: Tags;
}
export type LocationList = string[];
export interface LoggingConfig {
/**
* Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a distribution or if you want to disable logging for an existing distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket, prefix, and IncludeCookies, the values are automatically deleted.
*/
Enabled: boolean;
/**
* Specifies whether you want CloudFront to include cookies in access logs, specify true for IncludeCookies. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify false for IncludeCookies.
*/
IncludeCookies: boolean;
/**
* The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.
*/
Bucket: string;
/**
* An optional string that you want CloudFront to prefix to the access log filenames for this distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.
*/
Prefix: string;
}
export type Method = "GET"|"HEAD"|"POST"|"PUT"|"PATCH"|"OPTIONS"|"DELETE"|string;
export type MethodsList = Method[];
export type MinimumProtocolVersion = "SSLv3"|"TLSv1"|"TLSv1_2016"|"TLSv1.1_2016"|"TLSv1.2_2018"|string;
export interface Origin {
/**
* A unique identifier for the origin or origin group. The value of Id must be unique within the distribution. When you specify the value of TargetOriginId for the default cache behavior or for another cache behavior, you indicate the origin to which you want the cache behavior to route requests by specifying the value of the Id element for that origin. When a request matches the path pattern for that cache behavior, CloudFront routes the request to the specified origin. For more information, see Cache Behavior Settings in the Amazon CloudFront Developer Guide.
*/
Id: string;
/**
* Amazon S3 origins: The DNS name of the Amazon S3 bucket from which you want CloudFront to get objects for this origin, for example, myawsbucket.s3.amazonaws.com. If you set up your bucket to be configured as a website endpoint, enter the Amazon S3 static website hosting endpoint for the bucket. For more information about specifying this value for different types of origins, see Origin Domain Name in the Amazon CloudFront Developer Guide. Constraints for Amazon S3 origins: If you configured Amazon S3 Transfer Acceleration for your bucket, don't specify the s3-accelerate endpoint for DomainName. The bucket name must be between 3 and 63 characters long (inclusive). The bucket name must contain only lowercase characters, numbers, periods, underscores, and dashes. The bucket name must not contain adjacent periods. Custom Origins: The DNS domain name for the HTTP server from which you want CloudFront to get objects for this origin, for example, www.example.com. Constraints for custom origins: DomainName must be a valid DNS name that contains only a-z, A-Z, 0-9, dot (.), hyphen (-), or underscore (_) characters. The name cannot exceed 128 characters.
*/
DomainName: string;
/**
* An optional element that causes CloudFront to request your content from a directory in your Amazon S3 bucket or your custom origin. When you include the OriginPath element, specify the directory name, beginning with a /. CloudFront appends the directory name to the value of DomainName, for example, example.com/production. Do not include a / at the end of the directory name. For example, suppose you've specified the following values for your distribution: DomainName: An Amazon S3 bucket named myawsbucket. OriginPath: /production CNAME: example.com When a user enters example.com/index.html in a browser, CloudFront sends a request to Amazon S3 for myawsbucket/production/index.html. When a user enters example.com/acme/index.html in a browser, CloudFront sends a request to Amazon S3 for myawsbucket/production/acme/index.html.
*/
OriginPath?: string;
/**
* A complex type that contains names and values for the custom headers that you want.
*/
CustomHeaders?: CustomHeaders;
/**
* A complex type that contains information about the Amazon S3 origin. If the origin is a custom origin, use the CustomOriginConfig element instead.
*/
S3OriginConfig?: S3OriginConfig;
/**
* A complex type that contains information about a custom origin. If the origin is an Amazon S3 bucket, use the S3OriginConfig element instead.
*/
CustomOriginConfig?: CustomOriginConfig;
}
export interface OriginCustomHeader {
/**
* The name of a header that you want CloudFront to forward to your origin. For more information, see Forwarding Custom Headers to Your Origin (Web Distributions Only) in the Amazon CloudFront Developer Guide.
*/
HeaderName: string;
/**
* The value for the header that you specified in the HeaderName field.
*/
HeaderValue: string;
}
export type OriginCustomHeadersList = OriginCustomHeader[];
export interface OriginGroup {
/**
* The origin group's ID.
*/
Id: string;
/**
* A complex type that contains information about the failover criteria for an origin group.
*/
FailoverCriteria: OriginGroupFailoverCriteria;
/**
* A complex type that contains information about the origins in an origin group.
*/
Members: OriginGroupMembers;
}
export interface OriginGroupFailoverCriteria {
/**
* The status codes that, when returned from the primary origin, will trigger CloudFront to failover to the second origin.
*/
StatusCodes: StatusCodes;
}
export type OriginGroupList = OriginGroup[];
export interface OriginGroupMember {
/**
* The ID for an origin in an origin group.
*/
OriginId: string;
}
export type OriginGroupMemberList = OriginGroupMember[];
export interface OriginGroupMembers {
/**
* The number of origins in an origin group.
*/
Quantity: integer;
/**
* Items (origins) in an origin group.
*/
Items: OriginGroupMemberList;
}
export interface OriginGroups {
/**
* The number of origin groups.
*/
Quantity: integer;
/**
* The items (origin groups) in a distribution.
*/
Items?: OriginGroupList;
}
export type OriginList = Origin[];
export type OriginProtocolPolicy = "http-only"|"match-viewer"|"https-only"|string;
export interface OriginSslProtocols {
/**
* The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.
*/
Quantity: integer;
/**
* A list that contains allowed SSL/TLS protocols for this distribution.
*/
Items: SslProtocolsList;
}
export interface Origins {
/**
* The number of origins or origin groups for this distribution.
*/
Quantity: integer;
/**
* A complex type that contains origins or origin groups for this distribution.
*/
Items: OriginList;
}
export type PathList = string[];
export interface Paths {
/**
* The number of invalidation paths specified for the objects that you want to invalidate.
*/
Quantity: integer;
/**
* A complex type that contains a list of the paths that you want to invalidate.
*/
Items?: PathList;
}
export type PriceClass = "PriceClass_100"|"PriceClass_200"|"PriceClass_All"|string;
export interface PublicKey {
/**
* A unique ID assigned to a public key you've added to CloudFront.
*/
Id: string;
/**
* A time you added a public key to CloudFront.
*/
CreatedTime: timestamp;
/**
* A complex data type for a public key you add to CloudFront to use with features like field-level encryption.
*/
PublicKeyConfig: PublicKeyConfig;
}
export interface PublicKeyConfig {
/**
* A unique number that ensures that the request can't be replayed.
*/
CallerReference: string;
/**
* The name for a public key you add to CloudFront to use with features like field-level encryption.
*/
Name: string;
/**
* The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
*/
EncodedKey: string;
/**
* An optional comment about a public key.
*/
Comment?: string;
}
export interface PublicKeyList {
/**
* If there are more elements to be listed, this element is present and contains the value that you can use for the Marker request parameter to continue listing your public keys where you left off.
*/
NextMarker?: string;
/**
* The maximum number of public keys you want in the response body.
*/
MaxItems: integer;
/**
* The number of public keys you added to CloudFront to use with features like field-level encryption.
*/
Quantity: integer;
/**
* An array of information about a public key you add to CloudFront to use with features like field-level encryption.
*/
Items?: PublicKeySummaryList;
}
export interface PublicKeySummary {
/**
* ID for public key information summary.
*/
Id: string;
/**
* Name for public key information summary.
*/
Name: string;
/**
* Creation time for public key information summary.
*/
CreatedTime: timestamp;
/**
* Encoded key for public key information summary.
*/
EncodedKey: string;
/**
* Comment for public key information summary.
*/
Comment?: string;
}
export type PublicKeySummaryList = PublicKeySummary[];
export interface QueryArgProfile {
/**
* Query argument for field-level encryption query argument-profile mapping.
*/
QueryArg: string;
/**
* ID of profile to use for field-level encryption query argument-profile mapping
*/
ProfileId: string;
}
export interface QueryArgProfileConfig {
/**
* Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.
*/
ForwardWhenQueryArgProfileIsUnknown: boolean;
/**
* Profiles specified for query argument-profile mapping for field-level encryption.
*/
QueryArgProfiles?: QueryArgProfiles;
}
export type QueryArgProfileList = QueryArgProfile[];
export interface QueryArgProfiles {
/**
* Number of profiles for query argument-profile mapping for field-level encryption.
*/
Quantity: integer;
/**
* Number of items for query argument-profile mapping for field-level encryption.
*/
Items?: QueryArgProfileList;
}
export interface QueryStringCacheKeys {
/**
* The number of whitelisted query string parameters for a cache behavior.
*/
Quantity: integer;
/**
* A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.
*/
Items?: QueryStringCacheKeysList;
}
export type QueryStringCacheKeysList = string[];
export type ResourceARN = string;
export interface Restrictions {
/**
* A complex type that controls the countries in which your content is distributed. CloudFront determines the location of your users using MaxMind GeoIP databases.
*/
GeoRestriction: GeoRestriction;
}
export interface S3Origin {
/**
* The DNS name of the Amazon S3 origin.
*/
DomainName: string;
/**
* The CloudFront origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront. If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element. To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element. To replace the origin access identity, update the distribution configuration and specify the new origin access identity. For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide.
*/
OriginAccessIdentity: string;
}
export interface S3OriginConfig {
/**
* The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is: origin-access-identity/cloudfront/ID-of-origin-access-identity where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity. If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element. To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element. To replace the origin access identity, update the distribution configuration and specify the new origin access identity. For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
*/
OriginAccessIdentity: string;
}
export type SSLSupportMethod = "sni-only"|"vip"|string;
export interface _Signer {
/**
* An AWS account that is included in the TrustedSigners complex type for this distribution. Valid values include: self, which is the AWS account used to create the distribution. An AWS account number.
*/
AwsAccountNumber?: string;
/**
* A complex type that lists the active CloudFront key pairs, if any, that are associated with AwsAccountNumber.
*/
KeyPairIds?: KeyPairIds;
}
export type SignerList = _Signer[];
export type SslProtocol = "SSLv3"|"TLSv1"|"TLSv1.1"|"TLSv1.2"|string;
export type SslProtocolsList = SslProtocol[];
export type StatusCodeList = integer[];
export interface StatusCodes {
/**
* The number of status codes.
*/
Quantity: integer;
/**
* The items (status codes) for an origin group.
*/
Items: StatusCodeList;
}
export interface StreamingDistribution {
/**
* The identifier for the RTMP distribution. For example: EGTXBD79EXAMPLE.
*/
Id: string;
/**
* The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your AWS account ID.
*/
ARN: string;
/**
* The current status of the RTMP distribution. When the status is Deployed, the distribution's information is propagated to all CloudFront edge locations.
*/
Status: string;
/**
* The date and time that the distribution was last modified.
*/
LastModifiedTime?: timestamp;
/**
* The domain name that corresponds to the streaming distribution, for example, s5c39gqb8ow64r.cloudfront.net.
*/
DomainName: string;
/**
* A complex type that lists the AWS accounts, if any, that you included in the TrustedSigners complex type for this distribution. These are the accounts that you want to allow to create signed URLs for private content. The Signer complex type lists the AWS account number of the trusted signer or self if the signer is the AWS account that created the distribution. The Signer element also includes the IDs of any active CloudFront key pairs that are associated with the trusted signer's AWS account. If no KeyPairId element appears for a Signer, that signer can't create signed URLs. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
*/
ActiveTrustedSigners: ActiveTrustedSigners;
/**
* The current configuration information for the RTMP distribution.
*/
StreamingDistributionConfig: StreamingDistributionConfig;
}
export interface StreamingDistributionConfig {
/**
* A unique value (for example, a date-time stamp) that ensures that the request can't be replayed. If the value of CallerReference is new (regardless of the content of the StreamingDistributionConfig object), CloudFront creates a new distribution. If CallerReference is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists error.
*/
CallerReference: string;
/**
* A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.
*/
S3Origin: S3Origin;
/**
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.
*/
Aliases?: Aliases;
/**
* Any comments you want to include about the streaming distribution.
*/
Comment: string;
/**
* A complex type that controls whether access logs are written for the streaming distribution.
*/
Logging?: StreamingLoggingConfig;
/**
* A complex type that specifies any AWS accounts that you want to permit to create signed URLs for private content. If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
*/
TrustedSigners: TrustedSigners;
/**
* A complex type that contains information about price class for this streaming distribution.
*/
PriceClass?: PriceClass;
/**
* Whether the streaming distribution is enabled to accept user requests for content.
*/
Enabled: boolean;
}
export interface StreamingDistributionConfigWithTags {
/**
* A streaming distribution Configuration.
*/
StreamingDistributionConfig: StreamingDistributionConfig;
/**
* A complex type that contains zero or more Tag elements.
*/
Tags: Tags;
}
export interface StreamingDistributionList {
/**
* The value you provided for the Marker request parameter.
*/
Marker: string;
/**
* If IsTruncated is true, this element is present and contains the value you can use for the Marker request parameter to continue listing your RTMP distributions where they left off.
*/
NextMarker?: string;
/**
* The value you provided for the MaxItems request parameter.
*/
MaxItems: integer;
/**
* A flag that indicates whether more streaming distributions remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more distributions in the list.
*/
IsTruncated: boolean;
/**
* The number of streaming distributions that were created by the current AWS account.
*/
Quantity: integer;
/**
* A complex type that contains one StreamingDistributionSummary element for each distribution that was created by the current AWS account.
*/
Items?: StreamingDistributionSummaryList;
}
export interface StreamingDistributionSummary {
/**
* The identifier for the distribution, for example, EDFDVBD632BHDS5.
*/
Id: string;
/**
* The ARN (Amazon Resource Name) for the streaming distribution. For example: arn:aws:cloudfront::123456789012:streaming-distribution/EDFDVBD632BHDS5, where 123456789012 is your AWS account ID.
*/
ARN: string;
/**
* Indicates the current status of the distribution. When the status is Deployed, the distribution's information is fully propagated throughout the Amazon CloudFront system.
*/
Status: string;
/**
* The date and time the distribution was last modified.
*/
LastModifiedTime: timestamp;
/**
* The domain name corresponding to the distribution, for example, d111111abcdef8.cloudfront.net.
*/
DomainName: string;
/**
* A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.
*/
S3Origin: S3Origin;
/**
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.
*/
Aliases: Aliases;
/**
* A complex type that specifies the AWS accounts, if any, that you want to allow to create signed URLs for private content. If you want to require signed URLs in requests for objects in the target origin that match the PathPattern for this cache behavior, specify true for Enabled, and specify the applicable values for Quantity and Items.If you don't want to require signed URLs in requests for objects that match PathPattern, specify false for Enabled and 0 for Quantity. Omit Items. To add, change, or remove one or more trusted signers, change Enabled to true (if it's currently false), change Quantity as applicable, and specify all of the trusted signers that you want to include in the updated distribution. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
*/
TrustedSigners: TrustedSigners;
/**
* The comment originally specified when this distribution was created.
*/
Comment: string;
/**
* A complex type that contains information about price class for this streaming distribution.
*/
PriceClass: PriceClass;
/**
* Whether the distribution is enabled to accept end user requests for content.
*/
Enabled: boolean;
}
export type StreamingDistributionSummaryList = StreamingDistributionSummary[];
export interface StreamingLoggingConfig {
/**
* Specifies whether you want CloudFront to save access logs to an Amazon S3 bucket. If you don't want to enable logging when you create a streaming distribution or if you want to disable logging for an existing streaming distribution, specify false for Enabled, and specify empty Bucket and Prefix elements. If you specify false for Enabled but you specify values for Bucket and Prefix, the values are automatically deleted.
*/
Enabled: boolean;
/**
* The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com.
*/
Bucket: string;
/**
* An optional string that you want CloudFront to prefix to the access log filenames for this streaming distribution, for example, myprefix/. If you want to enable logging, but you don't want to specify a prefix, you still must include an empty Prefix element in the Logging element.
*/
Prefix: string;
}
export interface Tag {
/**
* A string that contains Tag key. The string length should be between 1 and 128 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.
*/
Key: TagKey;
/**
* A string that contains an optional Tag value. The string length should be between 0 and 256 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.
*/
Value?: TagValue;
}
export type TagKey = string;
export type TagKeyList = TagKey[];
export interface TagKeys {
/**
* A complex type that contains Tag key elements.
*/
Items?: TagKeyList;
}
export type TagList = Tag[];
export interface TagResourceRequest {
/**
* An ARN of a CloudFront resource.
*/
Resource: ResourceARN;
/**
* A complex type that contains zero or more Tag elements.
*/
Tags: Tags;
}
export type TagValue = string;
export interface Tags {
/**
* A complex type that contains Tag elements.
*/
Items?: TagList;
}
export interface TrustedSigners {
/**
* Specifies whether you want to require viewers to use signed URLs to access the files specified by PathPattern and TargetOriginId.
*/
Enabled: boolean;
/**
* The number of trusted signers for this cache behavior.
*/
Quantity: integer;
/**
* Optional: A complex type that contains trusted signers for this cache behavior. If Quantity is 0, you can omit Items.
*/
Items?: AwsAccountNumberList;
}
export interface UntagResourceRequest {
/**
* An ARN of a CloudFront resource.
*/
Resource: ResourceARN;
/**
* A complex type that contains zero or more Tag key elements.
*/
TagKeys: TagKeys;
}
export interface UpdateCloudFrontOriginAccessIdentityRequest {
/**
* The identity's configuration information.
*/
CloudFrontOriginAccessIdentityConfig: CloudFrontOriginAccessIdentityConfig;
/**
* The identity's id.
*/
Id: string;
/**
* The value of the ETag header that you received when retrieving the identity's configuration. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface UpdateCloudFrontOriginAccessIdentityResult {
/**
* The origin access identity's information.
*/
CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity;
/**
* The current version of the configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface UpdateDistributionRequest {
/**
* The distribution's configuration information.
*/
DistributionConfig: DistributionConfig;
/**
* The distribution's id.
*/
Id: string;
/**
* The value of the ETag header that you received when retrieving the distribution's configuration. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface UpdateDistributionResult {
/**
* The distribution's information.
*/
Distribution?: Distribution;
/**
* The current version of the configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface UpdateFieldLevelEncryptionConfigRequest {
/**
* Request to update a field-level encryption configuration.
*/
FieldLevelEncryptionConfig: FieldLevelEncryptionConfig;
/**
* The ID of the configuration you want to update.
*/
Id: string;
/**
* The value of the ETag header that you received when retrieving the configuration identity to update. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface UpdateFieldLevelEncryptionConfigResult {
/**
* Return the results of updating the configuration.
*/
FieldLevelEncryption?: FieldLevelEncryption;
/**
* The value of the ETag header that you received when updating the configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface UpdateFieldLevelEncryptionProfileRequest {
/**
* Request to update a field-level encryption profile.
*/
FieldLevelEncryptionProfileConfig: FieldLevelEncryptionProfileConfig;
/**
* The ID of the field-level encryption profile request.
*/
Id: string;
/**
* The value of the ETag header that you received when retrieving the profile identity to update. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface UpdateFieldLevelEncryptionProfileResult {
/**
* Return the results of updating the profile.
*/
FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile;
/**
* The result of the field-level encryption profile request.
*/
ETag?: string;
}
export interface UpdatePublicKeyRequest {
/**
* Request to update public key information.
*/
PublicKeyConfig: PublicKeyConfig;
/**
* ID of the public key to be updated.
*/
Id: string;
/**
* The value of the ETag header that you received when retrieving the public key to update. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface UpdatePublicKeyResult {
/**
* Return the results of updating the public key.
*/
PublicKey?: PublicKey;
/**
* The current version of the update public key result. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface UpdateStreamingDistributionRequest {
/**
* The streaming distribution's configuration information.
*/
StreamingDistributionConfig: StreamingDistributionConfig;
/**
* The streaming distribution's id.
*/
Id: string;
/**
* The value of the ETag header that you received when retrieving the streaming distribution's configuration. For example: E2QWRUHAPOMQZL.
*/
IfMatch?: string;
}
export interface UpdateStreamingDistributionResult {
/**
* The streaming distribution's information.
*/
StreamingDistribution?: StreamingDistribution;
/**
* The current version of the configuration. For example: E2QWRUHAPOMQZL.
*/
ETag?: string;
}
export interface ViewerCertificate {
/**
* If you're using the CloudFront domain name for your distribution, such as d111111abcdef8.cloudfront.net, specify the following value: <CloudFrontDefaultCertificate>true<CloudFrontDefaultCertificate>
*/
CloudFrontDefaultCertificate?: boolean;
/**
* If you want viewers to use HTTPS to request your objects and you're using an alternate domain name, you must choose the type of certificate that you want to use. Specify the following value if you purchased your certificate from a third-party certificate authority: <IAMCertificateId>IAM certificate ID<IAMCertificateId> where IAM certificate ID is the ID that IAM returned when you added the certificate to the IAM certificate store. If you specify IAMCertificateId, you must also specify a value for SSLSupportMethod.
*/
IAMCertificateId?: string;
/**
* If you want viewers to use HTTPS to request your objects and you're using an alternate domain name, you must choose the type of certificate that you want to use. Specify the following value if ACM provided your certificate: <ACMCertificateArn>ARN for ACM SSL/TLS certificate<ACMCertificateArn> where ARN for ACM SSL/TLS certificate is the ARN for the ACM SSL/TLS certificate that you want to use for this distribution. If you specify ACMCertificateArn, you must also specify a value for SSLSupportMethod.
*/
ACMCertificateArn?: string;
/**
* If you specify a value for ACMCertificateArn or for IAMCertificateId, you must also specify how you want CloudFront to serve HTTPS requests: using a method that works for browsers and clients released after 2010 or one that works for all clients. sni-only: CloudFront can respond to HTTPS requests from viewers that support Server Name Indication (SNI). All modern browsers support SNI, but there are a few that don't. For a current list of the browsers that support SNI, see the Wikipedia entry Server Name Indication. To learn about options to explore if you have users with browsers that don't include SNI support, see Choosing How CloudFront Serves HTTPS Requests in the Amazon CloudFront Developer Guide. vip: CloudFront uses dedicated IP addresses for your content and can respond to HTTPS requests from any viewer. However, there are additional monthly charges. For details, including specific pricing information, see Custom SSL options for Amazon CloudFront on the AWS marketing site. Don't specify a value for SSLSupportMethod if you specified <CloudFrontDefaultCertificate>true<CloudFrontDefaultCertificate>. For more information, see Choosing How CloudFront Serves HTTPS Requests in the Amazon CloudFront Developer Guide.
*/
SSLSupportMethod?: SSLSupportMethod;
/**
* Specify the security policy that you want CloudFront to use for HTTPS connections. A security policy determines two settings: The minimum SSL/TLS protocol that CloudFront uses to communicate with viewers The cipher that CloudFront uses to encrypt the content that it returns to viewers On the CloudFront console, this setting is called Security policy. We recommend that you specify TLSv1.1_2016 unless your users are using browsers or devices that do not support TLSv1.1 or later. When both of the following are true, you must specify TLSv1 or later for the security policy: You're using a custom certificate: you specified a value for ACMCertificateArn or for IAMCertificateId You're using SNI: you specified sni-only for SSLSupportMethod If you specify true for CloudFrontDefaultCertificate, CloudFront automatically sets the security policy to TLSv1 regardless of the value that you specify for MinimumProtocolVersion. For information about the relationship between the security policy that you choose and the protocols and ciphers that CloudFront uses to communicate with viewers, see Supported SSL/TLS Protocols and Ciphers for Communication Between Viewers and CloudFront in the Amazon CloudFront Developer Guide.
*/
MinimumProtocolVersion?: MinimumProtocolVersion;
/**
* This field is no longer used. Use one of the following fields instead: ACMCertificateArn IAMCertificateId CloudFrontDefaultCertificate
*/
Certificate?: string;
/**
* This field is no longer used. Use one of the following fields instead: ACMCertificateArn IAMCertificateId CloudFrontDefaultCertificate
*/
CertificateSource?: CertificateSource;
}
export type ViewerProtocolPolicy = "allow-all"|"https-only"|"redirect-to-https"|string;
export type integer = number;
export type long = number;
export type timestamp = Date;
/**
* 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 = "2013-05-12"|"2013-11-11"|"2014-05-31"|"2014-10-21"|"2014-11-06"|"2015-04-17"|"2015-07-27"|"2015-09-17"|"2016-01-13"|"2016-01-28"|"2016-08-01"|"2016-08-20"|"2016-09-07"|"2016-09-29"|"2016-11-25"|"2016-11-25"|"2017-03-25"|"2017-03-25"|"2017-10-30"|"2017-10-30"|"2018-06-18"|"2018-06-18"|"2018-11-05"|"2018-11-05"|"2019-03-26"|"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 & ClientApiVersions;
/**
* Contains interfaces for use with the CloudFront client.
*/
export import Types = CloudFront;
}
export = CloudFront;