securityhub.d.ts
259 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config-base';
interface Blob {}
declare class SecurityHub extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: SecurityHub.Types.ClientConfiguration)
config: Config & SecurityHub.Types.ClientConfiguration;
/**
* Accepts the invitation to be a member account and be monitored by the Security Hub master account that the invitation was sent from. When the member account accepts the invitation, permission is granted to the master account to view findings generated in the member account.
*/
acceptInvitation(params: SecurityHub.Types.AcceptInvitationRequest, callback?: (err: AWSError, data: SecurityHub.Types.AcceptInvitationResponse) => void): Request<SecurityHub.Types.AcceptInvitationResponse, AWSError>;
/**
* Accepts the invitation to be a member account and be monitored by the Security Hub master account that the invitation was sent from. When the member account accepts the invitation, permission is granted to the master account to view findings generated in the member account.
*/
acceptInvitation(callback?: (err: AWSError, data: SecurityHub.Types.AcceptInvitationResponse) => void): Request<SecurityHub.Types.AcceptInvitationResponse, AWSError>;
/**
* Disables the standards specified by the provided StandardsSubscriptionArns. For more information, see Security Standards section of the AWS Security Hub User Guide.
*/
batchDisableStandards(params: SecurityHub.Types.BatchDisableStandardsRequest, callback?: (err: AWSError, data: SecurityHub.Types.BatchDisableStandardsResponse) => void): Request<SecurityHub.Types.BatchDisableStandardsResponse, AWSError>;
/**
* Disables the standards specified by the provided StandardsSubscriptionArns. For more information, see Security Standards section of the AWS Security Hub User Guide.
*/
batchDisableStandards(callback?: (err: AWSError, data: SecurityHub.Types.BatchDisableStandardsResponse) => void): Request<SecurityHub.Types.BatchDisableStandardsResponse, AWSError>;
/**
* Enables the standards specified by the provided StandardsArn. To obtain the ARN for a standard, use the DescribeStandards operation. For more information, see the Security Standards section of the AWS Security Hub User Guide.
*/
batchEnableStandards(params: SecurityHub.Types.BatchEnableStandardsRequest, callback?: (err: AWSError, data: SecurityHub.Types.BatchEnableStandardsResponse) => void): Request<SecurityHub.Types.BatchEnableStandardsResponse, AWSError>;
/**
* Enables the standards specified by the provided StandardsArn. To obtain the ARN for a standard, use the DescribeStandards operation. For more information, see the Security Standards section of the AWS Security Hub User Guide.
*/
batchEnableStandards(callback?: (err: AWSError, data: SecurityHub.Types.BatchEnableStandardsResponse) => void): Request<SecurityHub.Types.BatchEnableStandardsResponse, AWSError>;
/**
* Imports security findings generated from an integrated third-party product into Security Hub. This action is requested by the integrated product to import its findings into Security Hub. The maximum allowed size for a finding is 240 Kb. An error is returned for any finding larger than 240 Kb. After a finding is created, BatchImportFindings cannot be used to update the following finding fields and objects, which Security Hub customers use to manage their investigation workflow. Confidence Criticality Note RelatedFindings Severity Types UserDefinedFields VerificationState Workflow
*/
batchImportFindings(params: SecurityHub.Types.BatchImportFindingsRequest, callback?: (err: AWSError, data: SecurityHub.Types.BatchImportFindingsResponse) => void): Request<SecurityHub.Types.BatchImportFindingsResponse, AWSError>;
/**
* Imports security findings generated from an integrated third-party product into Security Hub. This action is requested by the integrated product to import its findings into Security Hub. The maximum allowed size for a finding is 240 Kb. An error is returned for any finding larger than 240 Kb. After a finding is created, BatchImportFindings cannot be used to update the following finding fields and objects, which Security Hub customers use to manage their investigation workflow. Confidence Criticality Note RelatedFindings Severity Types UserDefinedFields VerificationState Workflow
*/
batchImportFindings(callback?: (err: AWSError, data: SecurityHub.Types.BatchImportFindingsResponse) => void): Request<SecurityHub.Types.BatchImportFindingsResponse, AWSError>;
/**
* Used by Security Hub customers to update information about their investigation into a finding. Requested by master accounts or member accounts. Master accounts can update findings for their account and their member accounts. Member accounts can update findings for their account. Updates from BatchUpdateFindings do not affect the value of UpdatedAt for a finding. Master and member accounts can use BatchUpdateFindings to update the following finding fields and objects. Confidence Criticality Note RelatedFindings Severity Types UserDefinedFields VerificationState Workflow You can configure IAM policies to restrict access to fields and field values. For example, you might not want member accounts to be able to suppress findings or change the finding severity. See Configuring access to BatchUpdateFindings in the AWS Security Hub User Guide.
*/
batchUpdateFindings(params: SecurityHub.Types.BatchUpdateFindingsRequest, callback?: (err: AWSError, data: SecurityHub.Types.BatchUpdateFindingsResponse) => void): Request<SecurityHub.Types.BatchUpdateFindingsResponse, AWSError>;
/**
* Used by Security Hub customers to update information about their investigation into a finding. Requested by master accounts or member accounts. Master accounts can update findings for their account and their member accounts. Member accounts can update findings for their account. Updates from BatchUpdateFindings do not affect the value of UpdatedAt for a finding. Master and member accounts can use BatchUpdateFindings to update the following finding fields and objects. Confidence Criticality Note RelatedFindings Severity Types UserDefinedFields VerificationState Workflow You can configure IAM policies to restrict access to fields and field values. For example, you might not want member accounts to be able to suppress findings or change the finding severity. See Configuring access to BatchUpdateFindings in the AWS Security Hub User Guide.
*/
batchUpdateFindings(callback?: (err: AWSError, data: SecurityHub.Types.BatchUpdateFindingsResponse) => void): Request<SecurityHub.Types.BatchUpdateFindingsResponse, AWSError>;
/**
* Creates a custom action target in Security Hub. You can use custom actions on findings and insights in Security Hub to trigger target actions in Amazon CloudWatch Events.
*/
createActionTarget(params: SecurityHub.Types.CreateActionTargetRequest, callback?: (err: AWSError, data: SecurityHub.Types.CreateActionTargetResponse) => void): Request<SecurityHub.Types.CreateActionTargetResponse, AWSError>;
/**
* Creates a custom action target in Security Hub. You can use custom actions on findings and insights in Security Hub to trigger target actions in Amazon CloudWatch Events.
*/
createActionTarget(callback?: (err: AWSError, data: SecurityHub.Types.CreateActionTargetResponse) => void): Request<SecurityHub.Types.CreateActionTargetResponse, AWSError>;
/**
* Creates a custom insight in Security Hub. An insight is a consolidation of findings that relate to a security issue that requires attention or remediation. To group the related findings in the insight, use the GroupByAttribute.
*/
createInsight(params: SecurityHub.Types.CreateInsightRequest, callback?: (err: AWSError, data: SecurityHub.Types.CreateInsightResponse) => void): Request<SecurityHub.Types.CreateInsightResponse, AWSError>;
/**
* Creates a custom insight in Security Hub. An insight is a consolidation of findings that relate to a security issue that requires attention or remediation. To group the related findings in the insight, use the GroupByAttribute.
*/
createInsight(callback?: (err: AWSError, data: SecurityHub.Types.CreateInsightResponse) => void): Request<SecurityHub.Types.CreateInsightResponse, AWSError>;
/**
* Creates a member association in Security Hub between the specified accounts and the account used to make the request, which is the master account. To successfully create a member, you must use this action from an account that already has Security Hub enabled. To enable Security Hub, you can use the EnableSecurityHub operation. After you use CreateMembers to create member account associations in Security Hub, you must use the InviteMembers operation to invite the accounts to enable Security Hub and become member accounts in Security Hub. If the account owner accepts the invitation, the account becomes a member account in Security Hub. A permissions policy is added that permits the master account to view the findings generated in the member account. When Security Hub is enabled in the invited account, findings start to be sent to both the member and master accounts. To remove the association between the master and member accounts, use the DisassociateFromMasterAccount or DisassociateMembers operation.
*/
createMembers(params: SecurityHub.Types.CreateMembersRequest, callback?: (err: AWSError, data: SecurityHub.Types.CreateMembersResponse) => void): Request<SecurityHub.Types.CreateMembersResponse, AWSError>;
/**
* Creates a member association in Security Hub between the specified accounts and the account used to make the request, which is the master account. To successfully create a member, you must use this action from an account that already has Security Hub enabled. To enable Security Hub, you can use the EnableSecurityHub operation. After you use CreateMembers to create member account associations in Security Hub, you must use the InviteMembers operation to invite the accounts to enable Security Hub and become member accounts in Security Hub. If the account owner accepts the invitation, the account becomes a member account in Security Hub. A permissions policy is added that permits the master account to view the findings generated in the member account. When Security Hub is enabled in the invited account, findings start to be sent to both the member and master accounts. To remove the association between the master and member accounts, use the DisassociateFromMasterAccount or DisassociateMembers operation.
*/
createMembers(callback?: (err: AWSError, data: SecurityHub.Types.CreateMembersResponse) => void): Request<SecurityHub.Types.CreateMembersResponse, AWSError>;
/**
* Declines invitations to become a member account.
*/
declineInvitations(params: SecurityHub.Types.DeclineInvitationsRequest, callback?: (err: AWSError, data: SecurityHub.Types.DeclineInvitationsResponse) => void): Request<SecurityHub.Types.DeclineInvitationsResponse, AWSError>;
/**
* Declines invitations to become a member account.
*/
declineInvitations(callback?: (err: AWSError, data: SecurityHub.Types.DeclineInvitationsResponse) => void): Request<SecurityHub.Types.DeclineInvitationsResponse, AWSError>;
/**
* Deletes a custom action target from Security Hub. Deleting a custom action target does not affect any findings or insights that were already sent to Amazon CloudWatch Events using the custom action.
*/
deleteActionTarget(params: SecurityHub.Types.DeleteActionTargetRequest, callback?: (err: AWSError, data: SecurityHub.Types.DeleteActionTargetResponse) => void): Request<SecurityHub.Types.DeleteActionTargetResponse, AWSError>;
/**
* Deletes a custom action target from Security Hub. Deleting a custom action target does not affect any findings or insights that were already sent to Amazon CloudWatch Events using the custom action.
*/
deleteActionTarget(callback?: (err: AWSError, data: SecurityHub.Types.DeleteActionTargetResponse) => void): Request<SecurityHub.Types.DeleteActionTargetResponse, AWSError>;
/**
* Deletes the insight specified by the InsightArn.
*/
deleteInsight(params: SecurityHub.Types.DeleteInsightRequest, callback?: (err: AWSError, data: SecurityHub.Types.DeleteInsightResponse) => void): Request<SecurityHub.Types.DeleteInsightResponse, AWSError>;
/**
* Deletes the insight specified by the InsightArn.
*/
deleteInsight(callback?: (err: AWSError, data: SecurityHub.Types.DeleteInsightResponse) => void): Request<SecurityHub.Types.DeleteInsightResponse, AWSError>;
/**
* Deletes invitations received by the AWS account to become a member account.
*/
deleteInvitations(params: SecurityHub.Types.DeleteInvitationsRequest, callback?: (err: AWSError, data: SecurityHub.Types.DeleteInvitationsResponse) => void): Request<SecurityHub.Types.DeleteInvitationsResponse, AWSError>;
/**
* Deletes invitations received by the AWS account to become a member account.
*/
deleteInvitations(callback?: (err: AWSError, data: SecurityHub.Types.DeleteInvitationsResponse) => void): Request<SecurityHub.Types.DeleteInvitationsResponse, AWSError>;
/**
* Deletes the specified member accounts from Security Hub.
*/
deleteMembers(params: SecurityHub.Types.DeleteMembersRequest, callback?: (err: AWSError, data: SecurityHub.Types.DeleteMembersResponse) => void): Request<SecurityHub.Types.DeleteMembersResponse, AWSError>;
/**
* Deletes the specified member accounts from Security Hub.
*/
deleteMembers(callback?: (err: AWSError, data: SecurityHub.Types.DeleteMembersResponse) => void): Request<SecurityHub.Types.DeleteMembersResponse, AWSError>;
/**
* Returns a list of the custom action targets in Security Hub in your account.
*/
describeActionTargets(params: SecurityHub.Types.DescribeActionTargetsRequest, callback?: (err: AWSError, data: SecurityHub.Types.DescribeActionTargetsResponse) => void): Request<SecurityHub.Types.DescribeActionTargetsResponse, AWSError>;
/**
* Returns a list of the custom action targets in Security Hub in your account.
*/
describeActionTargets(callback?: (err: AWSError, data: SecurityHub.Types.DescribeActionTargetsResponse) => void): Request<SecurityHub.Types.DescribeActionTargetsResponse, AWSError>;
/**
* Returns details about the Hub resource in your account, including the HubArn and the time when you enabled Security Hub.
*/
describeHub(params: SecurityHub.Types.DescribeHubRequest, callback?: (err: AWSError, data: SecurityHub.Types.DescribeHubResponse) => void): Request<SecurityHub.Types.DescribeHubResponse, AWSError>;
/**
* Returns details about the Hub resource in your account, including the HubArn and the time when you enabled Security Hub.
*/
describeHub(callback?: (err: AWSError, data: SecurityHub.Types.DescribeHubResponse) => void): Request<SecurityHub.Types.DescribeHubResponse, AWSError>;
/**
* Returns information about the available products that you can subscribe to and integrate with Security Hub in order to consolidate findings.
*/
describeProducts(params: SecurityHub.Types.DescribeProductsRequest, callback?: (err: AWSError, data: SecurityHub.Types.DescribeProductsResponse) => void): Request<SecurityHub.Types.DescribeProductsResponse, AWSError>;
/**
* Returns information about the available products that you can subscribe to and integrate with Security Hub in order to consolidate findings.
*/
describeProducts(callback?: (err: AWSError, data: SecurityHub.Types.DescribeProductsResponse) => void): Request<SecurityHub.Types.DescribeProductsResponse, AWSError>;
/**
* Returns a list of the available standards in Security Hub. For each standard, the results include the standard ARN, the name, and a description.
*/
describeStandards(params: SecurityHub.Types.DescribeStandardsRequest, callback?: (err: AWSError, data: SecurityHub.Types.DescribeStandardsResponse) => void): Request<SecurityHub.Types.DescribeStandardsResponse, AWSError>;
/**
* Returns a list of the available standards in Security Hub. For each standard, the results include the standard ARN, the name, and a description.
*/
describeStandards(callback?: (err: AWSError, data: SecurityHub.Types.DescribeStandardsResponse) => void): Request<SecurityHub.Types.DescribeStandardsResponse, AWSError>;
/**
* Returns a list of security standards controls. For each control, the results include information about whether it is currently enabled, the severity, and a link to remediation information.
*/
describeStandardsControls(params: SecurityHub.Types.DescribeStandardsControlsRequest, callback?: (err: AWSError, data: SecurityHub.Types.DescribeStandardsControlsResponse) => void): Request<SecurityHub.Types.DescribeStandardsControlsResponse, AWSError>;
/**
* Returns a list of security standards controls. For each control, the results include information about whether it is currently enabled, the severity, and a link to remediation information.
*/
describeStandardsControls(callback?: (err: AWSError, data: SecurityHub.Types.DescribeStandardsControlsResponse) => void): Request<SecurityHub.Types.DescribeStandardsControlsResponse, AWSError>;
/**
* Disables the integration of the specified product with Security Hub. After the integration is disabled, findings from that product are no longer sent to Security Hub.
*/
disableImportFindingsForProduct(params: SecurityHub.Types.DisableImportFindingsForProductRequest, callback?: (err: AWSError, data: SecurityHub.Types.DisableImportFindingsForProductResponse) => void): Request<SecurityHub.Types.DisableImportFindingsForProductResponse, AWSError>;
/**
* Disables the integration of the specified product with Security Hub. After the integration is disabled, findings from that product are no longer sent to Security Hub.
*/
disableImportFindingsForProduct(callback?: (err: AWSError, data: SecurityHub.Types.DisableImportFindingsForProductResponse) => void): Request<SecurityHub.Types.DisableImportFindingsForProductResponse, AWSError>;
/**
* Disables Security Hub in your account only in the current Region. To disable Security Hub in all Regions, you must submit one request per Region where you have enabled Security Hub. When you disable Security Hub for a master account, it doesn't disable Security Hub for any associated member accounts. When you disable Security Hub, your existing findings and insights and any Security Hub configuration settings are deleted after 90 days and cannot be recovered. Any standards that were enabled are disabled, and your master and member account associations are removed. If you want to save your existing findings, you must export them before you disable Security Hub.
*/
disableSecurityHub(params: SecurityHub.Types.DisableSecurityHubRequest, callback?: (err: AWSError, data: SecurityHub.Types.DisableSecurityHubResponse) => void): Request<SecurityHub.Types.DisableSecurityHubResponse, AWSError>;
/**
* Disables Security Hub in your account only in the current Region. To disable Security Hub in all Regions, you must submit one request per Region where you have enabled Security Hub. When you disable Security Hub for a master account, it doesn't disable Security Hub for any associated member accounts. When you disable Security Hub, your existing findings and insights and any Security Hub configuration settings are deleted after 90 days and cannot be recovered. Any standards that were enabled are disabled, and your master and member account associations are removed. If you want to save your existing findings, you must export them before you disable Security Hub.
*/
disableSecurityHub(callback?: (err: AWSError, data: SecurityHub.Types.DisableSecurityHubResponse) => void): Request<SecurityHub.Types.DisableSecurityHubResponse, AWSError>;
/**
* Disassociates the current Security Hub member account from the associated master account.
*/
disassociateFromMasterAccount(params: SecurityHub.Types.DisassociateFromMasterAccountRequest, callback?: (err: AWSError, data: SecurityHub.Types.DisassociateFromMasterAccountResponse) => void): Request<SecurityHub.Types.DisassociateFromMasterAccountResponse, AWSError>;
/**
* Disassociates the current Security Hub member account from the associated master account.
*/
disassociateFromMasterAccount(callback?: (err: AWSError, data: SecurityHub.Types.DisassociateFromMasterAccountResponse) => void): Request<SecurityHub.Types.DisassociateFromMasterAccountResponse, AWSError>;
/**
* Disassociates the specified member accounts from the associated master account.
*/
disassociateMembers(params: SecurityHub.Types.DisassociateMembersRequest, callback?: (err: AWSError, data: SecurityHub.Types.DisassociateMembersResponse) => void): Request<SecurityHub.Types.DisassociateMembersResponse, AWSError>;
/**
* Disassociates the specified member accounts from the associated master account.
*/
disassociateMembers(callback?: (err: AWSError, data: SecurityHub.Types.DisassociateMembersResponse) => void): Request<SecurityHub.Types.DisassociateMembersResponse, AWSError>;
/**
* Enables the integration of a partner product with Security Hub. Integrated products send findings to Security Hub. When you enable a product integration, a permissions policy that grants permission for the product to send findings to Security Hub is applied.
*/
enableImportFindingsForProduct(params: SecurityHub.Types.EnableImportFindingsForProductRequest, callback?: (err: AWSError, data: SecurityHub.Types.EnableImportFindingsForProductResponse) => void): Request<SecurityHub.Types.EnableImportFindingsForProductResponse, AWSError>;
/**
* Enables the integration of a partner product with Security Hub. Integrated products send findings to Security Hub. When you enable a product integration, a permissions policy that grants permission for the product to send findings to Security Hub is applied.
*/
enableImportFindingsForProduct(callback?: (err: AWSError, data: SecurityHub.Types.EnableImportFindingsForProductResponse) => void): Request<SecurityHub.Types.EnableImportFindingsForProductResponse, AWSError>;
/**
* Enables Security Hub for your account in the current Region or the Region you specify in the request. When you enable Security Hub, you grant to Security Hub the permissions necessary to gather findings from other services that are integrated with Security Hub. When you use the EnableSecurityHub operation to enable Security Hub, you also automatically enable the following standards. CIS AWS Foundations AWS Foundational Security Best Practices You do not enable the Payment Card Industry Data Security Standard (PCI DSS) standard. To not enable the automatically enabled standards, set EnableDefaultStandards to false. After you enable Security Hub, to enable a standard, use the BatchEnableStandards operation. To disable a standard, use the BatchDisableStandards operation. To learn more, see Setting Up AWS Security Hub in the AWS Security Hub User Guide.
*/
enableSecurityHub(params: SecurityHub.Types.EnableSecurityHubRequest, callback?: (err: AWSError, data: SecurityHub.Types.EnableSecurityHubResponse) => void): Request<SecurityHub.Types.EnableSecurityHubResponse, AWSError>;
/**
* Enables Security Hub for your account in the current Region or the Region you specify in the request. When you enable Security Hub, you grant to Security Hub the permissions necessary to gather findings from other services that are integrated with Security Hub. When you use the EnableSecurityHub operation to enable Security Hub, you also automatically enable the following standards. CIS AWS Foundations AWS Foundational Security Best Practices You do not enable the Payment Card Industry Data Security Standard (PCI DSS) standard. To not enable the automatically enabled standards, set EnableDefaultStandards to false. After you enable Security Hub, to enable a standard, use the BatchEnableStandards operation. To disable a standard, use the BatchDisableStandards operation. To learn more, see Setting Up AWS Security Hub in the AWS Security Hub User Guide.
*/
enableSecurityHub(callback?: (err: AWSError, data: SecurityHub.Types.EnableSecurityHubResponse) => void): Request<SecurityHub.Types.EnableSecurityHubResponse, AWSError>;
/**
* Returns a list of the standards that are currently enabled.
*/
getEnabledStandards(params: SecurityHub.Types.GetEnabledStandardsRequest, callback?: (err: AWSError, data: SecurityHub.Types.GetEnabledStandardsResponse) => void): Request<SecurityHub.Types.GetEnabledStandardsResponse, AWSError>;
/**
* Returns a list of the standards that are currently enabled.
*/
getEnabledStandards(callback?: (err: AWSError, data: SecurityHub.Types.GetEnabledStandardsResponse) => void): Request<SecurityHub.Types.GetEnabledStandardsResponse, AWSError>;
/**
* Returns a list of findings that match the specified criteria.
*/
getFindings(params: SecurityHub.Types.GetFindingsRequest, callback?: (err: AWSError, data: SecurityHub.Types.GetFindingsResponse) => void): Request<SecurityHub.Types.GetFindingsResponse, AWSError>;
/**
* Returns a list of findings that match the specified criteria.
*/
getFindings(callback?: (err: AWSError, data: SecurityHub.Types.GetFindingsResponse) => void): Request<SecurityHub.Types.GetFindingsResponse, AWSError>;
/**
* Lists the results of the Security Hub insight specified by the insight ARN.
*/
getInsightResults(params: SecurityHub.Types.GetInsightResultsRequest, callback?: (err: AWSError, data: SecurityHub.Types.GetInsightResultsResponse) => void): Request<SecurityHub.Types.GetInsightResultsResponse, AWSError>;
/**
* Lists the results of the Security Hub insight specified by the insight ARN.
*/
getInsightResults(callback?: (err: AWSError, data: SecurityHub.Types.GetInsightResultsResponse) => void): Request<SecurityHub.Types.GetInsightResultsResponse, AWSError>;
/**
* Lists and describes insights for the specified insight ARNs.
*/
getInsights(params: SecurityHub.Types.GetInsightsRequest, callback?: (err: AWSError, data: SecurityHub.Types.GetInsightsResponse) => void): Request<SecurityHub.Types.GetInsightsResponse, AWSError>;
/**
* Lists and describes insights for the specified insight ARNs.
*/
getInsights(callback?: (err: AWSError, data: SecurityHub.Types.GetInsightsResponse) => void): Request<SecurityHub.Types.GetInsightsResponse, AWSError>;
/**
* Returns the count of all Security Hub membership invitations that were sent to the current member account, not including the currently accepted invitation.
*/
getInvitationsCount(params: SecurityHub.Types.GetInvitationsCountRequest, callback?: (err: AWSError, data: SecurityHub.Types.GetInvitationsCountResponse) => void): Request<SecurityHub.Types.GetInvitationsCountResponse, AWSError>;
/**
* Returns the count of all Security Hub membership invitations that were sent to the current member account, not including the currently accepted invitation.
*/
getInvitationsCount(callback?: (err: AWSError, data: SecurityHub.Types.GetInvitationsCountResponse) => void): Request<SecurityHub.Types.GetInvitationsCountResponse, AWSError>;
/**
* Provides the details for the Security Hub master account for the current member account.
*/
getMasterAccount(params: SecurityHub.Types.GetMasterAccountRequest, callback?: (err: AWSError, data: SecurityHub.Types.GetMasterAccountResponse) => void): Request<SecurityHub.Types.GetMasterAccountResponse, AWSError>;
/**
* Provides the details for the Security Hub master account for the current member account.
*/
getMasterAccount(callback?: (err: AWSError, data: SecurityHub.Types.GetMasterAccountResponse) => void): Request<SecurityHub.Types.GetMasterAccountResponse, AWSError>;
/**
* Returns the details for the Security Hub member accounts for the specified account IDs.
*/
getMembers(params: SecurityHub.Types.GetMembersRequest, callback?: (err: AWSError, data: SecurityHub.Types.GetMembersResponse) => void): Request<SecurityHub.Types.GetMembersResponse, AWSError>;
/**
* Returns the details for the Security Hub member accounts for the specified account IDs.
*/
getMembers(callback?: (err: AWSError, data: SecurityHub.Types.GetMembersResponse) => void): Request<SecurityHub.Types.GetMembersResponse, AWSError>;
/**
* Invites other AWS accounts to become member accounts for the Security Hub master account that the invitation is sent from. Before you can use this action to invite a member, you must first use the CreateMembers action to create the member account in Security Hub. When the account owner accepts the invitation to become a member account and enables Security Hub, the master account can view the findings generated from the member account.
*/
inviteMembers(params: SecurityHub.Types.InviteMembersRequest, callback?: (err: AWSError, data: SecurityHub.Types.InviteMembersResponse) => void): Request<SecurityHub.Types.InviteMembersResponse, AWSError>;
/**
* Invites other AWS accounts to become member accounts for the Security Hub master account that the invitation is sent from. Before you can use this action to invite a member, you must first use the CreateMembers action to create the member account in Security Hub. When the account owner accepts the invitation to become a member account and enables Security Hub, the master account can view the findings generated from the member account.
*/
inviteMembers(callback?: (err: AWSError, data: SecurityHub.Types.InviteMembersResponse) => void): Request<SecurityHub.Types.InviteMembersResponse, AWSError>;
/**
* Lists all findings-generating solutions (products) that you are subscribed to receive findings from in Security Hub.
*/
listEnabledProductsForImport(params: SecurityHub.Types.ListEnabledProductsForImportRequest, callback?: (err: AWSError, data: SecurityHub.Types.ListEnabledProductsForImportResponse) => void): Request<SecurityHub.Types.ListEnabledProductsForImportResponse, AWSError>;
/**
* Lists all findings-generating solutions (products) that you are subscribed to receive findings from in Security Hub.
*/
listEnabledProductsForImport(callback?: (err: AWSError, data: SecurityHub.Types.ListEnabledProductsForImportResponse) => void): Request<SecurityHub.Types.ListEnabledProductsForImportResponse, AWSError>;
/**
* Lists all Security Hub membership invitations that were sent to the current AWS account.
*/
listInvitations(params: SecurityHub.Types.ListInvitationsRequest, callback?: (err: AWSError, data: SecurityHub.Types.ListInvitationsResponse) => void): Request<SecurityHub.Types.ListInvitationsResponse, AWSError>;
/**
* Lists all Security Hub membership invitations that were sent to the current AWS account.
*/
listInvitations(callback?: (err: AWSError, data: SecurityHub.Types.ListInvitationsResponse) => void): Request<SecurityHub.Types.ListInvitationsResponse, AWSError>;
/**
* Lists details about all member accounts for the current Security Hub master account.
*/
listMembers(params: SecurityHub.Types.ListMembersRequest, callback?: (err: AWSError, data: SecurityHub.Types.ListMembersResponse) => void): Request<SecurityHub.Types.ListMembersResponse, AWSError>;
/**
* Lists details about all member accounts for the current Security Hub master account.
*/
listMembers(callback?: (err: AWSError, data: SecurityHub.Types.ListMembersResponse) => void): Request<SecurityHub.Types.ListMembersResponse, AWSError>;
/**
* Returns a list of tags associated with a resource.
*/
listTagsForResource(params: SecurityHub.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: SecurityHub.Types.ListTagsForResourceResponse) => void): Request<SecurityHub.Types.ListTagsForResourceResponse, AWSError>;
/**
* Returns a list of tags associated with a resource.
*/
listTagsForResource(callback?: (err: AWSError, data: SecurityHub.Types.ListTagsForResourceResponse) => void): Request<SecurityHub.Types.ListTagsForResourceResponse, AWSError>;
/**
* Adds one or more tags to a resource.
*/
tagResource(params: SecurityHub.Types.TagResourceRequest, callback?: (err: AWSError, data: SecurityHub.Types.TagResourceResponse) => void): Request<SecurityHub.Types.TagResourceResponse, AWSError>;
/**
* Adds one or more tags to a resource.
*/
tagResource(callback?: (err: AWSError, data: SecurityHub.Types.TagResourceResponse) => void): Request<SecurityHub.Types.TagResourceResponse, AWSError>;
/**
* Removes one or more tags from a resource.
*/
untagResource(params: SecurityHub.Types.UntagResourceRequest, callback?: (err: AWSError, data: SecurityHub.Types.UntagResourceResponse) => void): Request<SecurityHub.Types.UntagResourceResponse, AWSError>;
/**
* Removes one or more tags from a resource.
*/
untagResource(callback?: (err: AWSError, data: SecurityHub.Types.UntagResourceResponse) => void): Request<SecurityHub.Types.UntagResourceResponse, AWSError>;
/**
* Updates the name and description of a custom action target in Security Hub.
*/
updateActionTarget(params: SecurityHub.Types.UpdateActionTargetRequest, callback?: (err: AWSError, data: SecurityHub.Types.UpdateActionTargetResponse) => void): Request<SecurityHub.Types.UpdateActionTargetResponse, AWSError>;
/**
* Updates the name and description of a custom action target in Security Hub.
*/
updateActionTarget(callback?: (err: AWSError, data: SecurityHub.Types.UpdateActionTargetResponse) => void): Request<SecurityHub.Types.UpdateActionTargetResponse, AWSError>;
/**
* UpdateFindings is deprecated. Instead of UpdateFindings, use BatchUpdateFindings. Updates the Note and RecordState of the Security Hub-aggregated findings that the filter attributes specify. Any member account that can view the finding also sees the update to the finding.
*/
updateFindings(params: SecurityHub.Types.UpdateFindingsRequest, callback?: (err: AWSError, data: SecurityHub.Types.UpdateFindingsResponse) => void): Request<SecurityHub.Types.UpdateFindingsResponse, AWSError>;
/**
* UpdateFindings is deprecated. Instead of UpdateFindings, use BatchUpdateFindings. Updates the Note and RecordState of the Security Hub-aggregated findings that the filter attributes specify. Any member account that can view the finding also sees the update to the finding.
*/
updateFindings(callback?: (err: AWSError, data: SecurityHub.Types.UpdateFindingsResponse) => void): Request<SecurityHub.Types.UpdateFindingsResponse, AWSError>;
/**
* Updates the Security Hub insight identified by the specified insight ARN.
*/
updateInsight(params: SecurityHub.Types.UpdateInsightRequest, callback?: (err: AWSError, data: SecurityHub.Types.UpdateInsightResponse) => void): Request<SecurityHub.Types.UpdateInsightResponse, AWSError>;
/**
* Updates the Security Hub insight identified by the specified insight ARN.
*/
updateInsight(callback?: (err: AWSError, data: SecurityHub.Types.UpdateInsightResponse) => void): Request<SecurityHub.Types.UpdateInsightResponse, AWSError>;
/**
* Updates configuration options for Security Hub.
*/
updateSecurityHubConfiguration(params: SecurityHub.Types.UpdateSecurityHubConfigurationRequest, callback?: (err: AWSError, data: SecurityHub.Types.UpdateSecurityHubConfigurationResponse) => void): Request<SecurityHub.Types.UpdateSecurityHubConfigurationResponse, AWSError>;
/**
* Updates configuration options for Security Hub.
*/
updateSecurityHubConfiguration(callback?: (err: AWSError, data: SecurityHub.Types.UpdateSecurityHubConfigurationResponse) => void): Request<SecurityHub.Types.UpdateSecurityHubConfigurationResponse, AWSError>;
/**
* Used to control whether an individual security standard control is enabled or disabled.
*/
updateStandardsControl(params: SecurityHub.Types.UpdateStandardsControlRequest, callback?: (err: AWSError, data: SecurityHub.Types.UpdateStandardsControlResponse) => void): Request<SecurityHub.Types.UpdateStandardsControlResponse, AWSError>;
/**
* Used to control whether an individual security standard control is enabled or disabled.
*/
updateStandardsControl(callback?: (err: AWSError, data: SecurityHub.Types.UpdateStandardsControlResponse) => void): Request<SecurityHub.Types.UpdateStandardsControlResponse, AWSError>;
}
declare namespace SecurityHub {
export interface AcceptInvitationRequest {
/**
* The account ID of the Security Hub master account that sent the invitation.
*/
MasterId: NonEmptyString;
/**
* The ID of the invitation sent from the Security Hub master account.
*/
InvitationId: NonEmptyString;
}
export interface AcceptInvitationResponse {
}
export interface AccountDetails {
/**
* The ID of an AWS account.
*/
AccountId?: AccountId;
/**
* The email of an AWS account.
*/
Email?: NonEmptyString;
}
export type AccountDetailsList = AccountDetails[];
export type AccountId = string;
export type AccountIdList = NonEmptyString[];
export interface ActionTarget {
/**
* The ARN for the target action.
*/
ActionTargetArn: NonEmptyString;
/**
* The name of the action target.
*/
Name: NonEmptyString;
/**
* The description of the target action.
*/
Description: NonEmptyString;
}
export type ActionTargetList = ActionTarget[];
export type ArnList = NonEmptyString[];
export interface AvailabilityZone {
/**
* The name of the Availability Zone.
*/
ZoneName?: NonEmptyString;
/**
* The ID of the subnet. You can specify one subnet per Availability Zone.
*/
SubnetId?: NonEmptyString;
}
export type AvailabilityZones = AvailabilityZone[];
export interface AwsApiGatewayAccessLogSettings {
/**
* A single-line format of the access logs of data, as specified by selected $context variables. The format must include at least $context.requestId.
*/
Format?: NonEmptyString;
/**
* The ARN of the CloudWatch Logs log group that receives the access logs.
*/
DestinationArn?: NonEmptyString;
}
export interface AwsApiGatewayCanarySettings {
/**
* The percentage of traffic that is diverted to a canary deployment.
*/
PercentTraffic?: Double;
/**
* The deployment identifier for the canary deployment.
*/
DeploymentId?: NonEmptyString;
/**
* Stage variables that are overridden in the canary release deployment. The variables include new stage variables that are introduced in the canary. Each variable is represented as a string-to-string map between the stage variable name and the variable value.
*/
StageVariableOverrides?: FieldMap;
/**
* Indicates whether the canary deployment uses the stage cache.
*/
UseStageCache?: Boolean;
}
export interface AwsApiGatewayEndpointConfiguration {
/**
* A list of endpoint types for the REST API. For an edge-optimized API, the endpoint type is EDGE. For a Regional API, the endpoint type is REGIONAL. For a private API, the endpoint type is PRIVATE.
*/
Types?: NonEmptyStringList;
}
export interface AwsApiGatewayMethodSettings {
/**
* Indicates whether CloudWatch metrics are enabled for the method.
*/
MetricsEnabled?: Boolean;
/**
* The logging level for this method. The logging level affects the log entries that are pushed to CloudWatch Logs. If the logging level is ERROR, then the logs only include error-level entries. If the logging level is INFO, then the logs include both ERROR events and extra informational events. Valid values: OFF | ERROR | INFO
*/
LoggingLevel?: NonEmptyString;
/**
* Indicates whether data trace logging is enabled for the method. Data trace logging affects the log entries that are pushed to CloudWatch Logs.
*/
DataTraceEnabled?: Boolean;
/**
* The throttling burst limit for the method.
*/
ThrottlingBurstLimit?: Integer;
/**
* The throttling rate limit for the method.
*/
ThrottlingRateLimit?: Double;
/**
* Indicates whether responses are cached and returned for requests. For responses to be cached, a cache cluster must be enabled on the stage.
*/
CachingEnabled?: Boolean;
/**
* Specifies the time to live (TTL), in seconds, for cached responses. The higher the TTL, the longer the response is cached.
*/
CacheTtlInSeconds?: Integer;
/**
* Indicates whether the cached responses are encrypted.
*/
CacheDataEncrypted?: Boolean;
/**
* Indicates whether authorization is required for a cache invalidation request.
*/
RequireAuthorizationForCacheControl?: Boolean;
/**
* Indicates how to handle unauthorized requests for cache invalidation. Valid values: FAIL_WITH_403 | SUCCEED_WITH_RESPONSE_HEADER | SUCCEED_WITHOUT_RESPONSE_HEADER
*/
UnauthorizedCacheControlHeaderStrategy?: NonEmptyString;
/**
* The HTTP method. You can use an asterisk (*) as a wildcard to apply method settings to multiple methods.
*/
HttpMethod?: NonEmptyString;
/**
* The resource path for this method. Forward slashes (/) are encoded as ~1 . The initial slash must include a forward slash. For example, the path value /resource/subresource must be encoded as /~1resource~1subresource. To specify the root path, use only a slash (/). You can use an asterisk (*) as a wildcard to apply method settings to multiple methods.
*/
ResourcePath?: NonEmptyString;
}
export type AwsApiGatewayMethodSettingsList = AwsApiGatewayMethodSettings[];
export interface AwsApiGatewayRestApiDetails {
/**
* The identifier of the REST API.
*/
Id?: NonEmptyString;
/**
* The name of the REST API.
*/
Name?: NonEmptyString;
/**
* A description of the REST API.
*/
Description?: NonEmptyString;
/**
* Indicates when the API was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedDate?: NonEmptyString;
/**
* The version identifier for the REST API.
*/
Version?: NonEmptyString;
/**
* The list of binary media types supported by the REST API.
*/
BinaryMediaTypes?: NonEmptyStringList;
/**
* The minimum size in bytes of a payload before compression is enabled. If null, then compression is disabled. If 0, then all payloads are compressed.
*/
MinimumCompressionSize?: Integer;
/**
* The source of the API key for metering requests according to a usage plan. HEADER indicates whether to read the API key from the X-API-Key header of a request. AUTHORIZER indicates whether to read the API key from the UsageIdentifierKey from a custom authorizer.
*/
ApiKeySource?: NonEmptyString;
/**
* The endpoint configuration of the REST API.
*/
EndpointConfiguration?: AwsApiGatewayEndpointConfiguration;
}
export interface AwsApiGatewayStageDetails {
/**
* The identifier of the deployment that the stage points to.
*/
DeploymentId?: NonEmptyString;
/**
* The identifier of the client certificate for the stage.
*/
ClientCertificateId?: NonEmptyString;
/**
* The name of the stage.
*/
StageName?: NonEmptyString;
/**
* A description of the stage.
*/
Description?: NonEmptyString;
/**
* Indicates whether a cache cluster is enabled for the stage.
*/
CacheClusterEnabled?: Boolean;
/**
* If a cache cluster is enabled, the size of the cache cluster.
*/
CacheClusterSize?: NonEmptyString;
/**
* If a cache cluster is enabled, the status of the cache cluster.
*/
CacheClusterStatus?: NonEmptyString;
/**
* Defines the method settings for the stage.
*/
MethodSettings?: AwsApiGatewayMethodSettingsList;
/**
* A map that defines the stage variables for the stage. Variable names can have alphanumeric and underscore characters. Variable values can contain the following characters: Uppercase and lowercase letters Numbers Special characters -._~:/?#&=,
*/
Variables?: FieldMap;
/**
* The version of the API documentation that is associated with the stage.
*/
DocumentationVersion?: NonEmptyString;
/**
* Settings for logging access for the stage.
*/
AccessLogSettings?: AwsApiGatewayAccessLogSettings;
/**
* Information about settings for canary deployment in the stage.
*/
CanarySettings?: AwsApiGatewayCanarySettings;
/**
* Indicates whether active tracing with AWS X-Ray is enabled for the stage.
*/
TracingEnabled?: Boolean;
/**
* Indicates when the stage was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedDate?: NonEmptyString;
/**
* Indicates when the stage was most recently updated. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LastUpdatedDate?: NonEmptyString;
/**
* The ARN of the web ACL associated with the stage.
*/
WebAclArn?: NonEmptyString;
}
export interface AwsApiGatewayV2ApiDetails {
/**
* The URI of the API. Uses the format <api-id>.execute-api.<region>.amazonaws.com The stage name is typically appended to the URI to form a complete path to a deployed API stage.
*/
ApiEndpoint?: NonEmptyString;
/**
* The identifier of the API.
*/
ApiId?: NonEmptyString;
/**
* An API key selection expression. Supported only for WebSocket APIs.
*/
ApiKeySelectionExpression?: NonEmptyString;
/**
* Indicates when the API was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedDate?: NonEmptyString;
/**
* A description of the API.
*/
Description?: NonEmptyString;
/**
* The version identifier for the API.
*/
Version?: NonEmptyString;
/**
* The name of the API.
*/
Name?: NonEmptyString;
/**
* The API protocol for the API. Valid values: WEBSOCKET | HTTP
*/
ProtocolType?: NonEmptyString;
/**
* The route selection expression for the API. For HTTP APIs, must be ${request.method} ${request.path}. This is the default value for HTTP APIs. For WebSocket APIs, there is no default value.
*/
RouteSelectionExpression?: NonEmptyString;
/**
* A cross-origin resource sharing (CORS) configuration. Supported only for HTTP APIs.
*/
CorsConfiguration?: AwsCorsConfiguration;
}
export interface AwsApiGatewayV2RouteSettings {
/**
* Indicates whether detailed metrics are enabled.
*/
DetailedMetricsEnabled?: Boolean;
/**
* The logging level. The logging level affects the log entries that are pushed to CloudWatch Logs. Supported only for WebSocket APIs. If the logging level is ERROR, then the logs only include error-level entries. If the logging level is INFO, then the logs include both ERROR events and extra informational events. Valid values: OFF | ERROR | INFO
*/
LoggingLevel?: NonEmptyString;
/**
* Indicates whether data trace logging is enabled. Data trace logging affects the log entries that are pushed to CloudWatch Logs. Supported only for WebSocket APIs.
*/
DataTraceEnabled?: Boolean;
/**
* The throttling burst limit.
*/
ThrottlingBurstLimit?: Integer;
/**
* The throttling rate limit.
*/
ThrottlingRateLimit?: Double;
}
export interface AwsApiGatewayV2StageDetails {
/**
* Indicates when the stage was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedDate?: NonEmptyString;
/**
* The description of the stage.
*/
Description?: NonEmptyString;
/**
* Default route settings for the stage.
*/
DefaultRouteSettings?: AwsApiGatewayV2RouteSettings;
/**
* The identifier of the deployment that the stage is associated with.
*/
DeploymentId?: NonEmptyString;
/**
* Indicates when the stage was most recently updated. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LastUpdatedDate?: NonEmptyString;
/**
* The route settings for the stage.
*/
RouteSettings?: AwsApiGatewayV2RouteSettings;
/**
* The name of the stage.
*/
StageName?: NonEmptyString;
/**
* A map that defines the stage variables for the stage. Variable names can have alphanumeric and underscore characters. Variable values can contain the following characters: Uppercase and lowercase letters Numbers Special characters -._~:/?#&=,
*/
StageVariables?: FieldMap;
/**
* Information about settings for logging access for the stage.
*/
AccessLogSettings?: AwsApiGatewayAccessLogSettings;
/**
* Indicates whether updates to an API automatically trigger a new deployment.
*/
AutoDeploy?: Boolean;
/**
* The status of the last deployment of a stage. Supported only if the stage has automatic deployment enabled.
*/
LastDeploymentStatusMessage?: NonEmptyString;
/**
* Indicates whether the stage is managed by API Gateway.
*/
ApiGatewayManaged?: Boolean;
}
export interface AwsAutoScalingAutoScalingGroupDetails {
/**
* The name of the launch configuration.
*/
LaunchConfigurationName?: NonEmptyString;
/**
* The list of load balancers associated with the group.
*/
LoadBalancerNames?: StringList;
/**
* The service to use for the health checks.
*/
HealthCheckType?: NonEmptyString;
/**
* The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before it checks the health status of an EC2 instance that has come into service.
*/
HealthCheckGracePeriod?: Integer;
/**
* Indicates when the auto scaling group was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedTime?: NonEmptyString;
}
export interface AwsCertificateManagerCertificateDetails {
/**
* The ARN of the private certificate authority (CA) that will be used to issue the certificate.
*/
CertificateAuthorityArn?: NonEmptyString;
/**
* Indicates when the certificate was requested. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedAt?: NonEmptyString;
/**
* The fully qualified domain name (FQDN), such as www.example.com, that is secured by the certificate.
*/
DomainName?: NonEmptyString;
/**
* Contains information about the initial validation of each domain name that occurs as a result of the RequestCertificate request. Only provided if the certificate type is AMAZON_ISSUED.
*/
DomainValidationOptions?: AwsCertificateManagerCertificateDomainValidationOptions;
/**
* Contains a list of Extended Key Usage X.509 v3 extension objects. Each object specifies a purpose for which the certificate public key can be used and consists of a name and an object identifier (OID).
*/
ExtendedKeyUsages?: AwsCertificateManagerCertificateExtendedKeyUsages;
/**
* For a failed certificate request, the reason for the failure. Valid values: NO_AVAILABLE_CONTACTS | ADDITIONAL_VERIFICATION_REQUIRED | DOMAIN_NOT_ALLOWED | INVALID_PUBLIC_DOMAIN | DOMAIN_VALIDATION_DENIED | CAA_ERROR | PCA_LIMIT_EXCEEDED | PCA_INVALID_ARN | PCA_INVALID_STATE | PCA_REQUEST_FAILED | PCA_NAME_CONSTRAINTS_VALIDATION | PCA_RESOURCE_NOT_FOUND | PCA_INVALID_ARGS | PCA_INVALID_DURATION | PCA_ACCESS_DENIED | SLR_NOT_FOUND | OTHER
*/
FailureReason?: NonEmptyString;
/**
* Indicates when the certificate was imported. Provided if the certificate type is IMPORTED. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
ImportedAt?: NonEmptyString;
/**
* The list of ARNs for the AWS resources that use the certificate.
*/
InUseBy?: StringList;
/**
* Indicates when the certificate was issued. Provided if the certificate type is AMAZON_ISSUED. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
IssuedAt?: NonEmptyString;
/**
* The name of the certificate authority that issued and signed the certificate.
*/
Issuer?: NonEmptyString;
/**
* The algorithm that was used to generate the public-private key pair. Valid values: RSA_2048 | RSA_1024 | RSA_4096 | EC_prime256v1 | EC_secp384r1 | EC_secp521r1
*/
KeyAlgorithm?: NonEmptyString;
/**
* A list of key usage X.509 v3 extension objects.
*/
KeyUsages?: AwsCertificateManagerCertificateKeyUsages;
/**
* The time after which the certificate becomes invalid. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
NotAfter?: NonEmptyString;
/**
* The time before which the certificate is not valid. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
NotBefore?: NonEmptyString;
/**
* Provides a value that specifies whether to add the certificate to a transparency log.
*/
Options?: AwsCertificateManagerCertificateOptions;
/**
* Whether the certificate is eligible for renewal. Valid values: ELIGIBLE | INELIGIBLE
*/
RenewalEligibility?: NonEmptyString;
/**
* Information about the status of the AWS Certificate Manager managed renewal for the certificate. Provided only when the certificate type is AMAZON_ISSUED.
*/
RenewalSummary?: AwsCertificateManagerCertificateRenewalSummary;
/**
* The serial number of the certificate.
*/
Serial?: NonEmptyString;
/**
* The algorithm that was used to sign the certificate.
*/
SignatureAlgorithm?: NonEmptyString;
/**
* The status of the certificate. Valid values: PENDING_VALIDATION | ISSUED | INACTIVE | EXPIRED | VALIDATION_TIMED_OUT | REVOKED | FAILED
*/
Status?: NonEmptyString;
/**
* The name of the entity that is associated with the public key contained in the certificate.
*/
Subject?: NonEmptyString;
/**
* One or more domain names (subject alternative names) included in the certificate. This list contains the domain names that are bound to the public key that is contained in the certificate. The subject alternative names include the canonical domain name (CN) of the certificate and additional domain names that can be used to connect to the website.
*/
SubjectAlternativeNames?: StringList;
/**
* The source of the certificate. For certificates that AWS Certificate Manager provides, Type is AMAZON_ISSUED. For certificates that are imported with ImportCertificate, Type is IMPORTED. Valid values: IMPORTED | AMAZON_ISSUED | PRIVATE
*/
Type?: NonEmptyString;
}
export interface AwsCertificateManagerCertificateDomainValidationOption {
/**
* A fully qualified domain name (FQDN) in the certificate.
*/
DomainName?: NonEmptyString;
/**
* The CNAME record that is added to the DNS database for domain validation.
*/
ResourceRecord?: AwsCertificateManagerCertificateResourceRecord;
/**
* The domain name that AWS Certificate Manager uses to send domain validation emails.
*/
ValidationDomain?: NonEmptyString;
/**
* A list of email addresses that AWS Certificate Manager uses to send domain validation emails.
*/
ValidationEmails?: StringList;
/**
* The method used to validate the domain name.
*/
ValidationMethod?: NonEmptyString;
/**
* The validation status of the domain name.
*/
ValidationStatus?: NonEmptyString;
}
export type AwsCertificateManagerCertificateDomainValidationOptions = AwsCertificateManagerCertificateDomainValidationOption[];
export interface AwsCertificateManagerCertificateExtendedKeyUsage {
/**
* The name of an extension value. Indicates the purpose for which the certificate public key can be used.
*/
Name?: NonEmptyString;
/**
* An object identifier (OID) for the extension value. The format is numbers separated by periods.
*/
OId?: NonEmptyString;
}
export type AwsCertificateManagerCertificateExtendedKeyUsages = AwsCertificateManagerCertificateExtendedKeyUsage[];
export interface AwsCertificateManagerCertificateKeyUsage {
/**
* The key usage extension name.
*/
Name?: NonEmptyString;
}
export type AwsCertificateManagerCertificateKeyUsages = AwsCertificateManagerCertificateKeyUsage[];
export interface AwsCertificateManagerCertificateOptions {
/**
* Whether to add the certificate to a transparency log. Valid values: DISABLED | ENABLED
*/
CertificateTransparencyLoggingPreference?: NonEmptyString;
}
export interface AwsCertificateManagerCertificateRenewalSummary {
/**
* Information about the validation of each domain name in the certificate, as it pertains to AWS Certificate Manager managed renewal. Provided only when the certificate type is AMAZON_ISSUED.
*/
DomainValidationOptions?: AwsCertificateManagerCertificateDomainValidationOptions;
/**
* The status of the AWS Certificate Manager managed renewal of the certificate. Valid values: PENDING_AUTO_RENEWAL | PENDING_VALIDATION | SUCCESS | FAILED
*/
RenewalStatus?: NonEmptyString;
/**
* The reason that a renewal request was unsuccessful. Valid values: NO_AVAILABLE_CONTACTS | ADDITIONAL_VERIFICATION_REQUIRED | DOMAIN_NOT_ALLOWED | INVALID_PUBLIC_DOMAIN | DOMAIN_VALIDATION_DENIED | CAA_ERROR | PCA_LIMIT_EXCEEDED | PCA_INVALID_ARN | PCA_INVALID_STATE | PCA_REQUEST_FAILED | PCA_NAME_CONSTRAINTS_VALIDATION | PCA_RESOURCE_NOT_FOUND | PCA_INVALID_ARGS | PCA_INVALID_DURATION | PCA_ACCESS_DENIED | SLR_NOT_FOUND | OTHER
*/
RenewalStatusReason?: NonEmptyString;
/**
* Indicates when the renewal summary was last updated. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
UpdatedAt?: NonEmptyString;
}
export interface AwsCertificateManagerCertificateResourceRecord {
/**
* The name of the resource.
*/
Name?: NonEmptyString;
/**
* The type of resource.
*/
Type?: NonEmptyString;
/**
* The value of the resource.
*/
Value?: NonEmptyString;
}
export interface AwsCloudFrontDistributionCacheBehavior {
/**
* The protocol that viewers can use to access the files in an origin. You can specify the following options: allow-all - Viewers can use HTTP or HTTPS. redirect-to-https - CloudFront responds to HTTP requests with an HTTP status code of 301 (Moved Permanently) and the HTTPS URL. The viewer then uses the new URL to resubmit. https-only - CloudFront responds to HTTP request with an HTTP status code of 403 (Forbidden).
*/
ViewerProtocolPolicy?: NonEmptyString;
}
export interface AwsCloudFrontDistributionCacheBehaviors {
/**
* The cache behaviors for the distribution.
*/
Items?: AwsCloudFrontDistributionCacheBehaviorsItemList;
}
export type AwsCloudFrontDistributionCacheBehaviorsItemList = AwsCloudFrontDistributionCacheBehavior[];
export interface AwsCloudFrontDistributionDefaultCacheBehavior {
/**
* The protocol that viewers can use to access the files in an origin. You can specify the following options: allow-all - Viewers can use HTTP or HTTPS. redirect-to-https - CloudFront responds to HTTP requests with an HTTP status code of 301 (Moved Permanently) and the HTTPS URL. The viewer then uses the new URL to resubmit. https-only - CloudFront responds to HTTP request with an HTTP status code of 403 (Forbidden).
*/
ViewerProtocolPolicy?: NonEmptyString;
}
export interface AwsCloudFrontDistributionDetails {
/**
* Provides information about the cache configuration for the distribution.
*/
CacheBehaviors?: AwsCloudFrontDistributionCacheBehaviors;
/**
* The default cache behavior for the configuration.
*/
DefaultCacheBehavior?: AwsCloudFrontDistributionDefaultCacheBehavior;
/**
* The object that CloudFront sends in response to requests from the origin (for example, index.html) when a viewer requests the root URL for the distribution (http://www.example.com) instead of an object in your distribution (http://www.example.com/product-description.html).
*/
DefaultRootObject?: NonEmptyString;
/**
* The domain name corresponding to the distribution.
*/
DomainName?: NonEmptyString;
/**
* The entity tag is a hash of the object.
*/
ETag?: NonEmptyString;
/**
* Indicates when that the distribution was last modified. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LastModifiedTime?: NonEmptyString;
/**
* A complex type that controls whether access logs are written for the distribution.
*/
Logging?: AwsCloudFrontDistributionLogging;
/**
* A complex type that contains information about origins for this distribution.
*/
Origins?: AwsCloudFrontDistributionOrigins;
/**
* Provides information about the origin groups in the distribution.
*/
OriginGroups?: AwsCloudFrontDistributionOriginGroups;
/**
* Indicates the current status of the distribution.
*/
Status?: NonEmptyString;
/**
* A unique identifier that specifies the AWS WAF web ACL, if any, to associate with this distribution.
*/
WebAclId?: NonEmptyString;
}
export interface AwsCloudFrontDistributionLogging {
/**
* The Amazon S3 bucket to store the access logs in.
*/
Bucket?: NonEmptyString;
/**
* With this field, you can enable or disable the selected distribution.
*/
Enabled?: Boolean;
/**
* Specifies whether you want CloudFront to include cookies in access logs.
*/
IncludeCookies?: Boolean;
/**
* An optional string that you want CloudFront to use as a prefix to the access log filenames for this distribution.
*/
Prefix?: NonEmptyString;
}
export interface AwsCloudFrontDistributionOriginGroup {
/**
* Provides the criteria for an origin group to fail over.
*/
FailoverCriteria?: AwsCloudFrontDistributionOriginGroupFailover;
}
export interface AwsCloudFrontDistributionOriginGroupFailover {
/**
* Information about the status codes that cause an origin group to fail over.
*/
StatusCodes?: AwsCloudFrontDistributionOriginGroupFailoverStatusCodes;
}
export interface AwsCloudFrontDistributionOriginGroupFailoverStatusCodes {
/**
* The list of status code values that can cause a failover to the next origin.
*/
Items?: AwsCloudFrontDistributionOriginGroupFailoverStatusCodesItemList;
/**
* The number of status codes that can cause a failover.
*/
Quantity?: Integer;
}
export type AwsCloudFrontDistributionOriginGroupFailoverStatusCodesItemList = Integer[];
export interface AwsCloudFrontDistributionOriginGroups {
/**
* The list of origin groups.
*/
Items?: AwsCloudFrontDistributionOriginGroupsItemList;
}
export type AwsCloudFrontDistributionOriginGroupsItemList = AwsCloudFrontDistributionOriginGroup[];
export interface AwsCloudFrontDistributionOriginItem {
/**
* Amazon S3 origins: The DNS name of the Amazon S3 bucket from which you want CloudFront to get objects for this origin.
*/
DomainName?: NonEmptyString;
/**
* A unique identifier for the origin or origin group.
*/
Id?: NonEmptyString;
/**
* An optional element that causes CloudFront to request your content from a directory in your Amazon S3 bucket or your custom origin.
*/
OriginPath?: NonEmptyString;
/**
* An origin that is an S3 bucket that is not configured with static website hosting.
*/
S3OriginConfig?: AwsCloudFrontDistributionOriginS3OriginConfig;
}
export type AwsCloudFrontDistributionOriginItemList = AwsCloudFrontDistributionOriginItem[];
export interface AwsCloudFrontDistributionOriginS3OriginConfig {
/**
* The CloudFront origin access identity to associate with the origin.
*/
OriginAccessIdentity?: NonEmptyString;
}
export interface AwsCloudFrontDistributionOrigins {
/**
* A complex type that contains origins or origin groups for this distribution.
*/
Items?: AwsCloudFrontDistributionOriginItemList;
}
export interface AwsCloudTrailTrailDetails {
/**
* The ARN of the log group that CloudTrail logs are delivered to.
*/
CloudWatchLogsLogGroupArn?: NonEmptyString;
/**
* The ARN of the role that the CloudWatch Logs endpoint assumes when it writes to the log group.
*/
CloudWatchLogsRoleArn?: NonEmptyString;
/**
* Indicates whether the trail has custom event selectors.
*/
HasCustomEventSelectors?: Boolean;
/**
* The Region where the trail was created.
*/
HomeRegion?: NonEmptyString;
/**
* Indicates whether the trail publishes events from global services such as IAM to the log files.
*/
IncludeGlobalServiceEvents?: Boolean;
/**
* Indicates whether the trail applies only to the current Region or to all Regions.
*/
IsMultiRegionTrail?: Boolean;
/**
* Whether the trail is created for all accounts in an organization in AWS Organizations, or only for the current AWS account.
*/
IsOrganizationTrail?: Boolean;
/**
* The AWS KMS key ID to use to encrypt the logs.
*/
KmsKeyId?: NonEmptyString;
/**
* Indicates whether CloudTrail log file validation is enabled.
*/
LogFileValidationEnabled?: Boolean;
/**
* The name of the trail.
*/
Name?: NonEmptyString;
/**
* The name of the S3 bucket where the log files are published.
*/
S3BucketName?: NonEmptyString;
/**
* The S3 key prefix. The key prefix is added after the name of the S3 bucket where the log files are published.
*/
S3KeyPrefix?: NonEmptyString;
/**
* The ARN of the SNS topic that is used for notifications of log file delivery.
*/
SnsTopicArn?: NonEmptyString;
/**
* The name of the SNS topic that is used for notifications of log file delivery.
*/
SnsTopicName?: NonEmptyString;
/**
* The ARN of the trail.
*/
TrailArn?: NonEmptyString;
}
export interface AwsCodeBuildProjectDetails {
/**
* The AWS Key Management Service (AWS KMS) customer master key (CMK) used to encrypt the build output artifacts. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK alias (using the format alias/alias-name).
*/
EncryptionKey?: NonEmptyString;
/**
* Information about the build environment for this build project.
*/
Environment?: AwsCodeBuildProjectEnvironment;
/**
* The name of the build project.
*/
Name?: NonEmptyString;
/**
* Information about the build input source code for this build project.
*/
Source?: AwsCodeBuildProjectSource;
/**
* The ARN of the IAM role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.
*/
ServiceRole?: NonEmptyString;
/**
* Information about the VPC configuration that AWS CodeBuild accesses.
*/
VpcConfig?: AwsCodeBuildProjectVpcConfig;
}
export interface AwsCodeBuildProjectEnvironment {
/**
* The certificate to use with this build project.
*/
Certificate?: NonEmptyString;
/**
* The type of credentials AWS CodeBuild uses to pull images in your build. Valid values: CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust the AWS CodeBuild service principal. SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role. When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.
*/
ImagePullCredentialsType?: NonEmptyString;
/**
* The credentials for access to a private registry.
*/
RegistryCredential?: AwsCodeBuildProjectEnvironmentRegistryCredential;
/**
* The type of build environment to use for related builds. The environment type ARM_CONTAINER is available only in Regions US East (N. Virginia), US East (Ohio), US West (Oregon), Europe (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and Europe (Frankfurt). The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in Regions US East (N. Virginia), US East (N. Virginia), US West (Oregon), Canada (Central), Europe (Ireland), Europe (London), Europe (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia). The environment type LINUX_GPU_CONTAINER is available only in Regions US East (N. Virginia), US East (N. Virginia), US West (Oregon), Canada (Central), Europe (Ireland), Europe (London), Europe (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia). Valid values: WINDOWS_CONTAINER | LINUX_CONTAINER | LINUX_GPU_CONTAINER | ARM_CONTAINER
*/
Type?: NonEmptyString;
}
export interface AwsCodeBuildProjectEnvironmentRegistryCredential {
/**
* The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager. The credential can use the name of the credentials only if they exist in your current AWS Region.
*/
Credential?: NonEmptyString;
/**
* The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.
*/
CredentialProvider?: NonEmptyString;
}
export interface AwsCodeBuildProjectSource {
/**
* The type of repository that contains the source code to be built. Valid values are: BITBUCKET - The source code is in a Bitbucket repository. CODECOMMIT - The source code is in an AWS CodeCommit repository. CODEPIPELINE - The source code settings are specified in the source action of a pipeline in AWS CodePipeline. GITHUB - The source code is in a GitHub repository. GITHUB_ENTERPRISE - The source code is in a GitHub Enterprise repository. NO_SOURCE - The project does not have input source code. S3 - The source code is in an S3 input bucket.
*/
Type?: NonEmptyString;
/**
* Information about the location of the source code to be built. Valid values include: For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value. For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the build spec file (for example, https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name ). For source code in an S3 input bucket, one of the following. The path to the ZIP file that contains the source code (for example, bucket-name/path/to/object-name.zip). The path to the folder that contains the source code (for example, bucket-name/path/to/source-code/folder/). For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the build spec file. For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the build spec file.
*/
Location?: NonEmptyString;
/**
* Information about the Git clone depth for the build project.
*/
GitCloneDepth?: Integer;
/**
* Whether to ignore SSL warnings while connecting to the project source code.
*/
InsecureSsl?: Boolean;
}
export interface AwsCodeBuildProjectVpcConfig {
/**
* The ID of the VPC.
*/
VpcId?: NonEmptyString;
/**
* A list of one or more subnet IDs in your Amazon VPC.
*/
Subnets?: NonEmptyStringList;
/**
* A list of one or more security group IDs in your Amazon VPC.
*/
SecurityGroupIds?: NonEmptyStringList;
}
export interface AwsCorsConfiguration {
/**
* The allowed origins for CORS requests.
*/
AllowOrigins?: NonEmptyStringList;
/**
* Indicates whether the CORS request includes credentials.
*/
AllowCredentials?: Boolean;
/**
* The exposed headers for CORS requests.
*/
ExposeHeaders?: NonEmptyStringList;
/**
* The number of seconds for which the browser caches preflight request results.
*/
MaxAge?: Integer;
/**
* The allowed methods for CORS requests.
*/
AllowMethods?: NonEmptyStringList;
/**
* The allowed headers for CORS requests.
*/
AllowHeaders?: NonEmptyStringList;
}
export interface AwsDynamoDbTableAttributeDefinition {
/**
* The name of the attribute.
*/
AttributeName?: NonEmptyString;
/**
* The type of the attribute.
*/
AttributeType?: NonEmptyString;
}
export type AwsDynamoDbTableAttributeDefinitionList = AwsDynamoDbTableAttributeDefinition[];
export interface AwsDynamoDbTableBillingModeSummary {
/**
* The method used to charge for read and write throughput and to manage capacity.
*/
BillingMode?: NonEmptyString;
/**
* If the billing mode is PAY_PER_REQUEST, indicates when the billing mode was set to that value. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LastUpdateToPayPerRequestDateTime?: NonEmptyString;
}
export interface AwsDynamoDbTableDetails {
/**
* A list of attribute definitions for the table.
*/
AttributeDefinitions?: AwsDynamoDbTableAttributeDefinitionList;
/**
* Information about the billing for read/write capacity on the table.
*/
BillingModeSummary?: AwsDynamoDbTableBillingModeSummary;
/**
* Indicates when the table was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreationDateTime?: NonEmptyString;
/**
* List of global secondary indexes for the table.
*/
GlobalSecondaryIndexes?: AwsDynamoDbTableGlobalSecondaryIndexList;
/**
* The version of global tables being used.
*/
GlobalTableVersion?: NonEmptyString;
/**
* The number of items in the table.
*/
ItemCount?: Integer;
/**
* The primary key structure for the table.
*/
KeySchema?: AwsDynamoDbTableKeySchemaList;
/**
* The ARN of the latest stream for the table.
*/
LatestStreamArn?: NonEmptyString;
/**
* The label of the latest stream. The label is not a unique identifier.
*/
LatestStreamLabel?: NonEmptyString;
/**
* The list of local secondary indexes for the table.
*/
LocalSecondaryIndexes?: AwsDynamoDbTableLocalSecondaryIndexList;
/**
* Information about the provisioned throughput for the table.
*/
ProvisionedThroughput?: AwsDynamoDbTableProvisionedThroughput;
/**
* The list of replicas of this table.
*/
Replicas?: AwsDynamoDbTableReplicaList;
/**
* Information about the restore for the table.
*/
RestoreSummary?: AwsDynamoDbTableRestoreSummary;
/**
* Information about the server-side encryption for the table.
*/
SseDescription?: AwsDynamoDbTableSseDescription;
/**
* The current DynamoDB Streams configuration for the table.
*/
StreamSpecification?: AwsDynamoDbTableStreamSpecification;
/**
* The identifier of the table.
*/
TableId?: NonEmptyString;
/**
* The name of the table.
*/
TableName?: NonEmptyString;
/**
* The total size of the table in bytes.
*/
TableSizeBytes?: SizeBytes;
/**
* The current status of the table.
*/
TableStatus?: NonEmptyString;
}
export interface AwsDynamoDbTableGlobalSecondaryIndex {
/**
* Whether the index is currently backfilling.
*/
Backfilling?: Boolean;
/**
* The ARN of the index.
*/
IndexArn?: NonEmptyString;
/**
* The name of the index.
*/
IndexName?: NonEmptyString;
/**
* The total size in bytes of the index.
*/
IndexSizeBytes?: SizeBytes;
/**
* The current status of the index.
*/
IndexStatus?: NonEmptyString;
/**
* The number of items in the index.
*/
ItemCount?: Integer;
/**
* The key schema for the index.
*/
KeySchema?: AwsDynamoDbTableKeySchemaList;
/**
* Attributes that are copied from the table into an index.
*/
Projection?: AwsDynamoDbTableProjection;
/**
* Information about the provisioned throughput settings for the indexes.
*/
ProvisionedThroughput?: AwsDynamoDbTableProvisionedThroughput;
}
export type AwsDynamoDbTableGlobalSecondaryIndexList = AwsDynamoDbTableGlobalSecondaryIndex[];
export interface AwsDynamoDbTableKeySchema {
/**
* The name of the key schema attribute.
*/
AttributeName?: NonEmptyString;
/**
* The type of key used for the key schema attribute.
*/
KeyType?: NonEmptyString;
}
export type AwsDynamoDbTableKeySchemaList = AwsDynamoDbTableKeySchema[];
export interface AwsDynamoDbTableLocalSecondaryIndex {
/**
* The ARN of the index.
*/
IndexArn?: NonEmptyString;
/**
* The name of the index.
*/
IndexName?: NonEmptyString;
/**
* The complete key schema for the index.
*/
KeySchema?: AwsDynamoDbTableKeySchemaList;
/**
* Attributes that are copied from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.
*/
Projection?: AwsDynamoDbTableProjection;
}
export type AwsDynamoDbTableLocalSecondaryIndexList = AwsDynamoDbTableLocalSecondaryIndex[];
export interface AwsDynamoDbTableProjection {
/**
* The nonkey attributes that are projected into the index. For each attribute, provide the attribute name.
*/
NonKeyAttributes?: StringList;
/**
* The types of attributes that are projected into the index.
*/
ProjectionType?: NonEmptyString;
}
export interface AwsDynamoDbTableProvisionedThroughput {
/**
* Indicates when the provisioned throughput was last decreased. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LastDecreaseDateTime?: NonEmptyString;
/**
* Indicates when the provisioned throughput was last increased. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LastIncreaseDateTime?: NonEmptyString;
/**
* The number of times during the current UTC calendar day that the provisioned throughput was decreased.
*/
NumberOfDecreasesToday?: Integer;
/**
* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.
*/
ReadCapacityUnits?: Integer;
/**
* The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.
*/
WriteCapacityUnits?: Integer;
}
export interface AwsDynamoDbTableProvisionedThroughputOverride {
/**
* The read capacity units for the replica.
*/
ReadCapacityUnits?: Integer;
}
export interface AwsDynamoDbTableReplica {
/**
* List of global secondary indexes for the replica.
*/
GlobalSecondaryIndexes?: AwsDynamoDbTableReplicaGlobalSecondaryIndexList;
/**
* The identifier of the AWS KMS customer master key (CMK) that will be used for AWS KMS encryption for the replica.
*/
KmsMasterKeyId?: NonEmptyString;
/**
* Replica-specific configuration for the provisioned throughput.
*/
ProvisionedThroughputOverride?: AwsDynamoDbTableProvisionedThroughputOverride;
/**
* The name of the Region where the replica is located.
*/
RegionName?: NonEmptyString;
/**
* The current status of the replica.
*/
ReplicaStatus?: NonEmptyString;
/**
* Detailed information about the replica status.
*/
ReplicaStatusDescription?: NonEmptyString;
}
export interface AwsDynamoDbTableReplicaGlobalSecondaryIndex {
/**
* The name of the index.
*/
IndexName?: NonEmptyString;
/**
* Replica-specific configuration for the provisioned throughput for the index.
*/
ProvisionedThroughputOverride?: AwsDynamoDbTableProvisionedThroughputOverride;
}
export type AwsDynamoDbTableReplicaGlobalSecondaryIndexList = AwsDynamoDbTableReplicaGlobalSecondaryIndex[];
export type AwsDynamoDbTableReplicaList = AwsDynamoDbTableReplica[];
export interface AwsDynamoDbTableRestoreSummary {
/**
* The ARN of the source backup from which the table was restored.
*/
SourceBackupArn?: NonEmptyString;
/**
* The ARN of the source table for the backup.
*/
SourceTableArn?: NonEmptyString;
/**
* Indicates the point in time that the table was restored to. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
RestoreDateTime?: NonEmptyString;
/**
* Whether a restore is currently in progress.
*/
RestoreInProgress?: Boolean;
}
export interface AwsDynamoDbTableSseDescription {
/**
* If the key is inaccessible, the date and time when DynamoDB detected that the key was inaccessible. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
InaccessibleEncryptionDateTime?: NonEmptyString;
/**
* The status of the server-side encryption.
*/
Status?: NonEmptyString;
/**
* The type of server-side encryption.
*/
SseType?: NonEmptyString;
/**
* The ARN of the AWS KMS customer master key (CMK) that is used for the AWS KMS encryption.
*/
KmsMasterKeyArn?: NonEmptyString;
}
export interface AwsDynamoDbTableStreamSpecification {
/**
* Indicates whether DynamoDB Streams is enabled on the table.
*/
StreamEnabled?: Boolean;
/**
* Determines the information that is written to the table.
*/
StreamViewType?: NonEmptyString;
}
export interface AwsEc2EipDetails {
/**
* The identifier of the EC2 instance.
*/
InstanceId?: NonEmptyString;
/**
* A public IP address that is associated with the EC2 instance.
*/
PublicIp?: NonEmptyString;
/**
* The identifier that AWS assigns to represent the allocation of the Elastic IP address for use with Amazon VPC.
*/
AllocationId?: NonEmptyString;
/**
* The identifier that represents the association of the Elastic IP address with an EC2 instance.
*/
AssociationId?: NonEmptyString;
/**
* The domain in which to allocate the address. If the address is for use with EC2 instances in a VPC, then Domain is vpc. Otherwise, Domain is standard.
*/
Domain?: NonEmptyString;
/**
* The identifier of an IP address pool. This parameter allows Amazon EC2 to select an IP address from the address pool.
*/
PublicIpv4Pool?: NonEmptyString;
/**
* The name of the location from which the Elastic IP address is advertised.
*/
NetworkBorderGroup?: NonEmptyString;
/**
* The identifier of the network interface.
*/
NetworkInterfaceId?: NonEmptyString;
/**
* The AWS account ID of the owner of the network interface.
*/
NetworkInterfaceOwnerId?: NonEmptyString;
/**
* The private IP address that is associated with the Elastic IP address.
*/
PrivateIpAddress?: NonEmptyString;
}
export interface AwsEc2InstanceDetails {
/**
* The instance type of the instance.
*/
Type?: NonEmptyString;
/**
* The Amazon Machine Image (AMI) ID of the instance.
*/
ImageId?: NonEmptyString;
/**
* The IPv4 addresses associated with the instance.
*/
IpV4Addresses?: StringList;
/**
* The IPv6 addresses associated with the instance.
*/
IpV6Addresses?: StringList;
/**
* The key name associated with the instance.
*/
KeyName?: NonEmptyString;
/**
* The IAM profile ARN of the instance.
*/
IamInstanceProfileArn?: NonEmptyString;
/**
* The identifier of the VPC that the instance was launched in.
*/
VpcId?: NonEmptyString;
/**
* The identifier of the subnet that the instance was launched in.
*/
SubnetId?: NonEmptyString;
/**
* Indicates when the instance was launched. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LaunchedAt?: NonEmptyString;
}
export interface AwsEc2NetworkInterfaceAttachment {
/**
* Indicates when the attachment initiated. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
AttachTime?: NonEmptyString;
/**
* The identifier of the network interface attachment
*/
AttachmentId?: NonEmptyString;
/**
* Indicates whether the network interface is deleted when the instance is terminated.
*/
DeleteOnTermination?: Boolean;
/**
* The device index of the network interface attachment on the instance.
*/
DeviceIndex?: Integer;
/**
* The ID of the instance.
*/
InstanceId?: NonEmptyString;
/**
* The AWS account ID of the owner of the instance.
*/
InstanceOwnerId?: NonEmptyString;
/**
* The attachment state. Valid values: attaching | attached | detaching | detached
*/
Status?: NonEmptyString;
}
export interface AwsEc2NetworkInterfaceDetails {
/**
* The network interface attachment.
*/
Attachment?: AwsEc2NetworkInterfaceAttachment;
/**
* The ID of the network interface.
*/
NetworkInterfaceId?: NonEmptyString;
/**
* Security groups for the network interface.
*/
SecurityGroups?: AwsEc2NetworkInterfaceSecurityGroupList;
/**
* Indicates whether traffic to or from the instance is validated.
*/
SourceDestCheck?: Boolean;
}
export interface AwsEc2NetworkInterfaceSecurityGroup {
/**
* The name of the security group.
*/
GroupName?: NonEmptyString;
/**
* The ID of the security group.
*/
GroupId?: NonEmptyString;
}
export type AwsEc2NetworkInterfaceSecurityGroupList = AwsEc2NetworkInterfaceSecurityGroup[];
export interface AwsEc2SecurityGroupDetails {
/**
* The name of the security group.
*/
GroupName?: NonEmptyString;
/**
* The ID of the security group.
*/
GroupId?: NonEmptyString;
/**
* The AWS account ID of the owner of the security group.
*/
OwnerId?: NonEmptyString;
/**
* [VPC only] The ID of the VPC for the security group.
*/
VpcId?: NonEmptyString;
/**
* The inbound rules associated with the security group.
*/
IpPermissions?: AwsEc2SecurityGroupIpPermissionList;
/**
* [VPC only] The outbound rules associated with the security group.
*/
IpPermissionsEgress?: AwsEc2SecurityGroupIpPermissionList;
}
export interface AwsEc2SecurityGroupIpPermission {
/**
* The IP protocol name (tcp, udp, icmp, icmpv6) or number. [VPC only] Use -1 to specify all protocols. When authorizing security group rules, specifying -1 or a protocol number other than tcp, udp, icmp, or icmpv6 allows traffic on all ports, regardless of any port range you specify. For tcp, udp, and icmp, you must specify a port range. For icmpv6, the port range is optional. If you omit the port range, traffic for all types and codes is allowed.
*/
IpProtocol?: NonEmptyString;
/**
* The start of the port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number. A value of -1 indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all codes.
*/
FromPort?: Integer;
/**
* The end of the port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code. A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all codes.
*/
ToPort?: Integer;
/**
* The security group and AWS account ID pairs.
*/
UserIdGroupPairs?: AwsEc2SecurityGroupUserIdGroupPairList;
/**
* The IPv4 ranges.
*/
IpRanges?: AwsEc2SecurityGroupIpRangeList;
/**
* The IPv6 ranges.
*/
Ipv6Ranges?: AwsEc2SecurityGroupIpv6RangeList;
/**
* [VPC only] The prefix list IDs for an AWS service. With outbound rules, this is the AWS service to access through a VPC endpoint from instances associated with the security group.
*/
PrefixListIds?: AwsEc2SecurityGroupPrefixListIdList;
}
export type AwsEc2SecurityGroupIpPermissionList = AwsEc2SecurityGroupIpPermission[];
export interface AwsEc2SecurityGroupIpRange {
/**
* The IPv4 CIDR range. You can specify either a CIDR range or a source security group, but not both. To specify a single IPv4 address, use the /32 prefix length.
*/
CidrIp?: NonEmptyString;
}
export type AwsEc2SecurityGroupIpRangeList = AwsEc2SecurityGroupIpRange[];
export interface AwsEc2SecurityGroupIpv6Range {
/**
* The IPv6 CIDR range. You can specify either a CIDR range or a source security group, but not both. To specify a single IPv6 address, use the /128 prefix length.
*/
CidrIpv6?: NonEmptyString;
}
export type AwsEc2SecurityGroupIpv6RangeList = AwsEc2SecurityGroupIpv6Range[];
export interface AwsEc2SecurityGroupPrefixListId {
/**
* The ID of the prefix.
*/
PrefixListId?: NonEmptyString;
}
export type AwsEc2SecurityGroupPrefixListIdList = AwsEc2SecurityGroupPrefixListId[];
export interface AwsEc2SecurityGroupUserIdGroupPair {
/**
* The ID of the security group.
*/
GroupId?: NonEmptyString;
/**
* The name of the security group.
*/
GroupName?: NonEmptyString;
/**
* The status of a VPC peering connection, if applicable.
*/
PeeringStatus?: NonEmptyString;
/**
* The ID of an AWS account. For a referenced security group in another VPC, the account ID of the referenced security group is returned in the response. If the referenced security group is deleted, this value is not returned. [EC2-Classic] Required when adding or removing rules that reference a security group in another AWS.
*/
UserId?: NonEmptyString;
/**
* The ID of the VPC for the referenced security group, if applicable.
*/
VpcId?: NonEmptyString;
/**
* The ID of the VPC peering connection, if applicable.
*/
VpcPeeringConnectionId?: NonEmptyString;
}
export type AwsEc2SecurityGroupUserIdGroupPairList = AwsEc2SecurityGroupUserIdGroupPair[];
export interface AwsEc2VolumeAttachment {
/**
* The datetime when the attachment initiated.
*/
AttachTime?: NonEmptyString;
/**
* Whether the EBS volume is deleted when the EC2 instance is terminated.
*/
DeleteOnTermination?: Boolean;
/**
* The identifier of the EC2 instance.
*/
InstanceId?: NonEmptyString;
/**
* The attachment state of the volume.
*/
Status?: NonEmptyString;
}
export type AwsEc2VolumeAttachmentList = AwsEc2VolumeAttachment[];
export interface AwsEc2VolumeDetails {
/**
* Indicates when the volume was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreateTime?: NonEmptyString;
/**
* Whether the volume is encrypted.
*/
Encrypted?: Boolean;
/**
* The size of the volume, in GiBs.
*/
Size?: Integer;
/**
* The snapshot from which the volume was created.
*/
SnapshotId?: NonEmptyString;
/**
* The volume state.
*/
Status?: NonEmptyString;
/**
* The ARN of the AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the volume encryption key for the volume.
*/
KmsKeyId?: NonEmptyString;
/**
* The volume attachments.
*/
Attachments?: AwsEc2VolumeAttachmentList;
}
export interface AwsEc2VpcDetails {
/**
* Information about the IPv4 CIDR blocks associated with the VPC.
*/
CidrBlockAssociationSet?: CidrBlockAssociationList;
/**
* Information about the IPv6 CIDR blocks associated with the VPC.
*/
Ipv6CidrBlockAssociationSet?: Ipv6CidrBlockAssociationList;
/**
* The identifier of the set of Dynamic Host Configuration Protocol (DHCP) options that are associated with the VPC. If the default options are associated with the VPC, then this is default.
*/
DhcpOptionsId?: NonEmptyString;
/**
* The current state of the VPC.
*/
State?: NonEmptyString;
}
export interface AwsElasticsearchDomainDetails {
/**
* IAM policy document specifying the access policies for the new Amazon ES domain.
*/
AccessPolicies?: NonEmptyString;
/**
* Additional options for the domain endpoint.
*/
DomainEndpointOptions?: AwsElasticsearchDomainDomainEndpointOptions;
/**
* Unique identifier for an Amazon ES domain.
*/
DomainId?: NonEmptyString;
/**
* Name of an Amazon ES domain. Domain names are unique across all domains owned by the same account within an AWS Region. Domain names must start with a lowercase letter and must be between 3 and 28 characters. Valid characters are a-z (lowercase only), 0-9, and – (hyphen).
*/
DomainName?: NonEmptyString;
/**
* Domain-specific endpoint used to submit index, search, and data upload requests to an Amazon ES domain. The endpoint is a service URL.
*/
Endpoint?: NonEmptyString;
/**
* The key-value pair that exists if the Amazon ES domain uses VPC endpoints.
*/
Endpoints?: FieldMap;
/**
* Elasticsearch version.
*/
ElasticsearchVersion?: NonEmptyString;
/**
* Details about the configuration for encryption at rest.
*/
EncryptionAtRestOptions?: AwsElasticsearchDomainEncryptionAtRestOptions;
/**
* Details about the configuration for node-to-node encryption.
*/
NodeToNodeEncryptionOptions?: AwsElasticsearchDomainNodeToNodeEncryptionOptions;
/**
* Information that Amazon ES derives based on VPCOptions for the domain.
*/
VPCOptions?: AwsElasticsearchDomainVPCOptions;
}
export interface AwsElasticsearchDomainDomainEndpointOptions {
/**
* Whether to require that all traffic to the domain arrive over HTTPS.
*/
EnforceHTTPS?: Boolean;
/**
* The TLS security policy to apply to the HTTPS endpoint of the Elasticsearch domain. Valid values: Policy-Min-TLS-1-0-2019-07, which supports TLSv1.0 and higher Policy-Min-TLS-1-2-2019-07, which only supports TLSv1.2
*/
TLSSecurityPolicy?: NonEmptyString;
}
export interface AwsElasticsearchDomainEncryptionAtRestOptions {
/**
* Whether encryption at rest is enabled.
*/
Enabled?: Boolean;
/**
* The KMS key ID. Takes the form 1a2a3a4-1a2a-3a4a-5a6a-1a2a3a4a5a6a.
*/
KmsKeyId?: NonEmptyString;
}
export interface AwsElasticsearchDomainNodeToNodeEncryptionOptions {
/**
* Whether node-to-node encryption is enabled.
*/
Enabled?: Boolean;
}
export interface AwsElasticsearchDomainVPCOptions {
/**
* The list of Availability Zones associated with the VPC subnets.
*/
AvailabilityZones?: NonEmptyStringList;
/**
* The list of security group IDs associated with the VPC endpoints for the domain.
*/
SecurityGroupIds?: NonEmptyStringList;
/**
* A list of subnet IDs associated with the VPC endpoints for the domain.
*/
SubnetIds?: NonEmptyStringList;
/**
* ID for the VPC.
*/
VPCId?: NonEmptyString;
}
export type AwsElbAppCookieStickinessPolicies = AwsElbAppCookieStickinessPolicy[];
export interface AwsElbAppCookieStickinessPolicy {
/**
* The name of the application cookie used for stickiness.
*/
CookieName?: NonEmptyString;
/**
* The mnemonic name for the policy being created. The name must be unique within the set of policies for the load balancer.
*/
PolicyName?: NonEmptyString;
}
export type AwsElbLbCookieStickinessPolicies = AwsElbLbCookieStickinessPolicy[];
export interface AwsElbLbCookieStickinessPolicy {
/**
* The amount of time, in seconds, after which the cookie is considered stale. If an expiration period is not specified, the stickiness session lasts for the duration of the browser session.
*/
CookieExpirationPeriod?: Long;
/**
* The name of the policy. The name must be unique within the set of policies for the load balancer.
*/
PolicyName?: NonEmptyString;
}
export interface AwsElbLoadBalancerAccessLog {
/**
* The interval in minutes for publishing the access logs. You can publish access logs either every 5 minutes or every 60 minutes.
*/
EmitInterval?: Integer;
/**
* Indicates whether access logs are enabled for the load balancer.
*/
Enabled?: Boolean;
/**
* The name of the S3 bucket where the access logs are stored.
*/
S3BucketName?: NonEmptyString;
/**
* The logical hierarchy that was created for the S3 bucket. If a prefix is not provided, the log is placed at the root level of the bucket.
*/
S3BucketPrefix?: NonEmptyString;
}
export interface AwsElbLoadBalancerAttributes {
/**
* Information about the access log configuration for the load balancer. If the access log is enabled, the load balancer captures detailed information about all requests. It delivers the information to a specified S3 bucket.
*/
AccessLog?: AwsElbLoadBalancerAccessLog;
/**
* Information about the connection draining configuration for the load balancer. If connection draining is enabled, the load balancer allows existing requests to complete before it shifts traffic away from a deregistered or unhealthy instance.
*/
ConnectionDraining?: AwsElbLoadBalancerConnectionDraining;
/**
* Connection settings for the load balancer. If an idle timeout is configured, the load balancer allows connections to remain idle for the specified duration. When a connection is idle, no data is sent over the connection.
*/
ConnectionSettings?: AwsElbLoadBalancerConnectionSettings;
/**
* Cross-zone load balancing settings for the load balancer. If cross-zone load balancing is enabled, the load balancer routes the request traffic evenly across all instances regardless of the Availability Zones.
*/
CrossZoneLoadBalancing?: AwsElbLoadBalancerCrossZoneLoadBalancing;
}
export interface AwsElbLoadBalancerBackendServerDescription {
/**
* The port on which the EC2 instance is listening.
*/
InstancePort?: Integer;
/**
* The names of the policies that are enabled for the EC2 instance.
*/
PolicyNames?: StringList;
}
export type AwsElbLoadBalancerBackendServerDescriptions = AwsElbLoadBalancerBackendServerDescription[];
export interface AwsElbLoadBalancerConnectionDraining {
/**
* Indicates whether connection draining is enabled for the load balancer.
*/
Enabled?: Boolean;
/**
* The maximum time, in seconds, to keep the existing connections open before deregistering the instances.
*/
Timeout?: Integer;
}
export interface AwsElbLoadBalancerConnectionSettings {
/**
* The time, in seconds, that the connection can be idle (no data is sent over the connection) before it is closed by the load balancer.
*/
IdleTimeout?: Integer;
}
export interface AwsElbLoadBalancerCrossZoneLoadBalancing {
/**
* Indicates whether cross-zone load balancing is enabled for the load balancer.
*/
Enabled?: Boolean;
}
export interface AwsElbLoadBalancerDetails {
/**
* The list of Availability Zones for the load balancer.
*/
AvailabilityZones?: StringList;
/**
* Information about the configuration of the EC2 instances.
*/
BackendServerDescriptions?: AwsElbLoadBalancerBackendServerDescriptions;
/**
* The name of the Amazon Route 53 hosted zone for the load balancer.
*/
CanonicalHostedZoneName?: NonEmptyString;
/**
* The ID of the Amazon Route 53 hosted zone for the load balancer.
*/
CanonicalHostedZoneNameID?: NonEmptyString;
/**
* Indicates when the load balancer was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedTime?: NonEmptyString;
/**
* The DNS name of the load balancer.
*/
DnsName?: NonEmptyString;
/**
* Information about the health checks that are conducted on the load balancer.
*/
HealthCheck?: AwsElbLoadBalancerHealthCheck;
/**
* List of EC2 instances for the load balancer.
*/
Instances?: AwsElbLoadBalancerInstances;
/**
* The policies that are enabled for the load balancer listeners.
*/
ListenerDescriptions?: AwsElbLoadBalancerListenerDescriptions;
/**
* The attributes for a load balancer.
*/
LoadBalancerAttributes?: AwsElbLoadBalancerAttributes;
/**
* The name of the load balancer.
*/
LoadBalancerName?: NonEmptyString;
/**
* The policies for a load balancer.
*/
Policies?: AwsElbLoadBalancerPolicies;
/**
* The type of load balancer. Only provided if the load balancer is in a VPC. If Scheme is internet-facing, the load balancer has a public DNS name that resolves to a public IP address. If Scheme is internal, the load balancer has a public DNS name that resolves to a private IP address.
*/
Scheme?: NonEmptyString;
/**
* The security groups for the load balancer. Only provided if the load balancer is in a VPC.
*/
SecurityGroups?: StringList;
/**
* Information about the security group for the load balancer. This is the security group that is used for inbound rules.
*/
SourceSecurityGroup?: AwsElbLoadBalancerSourceSecurityGroup;
/**
* The list of subnet identifiers for the load balancer.
*/
Subnets?: StringList;
/**
* The identifier of the VPC for the load balancer.
*/
VpcId?: NonEmptyString;
}
export interface AwsElbLoadBalancerHealthCheck {
/**
* The number of consecutive health check successes required before the instance is moved to the Healthy state.
*/
HealthyThreshold?: Integer;
/**
* The approximate interval, in seconds, between health checks of an individual instance.
*/
Interval?: Integer;
/**
* The instance that is being checked. The target specifies the protocol and port. The available protocols are TCP, SSL, HTTP, and HTTPS. The range of valid ports is 1 through 65535. For the HTTP and HTTPS protocols, the target also specifies the ping path. For the TCP protocol, the target is specified as TCP: <port> . For the SSL protocol, the target is specified as SSL.<port> . For the HTTP and HTTPS protocols, the target is specified as <protocol>:<port>/<path to ping> .
*/
Target?: NonEmptyString;
/**
* The amount of time, in seconds, during which no response means a failed health check.
*/
Timeout?: Integer;
/**
* The number of consecutive health check failures that must occur before the instance is moved to the Unhealthy state.
*/
UnhealthyThreshold?: Integer;
}
export interface AwsElbLoadBalancerInstance {
/**
* The instance identifier.
*/
InstanceId?: NonEmptyString;
}
export type AwsElbLoadBalancerInstances = AwsElbLoadBalancerInstance[];
export interface AwsElbLoadBalancerListener {
/**
* The port on which the instance is listening.
*/
InstancePort?: Integer;
/**
* The protocol to use to route traffic to instances. Valid values: HTTP | HTTPS | TCP | SSL
*/
InstanceProtocol?: NonEmptyString;
/**
* The port on which the load balancer is listening. On EC2-VPC, you can specify any port from the range 1-65535. On EC2-Classic, you can specify any port from the following list: 25, 80, 443, 465, 587, 1024-65535.
*/
LoadBalancerPort?: Integer;
/**
* The load balancer transport protocol to use for routing. Valid values: HTTP | HTTPS | TCP | SSL
*/
Protocol?: NonEmptyString;
/**
* The ARN of the server certificate.
*/
SslCertificateId?: NonEmptyString;
}
export interface AwsElbLoadBalancerListenerDescription {
/**
* Information about the listener.
*/
Listener?: AwsElbLoadBalancerListener;
/**
* The policies enabled for the listener.
*/
PolicyNames?: StringList;
}
export type AwsElbLoadBalancerListenerDescriptions = AwsElbLoadBalancerListenerDescription[];
export interface AwsElbLoadBalancerPolicies {
/**
* The stickiness policies that are created using CreateAppCookieStickinessPolicy.
*/
AppCookieStickinessPolicies?: AwsElbAppCookieStickinessPolicies;
/**
* The stickiness policies that are created using CreateLBCookieStickinessPolicy.
*/
LbCookieStickinessPolicies?: AwsElbLbCookieStickinessPolicies;
/**
* The policies other than the stickiness policies.
*/
OtherPolicies?: StringList;
}
export interface AwsElbLoadBalancerSourceSecurityGroup {
/**
* The name of the security group.
*/
GroupName?: NonEmptyString;
/**
* The owner of the security group.
*/
OwnerAlias?: NonEmptyString;
}
export interface AwsElbv2LoadBalancerDetails {
/**
* The Availability Zones for the load balancer.
*/
AvailabilityZones?: AvailabilityZones;
/**
* The ID of the Amazon Route 53 hosted zone associated with the load balancer.
*/
CanonicalHostedZoneId?: NonEmptyString;
/**
* Indicates when the load balancer was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedTime?: NonEmptyString;
/**
* The public DNS name of the load balancer.
*/
DNSName?: NonEmptyString;
/**
* The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
*/
IpAddressType?: NonEmptyString;
/**
* The nodes of an Internet-facing load balancer have public IP addresses.
*/
Scheme?: NonEmptyString;
/**
* The IDs of the security groups for the load balancer.
*/
SecurityGroups?: SecurityGroups;
/**
* The state of the load balancer.
*/
State?: LoadBalancerState;
/**
* The type of load balancer.
*/
Type?: NonEmptyString;
/**
* The ID of the VPC for the load balancer.
*/
VpcId?: NonEmptyString;
}
export interface AwsIamAccessKeyDetails {
/**
* The user associated with the IAM access key related to a finding. The UserName parameter has been replaced with the PrincipalName parameter because access keys can also be assigned to principals that are not IAM users.
*/
UserName?: NonEmptyString;
/**
* The status of the IAM access key related to a finding.
*/
Status?: AwsIamAccessKeyStatus;
/**
* Indicates when the IAM access key was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedAt?: NonEmptyString;
/**
* The ID of the principal associated with an access key.
*/
PrincipalId?: NonEmptyString;
/**
* The type of principal associated with an access key.
*/
PrincipalType?: NonEmptyString;
/**
* The name of the principal.
*/
PrincipalName?: NonEmptyString;
/**
* The AWS account ID of the account for the key.
*/
AccountId?: NonEmptyString;
/**
* The identifier of the access key.
*/
AccessKeyId?: NonEmptyString;
/**
* Information about the session that the key was used for.
*/
SessionContext?: AwsIamAccessKeySessionContext;
}
export interface AwsIamAccessKeySessionContext {
/**
* Attributes of the session that the key was used for.
*/
Attributes?: AwsIamAccessKeySessionContextAttributes;
/**
* Information about the entity that created the session.
*/
SessionIssuer?: AwsIamAccessKeySessionContextSessionIssuer;
}
export interface AwsIamAccessKeySessionContextAttributes {
/**
* Indicates whether the session used multi-factor authentication (MFA).
*/
MfaAuthenticated?: Boolean;
/**
* Indicates when the session was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreationDate?: NonEmptyString;
}
export interface AwsIamAccessKeySessionContextSessionIssuer {
/**
* The type of principal (user, role, or group) that created the session.
*/
Type?: NonEmptyString;
/**
* The principal ID of the principal (user, role, or group) that created the session.
*/
PrincipalId?: NonEmptyString;
/**
* The ARN of the session.
*/
Arn?: NonEmptyString;
/**
* The identifier of the AWS account that created the session.
*/
AccountId?: NonEmptyString;
/**
* The name of the principal that created the session.
*/
UserName?: NonEmptyString;
}
export type AwsIamAccessKeyStatus = "Active"|"Inactive"|string;
export interface AwsIamAttachedManagedPolicy {
/**
* The name of the policy.
*/
PolicyName?: NonEmptyString;
/**
* The ARN of the policy.
*/
PolicyArn?: NonEmptyString;
}
export type AwsIamAttachedManagedPolicyList = AwsIamAttachedManagedPolicy[];
export interface AwsIamGroupDetails {
/**
* A list of the managed policies that are attached to the IAM group.
*/
AttachedManagedPolicies?: AwsIamAttachedManagedPolicyList;
/**
* Indicates when the IAM group was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreateDate?: NonEmptyString;
/**
* The identifier of the IAM group.
*/
GroupId?: NonEmptyString;
/**
* The name of the IAM group.
*/
GroupName?: NonEmptyString;
/**
* The list of inline policies that are embedded in the group.
*/
GroupPolicyList?: AwsIamGroupPolicyList;
/**
* The path to the group.
*/
Path?: NonEmptyString;
}
export interface AwsIamGroupPolicy {
/**
* The name of the policy.
*/
PolicyName?: NonEmptyString;
}
export type AwsIamGroupPolicyList = AwsIamGroupPolicy[];
export interface AwsIamInstanceProfile {
/**
* The ARN of the instance profile.
*/
Arn?: NonEmptyString;
/**
* Indicates when the instance profile was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreateDate?: NonEmptyString;
/**
* The identifier of the instance profile.
*/
InstanceProfileId?: NonEmptyString;
/**
* The name of the instance profile.
*/
InstanceProfileName?: NonEmptyString;
/**
* The path to the instance profile.
*/
Path?: NonEmptyString;
/**
* The roles associated with the instance profile.
*/
Roles?: AwsIamInstanceProfileRoles;
}
export type AwsIamInstanceProfileList = AwsIamInstanceProfile[];
export interface AwsIamInstanceProfileRole {
/**
* The ARN of the role.
*/
Arn?: NonEmptyString;
/**
* The policy that grants an entity permission to assume the role.
*/
AssumeRolePolicyDocument?: AwsIamRoleAssumeRolePolicyDocument;
/**
* Indicates when the role was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreateDate?: NonEmptyString;
/**
* The path to the role.
*/
Path?: NonEmptyString;
/**
* The identifier of the role.
*/
RoleId?: NonEmptyString;
/**
* The name of the role.
*/
RoleName?: NonEmptyString;
}
export type AwsIamInstanceProfileRoles = AwsIamInstanceProfileRole[];
export interface AwsIamPermissionsBoundary {
/**
* The ARN of the policy used to set the permissions boundary.
*/
PermissionsBoundaryArn?: NonEmptyString;
/**
* The usage type for the permissions boundary.
*/
PermissionsBoundaryType?: NonEmptyString;
}
export interface AwsIamPolicyDetails {
/**
* The number of users, groups, and roles that the policy is attached to.
*/
AttachmentCount?: Integer;
/**
* When the policy was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreateDate?: NonEmptyString;
/**
* The identifier of the default version of the policy.
*/
DefaultVersionId?: NonEmptyString;
/**
* A description of the policy.
*/
Description?: NonEmptyString;
/**
* Whether the policy can be attached to a user, group, or role.
*/
IsAttachable?: Boolean;
/**
* The path to the policy.
*/
Path?: NonEmptyString;
/**
* The number of users and roles that use the policy to set the permissions boundary.
*/
PermissionsBoundaryUsageCount?: Integer;
/**
* The unique identifier of the policy.
*/
PolicyId?: NonEmptyString;
/**
* The name of the policy.
*/
PolicyName?: NonEmptyString;
/**
* List of versions of the policy.
*/
PolicyVersionList?: AwsIamPolicyVersionList;
/**
* When the policy was most recently updated. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
UpdateDate?: NonEmptyString;
}
export interface AwsIamPolicyVersion {
/**
* The identifier of the policy version.
*/
VersionId?: NonEmptyString;
/**
* Whether the version is the default version.
*/
IsDefaultVersion?: Boolean;
/**
* Indicates when the version was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreateDate?: NonEmptyString;
}
export type AwsIamPolicyVersionList = AwsIamPolicyVersion[];
export type AwsIamRoleAssumeRolePolicyDocument = string;
export interface AwsIamRoleDetails {
/**
* The trust policy that grants permission to assume the role.
*/
AssumeRolePolicyDocument?: AwsIamRoleAssumeRolePolicyDocument;
/**
* The list of the managed policies that are attached to the role.
*/
AttachedManagedPolicies?: AwsIamAttachedManagedPolicyList;
/**
* Indicates when the role was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreateDate?: NonEmptyString;
/**
* The list of instance profiles that contain this role.
*/
InstanceProfileList?: AwsIamInstanceProfileList;
PermissionsBoundary?: AwsIamPermissionsBoundary;
/**
* The stable and unique string identifying the role.
*/
RoleId?: NonEmptyString;
/**
* The friendly name that identifies the role.
*/
RoleName?: NonEmptyString;
/**
* The list of inline policies that are embedded in the role.
*/
RolePolicyList?: AwsIamRolePolicyList;
/**
* The maximum session duration (in seconds) that you want to set for the specified role.
*/
MaxSessionDuration?: Integer;
/**
* The path to the role.
*/
Path?: NonEmptyString;
}
export interface AwsIamRolePolicy {
/**
* The name of the policy.
*/
PolicyName?: NonEmptyString;
}
export type AwsIamRolePolicyList = AwsIamRolePolicy[];
export interface AwsIamUserDetails {
/**
* A list of the managed policies that are attached to the user.
*/
AttachedManagedPolicies?: AwsIamAttachedManagedPolicyList;
/**
* Indicates when the user was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreateDate?: NonEmptyString;
/**
* A list of IAM groups that the user belongs to.
*/
GroupList?: StringList;
/**
* The path to the user.
*/
Path?: NonEmptyString;
/**
* The permissions boundary for the user.
*/
PermissionsBoundary?: AwsIamPermissionsBoundary;
/**
* The unique identifier for the user.
*/
UserId?: NonEmptyString;
/**
* The name of the user.
*/
UserName?: NonEmptyString;
/**
* The list of inline policies that are embedded in the user.
*/
UserPolicyList?: AwsIamUserPolicyList;
}
export interface AwsIamUserPolicy {
/**
* The name of the policy.
*/
PolicyName?: NonEmptyString;
}
export type AwsIamUserPolicyList = AwsIamUserPolicy[];
export interface AwsKmsKeyDetails {
/**
* The twelve-digit account ID of the AWS account that owns the CMK.
*/
AWSAccountId?: NonEmptyString;
/**
* Indicates when the CMK was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreationDate?: Double;
/**
* The globally unique identifier for the CMK.
*/
KeyId?: NonEmptyString;
/**
* The manager of the CMK. CMKs in your AWS account are either customer managed or AWS managed.
*/
KeyManager?: NonEmptyString;
/**
* The state of the CMK.
*/
KeyState?: NonEmptyString;
/**
* The source of the CMK's key material. When this value is AWS_KMS, AWS KMS created the key material. When this value is EXTERNAL, the key material was imported from your existing key management infrastructure or the CMK lacks key material. When this value is AWS_CLOUDHSM, the key material was created in the AWS CloudHSM cluster associated with a custom key store.
*/
Origin?: NonEmptyString;
/**
* A description of the key.
*/
Description?: NonEmptyString;
}
export interface AwsLambdaFunctionCode {
/**
* An Amazon S3 bucket in the same AWS Region as your function. The bucket can be in a different AWS account.
*/
S3Bucket?: NonEmptyString;
/**
* The Amazon S3 key of the deployment package.
*/
S3Key?: NonEmptyString;
/**
* For versioned objects, the version of the deployment package object to use.
*/
S3ObjectVersion?: NonEmptyString;
/**
* The base64-encoded contents of the deployment package. AWS SDK and AWS CLI clients handle the encoding for you.
*/
ZipFile?: NonEmptyString;
}
export interface AwsLambdaFunctionDeadLetterConfig {
/**
* The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.
*/
TargetArn?: NonEmptyString;
}
export interface AwsLambdaFunctionDetails {
/**
* An AwsLambdaFunctionCode object.
*/
Code?: AwsLambdaFunctionCode;
/**
* The SHA256 hash of the function's deployment package.
*/
CodeSha256?: NonEmptyString;
/**
* The function's dead letter queue.
*/
DeadLetterConfig?: AwsLambdaFunctionDeadLetterConfig;
/**
* The function's environment variables.
*/
Environment?: AwsLambdaFunctionEnvironment;
/**
* The name of the function.
*/
FunctionName?: NonEmptyString;
/**
* The function that Lambda calls to begin executing your function.
*/
Handler?: NonEmptyString;
/**
* The KMS key that's used to encrypt the function's environment variables. This key is only returned if you've configured a customer managed CMK.
*/
KmsKeyArn?: NonEmptyString;
/**
* Indicates when the function was last updated. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LastModified?: NonEmptyString;
/**
* The function's layers.
*/
Layers?: AwsLambdaFunctionLayerList;
/**
* For Lambda@Edge functions, the ARN of the master function.
*/
MasterArn?: NonEmptyString;
/**
* The memory that's allocated to the function.
*/
MemorySize?: Integer;
/**
* The latest updated revision of the function or alias.
*/
RevisionId?: NonEmptyString;
/**
* The function's execution role.
*/
Role?: NonEmptyString;
/**
* The runtime environment for the Lambda function.
*/
Runtime?: NonEmptyString;
/**
* The amount of time that Lambda allows a function to run before stopping it.
*/
Timeout?: Integer;
/**
* The function's AWS X-Ray tracing configuration.
*/
TracingConfig?: AwsLambdaFunctionTracingConfig;
/**
* The function's networking configuration.
*/
VpcConfig?: AwsLambdaFunctionVpcConfig;
/**
* The version of the Lambda function.
*/
Version?: NonEmptyString;
}
export interface AwsLambdaFunctionEnvironment {
/**
* Environment variable key-value pairs.
*/
Variables?: FieldMap;
/**
* An AwsLambdaFunctionEnvironmentError object.
*/
Error?: AwsLambdaFunctionEnvironmentError;
}
export interface AwsLambdaFunctionEnvironmentError {
/**
* The error code.
*/
ErrorCode?: NonEmptyString;
/**
* The error message.
*/
Message?: NonEmptyString;
}
export interface AwsLambdaFunctionLayer {
/**
* The Amazon Resource Name (ARN) of the function layer.
*/
Arn?: NonEmptyString;
/**
* The size of the layer archive in bytes.
*/
CodeSize?: Integer;
}
export type AwsLambdaFunctionLayerList = AwsLambdaFunctionLayer[];
export interface AwsLambdaFunctionTracingConfig {
/**
* The tracing mode.
*/
Mode?: NonEmptyString;
}
export interface AwsLambdaFunctionVpcConfig {
/**
* A list of VPC security groups IDs.
*/
SecurityGroupIds?: NonEmptyStringList;
/**
* A list of VPC subnet IDs.
*/
SubnetIds?: NonEmptyStringList;
/**
* The ID of the VPC.
*/
VpcId?: NonEmptyString;
}
export interface AwsLambdaLayerVersionDetails {
/**
* The version number.
*/
Version?: AwsLambdaLayerVersionNumber;
/**
* The layer's compatible runtimes. Maximum number of five items. Valid values: nodejs10.x | nodejs12.x | java8 | java11 | python2.7 | python3.6 | python3.7 | python3.8 | dotnetcore1.0 | dotnetcore2.1 | go1.x | ruby2.5 | provided
*/
CompatibleRuntimes?: NonEmptyStringList;
/**
* Indicates when the version was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedDate?: NonEmptyString;
}
export type AwsLambdaLayerVersionNumber = number;
export interface AwsRdsDbClusterAssociatedRole {
/**
* The ARN of the IAM role.
*/
RoleArn?: NonEmptyString;
/**
* The status of the association between the IAM role and the DB cluster.
*/
Status?: NonEmptyString;
}
export type AwsRdsDbClusterAssociatedRoles = AwsRdsDbClusterAssociatedRole[];
export interface AwsRdsDbClusterDetails {
/**
* For all database engines except Aurora, specifies the allocated storage size in gibibytes (GiB).
*/
AllocatedStorage?: Integer;
/**
* A list of Availability Zones (AZs) where instances in the DB cluster can be created.
*/
AvailabilityZones?: StringList;
/**
* The number of days for which automated backups are retained.
*/
BackupRetentionPeriod?: Integer;
/**
* The name of the database.
*/
DatabaseName?: NonEmptyString;
/**
* The current status of this DB cluster.
*/
Status?: NonEmptyString;
/**
* The connection endpoint for the primary instance of the DB cluster.
*/
Endpoint?: NonEmptyString;
/**
* The reader endpoint for the DB cluster.
*/
ReaderEndpoint?: NonEmptyString;
/**
* A list of custom endpoints for the DB cluster.
*/
CustomEndpoints?: StringList;
/**
* Whether the DB cluster has instances in multiple Availability Zones.
*/
MultiAz?: Boolean;
/**
* The name of the database engine to use for this DB cluster.
*/
Engine?: NonEmptyString;
/**
* The version number of the database engine to use.
*/
EngineVersion?: NonEmptyString;
/**
* The port number on which the DB instances in the DB cluster accept connections.
*/
Port?: Integer;
/**
* The name of the master user for the DB cluster.
*/
MasterUsername?: NonEmptyString;
/**
* The range of time each day when automated backups are created, if automated backups are enabled. Uses the format HH:MM-HH:MM. For example, 04:52-05:22.
*/
PreferredBackupWindow?: NonEmptyString;
/**
* The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). Uses the format <day>:HH:MM-<day>:HH:MM. For the day values, use mon|tue|wed|thu|fri|sat|sun. For example, sun:09:32-sun:10:02.
*/
PreferredMaintenanceWindow?: NonEmptyString;
/**
* The identifiers of the read replicas that are associated with this DB cluster.
*/
ReadReplicaIdentifiers?: StringList;
/**
* A list of VPC security groups that the DB cluster belongs to.
*/
VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroups;
/**
* Specifies the identifier that Amazon Route 53 assigns when you create a hosted zone.
*/
HostedZoneId?: NonEmptyString;
/**
* Whether the DB cluster is encrypted.
*/
StorageEncrypted?: Boolean;
/**
* The ARN of the AWS KMS master key that is used to encrypt the database instances in the DB cluster.
*/
KmsKeyId?: NonEmptyString;
/**
* The identifier of the DB cluster. The identifier must be unique within each AWS Region and is immutable.
*/
DbClusterResourceId?: NonEmptyString;
/**
* A list of the IAM roles that are associated with the DB cluster.
*/
AssociatedRoles?: AwsRdsDbClusterAssociatedRoles;
/**
* Indicates when the DB cluster was created, in Universal Coordinated Time (UTC). Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
ClusterCreateTime?: NonEmptyString;
/**
* A list of log types that this DB cluster is configured to export to CloudWatch Logs.
*/
EnabledCloudWatchLogsExports?: StringList;
/**
* The database engine mode of the DB cluster.
*/
EngineMode?: NonEmptyString;
/**
* Whether the DB cluster has deletion protection enabled.
*/
DeletionProtection?: Boolean;
/**
* Whether the HTTP endpoint for an Aurora Serverless DB cluster is enabled.
*/
HttpEndpointEnabled?: Boolean;
/**
* The status of the database activity stream.
*/
ActivityStreamStatus?: NonEmptyString;
/**
* Whether tags are copied from the DB cluster to snapshots of the DB cluster.
*/
CopyTagsToSnapshot?: Boolean;
/**
* Whether the DB cluster is a clone of a DB cluster owned by a different AWS account.
*/
CrossAccountClone?: Boolean;
/**
* The Active Directory domain membership records that are associated with the DB cluster.
*/
DomainMemberships?: AwsRdsDbDomainMemberships;
/**
* The name of the DB cluster parameter group for the DB cluster.
*/
DbClusterParameterGroup?: NonEmptyString;
/**
* The subnet group that is associated with the DB cluster, including the name, description, and subnets in the subnet group.
*/
DbSubnetGroup?: NonEmptyString;
/**
* The list of option group memberships for this DB cluster.
*/
DbClusterOptionGroupMemberships?: AwsRdsDbClusterOptionGroupMemberships;
/**
* The DB cluster identifier that the user assigned to the cluster. This identifier is the unique key that identifies a DB cluster.
*/
DbClusterIdentifier?: NonEmptyString;
/**
* The list of instances that make up the DB cluster.
*/
DbClusterMembers?: AwsRdsDbClusterMembers;
/**
* Whether the mapping of IAM accounts to database accounts is enabled.
*/
IamDatabaseAuthenticationEnabled?: Boolean;
}
export interface AwsRdsDbClusterMember {
/**
* Whether the cluster member is the primary instance for the DB cluster.
*/
IsClusterWriter?: Boolean;
/**
* Specifies the order in which an Aurora replica is promoted to the primary instance when the existing primary instance fails.
*/
PromotionTier?: Integer;
/**
* The instance identifier for this member of the DB cluster.
*/
DbInstanceIdentifier?: NonEmptyString;
/**
* The status of the DB cluster parameter group for this member of the DB cluster.
*/
DbClusterParameterGroupStatus?: NonEmptyString;
}
export type AwsRdsDbClusterMembers = AwsRdsDbClusterMember[];
export interface AwsRdsDbClusterOptionGroupMembership {
/**
* The name of the DB cluster option group.
*/
DbClusterOptionGroupName?: NonEmptyString;
/**
* The status of the DB cluster option group.
*/
Status?: NonEmptyString;
}
export type AwsRdsDbClusterOptionGroupMemberships = AwsRdsDbClusterOptionGroupMembership[];
export interface AwsRdsDbClusterSnapshotDetails {
/**
* A list of Availability Zones where instances in the DB cluster can be created.
*/
AvailabilityZones?: StringList;
/**
* Indicates when the snapshot was taken. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
SnapshotCreateTime?: NonEmptyString;
/**
*
*/
Engine?: NonEmptyString;
/**
* Specifies the allocated storage size in gibibytes (GiB).
*/
AllocatedStorage?: Integer;
/**
* The status of this DB cluster snapshot.
*/
Status?: NonEmptyString;
/**
* The port number on which the DB instances in the DB cluster accept connections.
*/
Port?: Integer;
/**
* The VPC ID that is associated with the DB cluster snapshot.
*/
VpcId?: NonEmptyString;
/**
* Indicates when the DB cluster was created, in Universal Coordinated Time (UTC). Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
ClusterCreateTime?: NonEmptyString;
/**
* The name of the master user for the DB cluster.
*/
MasterUsername?: NonEmptyString;
/**
* The version of the database engine to use.
*/
EngineVersion?: NonEmptyString;
/**
* The license model information for this DB cluster snapshot.
*/
LicenseModel?: NonEmptyString;
/**
* The type of DB cluster snapshot.
*/
SnapshotType?: NonEmptyString;
/**
* Specifies the percentage of the estimated data that has been transferred.
*/
PercentProgress?: Integer;
/**
* Whether the DB cluster is encrypted.
*/
StorageEncrypted?: Boolean;
/**
* The ARN of the AWS KMS master key that is used to encrypt the database instances in the DB cluster.
*/
KmsKeyId?: NonEmptyString;
/**
* The DB cluster identifier.
*/
DbClusterIdentifier?: NonEmptyString;
/**
* The identifier of the DB cluster snapshot.
*/
DbClusterSnapshotIdentifier?: NonEmptyString;
/**
* Whether mapping of IAM accounts to database accounts is enabled.
*/
IamDatabaseAuthenticationEnabled?: Boolean;
}
export interface AwsRdsDbDomainMembership {
/**
* The identifier of the Active Directory domain.
*/
Domain?: NonEmptyString;
/**
* The status of the Active Directory Domain membership for the DB instance.
*/
Status?: NonEmptyString;
/**
* The fully qualified domain name of the Active Directory domain.
*/
Fqdn?: NonEmptyString;
/**
* The name of the IAM role to use when making API calls to the Directory Service.
*/
IamRoleName?: NonEmptyString;
}
export type AwsRdsDbDomainMemberships = AwsRdsDbDomainMembership[];
export interface AwsRdsDbInstanceAssociatedRole {
/**
* The Amazon Resource Name (ARN) of the IAM role that is associated with the DB instance.
*/
RoleArn?: NonEmptyString;
/**
* The name of the feature associated with the IAM)role.
*/
FeatureName?: NonEmptyString;
/**
* Describes the state of the association between the IAM role and the DB instance. The Status property returns one of the following values: ACTIVE - The IAM role ARN is associated with the DB instance and can be used to access other AWS services on your behalf. PENDING - The IAM role ARN is being associated with the DB instance. INVALID - The IAM role ARN is associated with the DB instance. But the DB instance is unable to assume the IAM role in order to access other AWS services on your behalf.
*/
Status?: NonEmptyString;
}
export type AwsRdsDbInstanceAssociatedRoles = AwsRdsDbInstanceAssociatedRole[];
export interface AwsRdsDbInstanceDetails {
/**
* The AWS Identity and Access Management (IAM) roles associated with the DB instance.
*/
AssociatedRoles?: AwsRdsDbInstanceAssociatedRoles;
/**
* The identifier of the CA certificate for this DB instance.
*/
CACertificateIdentifier?: NonEmptyString;
/**
* If the DB instance is a member of a DB cluster, contains the name of the DB cluster that the DB instance is a member of.
*/
DBClusterIdentifier?: NonEmptyString;
/**
* Contains a user-supplied database identifier. This identifier is the unique key that identifies a DB instance.
*/
DBInstanceIdentifier?: NonEmptyString;
/**
* Contains the name of the compute and memory capacity class of the DB instance.
*/
DBInstanceClass?: NonEmptyString;
/**
* Specifies the port that the DB instance listens on. If the DB instance is part of a DB cluster, this can be a different port than the DB cluster port.
*/
DbInstancePort?: Integer;
/**
* The AWS Region-unique, immutable identifier for the DB instance. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS key for the DB instance is accessed.
*/
DbiResourceId?: NonEmptyString;
/**
* The meaning of this parameter differs according to the database engine you use. MySQL, MariaDB, SQL Server, PostgreSQL Contains the name of the initial database of this instance that was provided at create time, if one was specified when the DB instance was created. This same name is returned for the life of the DB instance. Oracle Contains the Oracle System ID (SID) of the created DB instance. Not shown when the returned parameters do not apply to an Oracle DB instance.
*/
DBName?: NonEmptyString;
/**
* Indicates whether the DB instance has deletion protection enabled. When deletion protection is enabled, the database cannot be deleted.
*/
DeletionProtection?: Boolean;
/**
* Specifies the connection endpoint.
*/
Endpoint?: AwsRdsDbInstanceEndpoint;
/**
* Provides the name of the database engine to use for this DB instance.
*/
Engine?: NonEmptyString;
/**
* Indicates the database engine version.
*/
EngineVersion?: NonEmptyString;
/**
* True if mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false. IAM database authentication can be enabled for the following database engines. For MySQL 5.6, minor version 5.6.34 or higher For MySQL 5.7, minor version 5.7.16 or higher Aurora 5.6 or higher
*/
IAMDatabaseAuthenticationEnabled?: Boolean;
/**
* Indicates when the DB instance was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
InstanceCreateTime?: NonEmptyString;
/**
* If StorageEncrypted is true, the AWS KMS key identifier for the encrypted DB instance.
*/
KmsKeyId?: NonEmptyString;
/**
* Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an internal instance with a DNS name that resolves to a private IP address.
*/
PubliclyAccessible?: Boolean;
/**
* Specifies whether the DB instance is encrypted.
*/
StorageEncrypted?: Boolean;
/**
* The ARN from the key store with which the instance is associated for TDE encryption.
*/
TdeCredentialArn?: NonEmptyString;
/**
* A list of VPC security groups that the DB instance belongs to.
*/
VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroups;
/**
* Whether the DB instance is a multiple Availability Zone deployment.
*/
MultiAz?: Boolean;
/**
* The ARN of the CloudWatch Logs log stream that receives the enhanced monitoring metrics data for the DB instance.
*/
EnhancedMonitoringResourceArn?: NonEmptyString;
/**
* The current status of the DB instance.
*/
DbInstanceStatus?: NonEmptyString;
/**
* The master user name of the DB instance.
*/
MasterUsername?: NonEmptyString;
/**
* The amount of storage (in gigabytes) to initially allocate for the DB instance.
*/
AllocatedStorage?: Integer;
/**
* The range of time each day when automated backups are created, if automated backups are enabled. Uses the format HH:MM-HH:MM. For example, 04:52-05:22.
*/
PreferredBackupWindow?: NonEmptyString;
/**
* The number of days for which to retain automated backups.
*/
BackupRetentionPeriod?: Integer;
/**
* A list of the DB security groups to assign to the DB instance.
*/
DbSecurityGroups?: StringList;
/**
* A list of the DB parameter groups to assign to the DB instance.
*/
DbParameterGroups?: AwsRdsDbParameterGroups;
/**
* The Availability Zone where the DB instance will be created.
*/
AvailabilityZone?: NonEmptyString;
/**
* Information about the subnet group that is associated with the DB instance.
*/
DbSubnetGroup?: AwsRdsDbSubnetGroup;
/**
* The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). Uses the format <day>:HH:MM-<day>:HH:MM. For the day values, use mon|tue|wed|thu|fri|sat|sun. For example, sun:09:32-sun:10:02.
*/
PreferredMaintenanceWindow?: NonEmptyString;
/**
* Changes to the DB instance that are currently pending.
*/
PendingModifiedValues?: AwsRdsDbPendingModifiedValues;
/**
* Specifies the latest time to which a database can be restored with point-in-time restore. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LatestRestorableTime?: NonEmptyString;
/**
* Indicates whether minor version patches are applied automatically.
*/
AutoMinorVersionUpgrade?: Boolean;
/**
* If this DB instance is a read replica, contains the identifier of the source DB instance.
*/
ReadReplicaSourceDBInstanceIdentifier?: NonEmptyString;
/**
* List of identifiers of the read replicas associated with this DB instance.
*/
ReadReplicaDBInstanceIdentifiers?: StringList;
/**
* List of identifiers of Aurora DB clusters to which the RDS DB instance is replicated as a read replica.
*/
ReadReplicaDBClusterIdentifiers?: StringList;
/**
* License model information for this DB instance.
*/
LicenseModel?: NonEmptyString;
/**
* Specifies the provisioned IOPS (I/O operations per second) for this DB instance.
*/
Iops?: Integer;
/**
* The list of option group memberships for this DB instance.
*/
OptionGroupMemberships?: AwsRdsDbOptionGroupMemberships;
/**
* The name of the character set that this DB instance is associated with.
*/
CharacterSetName?: NonEmptyString;
/**
* For a DB instance with multi-Availability Zone support, the name of the secondary Availability Zone.
*/
SecondaryAvailabilityZone?: NonEmptyString;
/**
* The status of a read replica. If the instance isn't a read replica, this is empty.
*/
StatusInfos?: AwsRdsDbStatusInfos;
/**
* The storage type for the DB instance.
*/
StorageType?: NonEmptyString;
/**
* The Active Directory domain membership records associated with the DB instance.
*/
DomainMemberships?: AwsRdsDbDomainMemberships;
/**
* Whether to copy resource tags to snapshots of the DB instance.
*/
CopyTagsToSnapshot?: Boolean;
/**
* The interval, in seconds, between points when enhanced monitoring metrics are collected for the DB instance.
*/
MonitoringInterval?: Integer;
/**
* The ARN for the IAM role that permits Amazon RDS to send enhanced monitoring metrics to CloudWatch Logs.
*/
MonitoringRoleArn?: NonEmptyString;
/**
* The order in which to promote an Aurora replica to the primary instance after a failure of the existing primary instance.
*/
PromotionTier?: Integer;
/**
* The time zone of the DB instance.
*/
Timezone?: NonEmptyString;
/**
* Indicates whether Performance Insights is enabled for the DB instance.
*/
PerformanceInsightsEnabled?: Boolean;
/**
* The identifier of the AWS KMS key used to encrypt the Performance Insights data.
*/
PerformanceInsightsKmsKeyId?: NonEmptyString;
/**
* The number of days to retain Performance Insights data.
*/
PerformanceInsightsRetentionPeriod?: Integer;
/**
* A list of log types that this DB instance is configured to export to CloudWatch Logs.
*/
EnabledCloudWatchLogsExports?: StringList;
/**
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.
*/
ProcessorFeatures?: AwsRdsDbProcessorFeatures;
ListenerEndpoint?: AwsRdsDbInstanceEndpoint;
/**
* The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.
*/
MaxAllocatedStorage?: Integer;
}
export interface AwsRdsDbInstanceEndpoint {
/**
* Specifies the DNS address of the DB instance.
*/
Address?: NonEmptyString;
/**
* Specifies the port that the database engine is listening on.
*/
Port?: Integer;
/**
* Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
*/
HostedZoneId?: NonEmptyString;
}
export interface AwsRdsDbInstanceVpcSecurityGroup {
/**
* The name of the VPC security group.
*/
VpcSecurityGroupId?: NonEmptyString;
/**
* The status of the VPC security group.
*/
Status?: NonEmptyString;
}
export type AwsRdsDbInstanceVpcSecurityGroups = AwsRdsDbInstanceVpcSecurityGroup[];
export interface AwsRdsDbOptionGroupMembership {
/**
*
*/
OptionGroupName?: NonEmptyString;
/**
*
*/
Status?: NonEmptyString;
}
export type AwsRdsDbOptionGroupMemberships = AwsRdsDbOptionGroupMembership[];
export interface AwsRdsDbParameterGroup {
/**
*
*/
DbParameterGroupName?: NonEmptyString;
/**
*
*/
ParameterApplyStatus?: NonEmptyString;
}
export type AwsRdsDbParameterGroups = AwsRdsDbParameterGroup[];
export interface AwsRdsDbPendingModifiedValues {
/**
*
*/
DbInstanceClass?: NonEmptyString;
/**
*
*/
AllocatedStorage?: Integer;
/**
*
*/
MasterUserPassword?: NonEmptyString;
/**
*
*/
Port?: Integer;
/**
*
*/
BackupRetentionPeriod?: Integer;
/**
*
*/
MultiAZ?: Boolean;
/**
*
*/
EngineVersion?: NonEmptyString;
/**
*
*/
LicenseModel?: NonEmptyString;
/**
*
*/
Iops?: Integer;
/**
*
*/
DbInstanceIdentifier?: NonEmptyString;
/**
*
*/
StorageType?: NonEmptyString;
/**
*
*/
CaCertificateIdentifier?: NonEmptyString;
/**
*
*/
DbSubnetGroupName?: NonEmptyString;
/**
*
*/
PendingCloudWatchLogsExports?: AwsRdsPendingCloudWatchLogsExports;
/**
*
*/
ProcessorFeatures?: AwsRdsDbProcessorFeatures;
}
export interface AwsRdsDbProcessorFeature {
/**
*
*/
Name?: NonEmptyString;
/**
*
*/
Value?: NonEmptyString;
}
export type AwsRdsDbProcessorFeatures = AwsRdsDbProcessorFeature[];
export interface AwsRdsDbSnapshotDetails {
/**
*
*/
DbSnapshotIdentifier?: NonEmptyString;
/**
*
*/
DbInstanceIdentifier?: NonEmptyString;
/**
*
*/
SnapshotCreateTime?: NonEmptyString;
/**
*
*/
Engine?: NonEmptyString;
/**
*
*/
AllocatedStorage?: Integer;
/**
*
*/
Status?: NonEmptyString;
/**
*
*/
Port?: Integer;
/**
*
*/
AvailabilityZone?: NonEmptyString;
/**
*
*/
VpcId?: NonEmptyString;
/**
*
*/
InstanceCreateTime?: NonEmptyString;
/**
*
*/
MasterUsername?: NonEmptyString;
/**
*
*/
EngineVersion?: NonEmptyString;
/**
*
*/
LicenseModel?: NonEmptyString;
/**
*
*/
SnapshotType?: NonEmptyString;
/**
*
*/
Iops?: Integer;
/**
*
*/
OptionGroupName?: NonEmptyString;
/**
*
*/
PercentProgress?: Integer;
/**
*
*/
SourceRegion?: NonEmptyString;
/**
*
*/
SourceDbSnapshotIdentifier?: NonEmptyString;
/**
*
*/
StorageType?: NonEmptyString;
/**
*
*/
TdeCredentialArn?: NonEmptyString;
/**
*
*/
Encrypted?: Boolean;
/**
*
*/
KmsKeyId?: NonEmptyString;
/**
*
*/
Timezone?: NonEmptyString;
/**
*
*/
IamDatabaseAuthenticationEnabled?: Boolean;
/**
*
*/
ProcessorFeatures?: AwsRdsDbProcessorFeatures;
/**
*
*/
DbiResourceId?: NonEmptyString;
}
export interface AwsRdsDbStatusInfo {
/**
* The type of status. For a read replica, the status type is read replication.
*/
StatusType?: NonEmptyString;
/**
* Whether the read replica instance is operating normally.
*/
Normal?: Boolean;
/**
* The status of the read replica instance.
*/
Status?: NonEmptyString;
/**
* If the read replica is currently in an error state, provides the error details.
*/
Message?: NonEmptyString;
}
export type AwsRdsDbStatusInfos = AwsRdsDbStatusInfo[];
export interface AwsRdsDbSubnetGroup {
/**
* The name of the subnet group.
*/
DbSubnetGroupName?: NonEmptyString;
/**
* The description of the subnet group.
*/
DbSubnetGroupDescription?: NonEmptyString;
/**
* The VPC ID of the subnet group.
*/
VpcId?: NonEmptyString;
/**
* The status of the subnet group.
*/
SubnetGroupStatus?: NonEmptyString;
/**
* A list of subnets in the subnet group.
*/
Subnets?: AwsRdsDbSubnetGroupSubnets;
/**
* The ARN of the subnet group.
*/
DbSubnetGroupArn?: NonEmptyString;
}
export interface AwsRdsDbSubnetGroupSubnet {
/**
* The identifier of a subnet in the subnet group.
*/
SubnetIdentifier?: NonEmptyString;
/**
* Information about the Availability Zone for a subnet in the subnet group.
*/
SubnetAvailabilityZone?: AwsRdsDbSubnetGroupSubnetAvailabilityZone;
/**
* The status of a subnet in the subnet group.
*/
SubnetStatus?: NonEmptyString;
}
export interface AwsRdsDbSubnetGroupSubnetAvailabilityZone {
/**
* The name of the Availability Zone for a subnet in the subnet group.
*/
Name?: NonEmptyString;
}
export type AwsRdsDbSubnetGroupSubnets = AwsRdsDbSubnetGroupSubnet[];
export interface AwsRdsPendingCloudWatchLogsExports {
/**
* A list of log types that are being enabled.
*/
LogTypesToEnable?: StringList;
/**
* A list of log types that are being disabled.
*/
LogTypesToDisable?: StringList;
}
export interface AwsRedshiftClusterClusterNode {
/**
* The role of the node. A node might be a leader node or a compute node.
*/
NodeRole?: NonEmptyString;
/**
* The private IP address of the node.
*/
PrivateIpAddress?: NonEmptyString;
/**
* The public IP address of the node.
*/
PublicIpAddress?: NonEmptyString;
}
export type AwsRedshiftClusterClusterNodes = AwsRedshiftClusterClusterNode[];
export interface AwsRedshiftClusterClusterParameterGroup {
/**
* The list of parameter statuses.
*/
ClusterParameterStatusList?: AwsRedshiftClusterClusterParameterStatusList;
/**
* The status of updates to the parameters.
*/
ParameterApplyStatus?: NonEmptyString;
/**
* The name of the parameter group.
*/
ParameterGroupName?: NonEmptyString;
}
export type AwsRedshiftClusterClusterParameterGroups = AwsRedshiftClusterClusterParameterGroup[];
export interface AwsRedshiftClusterClusterParameterStatus {
/**
* The name of the parameter.
*/
ParameterName?: NonEmptyString;
/**
* The status of the parameter. Indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when it was applied. Valid values: in-sync | pending-reboot | applying | invalid-parameter | apply-deferred | apply-error | unknown-error
*/
ParameterApplyStatus?: NonEmptyString;
/**
* The error that prevented the parameter from being applied to the database.
*/
ParameterApplyErrorDescription?: NonEmptyString;
}
export type AwsRedshiftClusterClusterParameterStatusList = AwsRedshiftClusterClusterParameterStatus[];
export interface AwsRedshiftClusterClusterSecurityGroup {
/**
* The name of the cluster security group.
*/
ClusterSecurityGroupName?: NonEmptyString;
/**
* The status of the cluster security group.
*/
Status?: NonEmptyString;
}
export type AwsRedshiftClusterClusterSecurityGroups = AwsRedshiftClusterClusterSecurityGroup[];
export interface AwsRedshiftClusterClusterSnapshotCopyStatus {
/**
* The destination Region that snapshots are automatically copied to when cross-Region snapshot copy is enabled.
*/
DestinationRegion?: NonEmptyString;
/**
* The number of days that manual snapshots are retained in the destination region after they are copied from a source region. If the value is -1, then the manual snapshot is retained indefinitely. Valid values: Either -1 or an integer between 1 and 3,653
*/
ManualSnapshotRetentionPeriod?: Integer;
/**
* The number of days to retain automated snapshots in the destination Region after they are copied from a source Region.
*/
RetentionPeriod?: Integer;
/**
* The name of the snapshot copy grant.
*/
SnapshotCopyGrantName?: NonEmptyString;
}
export interface AwsRedshiftClusterDeferredMaintenanceWindow {
/**
* The end of the time window for which maintenance was deferred. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
DeferMaintenanceEndTime?: NonEmptyString;
/**
* The identifier of the maintenance window.
*/
DeferMaintenanceIdentifier?: NonEmptyString;
/**
* The start of the time window for which maintenance was deferred. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
DeferMaintenanceStartTime?: NonEmptyString;
}
export type AwsRedshiftClusterDeferredMaintenanceWindows = AwsRedshiftClusterDeferredMaintenanceWindow[];
export interface AwsRedshiftClusterDetails {
/**
* Indicates whether major version upgrades are applied automatically to the cluster during the maintenance window.
*/
AllowVersionUpgrade?: Boolean;
/**
* The number of days that automatic cluster snapshots are retained.
*/
AutomatedSnapshotRetentionPeriod?: Integer;
/**
* The name of the Availability Zone in which the cluster is located.
*/
AvailabilityZone?: NonEmptyString;
/**
* The availability status of the cluster for queries. Possible values are the following: Available - The cluster is available for queries. Unavailable - The cluster is not available for queries. Maintenance - The cluster is intermittently available for queries due to maintenance activities. Modifying -The cluster is intermittently available for queries due to changes that modify the cluster. Failed - The cluster failed and is not available for queries.
*/
ClusterAvailabilityStatus?: NonEmptyString;
/**
* Indicates when the cluster was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
ClusterCreateTime?: NonEmptyString;
/**
* The unique identifier of the cluster.
*/
ClusterIdentifier?: NonEmptyString;
/**
* The nodes in the cluster.
*/
ClusterNodes?: AwsRedshiftClusterClusterNodes;
/**
* The list of cluster parameter groups that are associated with this cluster.
*/
ClusterParameterGroups?: AwsRedshiftClusterClusterParameterGroups;
/**
* The public key for the cluster.
*/
ClusterPublicKey?: NonEmptyString;
/**
* The specific revision number of the database in the cluster.
*/
ClusterRevisionNumber?: NonEmptyString;
/**
* A list of cluster security groups that are associated with the cluster.
*/
ClusterSecurityGroups?: AwsRedshiftClusterClusterSecurityGroups;
/**
* Information about the destination Region and retention period for the cross-Region snapshot copy.
*/
ClusterSnapshotCopyStatus?: AwsRedshiftClusterClusterSnapshotCopyStatus;
/**
* The current status of the cluster. Valid values: available | available, prep-for-resize | available, resize-cleanup | cancelling-resize | creating | deleting | final-snapshot | hardware-failure | incompatible-hsm | incompatible-network | incompatible-parameters | incompatible-restore | modifying | paused | rebooting | renaming | resizing | rotating-keys | storage-full | updating-hsm
*/
ClusterStatus?: NonEmptyString;
/**
* The name of the subnet group that is associated with the cluster. This parameter is valid only when the cluster is in a VPC.
*/
ClusterSubnetGroupName?: NonEmptyString;
/**
* The version ID of the Amazon Redshift engine that runs on the cluster.
*/
ClusterVersion?: NonEmptyString;
/**
* The name of the initial database that was created when the cluster was created. The same name is returned for the life of the cluster. If an initial database is not specified, a database named devdev is created by default.
*/
DBName?: NonEmptyString;
/**
* List of time windows during which maintenance was deferred.
*/
DeferredMaintenanceWindows?: AwsRedshiftClusterDeferredMaintenanceWindows;
/**
* Information about the status of the Elastic IP (EIP) address.
*/
ElasticIpStatus?: AwsRedshiftClusterElasticIpStatus;
/**
* The number of nodes that you can use the elastic resize method to resize the cluster to.
*/
ElasticResizeNumberOfNodeOptions?: NonEmptyString;
/**
* Indicates whether the data in the cluster is encrypted at rest.
*/
Encrypted?: Boolean;
/**
* The connection endpoint.
*/
Endpoint?: AwsRedshiftClusterEndpoint;
/**
* Indicates whether to create the cluster with enhanced VPC routing enabled.
*/
EnhancedVpcRouting?: Boolean;
/**
* Indicates when the next snapshot is expected to be taken. The cluster must have a valid snapshot schedule and have backups enabled. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
ExpectedNextSnapshotScheduleTime?: NonEmptyString;
/**
* The status of the next expected snapshot. Valid values: OnTrack | Pending
*/
ExpectedNextSnapshotScheduleTimeStatus?: NonEmptyString;
/**
* Information about whether the Amazon Redshift cluster finished applying any changes to hardware security module (HSM) settings that were specified in a modify cluster command.
*/
HsmStatus?: AwsRedshiftClusterHsmStatus;
/**
* A list of IAM roles that the cluster can use to access other AWS services.
*/
IamRoles?: AwsRedshiftClusterIamRoles;
/**
* The identifier of the AWS KMS encryption key that is used to encrypt data in the cluster.
*/
KmsKeyId?: NonEmptyString;
/**
* The name of the maintenance track for the cluster.
*/
MaintenanceTrackName?: NonEmptyString;
/**
* The default number of days to retain a manual snapshot. If the value is -1, the snapshot is retained indefinitely. This setting doesn't change the retention period of existing snapshots. Valid values: Either -1 or an integer between 1 and 3,653
*/
ManualSnapshotRetentionPeriod?: Integer;
/**
* The master user name for the cluster. This name is used to connect to the database that is specified in as the value of DBName.
*/
MasterUsername?: NonEmptyString;
/**
* Indicates the start of the next maintenance window. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
NextMaintenanceWindowStartTime?: NonEmptyString;
/**
* The node type for the nodes in the cluster.
*/
NodeType?: NonEmptyString;
/**
* The number of compute nodes in the cluster.
*/
NumberOfNodes?: Integer;
/**
* A list of cluster operations that are waiting to start.
*/
PendingActions?: StringList;
/**
* A list of changes to the cluster that are currently pending.
*/
PendingModifiedValues?: AwsRedshiftClusterPendingModifiedValues;
/**
* The weekly time range, in Universal Coordinated Time (UTC), during which system maintenance can occur. Format: <day>:HH:MM-<day>:HH:MM For the day values, use mon | tue | wed | thu | fri | sat | sun For example, sun:09:32-sun:10:02
*/
PreferredMaintenanceWindow?: NonEmptyString;
/**
* Whether the cluster can be accessed from a public network.
*/
PubliclyAccessible?: Boolean;
/**
* Information about the resize operation for the cluster.
*/
ResizeInfo?: AwsRedshiftClusterResizeInfo;
/**
* Information about the status of a cluster restore action. Only applies to a cluster that was created by restoring a snapshot.
*/
RestoreStatus?: AwsRedshiftClusterRestoreStatus;
/**
* A unique identifier for the cluster snapshot schedule.
*/
SnapshotScheduleIdentifier?: NonEmptyString;
/**
* The current state of the cluster snapshot schedule. Valid values: MODIFYING | ACTIVE | FAILED
*/
SnapshotScheduleState?: NonEmptyString;
/**
* The identifier of the VPC that the cluster is in, if the cluster is in a VPC.
*/
VpcId?: NonEmptyString;
/**
* The list of VPC security groups that the cluster belongs to, if the cluster is in a VPC.
*/
VpcSecurityGroups?: AwsRedshiftClusterVpcSecurityGroups;
}
export interface AwsRedshiftClusterElasticIpStatus {
/**
* The elastic IP address for the cluster.
*/
ElasticIp?: NonEmptyString;
/**
* The status of the elastic IP address.
*/
Status?: NonEmptyString;
}
export interface AwsRedshiftClusterEndpoint {
/**
* The DNS address of the cluster.
*/
Address?: NonEmptyString;
/**
* The port that the database engine listens on.
*/
Port?: Integer;
}
export interface AwsRedshiftClusterHsmStatus {
/**
* The name of the HSM client certificate that the Amazon Redshift cluster uses to retrieve the data encryption keys that are stored in an HSM.
*/
HsmClientCertificateIdentifier?: NonEmptyString;
/**
* The name of the HSM configuration that contains the information that the Amazon Redshift cluster can use to retrieve and store keys in an HSM.
*/
HsmConfigurationIdentifier?: NonEmptyString;
/**
* Indicates whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command. Type: String Valid values: active | applying
*/
Status?: NonEmptyString;
}
export interface AwsRedshiftClusterIamRole {
/**
* The status of the IAM role's association with the cluster. Valid values: in-sync | adding | removing
*/
ApplyStatus?: NonEmptyString;
/**
* The ARN of the IAM role.
*/
IamRoleArn?: NonEmptyString;
}
export type AwsRedshiftClusterIamRoles = AwsRedshiftClusterIamRole[];
export interface AwsRedshiftClusterPendingModifiedValues {
/**
* The pending or in-progress change to the automated snapshot retention period.
*/
AutomatedSnapshotRetentionPeriod?: Integer;
/**
* The pending or in-progress change to the identifier for the cluster.
*/
ClusterIdentifier?: NonEmptyString;
/**
* The pending or in-progress change to the cluster type.
*/
ClusterType?: NonEmptyString;
/**
* The pending or in-progress change to the service version.
*/
ClusterVersion?: NonEmptyString;
/**
* The encryption type for a cluster.
*/
EncryptionType?: NonEmptyString;
/**
* Indicates whether to create the cluster with enhanced VPC routing enabled.
*/
EnhancedVpcRouting?: Boolean;
/**
* The name of the maintenance track that the cluster changes to during the next maintenance window.
*/
MaintenanceTrackName?: NonEmptyString;
/**
* The pending or in-progress change to the master user password for the cluster.
*/
MasterUserPassword?: NonEmptyString;
/**
* The pending or in-progress change to the cluster's node type.
*/
NodeType?: NonEmptyString;
/**
* The pending or in-progress change to the number of nodes in the cluster.
*/
NumberOfNodes?: Integer;
/**
* The pending or in-progress change to whether the cluster can be connected to from the public network.
*/
PubliclyAccessible?: Boolean;
}
export interface AwsRedshiftClusterResizeInfo {
/**
* Indicates whether the resize operation can be canceled.
*/
AllowCancelResize?: Boolean;
/**
* The type of resize operation. Valid values: ClassicResize
*/
ResizeType?: NonEmptyString;
}
export interface AwsRedshiftClusterRestoreStatus {
/**
* The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.
*/
CurrentRestoreRateInMegaBytesPerSecond?: Double;
/**
* The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.
*/
ElapsedTimeInSeconds?: Long;
/**
* The estimate of the time remaining before the restore is complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.
*/
EstimatedTimeToCompletionInSeconds?: Long;
/**
* The number of megabytes that were transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.
*/
ProgressInMegaBytes?: Long;
/**
* The size of the set of snapshot data that was used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.
*/
SnapshotSizeInMegaBytes?: Long;
/**
* The status of the restore action. Valid values: starting | restoring | completed | failed
*/
Status?: NonEmptyString;
}
export interface AwsRedshiftClusterVpcSecurityGroup {
/**
* The status of the VPC security group.
*/
Status?: NonEmptyString;
/**
* The identifier of the VPC security group.
*/
VpcSecurityGroupId?: NonEmptyString;
}
export type AwsRedshiftClusterVpcSecurityGroups = AwsRedshiftClusterVpcSecurityGroup[];
export interface AwsS3BucketDetails {
/**
* The canonical user ID of the owner of the S3 bucket.
*/
OwnerId?: NonEmptyString;
/**
* The display name of the owner of the S3 bucket.
*/
OwnerName?: NonEmptyString;
/**
* Indicates when the S3 bucket was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedAt?: NonEmptyString;
/**
* The encryption rules that are applied to the S3 bucket.
*/
ServerSideEncryptionConfiguration?: AwsS3BucketServerSideEncryptionConfiguration;
}
export interface AwsS3BucketServerSideEncryptionByDefault {
/**
* Server-side encryption algorithm to use for the default encryption.
*/
SSEAlgorithm?: NonEmptyString;
/**
* AWS KMS customer master key (CMK) ID to use for the default encryption.
*/
KMSMasterKeyID?: NonEmptyString;
}
export interface AwsS3BucketServerSideEncryptionConfiguration {
/**
* The encryption rules that are applied to the S3 bucket.
*/
Rules?: AwsS3BucketServerSideEncryptionRules;
}
export interface AwsS3BucketServerSideEncryptionRule {
/**
* Specifies the default server-side encryption to apply to new objects in the bucket. If a PUT object request doesn't specify any server-side encryption, this default encryption is applied.
*/
ApplyServerSideEncryptionByDefault?: AwsS3BucketServerSideEncryptionByDefault;
}
export type AwsS3BucketServerSideEncryptionRules = AwsS3BucketServerSideEncryptionRule[];
export interface AwsS3ObjectDetails {
/**
* Indicates when the object was last modified. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LastModified?: NonEmptyString;
/**
* The opaque identifier assigned by a web server to a specific version of a resource found at a URL.
*/
ETag?: NonEmptyString;
/**
* The version of the object.
*/
VersionId?: NonEmptyString;
/**
* A standard MIME type describing the format of the object data.
*/
ContentType?: NonEmptyString;
/**
* If the object is stored using server-side encryption, the value of the server-side encryption algorithm used when storing this object in Amazon S3.
*/
ServerSideEncryption?: NonEmptyString;
/**
* The identifier of the AWS Key Management Service (AWS KMS) symmetric customer managed customer master key (CMK) that was used for the object.
*/
SSEKMSKeyId?: NonEmptyString;
}
export interface AwsSecretsManagerSecretDetails {
/**
* Defines the rotation schedule for the secret.
*/
RotationRules?: AwsSecretsManagerSecretRotationRules;
/**
* Whether the rotation occurred within the specified rotation frequency.
*/
RotationOccurredWithinFrequency?: Boolean;
/**
* The ARN, Key ID, or alias of the AWS KMS customer master key (CMK) used to encrypt the SecretString or SecretBinary values for versions of this secret.
*/
KmsKeyId?: NonEmptyString;
/**
* Whether rotation is enabled.
*/
RotationEnabled?: Boolean;
/**
* The ARN of the Lambda function that rotates the secret.
*/
RotationLambdaArn?: NonEmptyString;
/**
* Whether the secret is deleted.
*/
Deleted?: Boolean;
/**
* The name of the secret.
*/
Name?: NonEmptyString;
/**
* The user-provided description of the secret.
*/
Description?: NonEmptyString;
}
export interface AwsSecretsManagerSecretRotationRules {
/**
* The number of days after the previous rotation to rotate the secret.
*/
AutomaticallyAfterDays?: Integer;
}
export interface AwsSecurityFinding {
/**
* The schema version that a finding is formatted for.
*/
SchemaVersion: NonEmptyString;
/**
* The security findings provider-specific identifier for a finding.
*/
Id: NonEmptyString;
/**
* The ARN generated by Security Hub that uniquely identifies a product that generates findings. This can be the ARN for a third-party product that is integrated with Security Hub, or the ARN for a custom integration.
*/
ProductArn: NonEmptyString;
/**
* The identifier for the solution-specific component (a discrete unit of logic) that generated a finding. In various security-findings providers' solutions, this generator can be called a rule, a check, a detector, a plugin, etc.
*/
GeneratorId: NonEmptyString;
/**
* The AWS account ID that a finding is generated in.
*/
AwsAccountId: NonEmptyString;
/**
* One or more finding types in the format of namespace/category/classifier that classify a finding. Valid namespace values are: Software and Configuration Checks | TTPs | Effects | Unusual Behaviors | Sensitive Data Identifications
*/
Types: TypeList;
/**
* Indicates when the security-findings provider first observed the potential security issue that a finding captured. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
FirstObservedAt?: NonEmptyString;
/**
* Indicates when the security-findings provider most recently observed the potential security issue that a finding captured. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LastObservedAt?: NonEmptyString;
/**
* Indicates when the security-findings provider created the potential security issue that a finding captured. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
CreatedAt: NonEmptyString;
/**
* Indicates when the security-findings provider last updated the finding record. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
UpdatedAt: NonEmptyString;
/**
* A finding's severity.
*/
Severity: Severity;
/**
* A finding's confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence.
*/
Confidence?: Integer;
/**
* The level of importance assigned to the resources associated with the finding. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources.
*/
Criticality?: Integer;
/**
* A finding's title. In this release, Title is a required property.
*/
Title: NonEmptyString;
/**
* A finding's description. In this release, Description is a required property.
*/
Description: NonEmptyString;
/**
* A data type that describes the remediation options for a finding.
*/
Remediation?: Remediation;
/**
* A URL that links to a page about the current finding in the security-findings provider's solution.
*/
SourceUrl?: NonEmptyString;
/**
* A data type where security-findings providers can include additional solution-specific details that aren't part of the defined AwsSecurityFinding format.
*/
ProductFields?: FieldMap;
/**
* A list of name/value string pairs associated with the finding. These are custom, user-defined fields added to a finding.
*/
UserDefinedFields?: FieldMap;
/**
* A list of malware related to a finding.
*/
Malware?: MalwareList;
/**
* The details of network-related information about a finding.
*/
Network?: Network;
/**
* Provides information about a network path that is relevant to a finding. Each entry under NetworkPath represents a component of that path.
*/
NetworkPath?: NetworkPathList;
/**
* The details of process-related information about a finding.
*/
Process?: ProcessDetails;
/**
* Threat intelligence details related to a finding.
*/
ThreatIntelIndicators?: ThreatIntelIndicatorList;
/**
* A set of resource data types that describe the resources that the finding refers to.
*/
Resources: ResourceList;
/**
* This data type is exclusive to findings that are generated as the result of a check run against a specific rule in a supported security standard, such as CIS AWS Foundations. Contains security standard-related finding details.
*/
Compliance?: Compliance;
/**
* Indicates the veracity of a finding.
*/
VerificationState?: VerificationState;
/**
* The workflow state of a finding.
*/
WorkflowState?: WorkflowState;
/**
* Provides information about the status of the investigation into a finding.
*/
Workflow?: Workflow;
/**
* The record state of a finding.
*/
RecordState?: RecordState;
/**
* A list of related findings.
*/
RelatedFindings?: RelatedFindingList;
/**
* A user-defined note added to a finding.
*/
Note?: Note;
/**
* Provides a list of vulnerabilities associated with the findings.
*/
Vulnerabilities?: VulnerabilityList;
/**
* Provides an overview of the patch compliance status for an instance against a selected compliance standard.
*/
PatchSummary?: PatchSummary;
}
export interface AwsSecurityFindingFilters {
/**
* The ARN generated by Security Hub that uniquely identifies a third-party company (security findings provider) after this provider's product (solution that generates findings) is registered with Security Hub.
*/
ProductArn?: StringFilterList;
/**
* The AWS account ID that a finding is generated in.
*/
AwsAccountId?: StringFilterList;
/**
* The security findings provider-specific identifier for a finding.
*/
Id?: StringFilterList;
/**
* The identifier for the solution-specific component (a discrete unit of logic) that generated a finding. In various security-findings providers' solutions, this generator can be called a rule, a check, a detector, a plugin, etc.
*/
GeneratorId?: StringFilterList;
/**
* A finding type in the format of namespace/category/classifier that classifies a finding.
*/
Type?: StringFilterList;
/**
* An ISO8601-formatted timestamp that indicates when the security-findings provider first observed the potential security issue that a finding captured.
*/
FirstObservedAt?: DateFilterList;
/**
* An ISO8601-formatted timestamp that indicates when the security-findings provider most recently observed the potential security issue that a finding captured.
*/
LastObservedAt?: DateFilterList;
/**
* An ISO8601-formatted timestamp that indicates when the security-findings provider captured the potential security issue that a finding captured.
*/
CreatedAt?: DateFilterList;
/**
* An ISO8601-formatted timestamp that indicates when the security-findings provider last updated the finding record.
*/
UpdatedAt?: DateFilterList;
/**
* The native severity as defined by the security-findings provider's solution that generated the finding.
*/
SeverityProduct?: NumberFilterList;
/**
* The normalized severity of a finding.
*/
SeverityNormalized?: NumberFilterList;
/**
* The label of a finding's severity.
*/
SeverityLabel?: StringFilterList;
/**
* A finding's confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence.
*/
Confidence?: NumberFilterList;
/**
* The level of importance assigned to the resources associated with the finding. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources.
*/
Criticality?: NumberFilterList;
/**
* A finding's title.
*/
Title?: StringFilterList;
/**
* A finding's description.
*/
Description?: StringFilterList;
/**
* The recommendation of what to do about the issue described in a finding.
*/
RecommendationText?: StringFilterList;
/**
* A URL that links to a page about the current finding in the security-findings provider's solution.
*/
SourceUrl?: StringFilterList;
/**
* A data type where security-findings providers can include additional solution-specific details that aren't part of the defined AwsSecurityFinding format.
*/
ProductFields?: MapFilterList;
/**
* The name of the solution (product) that generates findings.
*/
ProductName?: StringFilterList;
/**
* The name of the findings provider (company) that owns the solution (product) that generates findings.
*/
CompanyName?: StringFilterList;
/**
* A list of name/value string pairs associated with the finding. These are custom, user-defined fields added to a finding.
*/
UserDefinedFields?: MapFilterList;
/**
* The name of the malware that was observed.
*/
MalwareName?: StringFilterList;
/**
* The type of the malware that was observed.
*/
MalwareType?: StringFilterList;
/**
* The filesystem path of the malware that was observed.
*/
MalwarePath?: StringFilterList;
/**
* The state of the malware that was observed.
*/
MalwareState?: StringFilterList;
/**
* Indicates the direction of network traffic associated with a finding.
*/
NetworkDirection?: StringFilterList;
/**
* The protocol of network-related information about a finding.
*/
NetworkProtocol?: StringFilterList;
/**
* The source IPv4 address of network-related information about a finding.
*/
NetworkSourceIpV4?: IpFilterList;
/**
* The source IPv6 address of network-related information about a finding.
*/
NetworkSourceIpV6?: IpFilterList;
/**
* The source port of network-related information about a finding.
*/
NetworkSourcePort?: NumberFilterList;
/**
* The source domain of network-related information about a finding.
*/
NetworkSourceDomain?: StringFilterList;
/**
* The source media access control (MAC) address of network-related information about a finding.
*/
NetworkSourceMac?: StringFilterList;
/**
* The destination IPv4 address of network-related information about a finding.
*/
NetworkDestinationIpV4?: IpFilterList;
/**
* The destination IPv6 address of network-related information about a finding.
*/
NetworkDestinationIpV6?: IpFilterList;
/**
* The destination port of network-related information about a finding.
*/
NetworkDestinationPort?: NumberFilterList;
/**
* The destination domain of network-related information about a finding.
*/
NetworkDestinationDomain?: StringFilterList;
/**
* The name of the process.
*/
ProcessName?: StringFilterList;
/**
* The path to the process executable.
*/
ProcessPath?: StringFilterList;
/**
* The process ID.
*/
ProcessPid?: NumberFilterList;
/**
* The parent process ID.
*/
ProcessParentPid?: NumberFilterList;
/**
* The date/time that the process was launched.
*/
ProcessLaunchedAt?: DateFilterList;
/**
* The date/time that the process was terminated.
*/
ProcessTerminatedAt?: DateFilterList;
/**
* The type of a threat intelligence indicator.
*/
ThreatIntelIndicatorType?: StringFilterList;
/**
* The value of a threat intelligence indicator.
*/
ThreatIntelIndicatorValue?: StringFilterList;
/**
* The category of a threat intelligence indicator.
*/
ThreatIntelIndicatorCategory?: StringFilterList;
/**
* The date/time of the last observation of a threat intelligence indicator.
*/
ThreatIntelIndicatorLastObservedAt?: DateFilterList;
/**
* The source of the threat intelligence.
*/
ThreatIntelIndicatorSource?: StringFilterList;
/**
* The URL for more details from the source of the threat intelligence.
*/
ThreatIntelIndicatorSourceUrl?: StringFilterList;
/**
* Specifies the type of the resource that details are provided for.
*/
ResourceType?: StringFilterList;
/**
* The canonical identifier for the given resource type.
*/
ResourceId?: StringFilterList;
/**
* The canonical AWS partition name that the Region is assigned to.
*/
ResourcePartition?: StringFilterList;
/**
* The canonical AWS external Region name where this resource is located.
*/
ResourceRegion?: StringFilterList;
/**
* A list of AWS tags associated with a resource at the time the finding was processed.
*/
ResourceTags?: MapFilterList;
/**
* The instance type of the instance.
*/
ResourceAwsEc2InstanceType?: StringFilterList;
/**
* The Amazon Machine Image (AMI) ID of the instance.
*/
ResourceAwsEc2InstanceImageId?: StringFilterList;
/**
* The IPv4 addresses associated with the instance.
*/
ResourceAwsEc2InstanceIpV4Addresses?: IpFilterList;
/**
* The IPv6 addresses associated with the instance.
*/
ResourceAwsEc2InstanceIpV6Addresses?: IpFilterList;
/**
* The key name associated with the instance.
*/
ResourceAwsEc2InstanceKeyName?: StringFilterList;
/**
* The IAM profile ARN of the instance.
*/
ResourceAwsEc2InstanceIamInstanceProfileArn?: StringFilterList;
/**
* The identifier of the VPC that the instance was launched in.
*/
ResourceAwsEc2InstanceVpcId?: StringFilterList;
/**
* The identifier of the subnet that the instance was launched in.
*/
ResourceAwsEc2InstanceSubnetId?: StringFilterList;
/**
* The date and time the instance was launched.
*/
ResourceAwsEc2InstanceLaunchedAt?: DateFilterList;
/**
* The canonical user ID of the owner of the S3 bucket.
*/
ResourceAwsS3BucketOwnerId?: StringFilterList;
/**
* The display name of the owner of the S3 bucket.
*/
ResourceAwsS3BucketOwnerName?: StringFilterList;
/**
* The user associated with the IAM access key related to a finding.
*/
ResourceAwsIamAccessKeyUserName?: StringFilterList;
/**
* The status of the IAM access key related to a finding.
*/
ResourceAwsIamAccessKeyStatus?: StringFilterList;
/**
* The creation date/time of the IAM access key related to a finding.
*/
ResourceAwsIamAccessKeyCreatedAt?: DateFilterList;
/**
* The name of the container related to a finding.
*/
ResourceContainerName?: StringFilterList;
/**
* The identifier of the image related to a finding.
*/
ResourceContainerImageId?: StringFilterList;
/**
* The name of the image related to a finding.
*/
ResourceContainerImageName?: StringFilterList;
/**
* The date/time that the container was started.
*/
ResourceContainerLaunchedAt?: DateFilterList;
/**
* The details of a resource that doesn't have a specific subfield for the resource type defined.
*/
ResourceDetailsOther?: MapFilterList;
/**
* Exclusive to findings that are generated as the result of a check run against a specific rule in a supported standard, such as CIS AWS Foundations. Contains security standard-related finding details.
*/
ComplianceStatus?: StringFilterList;
/**
* The veracity of a finding.
*/
VerificationState?: StringFilterList;
/**
* The workflow state of a finding. Note that this field is deprecated. To search for a finding based on its workflow status, use WorkflowStatus.
*/
WorkflowState?: StringFilterList;
/**
* The status of the investigation into a finding. Allowed values are the following. NEW - The initial state of a finding, before it is reviewed. NOTIFIED - Indicates that the resource owner has been notified about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner. SUPPRESSED - The finding will not be reviewed again and will not be acted upon. RESOLVED - The finding was reviewed and remediated and is now considered resolved.
*/
WorkflowStatus?: StringFilterList;
/**
* The updated record state for the finding.
*/
RecordState?: StringFilterList;
/**
* The ARN of the solution that generated a related finding.
*/
RelatedFindingsProductArn?: StringFilterList;
/**
* The solution-generated identifier for a related finding.
*/
RelatedFindingsId?: StringFilterList;
/**
* The text of a note.
*/
NoteText?: StringFilterList;
/**
* The timestamp of when the note was updated.
*/
NoteUpdatedAt?: DateFilterList;
/**
* The principal that created a note.
*/
NoteUpdatedBy?: StringFilterList;
/**
* A keyword for a finding.
*/
Keyword?: KeywordFilterList;
}
export interface AwsSecurityFindingIdentifier {
/**
* The identifier of the finding that was specified by the finding provider.
*/
Id: NonEmptyString;
/**
* The ARN generated by Security Hub that uniquely identifies a product that generates findings. This can be the ARN for a third-party product that is integrated with Security Hub, or the ARN for a custom integration.
*/
ProductArn: NonEmptyString;
}
export type AwsSecurityFindingIdentifierList = AwsSecurityFindingIdentifier[];
export type AwsSecurityFindingList = AwsSecurityFinding[];
export interface AwsSnsTopicDetails {
/**
* The ID of an AWS managed customer master key (CMK) for Amazon SNS or a custom CMK.
*/
KmsMasterKeyId?: NonEmptyString;
/**
* Subscription is an embedded property that describes the subscription endpoints of an Amazon SNS topic.
*/
Subscription?: AwsSnsTopicSubscriptionList;
/**
* The name of the topic.
*/
TopicName?: NonEmptyString;
/**
* The subscription's owner.
*/
Owner?: NonEmptyString;
}
export interface AwsSnsTopicSubscription {
/**
* The subscription's endpoint (format depends on the protocol).
*/
Endpoint?: NonEmptyString;
/**
* The subscription's protocol.
*/
Protocol?: NonEmptyString;
}
export type AwsSnsTopicSubscriptionList = AwsSnsTopicSubscription[];
export interface AwsSqsQueueDetails {
/**
* The length of time, in seconds, for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again.
*/
KmsDataKeyReusePeriodSeconds?: Integer;
/**
* The ID of an AWS managed customer master key (CMK) for Amazon SQS or a custom CMK.
*/
KmsMasterKeyId?: NonEmptyString;
/**
* The name of the new queue.
*/
QueueName?: NonEmptyString;
/**
* The Amazon Resource Name (ARN) of the dead-letter queue to which Amazon SQS moves messages after the value of maxReceiveCount is exceeded.
*/
DeadLetterTargetArn?: NonEmptyString;
}
export interface AwsWafWebAclDetails {
/**
* A friendly name or description of the WebACL. You can't change the name of a WebACL after you create it.
*/
Name?: NonEmptyString;
/**
* The action to perform if none of the rules contained in the WebACL match.
*/
DefaultAction?: NonEmptyString;
/**
* An array that contains the action for each rule in a WebACL, the priority of the rule, and the ID of the rule.
*/
Rules?: AwsWafWebAclRuleList;
/**
* A unique identifier for a WebACL.
*/
WebAclId?: NonEmptyString;
}
export interface AwsWafWebAclRule {
/**
* Specifies the action that CloudFront or AWS WAF takes when a web request matches the conditions in the rule.
*/
Action?: WafAction;
/**
* Rules to exclude from a rule group.
*/
ExcludedRules?: WafExcludedRuleList;
/**
* Use the OverrideAction to test your RuleGroup. Any rule in a RuleGroup can potentially block a request. If you set the OverrideAction to None, the RuleGroup blocks a request if any individual rule in the RuleGroup matches the request and is configured to block that request. However, if you first want to test the RuleGroup, set the OverrideAction to Count. The RuleGroup then overrides any block action specified by individual rules contained within the group. Instead of blocking matching requests, those requests are counted. ActivatedRule|OverrideAction applies only when updating or adding a RuleGroup to a WebACL. In this case you do not use ActivatedRule|Action. For all other update requests, ActivatedRule|Action is used instead of ActivatedRule|OverrideAction.
*/
OverrideAction?: WafOverrideAction;
/**
* Specifies the order in which the rules in a WebACL are evaluated. Rules with a lower value for Priority are evaluated before rules with a higher value. The value must be a unique integer. If you add multiple rules to a WebACL, the values do not need to be consecutive.
*/
Priority?: Integer;
/**
* The identifier for a rule.
*/
RuleId?: NonEmptyString;
/**
* The rule type. Valid values: REGULAR | RATE_BASED | GROUP The default is REGULAR.
*/
Type?: NonEmptyString;
}
export type AwsWafWebAclRuleList = AwsWafWebAclRule[];
export interface BatchDisableStandardsRequest {
/**
* The ARNs of the standards subscriptions to disable.
*/
StandardsSubscriptionArns: StandardsSubscriptionArns;
}
export interface BatchDisableStandardsResponse {
/**
* The details of the standards subscriptions that were disabled.
*/
StandardsSubscriptions?: StandardsSubscriptions;
}
export interface BatchEnableStandardsRequest {
/**
* The list of standards checks to enable.
*/
StandardsSubscriptionRequests: StandardsSubscriptionRequests;
}
export interface BatchEnableStandardsResponse {
/**
* The details of the standards subscriptions that were enabled.
*/
StandardsSubscriptions?: StandardsSubscriptions;
}
export interface BatchImportFindingsRequest {
/**
* A list of findings to import. To successfully import a finding, it must follow the AWS Security Finding Format. Maximum of 100 findings per request.
*/
Findings: AwsSecurityFindingList;
}
export interface BatchImportFindingsResponse {
/**
* The number of findings that failed to import.
*/
FailedCount: Integer;
/**
* The number of findings that were successfully imported.
*/
SuccessCount: Integer;
/**
* The list of findings that failed to import.
*/
FailedFindings?: ImportFindingsErrorList;
}
export interface BatchUpdateFindingsRequest {
/**
* The list of findings to update. BatchUpdateFindings can be used to update up to 100 findings at a time. For each finding, the list provides the finding identifier and the ARN of the finding provider.
*/
FindingIdentifiers: AwsSecurityFindingIdentifierList;
Note?: NoteUpdate;
/**
* Used to update the finding severity.
*/
Severity?: SeverityUpdate;
/**
* Indicates the veracity of a finding. The available values for VerificationState are as follows. UNKNOWN – The default disposition of a security finding TRUE_POSITIVE – The security finding is confirmed FALSE_POSITIVE – The security finding was determined to be a false alarm BENIGN_POSITIVE – A special case of TRUE_POSITIVE where the finding doesn't pose any threat, is expected, or both
*/
VerificationState?: VerificationState;
/**
* The updated value for the finding confidence. Confidence is defined as the likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. Confidence is scored on a 0-100 basis using a ratio scale, where 0 means zero percent confidence and 100 means 100 percent confidence.
*/
Confidence?: RatioScale;
/**
* The updated value for the level of importance assigned to the resources associated with the findings. A score of 0 means that the underlying resources have no criticality, and a score of 100 is reserved for the most critical resources.
*/
Criticality?: RatioScale;
/**
* One or more finding types in the format of namespace/category/classifier that classify a finding. Valid namespace values are as follows. Software and Configuration Checks TTPs Effects Unusual Behaviors Sensitive Data Identifications
*/
Types?: TypeList;
/**
* A list of name/value string pairs associated with the finding. These are custom, user-defined fields added to a finding.
*/
UserDefinedFields?: FieldMap;
/**
* Used to update the workflow status of a finding. The workflow status indicates the progress of the investigation into the finding.
*/
Workflow?: WorkflowUpdate;
/**
* A list of findings that are related to the updated findings.
*/
RelatedFindings?: RelatedFindingList;
}
export interface BatchUpdateFindingsResponse {
/**
* The list of findings that were updated successfully.
*/
ProcessedFindings: AwsSecurityFindingIdentifierList;
/**
* The list of findings that were not updated.
*/
UnprocessedFindings: BatchUpdateFindingsUnprocessedFindingsList;
}
export interface BatchUpdateFindingsUnprocessedFinding {
/**
* The identifier of the finding that was not updated.
*/
FindingIdentifier: AwsSecurityFindingIdentifier;
/**
* The code associated with the error.
*/
ErrorCode: NonEmptyString;
/**
* The message associated with the error.
*/
ErrorMessage: NonEmptyString;
}
export type BatchUpdateFindingsUnprocessedFindingsList = BatchUpdateFindingsUnprocessedFinding[];
export type Boolean = boolean;
export type CategoryList = NonEmptyString[];
export interface CidrBlockAssociation {
/**
* The association ID for the IPv4 CIDR block.
*/
AssociationId?: NonEmptyString;
/**
* The IPv4 CIDR block.
*/
CidrBlock?: NonEmptyString;
/**
* Information about the state of the IPv4 CIDR block.
*/
CidrBlockState?: NonEmptyString;
}
export type CidrBlockAssociationList = CidrBlockAssociation[];
export interface Compliance {
/**
* The result of a standards check. The valid values for Status are as follows. PASSED - Standards check passed for all evaluated resources. WARNING - Some information is missing or this check is not supported for your configuration. FAILED - Standards check failed for at least one evaluated resource. NOT_AVAILABLE - Check could not be performed due to a service outage, API error, or because the result of the AWS Config evaluation was NOT_APPLICABLE. If the AWS Config evaluation result was NOT_APPLICABLE, then after 3 days, Security Hub automatically archives the finding.
*/
Status?: ComplianceStatus;
/**
* For a control, the industry or regulatory framework requirements that are related to the control. The check for that control is aligned with these requirements.
*/
RelatedRequirements?: RelatedRequirementsList;
/**
* For findings generated from controls, a list of reasons behind the value of Status. For the list of status reason codes and their meanings, see Standards-related information in the ASFF in the AWS Security Hub User Guide.
*/
StatusReasons?: StatusReasonsList;
}
export type ComplianceStatus = "PASSED"|"WARNING"|"FAILED"|"NOT_AVAILABLE"|string;
export interface ContainerDetails {
/**
* The name of the container related to a finding.
*/
Name?: NonEmptyString;
/**
* The identifier of the image related to a finding.
*/
ImageId?: NonEmptyString;
/**
* The name of the image related to a finding.
*/
ImageName?: NonEmptyString;
/**
* Indicates when the container started. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LaunchedAt?: NonEmptyString;
}
export type ControlStatus = "ENABLED"|"DISABLED"|string;
export interface CreateActionTargetRequest {
/**
* The name of the custom action target.
*/
Name: NonEmptyString;
/**
* The description for the custom action target.
*/
Description: NonEmptyString;
/**
* The ID for the custom action target.
*/
Id: NonEmptyString;
}
export interface CreateActionTargetResponse {
/**
* The ARN for the custom action target.
*/
ActionTargetArn: NonEmptyString;
}
export interface CreateInsightRequest {
/**
* The name of the custom insight to create.
*/
Name: NonEmptyString;
/**
* One or more attributes used to filter the findings included in the insight. The insight only includes findings that match the criteria defined in the filters.
*/
Filters: AwsSecurityFindingFilters;
/**
* The attribute used to group the findings for the insight. The grouping attribute identifies the type of item that the insight applies to. For example, if an insight is grouped by resource identifier, then the insight produces a list of resource identifiers.
*/
GroupByAttribute: NonEmptyString;
}
export interface CreateInsightResponse {
/**
* The ARN of the insight created.
*/
InsightArn: NonEmptyString;
}
export interface CreateMembersRequest {
/**
* The list of accounts to associate with the Security Hub master account. For each account, the list includes the account ID and the email address.
*/
AccountDetails?: AccountDetailsList;
}
export interface CreateMembersResponse {
/**
* The list of AWS accounts that were not processed. For each account, the list includes the account ID and the email address.
*/
UnprocessedAccounts?: ResultList;
}
export interface Cvss {
/**
* The version of CVSS for the CVSS score.
*/
Version?: NonEmptyString;
/**
* The base CVSS score.
*/
BaseScore?: Double;
/**
* The base scoring vector for the CVSS score.
*/
BaseVector?: NonEmptyString;
}
export type CvssList = Cvss[];
export interface DateFilter {
/**
* A start date for the date filter.
*/
Start?: NonEmptyString;
/**
* An end date for the date filter.
*/
End?: NonEmptyString;
/**
* A date range for the date filter.
*/
DateRange?: DateRange;
}
export type DateFilterList = DateFilter[];
export interface DateRange {
/**
* A date range value for the date filter.
*/
Value?: Integer;
/**
* A date range unit for the date filter.
*/
Unit?: DateRangeUnit;
}
export type DateRangeUnit = "DAYS"|string;
export interface DeclineInvitationsRequest {
/**
* The list of account IDs for the accounts from which to decline the invitations to Security Hub.
*/
AccountIds: AccountIdList;
}
export interface DeclineInvitationsResponse {
/**
* The list of AWS accounts that were not processed. For each account, the list includes the account ID and the email address.
*/
UnprocessedAccounts?: ResultList;
}
export interface DeleteActionTargetRequest {
/**
* The ARN of the custom action target to delete.
*/
ActionTargetArn: NonEmptyString;
}
export interface DeleteActionTargetResponse {
/**
* The ARN of the custom action target that was deleted.
*/
ActionTargetArn: NonEmptyString;
}
export interface DeleteInsightRequest {
/**
* The ARN of the insight to delete.
*/
InsightArn: NonEmptyString;
}
export interface DeleteInsightResponse {
/**
* The ARN of the insight that was deleted.
*/
InsightArn: NonEmptyString;
}
export interface DeleteInvitationsRequest {
/**
* The list of the account IDs that sent the invitations to delete.
*/
AccountIds: AccountIdList;
}
export interface DeleteInvitationsResponse {
/**
* The list of AWS accounts for which the invitations were not deleted. For each account, the list includes the account ID and the email address.
*/
UnprocessedAccounts?: ResultList;
}
export interface DeleteMembersRequest {
/**
* The list of account IDs for the member accounts to delete.
*/
AccountIds?: AccountIdList;
}
export interface DeleteMembersResponse {
/**
* The list of AWS accounts that were not deleted. For each account, the list includes the account ID and the email address.
*/
UnprocessedAccounts?: ResultList;
}
export interface DescribeActionTargetsRequest {
/**
* A list of custom action target ARNs for the custom action targets to retrieve.
*/
ActionTargetArns?: ArnList;
/**
* The token that is required for pagination. On your first call to the DescribeActionTargets operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return.
*/
MaxResults?: MaxResults;
}
export interface DescribeActionTargetsResponse {
/**
* A list of ActionTarget objects. Each object includes the ActionTargetArn, Description, and Name of a custom action target available in Security Hub.
*/
ActionTargets: ActionTargetList;
/**
* The pagination token to use to request the next page of results.
*/
NextToken?: NextToken;
}
export interface DescribeHubRequest {
/**
* The ARN of the Hub resource to retrieve.
*/
HubArn?: NonEmptyString;
}
export interface DescribeHubResponse {
/**
* The ARN of the Hub resource that was retrieved.
*/
HubArn?: NonEmptyString;
/**
* The date and time when Security Hub was enabled in the account.
*/
SubscribedAt?: NonEmptyString;
/**
* Whether to automatically enable new controls when they are added to standards that are enabled. If set to true, then new controls for enabled standards are enabled automatically. If set to false, then new controls are not enabled.
*/
AutoEnableControls?: Boolean;
}
export interface DescribeProductsRequest {
/**
* The token that is required for pagination. On your first call to the DescribeProducts operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return.
*/
MaxResults?: MaxResults;
}
export interface DescribeProductsResponse {
/**
* A list of products, including details for each product.
*/
Products: ProductsList;
/**
* The pagination token to use to request the next page of results.
*/
NextToken?: NextToken;
}
export interface DescribeStandardsControlsRequest {
/**
* The ARN of a resource that represents your subscription to a supported standard.
*/
StandardsSubscriptionArn: NonEmptyString;
/**
* The token that is required for pagination. On your first call to the DescribeStandardsControls operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
*/
NextToken?: NextToken;
/**
* The maximum number of security standard controls to return.
*/
MaxResults?: MaxResults;
}
export interface DescribeStandardsControlsResponse {
/**
* A list of security standards controls.
*/
Controls?: StandardsControls;
/**
* The pagination token to use to request the next page of results.
*/
NextToken?: NextToken;
}
export interface DescribeStandardsRequest {
/**
* The token that is required for pagination. On your first call to the DescribeStandards operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
*/
NextToken?: NextToken;
/**
* The maximum number of standards to return.
*/
MaxResults?: MaxResults;
}
export interface DescribeStandardsResponse {
/**
* A list of available standards.
*/
Standards?: Standards;
/**
* The pagination token to use to request the next page of results.
*/
NextToken?: NextToken;
}
export interface DisableImportFindingsForProductRequest {
/**
* The ARN of the integrated product to disable the integration for.
*/
ProductSubscriptionArn: NonEmptyString;
}
export interface DisableImportFindingsForProductResponse {
}
export interface DisableSecurityHubRequest {
}
export interface DisableSecurityHubResponse {
}
export interface DisassociateFromMasterAccountRequest {
}
export interface DisassociateFromMasterAccountResponse {
}
export interface DisassociateMembersRequest {
/**
* The account IDs of the member accounts to disassociate from the master account.
*/
AccountIds?: AccountIdList;
}
export interface DisassociateMembersResponse {
}
export type Double = number;
export interface EnableImportFindingsForProductRequest {
/**
* The ARN of the product to enable the integration for.
*/
ProductArn: NonEmptyString;
}
export interface EnableImportFindingsForProductResponse {
/**
* The ARN of your subscription to the product to enable integrations for.
*/
ProductSubscriptionArn?: NonEmptyString;
}
export interface EnableSecurityHubRequest {
/**
* The tags to add to the hub resource when you enable Security Hub.
*/
Tags?: TagMap;
/**
* Whether to enable the security standards that Security Hub has designated as automatically enabled. If you do not provide a value for EnableDefaultStandards, it is set to true. To not enable the automatically enabled standards, set EnableDefaultStandards to false.
*/
EnableDefaultStandards?: Boolean;
}
export interface EnableSecurityHubResponse {
}
export type FieldMap = {[key: string]: NonEmptyString};
export interface GetEnabledStandardsRequest {
/**
* The list of the standards subscription ARNs for the standards to retrieve.
*/
StandardsSubscriptionArns?: StandardsSubscriptionArns;
/**
* The token that is required for pagination. On your first call to the GetEnabledStandards operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return in the response.
*/
MaxResults?: MaxResults;
}
export interface GetEnabledStandardsResponse {
/**
* The list of StandardsSubscriptions objects that include information about the enabled standards.
*/
StandardsSubscriptions?: StandardsSubscriptions;
/**
* The pagination token to use to request the next page of results.
*/
NextToken?: NextToken;
}
export interface GetFindingsRequest {
/**
* The finding attributes used to define a condition to filter the returned findings. You can filter by up to 10 finding attributes. For each attribute, you can provide up to 20 filter values. Note that in the available filter fields, WorkflowState is deprecated. To search for a finding based on its workflow status, use WorkflowStatus.
*/
Filters?: AwsSecurityFindingFilters;
/**
* The finding attributes used to sort the list of returned findings.
*/
SortCriteria?: SortCriteria;
/**
* The token that is required for pagination. On your first call to the GetFindings operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
*/
NextToken?: NextToken;
/**
* The maximum number of findings to return.
*/
MaxResults?: MaxResults;
}
export interface GetFindingsResponse {
/**
* The findings that matched the filters specified in the request.
*/
Findings: AwsSecurityFindingList;
/**
* The pagination token to use to request the next page of results.
*/
NextToken?: NextToken;
}
export interface GetInsightResultsRequest {
/**
* The ARN of the insight for which to return results.
*/
InsightArn: NonEmptyString;
}
export interface GetInsightResultsResponse {
/**
* The insight results returned by the operation.
*/
InsightResults: InsightResults;
}
export interface GetInsightsRequest {
/**
* The ARNs of the insights to describe. If you do not provide any insight ARNs, then GetInsights returns all of your custom insights. It does not return any managed insights.
*/
InsightArns?: ArnList;
/**
* The token that is required for pagination. On your first call to the GetInsights operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
*/
NextToken?: NextToken;
/**
* The maximum number of items to return in the response.
*/
MaxResults?: MaxResults;
}
export interface GetInsightsResponse {
/**
* The insights returned by the operation.
*/
Insights: InsightList;
/**
* The pagination token to use to request the next page of results.
*/
NextToken?: NextToken;
}
export interface GetInvitationsCountRequest {
}
export interface GetInvitationsCountResponse {
/**
* The number of all membership invitations sent to this Security Hub member account, not including the currently accepted invitation.
*/
InvitationsCount?: Integer;
}
export interface GetMasterAccountRequest {
}
export interface GetMasterAccountResponse {
/**
* A list of details about the Security Hub master account for the current member account.
*/
Master?: Invitation;
}
export interface GetMembersRequest {
/**
* The list of account IDs for the Security Hub member accounts to return the details for.
*/
AccountIds: AccountIdList;
}
export interface GetMembersResponse {
/**
* The list of details about the Security Hub member accounts.
*/
Members?: MemberList;
/**
* The list of AWS accounts that could not be processed. For each account, the list includes the account ID and the email address.
*/
UnprocessedAccounts?: ResultList;
}
export interface ImportFindingsError {
/**
* The identifier of the finding that could not be updated.
*/
Id: NonEmptyString;
/**
* The code of the error returned by the BatchImportFindings operation.
*/
ErrorCode: NonEmptyString;
/**
* The message of the error returned by the BatchImportFindings operation.
*/
ErrorMessage: NonEmptyString;
}
export type ImportFindingsErrorList = ImportFindingsError[];
export interface Insight {
/**
* The ARN of a Security Hub insight.
*/
InsightArn: NonEmptyString;
/**
* The name of a Security Hub insight.
*/
Name: NonEmptyString;
/**
* One or more attributes used to filter the findings included in the insight. The insight only includes findings that match the criteria defined in the filters.
*/
Filters: AwsSecurityFindingFilters;
/**
* The grouping attribute for the insight's findings. Indicates how to group the matching findings, and identifies the type of item that the insight applies to. For example, if an insight is grouped by resource identifier, then the insight produces a list of resource identifiers.
*/
GroupByAttribute: NonEmptyString;
}
export type InsightList = Insight[];
export interface InsightResultValue {
/**
* The value of the attribute that the findings are grouped by for the insight whose results are returned by the GetInsightResults operation.
*/
GroupByAttributeValue: NonEmptyString;
/**
* The number of findings returned for each GroupByAttributeValue.
*/
Count: Integer;
}
export type InsightResultValueList = InsightResultValue[];
export interface InsightResults {
/**
* The ARN of the insight whose results are returned by the GetInsightResults operation.
*/
InsightArn: NonEmptyString;
/**
* The attribute that the findings are grouped by for the insight whose results are returned by the GetInsightResults operation.
*/
GroupByAttribute: NonEmptyString;
/**
* The list of insight result values returned by the GetInsightResults operation.
*/
ResultValues: InsightResultValueList;
}
export type Integer = number;
export type IntegrationType = "SEND_FINDINGS_TO_SECURITY_HUB"|"RECEIVE_FINDINGS_FROM_SECURITY_HUB"|string;
export type IntegrationTypeList = IntegrationType[];
export interface Invitation {
/**
* The account ID of the Security Hub master account that the invitation was sent from.
*/
AccountId?: AccountId;
/**
* The ID of the invitation sent to the member account.
*/
InvitationId?: NonEmptyString;
/**
* The timestamp of when the invitation was sent.
*/
InvitedAt?: Timestamp;
/**
* The current status of the association between the member and master accounts.
*/
MemberStatus?: NonEmptyString;
}
export type InvitationList = Invitation[];
export interface InviteMembersRequest {
/**
* The list of account IDs of the AWS accounts to invite to Security Hub as members.
*/
AccountIds?: AccountIdList;
}
export interface InviteMembersResponse {
/**
* The list of AWS accounts that could not be processed. For each account, the list includes the account ID and the email address.
*/
UnprocessedAccounts?: ResultList;
}
export interface IpFilter {
/**
* A finding's CIDR value.
*/
Cidr?: NonEmptyString;
}
export type IpFilterList = IpFilter[];
export interface Ipv6CidrBlockAssociation {
/**
* The association ID for the IPv6 CIDR block.
*/
AssociationId?: NonEmptyString;
/**
* The IPv6 CIDR block.
*/
Ipv6CidrBlock?: NonEmptyString;
/**
* Information about the state of the CIDR block.
*/
CidrBlockState?: NonEmptyString;
}
export type Ipv6CidrBlockAssociationList = Ipv6CidrBlockAssociation[];
export interface KeywordFilter {
/**
* A value for the keyword.
*/
Value?: NonEmptyString;
}
export type KeywordFilterList = KeywordFilter[];
export interface ListEnabledProductsForImportRequest {
/**
* The token that is required for pagination. On your first call to the ListEnabledProductsForImport operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
*/
NextToken?: NextToken;
/**
* The maximum number of items to return in the response.
*/
MaxResults?: MaxResults;
}
export interface ListEnabledProductsForImportResponse {
/**
* The list of ARNs for the resources that represent your subscriptions to products.
*/
ProductSubscriptions?: ProductSubscriptionArnList;
/**
* The pagination token to use to request the next page of results.
*/
NextToken?: NextToken;
}
export interface ListInvitationsRequest {
/**
* The maximum number of items to return in the response.
*/
MaxResults?: MaxResults;
/**
* The token that is required for pagination. On your first call to the ListInvitations operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
*/
NextToken?: NextToken;
}
export interface ListInvitationsResponse {
/**
* The details of the invitations returned by the operation.
*/
Invitations?: InvitationList;
/**
* The pagination token to use to request the next page of results.
*/
NextToken?: NonEmptyString;
}
export interface ListMembersRequest {
/**
* Specifies which member accounts to include in the response based on their relationship status with the master account. The default value is TRUE. If OnlyAssociated is set to TRUE, the response includes member accounts whose relationship status with the master is set to ENABLED or DISABLED. If OnlyAssociated is set to FALSE, the response includes all existing member accounts.
*/
OnlyAssociated?: Boolean;
/**
* The maximum number of items to return in the response.
*/
MaxResults?: MaxResults;
/**
* The token that is required for pagination. On your first call to the ListMembers operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
*/
NextToken?: NextToken;
}
export interface ListMembersResponse {
/**
* Member details returned by the operation.
*/
Members?: MemberList;
/**
* The pagination token to use to request the next page of results.
*/
NextToken?: NonEmptyString;
}
export interface ListTagsForResourceRequest {
/**
* The ARN of the resource to retrieve tags for.
*/
ResourceArn: ResourceArn;
}
export interface ListTagsForResourceResponse {
/**
* The tags associated with a resource.
*/
Tags?: TagMap;
}
export interface LoadBalancerState {
/**
* The state code. The initial state of the load balancer is provisioning. After the load balancer is fully set up and ready to route traffic, its state is active. If the load balancer could not be set up, its state is failed.
*/
Code?: NonEmptyString;
/**
* A description of the state.
*/
Reason?: NonEmptyString;
}
export type Long = number;
export interface Malware {
/**
* The name of the malware that was observed.
*/
Name: NonEmptyString;
/**
* The type of the malware that was observed.
*/
Type?: MalwareType;
/**
* The file system path of the malware that was observed.
*/
Path?: NonEmptyString;
/**
* The state of the malware that was observed.
*/
State?: MalwareState;
}
export type MalwareList = Malware[];
export type MalwareState = "OBSERVED"|"REMOVAL_FAILED"|"REMOVED"|string;
export type MalwareType = "ADWARE"|"BLENDED_THREAT"|"BOTNET_AGENT"|"COIN_MINER"|"EXPLOIT_KIT"|"KEYLOGGER"|"MACRO"|"POTENTIALLY_UNWANTED"|"SPYWARE"|"RANSOMWARE"|"REMOTE_ACCESS"|"ROOTKIT"|"TROJAN"|"VIRUS"|"WORM"|string;
export interface MapFilter {
/**
* The key of the map filter. For example, for ResourceTags, Key identifies the name of the tag. For UserDefinedFields, Key is the name of the field.
*/
Key?: NonEmptyString;
/**
* The value for the key in the map filter. Filter values are case sensitive. For example, one of the values for a tag called Department might be Security. If you provide security as the filter value, then there is no match.
*/
Value?: NonEmptyString;
/**
* The condition to apply to the key value when querying for findings with a map filter. To search for values that exactly match the filter value, use EQUALS. For example, for the ResourceTags field, the filter Department EQUALS Security matches findings that have the value Security for the tag Department. To search for values other than the filter value, use NOT_EQUALS. For example, for the ResourceTags field, the filter Department NOT_EQUALS Finance matches findings that do not have the value Finance for the tag Department. EQUALS filters on the same field are joined by OR. A finding matches if it matches any one of those filters. NOT_EQUALS filters on the same field are joined by AND. A finding matches only if it matches all of those filters. You cannot have both an EQUALS filter and a NOT_EQUALS filter on the same field.
*/
Comparison?: MapFilterComparison;
}
export type MapFilterComparison = "EQUALS"|"NOT_EQUALS"|string;
export type MapFilterList = MapFilter[];
export type MaxResults = number;
export interface Member {
/**
* The AWS account ID of the member account.
*/
AccountId?: AccountId;
/**
* The email address of the member account.
*/
Email?: NonEmptyString;
/**
* The AWS account ID of the Security Hub master account associated with this member account.
*/
MasterId?: NonEmptyString;
/**
* The status of the relationship between the member account and its master account. The status can have one of the following values: CREATED - Indicates that the master account added the member account, but has not yet invited the member account. INVITED - Indicates that the master account invited the member account. The member account has not yet responded to the invitation. ASSOCIATED - Indicates that the member account accepted the invitation. REMOVED - Indicates that the master account disassociated the member account. RESIGNED - Indicates that the member account disassociated themselves from the master account. DELETED - Indicates that the master account deleted the member account.
*/
MemberStatus?: NonEmptyString;
/**
* A timestamp for the date and time when the invitation was sent to the member account.
*/
InvitedAt?: Timestamp;
/**
* The timestamp for the date and time when the member account was updated.
*/
UpdatedAt?: Timestamp;
}
export type MemberList = Member[];
export interface Network {
/**
* The direction of network traffic associated with a finding.
*/
Direction?: NetworkDirection;
/**
* The protocol of network-related information about a finding.
*/
Protocol?: NonEmptyString;
/**
* The range of open ports that is present on the network.
*/
OpenPortRange?: PortRange;
/**
* The source IPv4 address of network-related information about a finding.
*/
SourceIpV4?: NonEmptyString;
/**
* The source IPv6 address of network-related information about a finding.
*/
SourceIpV6?: NonEmptyString;
/**
* The source port of network-related information about a finding.
*/
SourcePort?: Integer;
/**
* The source domain of network-related information about a finding.
*/
SourceDomain?: NonEmptyString;
/**
* The source media access control (MAC) address of network-related information about a finding.
*/
SourceMac?: NonEmptyString;
/**
* The destination IPv4 address of network-related information about a finding.
*/
DestinationIpV4?: NonEmptyString;
/**
* The destination IPv6 address of network-related information about a finding.
*/
DestinationIpV6?: NonEmptyString;
/**
* The destination port of network-related information about a finding.
*/
DestinationPort?: Integer;
/**
* The destination domain of network-related information about a finding.
*/
DestinationDomain?: NonEmptyString;
}
export type NetworkDirection = "IN"|"OUT"|string;
export interface NetworkHeader {
/**
* The protocol used for the component.
*/
Protocol?: NonEmptyString;
/**
* Information about the destination of the component.
*/
Destination?: NetworkPathComponentDetails;
/**
* Information about the origin of the component.
*/
Source?: NetworkPathComponentDetails;
}
export interface NetworkPathComponent {
/**
* The identifier of a component in the network path.
*/
ComponentId?: NonEmptyString;
/**
* The type of component.
*/
ComponentType?: NonEmptyString;
/**
* Information about the component that comes after the current component in the network path.
*/
Egress?: NetworkHeader;
/**
* Information about the component that comes before the current node in the network path.
*/
Ingress?: NetworkHeader;
}
export interface NetworkPathComponentDetails {
/**
* The IP addresses of the destination.
*/
Address?: StringList;
/**
* A list of port ranges for the destination.
*/
PortRanges?: PortRangeList;
}
export type NetworkPathList = NetworkPathComponent[];
export type NextToken = string;
export type NonEmptyString = string;
export type NonEmptyStringList = NonEmptyString[];
export interface Note {
/**
* The text of a note.
*/
Text: NonEmptyString;
/**
* The principal that created a note.
*/
UpdatedBy: NonEmptyString;
/**
* The timestamp of when the note was updated. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
UpdatedAt: NonEmptyString;
}
export interface NoteUpdate {
/**
* The updated note text.
*/
Text: NonEmptyString;
/**
* The principal that updated the note.
*/
UpdatedBy: NonEmptyString;
}
export interface NumberFilter {
/**
* The greater-than-equal condition to be applied to a single field when querying for findings.
*/
Gte?: Double;
/**
* The less-than-equal condition to be applied to a single field when querying for findings.
*/
Lte?: Double;
/**
* The equal-to condition to be applied to a single field when querying for findings.
*/
Eq?: Double;
}
export type NumberFilterList = NumberFilter[];
export type Partition = "aws"|"aws-cn"|"aws-us-gov"|string;
export interface PatchSummary {
/**
* The identifier of the compliance standard that was used to determine the patch compliance status.
*/
Id: NonEmptyString;
/**
* The number of patches from the compliance standard that were installed successfully.
*/
InstalledCount?: Integer;
/**
* The number of patches that are part of the compliance standard but are not installed. The count includes patches that failed to install.
*/
MissingCount?: Integer;
/**
* The number of patches from the compliance standard that failed to install.
*/
FailedCount?: Integer;
/**
* The number of installed patches that are not part of the compliance standard.
*/
InstalledOtherCount?: Integer;
/**
* The number of patches that are installed but are also on a list of patches that the customer rejected.
*/
InstalledRejectedCount?: Integer;
/**
* The number of patches that were applied, but that require the instance to be rebooted in order to be marked as installed.
*/
InstalledPendingReboot?: Integer;
/**
* Indicates when the operation started. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
OperationStartTime?: NonEmptyString;
/**
* Indicates when the operation completed. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
OperationEndTime?: NonEmptyString;
/**
* The reboot option specified for the instance.
*/
RebootOption?: NonEmptyString;
/**
* The type of patch operation performed. For Patch Manager, the values are SCAN and INSTALL.
*/
Operation?: NonEmptyString;
}
export interface PortRange {
/**
* The first port in the port range.
*/
Begin?: Integer;
/**
* The last port in the port range.
*/
End?: Integer;
}
export type PortRangeList = PortRange[];
export interface ProcessDetails {
/**
* The name of the process.
*/
Name?: NonEmptyString;
/**
* The path to the process executable.
*/
Path?: NonEmptyString;
/**
* The process ID.
*/
Pid?: Integer;
/**
* The parent process ID.
*/
ParentPid?: Integer;
/**
* Indicates when the process was launched. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LaunchedAt?: NonEmptyString;
/**
* Indicates when the process was terminated. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
TerminatedAt?: NonEmptyString;
}
export interface Product {
/**
* The ARN assigned to the product.
*/
ProductArn: NonEmptyString;
/**
* The name of the product.
*/
ProductName?: NonEmptyString;
/**
* The name of the company that provides the product.
*/
CompanyName?: NonEmptyString;
/**
* A description of the product.
*/
Description?: NonEmptyString;
/**
* The categories assigned to the product.
*/
Categories?: CategoryList;
/**
* The types of integration that the product supports. Available values are the following. SEND_FINDINGS_TO_SECURITY_HUB - Indicates that the integration sends findings to Security Hub. RECEIVE_FINDINGS_FROM_SECURITY_HUB - Indicates that the integration receives findings from Security Hub.
*/
IntegrationTypes?: IntegrationTypeList;
/**
* The URL for the page that contains more information about the product.
*/
MarketplaceUrl?: NonEmptyString;
/**
* The URL used to activate the product.
*/
ActivationUrl?: NonEmptyString;
/**
* The resource policy associated with the product.
*/
ProductSubscriptionResourcePolicy?: NonEmptyString;
}
export type ProductSubscriptionArnList = NonEmptyString[];
export type ProductsList = Product[];
export type RatioScale = number;
export interface Recommendation {
/**
* Describes the recommended steps to take to remediate an issue identified in a finding.
*/
Text?: NonEmptyString;
/**
* A URL to a page or site that contains information about how to remediate a finding.
*/
Url?: NonEmptyString;
}
export type RecordState = "ACTIVE"|"ARCHIVED"|string;
export interface RelatedFinding {
/**
* The ARN of the product that generated a related finding.
*/
ProductArn: NonEmptyString;
/**
* The product-generated identifier for a related finding.
*/
Id: NonEmptyString;
}
export type RelatedFindingList = RelatedFinding[];
export type RelatedRequirementsList = NonEmptyString[];
export interface Remediation {
/**
* A recommendation on the steps to take to remediate the issue identified by a finding.
*/
Recommendation?: Recommendation;
}
export interface Resource {
/**
* The type of the resource that details are provided for. If possible, set Type to one of the supported resource types. For example, if the resource is an EC2 instance, then set Type to AwsEc2Instance. If the resource does not match any of the provided types, then set Type to Other.
*/
Type: NonEmptyString;
/**
* The canonical identifier for the given resource type.
*/
Id: NonEmptyString;
/**
* The canonical AWS partition name that the Region is assigned to.
*/
Partition?: Partition;
/**
* The canonical AWS external Region name where this resource is located.
*/
Region?: NonEmptyString;
/**
*
*/
ResourceRole?: NonEmptyString;
/**
* A list of AWS tags associated with a resource at the time the finding was processed.
*/
Tags?: FieldMap;
/**
* Additional details about the resource related to a finding.
*/
Details?: ResourceDetails;
}
export type ResourceArn = string;
export interface ResourceDetails {
/**
* Details for an autoscaling group.
*/
AwsAutoScalingAutoScalingGroup?: AwsAutoScalingAutoScalingGroupDetails;
/**
* Details for an AWS CodeBuild project.
*/
AwsCodeBuildProject?: AwsCodeBuildProjectDetails;
/**
* Details about a CloudFront distribution.
*/
AwsCloudFrontDistribution?: AwsCloudFrontDistributionDetails;
/**
* Details about an Amazon EC2 instance related to a finding.
*/
AwsEc2Instance?: AwsEc2InstanceDetails;
/**
* Details for an Amazon EC2 network interface.
*/
AwsEc2NetworkInterface?: AwsEc2NetworkInterfaceDetails;
/**
* Details for an EC2 security group.
*/
AwsEc2SecurityGroup?: AwsEc2SecurityGroupDetails;
/**
* Details for an EC2 volume.
*/
AwsEc2Volume?: AwsEc2VolumeDetails;
/**
* Details for an EC2 VPC.
*/
AwsEc2Vpc?: AwsEc2VpcDetails;
/**
* Details about an Elastic IP address.
*/
AwsEc2Eip?: AwsEc2EipDetails;
/**
* Details about a load balancer.
*/
AwsElbv2LoadBalancer?: AwsElbv2LoadBalancerDetails;
/**
* Details for an Elasticsearch domain.
*/
AwsElasticsearchDomain?: AwsElasticsearchDomainDetails;
/**
* Details about an Amazon S3 bucket related to a finding.
*/
AwsS3Bucket?: AwsS3BucketDetails;
/**
* Details about an Amazon S3 object related to a finding.
*/
AwsS3Object?: AwsS3ObjectDetails;
/**
* Details about a Secrets Manager secret.
*/
AwsSecretsManagerSecret?: AwsSecretsManagerSecretDetails;
/**
* Details about an IAM access key related to a finding.
*/
AwsIamAccessKey?: AwsIamAccessKeyDetails;
/**
* Details about an IAM user.
*/
AwsIamUser?: AwsIamUserDetails;
/**
* Details about an IAM permissions policy.
*/
AwsIamPolicy?: AwsIamPolicyDetails;
/**
*
*/
AwsApiGatewayV2Stage?: AwsApiGatewayV2StageDetails;
/**
*
*/
AwsApiGatewayV2Api?: AwsApiGatewayV2ApiDetails;
/**
* Details about a DynamoDB table.
*/
AwsDynamoDbTable?: AwsDynamoDbTableDetails;
/**
*
*/
AwsApiGatewayStage?: AwsApiGatewayStageDetails;
/**
*
*/
AwsApiGatewayRestApi?: AwsApiGatewayRestApiDetails;
/**
*
*/
AwsCloudTrailTrail?: AwsCloudTrailTrailDetails;
/**
*
*/
AwsCertificateManagerCertificate?: AwsCertificateManagerCertificateDetails;
/**
*
*/
AwsRedshiftCluster?: AwsRedshiftClusterDetails;
/**
*
*/
AwsElbLoadBalancer?: AwsElbLoadBalancerDetails;
/**
*
*/
AwsIamGroup?: AwsIamGroupDetails;
/**
* Details about an IAM role.
*/
AwsIamRole?: AwsIamRoleDetails;
/**
* Details about a KMS key.
*/
AwsKmsKey?: AwsKmsKeyDetails;
/**
* Details about a Lambda function.
*/
AwsLambdaFunction?: AwsLambdaFunctionDetails;
/**
* Details for a Lambda layer version.
*/
AwsLambdaLayerVersion?: AwsLambdaLayerVersionDetails;
/**
* Details about an Amazon RDS database instance.
*/
AwsRdsDbInstance?: AwsRdsDbInstanceDetails;
/**
* Details about an SNS topic.
*/
AwsSnsTopic?: AwsSnsTopicDetails;
/**
* Details about an SQS queue.
*/
AwsSqsQueue?: AwsSqsQueueDetails;
/**
* Details for a WAF WebACL.
*/
AwsWafWebAcl?: AwsWafWebAclDetails;
/**
* Details about an Amazon RDS database snapshot.
*/
AwsRdsDbSnapshot?: AwsRdsDbSnapshotDetails;
/**
* Details about an Amazon RDS database cluster snapshot.
*/
AwsRdsDbClusterSnapshot?: AwsRdsDbClusterSnapshotDetails;
/**
* Details about an Amazon RDS database cluster.
*/
AwsRdsDbCluster?: AwsRdsDbClusterDetails;
/**
* Details about a container resource related to a finding.
*/
Container?: ContainerDetails;
/**
* Details about a resource that are not available in a type-specific details object. Use the Other object in the following cases. The type-specific object does not contain all of the fields that you want to populate. In this case, first use the type-specific object to populate those fields. Use the Other object to populate the fields that are missing from the type-specific object. The resource type does not have a corresponding object. This includes resources for which the type is Other.
*/
Other?: FieldMap;
}
export type ResourceList = Resource[];
export interface Result {
/**
* An AWS account ID of the account that was not processed.
*/
AccountId?: AccountId;
/**
* The reason that the account was not processed.
*/
ProcessingResult?: NonEmptyString;
}
export type ResultList = Result[];
export type SecurityGroups = NonEmptyString[];
export interface Severity {
/**
* Deprecated. This attribute is being deprecated. Instead of providing Product, provide Original. The native severity as defined by the AWS service or integrated partner product that generated the finding.
*/
Product?: Double;
/**
* The severity value of the finding. The allowed values are the following. INFORMATIONAL - No issue was found. LOW - The issue does not require action on its own. MEDIUM - The issue must be addressed but not urgently. HIGH - The issue must be addressed as a priority. CRITICAL - The issue must be remediated immediately to avoid it escalating. If you provide Normalized and do not provide Label, then Label is set automatically as follows. 0 - INFORMATIONAL 1–39 - LOW 40–69 - MEDIUM 70–89 - HIGH 90–100 - CRITICAL
*/
Label?: SeverityLabel;
/**
* Deprecated. The normalized severity of a finding. This attribute is being deprecated. Instead of providing Normalized, provide Label. If you provide Label and do not provide Normalized, then Normalized is set automatically as follows. INFORMATIONAL - 0 LOW - 1 MEDIUM - 40 HIGH - 70 CRITICAL - 90
*/
Normalized?: Integer;
/**
* The native severity from the finding product that generated the finding.
*/
Original?: NonEmptyString;
}
export type SeverityLabel = "INFORMATIONAL"|"LOW"|"MEDIUM"|"HIGH"|"CRITICAL"|string;
export type SeverityRating = "LOW"|"MEDIUM"|"HIGH"|"CRITICAL"|string;
export interface SeverityUpdate {
/**
* The normalized severity for the finding. This attribute is to be deprecated in favor of Label. If you provide Normalized and do not provide Label, Label is set automatically as follows. 0 - INFORMATIONAL 1–39 - LOW 40–69 - MEDIUM 70–89 - HIGH 90–100 - CRITICAL
*/
Normalized?: RatioScale;
/**
* The native severity as defined by the AWS service or integrated partner product that generated the finding.
*/
Product?: Double;
/**
* The severity value of the finding. The allowed values are the following. INFORMATIONAL - No issue was found. LOW - The issue does not require action on its own. MEDIUM - The issue must be addressed but not urgently. HIGH - The issue must be addressed as a priority. CRITICAL - The issue must be remediated immediately to avoid it escalating.
*/
Label?: SeverityLabel;
}
export type SizeBytes = number;
export interface SoftwarePackage {
/**
* The name of the software package.
*/
Name?: NonEmptyString;
/**
* The version of the software package.
*/
Version?: NonEmptyString;
/**
* The epoch of the software package.
*/
Epoch?: NonEmptyString;
/**
* The release of the software package.
*/
Release?: NonEmptyString;
/**
* The architecture used for the software package.
*/
Architecture?: NonEmptyString;
}
export type SoftwarePackageList = SoftwarePackage[];
export type SortCriteria = SortCriterion[];
export interface SortCriterion {
/**
* The finding attribute used to sort findings.
*/
Field?: NonEmptyString;
/**
* The order used to sort findings.
*/
SortOrder?: SortOrder;
}
export type SortOrder = "asc"|"desc"|string;
export interface Standard {
/**
* The ARN of a standard.
*/
StandardsArn?: NonEmptyString;
/**
* The name of the standard.
*/
Name?: NonEmptyString;
/**
* A description of the standard.
*/
Description?: NonEmptyString;
/**
* Whether the standard is enabled by default. When Security Hub is enabled from the console, if a standard is enabled by default, the check box for that standard is selected by default. When Security Hub is enabled using the EnableSecurityHub API operation, the standard is enabled by default unless EnableDefaultStandards is set to false.
*/
EnabledByDefault?: Boolean;
}
export type Standards = Standard[];
export interface StandardsControl {
/**
* The ARN of the security standard control.
*/
StandardsControlArn?: NonEmptyString;
/**
* The current status of the security standard control. Indicates whether the control is enabled or disabled. Security Hub does not check against disabled controls.
*/
ControlStatus?: ControlStatus;
/**
* The reason provided for the most recent change in status for the control.
*/
DisabledReason?: NonEmptyString;
/**
* The date and time that the status of the security standard control was most recently updated.
*/
ControlStatusUpdatedAt?: Timestamp;
/**
* The identifier of the security standard control.
*/
ControlId?: NonEmptyString;
/**
* The title of the security standard control.
*/
Title?: NonEmptyString;
/**
* The longer description of the security standard control. Provides information about what the control is checking for.
*/
Description?: NonEmptyString;
/**
* A link to remediation information for the control in the Security Hub user documentation.
*/
RemediationUrl?: NonEmptyString;
/**
* The severity of findings generated from this security standard control. The finding severity is based on an assessment of how easy it would be to compromise AWS resources if the issue is detected.
*/
SeverityRating?: SeverityRating;
/**
* The list of requirements that are related to this control.
*/
RelatedRequirements?: RelatedRequirementsList;
}
export type StandardsControls = StandardsControl[];
export type StandardsInputParameterMap = {[key: string]: NonEmptyString};
export type StandardsStatus = "PENDING"|"READY"|"FAILED"|"DELETING"|"INCOMPLETE"|string;
export interface StandardsSubscription {
/**
* The ARN of a resource that represents your subscription to a supported standard.
*/
StandardsSubscriptionArn: NonEmptyString;
/**
* The ARN of a standard.
*/
StandardsArn: NonEmptyString;
/**
* A key-value pair of input for the standard.
*/
StandardsInput: StandardsInputParameterMap;
/**
* The status of the standards subscription.
*/
StandardsStatus: StandardsStatus;
}
export type StandardsSubscriptionArns = NonEmptyString[];
export interface StandardsSubscriptionRequest {
/**
* The ARN of the standard that you want to enable. To view the list of available standards and their ARNs, use the DescribeStandards operation.
*/
StandardsArn: NonEmptyString;
/**
* A key-value pair of input for the standard.
*/
StandardsInput?: StandardsInputParameterMap;
}
export type StandardsSubscriptionRequests = StandardsSubscriptionRequest[];
export type StandardsSubscriptions = StandardsSubscription[];
export interface StatusReason {
/**
* A code that represents a reason for the control status. For the list of status reason codes and their meanings, see Standards-related information in the ASFF in the AWS Security Hub User Guide.
*/
ReasonCode: NonEmptyString;
/**
* The corresponding description for the status reason code.
*/
Description?: NonEmptyString;
}
export type StatusReasonsList = StatusReason[];
export interface StringFilter {
/**
* The string filter value. Filter values are case sensitive. For example, the product name for control-based findings is Security Hub. If you provide security hub as the filter text, then there is no match.
*/
Value?: NonEmptyString;
/**
* The condition to apply to a string value when querying for findings. To search for values that contain the filter criteria value, use one of the following comparison operators: To search for values that exactly match the filter value, use EQUALS. For example, the filter ResourceType EQUALS AwsEc2SecurityGroup only matches findings that have a resource type of AwsEc2SecurityGroup. To search for values that start with the filter value, use PREFIX. For example, the filter ResourceType PREFIX AwsIam matches findings that have a resource type that starts with AwsIam. Findings with a resource type of AwsIamPolicy, AwsIamRole, or AwsIamUser would all match. EQUALS and PREFIX filters on the same field are joined by OR. A finding matches if it matches any one of those filters. To search for values that do not contain the filter criteria value, use one of the following comparison operators: To search for values that do not exactly match the filter value, use NOT_EQUALS. For example, the filter ResourceType NOT_EQUALS AwsIamPolicy matches findings that have a resource type other than AwsIamPolicy. To search for values that do not start with the filter value, use PREFIX_NOT_EQUALS. For example, the filter ResourceType PREFIX_NOT_EQUALS AwsIam matches findings that have a resource type that does not start with AwsIam. Findings with a resource type of AwsIamPolicy, AwsIamRole, or AwsIamUser would all be excluded from the results. NOT_EQUALS and PREFIX_NOT_EQUALS filters on the same field are joined by AND. A finding matches only if it matches all of those filters. For filters on the same field, you cannot provide both an EQUALS filter and a NOT_EQUALS or PREFIX_NOT_EQUALS filter. Combining filters in this way always returns an error, even if the provided filter values would return valid results. You can combine PREFIX filters with NOT_EQUALS or PREFIX_NOT_EQUALS filters for the same field. Security Hub first processes the PREFIX filters, then the NOT_EQUALS or PREFIX_NOT_EQUALS filters. For example, for the following filter, Security Hub first identifies findings that have resource types that start with either AwsIAM or AwsEc2. It then excludes findings that have a resource type of AwsIamPolicy and findings that have a resource type of AwsEc2NetworkInterface. ResourceType PREFIX AwsIam ResourceType PREFIX AwsEc2 ResourceType NOT_EQUALS AwsIamPolicy ResourceType NOT_EQUALS AwsEc2NetworkInterface
*/
Comparison?: StringFilterComparison;
}
export type StringFilterComparison = "EQUALS"|"PREFIX"|"NOT_EQUALS"|"PREFIX_NOT_EQUALS"|string;
export type StringFilterList = StringFilter[];
export type StringList = NonEmptyString[];
export type TagKey = string;
export type TagKeyList = TagKey[];
export type TagMap = {[key: string]: TagValue};
export interface TagResourceRequest {
/**
* The ARN of the resource to apply the tags to.
*/
ResourceArn: ResourceArn;
/**
* The tags to add to the resource.
*/
Tags: TagMap;
}
export interface TagResourceResponse {
}
export type TagValue = string;
export interface ThreatIntelIndicator {
/**
* The type of threat intelligence indicator.
*/
Type?: ThreatIntelIndicatorType;
/**
* The value of a threat intelligence indicator.
*/
Value?: NonEmptyString;
/**
* The category of a threat intelligence indicator.
*/
Category?: ThreatIntelIndicatorCategory;
/**
* Indicates when the most recent instance of a threat intelligence indicator was observed. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
LastObservedAt?: NonEmptyString;
/**
* The source of the threat intelligence indicator.
*/
Source?: NonEmptyString;
/**
* The URL to the page or site where you can get more information about the threat intelligence indicator.
*/
SourceUrl?: NonEmptyString;
}
export type ThreatIntelIndicatorCategory = "BACKDOOR"|"CARD_STEALER"|"COMMAND_AND_CONTROL"|"DROP_SITE"|"EXPLOIT_SITE"|"KEYLOGGER"|string;
export type ThreatIntelIndicatorList = ThreatIntelIndicator[];
export type ThreatIntelIndicatorType = "DOMAIN"|"EMAIL_ADDRESS"|"HASH_MD5"|"HASH_SHA1"|"HASH_SHA256"|"HASH_SHA512"|"IPV4_ADDRESS"|"IPV6_ADDRESS"|"MUTEX"|"PROCESS"|"URL"|string;
export type Timestamp = Date;
export type TypeList = NonEmptyString[];
export interface UntagResourceRequest {
/**
* The ARN of the resource to remove the tags from.
*/
ResourceArn: ResourceArn;
/**
* The tag keys associated with the tags to remove from the resource.
*/
TagKeys: TagKeyList;
}
export interface UntagResourceResponse {
}
export interface UpdateActionTargetRequest {
/**
* The ARN of the custom action target to update.
*/
ActionTargetArn: NonEmptyString;
/**
* The updated name of the custom action target.
*/
Name?: NonEmptyString;
/**
* The updated description for the custom action target.
*/
Description?: NonEmptyString;
}
export interface UpdateActionTargetResponse {
}
export interface UpdateFindingsRequest {
/**
* A collection of attributes that specify which findings you want to update.
*/
Filters: AwsSecurityFindingFilters;
/**
* The updated note for the finding.
*/
Note?: NoteUpdate;
/**
* The updated record state for the finding.
*/
RecordState?: RecordState;
}
export interface UpdateFindingsResponse {
}
export interface UpdateInsightRequest {
/**
* The ARN of the insight that you want to update.
*/
InsightArn: NonEmptyString;
/**
* The updated name for the insight.
*/
Name?: NonEmptyString;
/**
* The updated filters that define this insight.
*/
Filters?: AwsSecurityFindingFilters;
/**
* The updated GroupBy attribute that defines this insight.
*/
GroupByAttribute?: NonEmptyString;
}
export interface UpdateInsightResponse {
}
export interface UpdateSecurityHubConfigurationRequest {
/**
* Whether to automatically enable new controls when they are added to standards that are enabled. By default, this is set to true, and new controls are enabled automatically. To not automatically enable new controls, set this to false.
*/
AutoEnableControls?: Boolean;
}
export interface UpdateSecurityHubConfigurationResponse {
}
export interface UpdateStandardsControlRequest {
/**
* The ARN of the security standard control to enable or disable.
*/
StandardsControlArn: NonEmptyString;
/**
* The updated status of the security standard control.
*/
ControlStatus?: ControlStatus;
/**
* A description of the reason why you are disabling a security standard control. If you are disabling a control, then this is required.
*/
DisabledReason?: NonEmptyString;
}
export interface UpdateStandardsControlResponse {
}
export type VerificationState = "UNKNOWN"|"TRUE_POSITIVE"|"FALSE_POSITIVE"|"BENIGN_POSITIVE"|string;
export interface Vulnerability {
/**
* The identifier of the vulnerability.
*/
Id: NonEmptyString;
/**
* List of software packages that have the vulnerability.
*/
VulnerablePackages?: SoftwarePackageList;
/**
* CVSS scores from the advisory related to the vulnerability.
*/
Cvss?: CvssList;
/**
* List of vulnerabilities that are related to this vulnerability.
*/
RelatedVulnerabilities?: StringList;
/**
* Information about the vendor that generates the vulnerability report.
*/
Vendor?: VulnerabilityVendor;
/**
* A list of URLs that provide additional information about the vulnerability.
*/
ReferenceUrls?: StringList;
}
export type VulnerabilityList = Vulnerability[];
export interface VulnerabilityVendor {
/**
* The name of the vendor.
*/
Name: NonEmptyString;
/**
* The URL of the vulnerability advisory.
*/
Url?: NonEmptyString;
/**
* The severity that the vendor assigned to the vulnerability.
*/
VendorSeverity?: NonEmptyString;
/**
* Indicates when the vulnerability advisory was created. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
VendorCreatedAt?: NonEmptyString;
/**
* Indicates when the vulnerability advisory was last updated. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
*/
VendorUpdatedAt?: NonEmptyString;
}
export interface WafAction {
/**
* Specifies how you want AWS WAF to respond to requests that match the settings in a rule. Valid settings include the following: ALLOW - AWS WAF allows requests BLOCK - AWS WAF blocks requests COUNT - AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specify COUNT for the default action for a WebACL.
*/
Type?: NonEmptyString;
}
export interface WafExcludedRule {
/**
* The unique identifier for the rule to exclude from the rule group.
*/
RuleId?: NonEmptyString;
}
export type WafExcludedRuleList = WafExcludedRule[];
export interface WafOverrideAction {
/**
* COUNT overrides the action specified by the individual rule within a RuleGroup . If set to NONE, the rule's action takes place.
*/
Type?: NonEmptyString;
}
export interface Workflow {
/**
* The status of the investigation into the finding. The allowed values are the following. NEW - The initial state of a finding, before it is reviewed. NOTIFIED - Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner. SUPPRESSED - The finding will not be reviewed again and will not be acted upon. RESOLVED - The finding was reviewed and remediated and is now considered resolved.
*/
Status?: WorkflowStatus;
}
export type WorkflowState = "NEW"|"ASSIGNED"|"IN_PROGRESS"|"DEFERRED"|"RESOLVED"|string;
export type WorkflowStatus = "NEW"|"NOTIFIED"|"RESOLVED"|"SUPPRESSED"|string;
export interface WorkflowUpdate {
/**
* The status of the investigation into the finding. The allowed values are the following. NEW - The initial state of a finding, before it is reviewed. NOTIFIED - Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner. RESOLVED - The finding was reviewed and remediated and is now considered resolved. SUPPRESSED - The finding will not be reviewed again and will not be acted upon.
*/
Status?: WorkflowStatus;
}
/**
* 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 = "2018-10-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 SecurityHub client.
*/
export import Types = SecurityHub;
}
export = SecurityHub;