greengrass.d.ts
140 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
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';
interface Blob {}
declare class Greengrass extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: Greengrass.Types.ClientConfiguration)
config: Config & Greengrass.Types.ClientConfiguration;
/**
* Associates a role with a group. Your Greengrass core will use the role to access AWS cloud services. The role's permissions should allow Greengrass core Lambda functions to perform actions against the cloud.
*/
associateRoleToGroup(params: Greengrass.Types.AssociateRoleToGroupRequest, callback?: (err: AWSError, data: Greengrass.Types.AssociateRoleToGroupResponse) => void): Request<Greengrass.Types.AssociateRoleToGroupResponse, AWSError>;
/**
* Associates a role with a group. Your Greengrass core will use the role to access AWS cloud services. The role's permissions should allow Greengrass core Lambda functions to perform actions against the cloud.
*/
associateRoleToGroup(callback?: (err: AWSError, data: Greengrass.Types.AssociateRoleToGroupResponse) => void): Request<Greengrass.Types.AssociateRoleToGroupResponse, AWSError>;
/**
* Associates a role with your account. AWS IoT Greengrass will use the role to access your Lambda functions and AWS IoT resources. This is necessary for deployments to succeed. The role must have at least minimum permissions in the policy ''AWSGreengrassResourceAccessRolePolicy''.
*/
associateServiceRoleToAccount(params: Greengrass.Types.AssociateServiceRoleToAccountRequest, callback?: (err: AWSError, data: Greengrass.Types.AssociateServiceRoleToAccountResponse) => void): Request<Greengrass.Types.AssociateServiceRoleToAccountResponse, AWSError>;
/**
* Associates a role with your account. AWS IoT Greengrass will use the role to access your Lambda functions and AWS IoT resources. This is necessary for deployments to succeed. The role must have at least minimum permissions in the policy ''AWSGreengrassResourceAccessRolePolicy''.
*/
associateServiceRoleToAccount(callback?: (err: AWSError, data: Greengrass.Types.AssociateServiceRoleToAccountResponse) => void): Request<Greengrass.Types.AssociateServiceRoleToAccountResponse, AWSError>;
/**
* Creates a connector definition. You may provide the initial version of the connector definition now or use ''CreateConnectorDefinitionVersion'' at a later time.
*/
createConnectorDefinition(params: Greengrass.Types.CreateConnectorDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateConnectorDefinitionResponse) => void): Request<Greengrass.Types.CreateConnectorDefinitionResponse, AWSError>;
/**
* Creates a connector definition. You may provide the initial version of the connector definition now or use ''CreateConnectorDefinitionVersion'' at a later time.
*/
createConnectorDefinition(callback?: (err: AWSError, data: Greengrass.Types.CreateConnectorDefinitionResponse) => void): Request<Greengrass.Types.CreateConnectorDefinitionResponse, AWSError>;
/**
* Creates a version of a connector definition which has already been defined.
*/
createConnectorDefinitionVersion(params: Greengrass.Types.CreateConnectorDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateConnectorDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateConnectorDefinitionVersionResponse, AWSError>;
/**
* Creates a version of a connector definition which has already been defined.
*/
createConnectorDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.CreateConnectorDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateConnectorDefinitionVersionResponse, AWSError>;
/**
* Creates a core definition. You may provide the initial version of the core definition now or use ''CreateCoreDefinitionVersion'' at a later time. Greengrass groups must each contain exactly one Greengrass core.
*/
createCoreDefinition(params: Greengrass.Types.CreateCoreDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateCoreDefinitionResponse) => void): Request<Greengrass.Types.CreateCoreDefinitionResponse, AWSError>;
/**
* Creates a core definition. You may provide the initial version of the core definition now or use ''CreateCoreDefinitionVersion'' at a later time. Greengrass groups must each contain exactly one Greengrass core.
*/
createCoreDefinition(callback?: (err: AWSError, data: Greengrass.Types.CreateCoreDefinitionResponse) => void): Request<Greengrass.Types.CreateCoreDefinitionResponse, AWSError>;
/**
* Creates a version of a core definition that has already been defined. Greengrass groups must each contain exactly one Greengrass core.
*/
createCoreDefinitionVersion(params: Greengrass.Types.CreateCoreDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateCoreDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateCoreDefinitionVersionResponse, AWSError>;
/**
* Creates a version of a core definition that has already been defined. Greengrass groups must each contain exactly one Greengrass core.
*/
createCoreDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.CreateCoreDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateCoreDefinitionVersionResponse, AWSError>;
/**
* Creates a deployment. ''CreateDeployment'' requests are idempotent with respect to the ''X-Amzn-Client-Token'' token and the request parameters.
*/
createDeployment(params: Greengrass.Types.CreateDeploymentRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateDeploymentResponse) => void): Request<Greengrass.Types.CreateDeploymentResponse, AWSError>;
/**
* Creates a deployment. ''CreateDeployment'' requests are idempotent with respect to the ''X-Amzn-Client-Token'' token and the request parameters.
*/
createDeployment(callback?: (err: AWSError, data: Greengrass.Types.CreateDeploymentResponse) => void): Request<Greengrass.Types.CreateDeploymentResponse, AWSError>;
/**
* Creates a device definition. You may provide the initial version of the device definition now or use ''CreateDeviceDefinitionVersion'' at a later time.
*/
createDeviceDefinition(params: Greengrass.Types.CreateDeviceDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateDeviceDefinitionResponse) => void): Request<Greengrass.Types.CreateDeviceDefinitionResponse, AWSError>;
/**
* Creates a device definition. You may provide the initial version of the device definition now or use ''CreateDeviceDefinitionVersion'' at a later time.
*/
createDeviceDefinition(callback?: (err: AWSError, data: Greengrass.Types.CreateDeviceDefinitionResponse) => void): Request<Greengrass.Types.CreateDeviceDefinitionResponse, AWSError>;
/**
* Creates a version of a device definition that has already been defined.
*/
createDeviceDefinitionVersion(params: Greengrass.Types.CreateDeviceDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateDeviceDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateDeviceDefinitionVersionResponse, AWSError>;
/**
* Creates a version of a device definition that has already been defined.
*/
createDeviceDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.CreateDeviceDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateDeviceDefinitionVersionResponse, AWSError>;
/**
* Creates a Lambda function definition which contains a list of Lambda functions and their configurations to be used in a group. You can create an initial version of the definition by providing a list of Lambda functions and their configurations now, or use ''CreateFunctionDefinitionVersion'' later.
*/
createFunctionDefinition(params: Greengrass.Types.CreateFunctionDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateFunctionDefinitionResponse) => void): Request<Greengrass.Types.CreateFunctionDefinitionResponse, AWSError>;
/**
* Creates a Lambda function definition which contains a list of Lambda functions and their configurations to be used in a group. You can create an initial version of the definition by providing a list of Lambda functions and their configurations now, or use ''CreateFunctionDefinitionVersion'' later.
*/
createFunctionDefinition(callback?: (err: AWSError, data: Greengrass.Types.CreateFunctionDefinitionResponse) => void): Request<Greengrass.Types.CreateFunctionDefinitionResponse, AWSError>;
/**
* Creates a version of a Lambda function definition that has already been defined.
*/
createFunctionDefinitionVersion(params: Greengrass.Types.CreateFunctionDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateFunctionDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateFunctionDefinitionVersionResponse, AWSError>;
/**
* Creates a version of a Lambda function definition that has already been defined.
*/
createFunctionDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.CreateFunctionDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateFunctionDefinitionVersionResponse, AWSError>;
/**
* Creates a group. You may provide the initial version of the group or use ''CreateGroupVersion'' at a later time. Tip: You can use the ''gg_group_setup'' package (https://github.com/awslabs/aws-greengrass-group-setup) as a library or command-line application to create and deploy Greengrass groups.
*/
createGroup(params: Greengrass.Types.CreateGroupRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateGroupResponse) => void): Request<Greengrass.Types.CreateGroupResponse, AWSError>;
/**
* Creates a group. You may provide the initial version of the group or use ''CreateGroupVersion'' at a later time. Tip: You can use the ''gg_group_setup'' package (https://github.com/awslabs/aws-greengrass-group-setup) as a library or command-line application to create and deploy Greengrass groups.
*/
createGroup(callback?: (err: AWSError, data: Greengrass.Types.CreateGroupResponse) => void): Request<Greengrass.Types.CreateGroupResponse, AWSError>;
/**
* Creates a CA for the group. If a CA already exists, it will rotate the existing CA.
*/
createGroupCertificateAuthority(params: Greengrass.Types.CreateGroupCertificateAuthorityRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateGroupCertificateAuthorityResponse) => void): Request<Greengrass.Types.CreateGroupCertificateAuthorityResponse, AWSError>;
/**
* Creates a CA for the group. If a CA already exists, it will rotate the existing CA.
*/
createGroupCertificateAuthority(callback?: (err: AWSError, data: Greengrass.Types.CreateGroupCertificateAuthorityResponse) => void): Request<Greengrass.Types.CreateGroupCertificateAuthorityResponse, AWSError>;
/**
* Creates a version of a group which has already been defined.
*/
createGroupVersion(params: Greengrass.Types.CreateGroupVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateGroupVersionResponse) => void): Request<Greengrass.Types.CreateGroupVersionResponse, AWSError>;
/**
* Creates a version of a group which has already been defined.
*/
createGroupVersion(callback?: (err: AWSError, data: Greengrass.Types.CreateGroupVersionResponse) => void): Request<Greengrass.Types.CreateGroupVersionResponse, AWSError>;
/**
* Creates a logger definition. You may provide the initial version of the logger definition now or use ''CreateLoggerDefinitionVersion'' at a later time.
*/
createLoggerDefinition(params: Greengrass.Types.CreateLoggerDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateLoggerDefinitionResponse) => void): Request<Greengrass.Types.CreateLoggerDefinitionResponse, AWSError>;
/**
* Creates a logger definition. You may provide the initial version of the logger definition now or use ''CreateLoggerDefinitionVersion'' at a later time.
*/
createLoggerDefinition(callback?: (err: AWSError, data: Greengrass.Types.CreateLoggerDefinitionResponse) => void): Request<Greengrass.Types.CreateLoggerDefinitionResponse, AWSError>;
/**
* Creates a version of a logger definition that has already been defined.
*/
createLoggerDefinitionVersion(params: Greengrass.Types.CreateLoggerDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateLoggerDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateLoggerDefinitionVersionResponse, AWSError>;
/**
* Creates a version of a logger definition that has already been defined.
*/
createLoggerDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.CreateLoggerDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateLoggerDefinitionVersionResponse, AWSError>;
/**
* Creates a resource definition which contains a list of resources to be used in a group. You can create an initial version of the definition by providing a list of resources now, or use ''CreateResourceDefinitionVersion'' later.
*/
createResourceDefinition(params: Greengrass.Types.CreateResourceDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateResourceDefinitionResponse) => void): Request<Greengrass.Types.CreateResourceDefinitionResponse, AWSError>;
/**
* Creates a resource definition which contains a list of resources to be used in a group. You can create an initial version of the definition by providing a list of resources now, or use ''CreateResourceDefinitionVersion'' later.
*/
createResourceDefinition(callback?: (err: AWSError, data: Greengrass.Types.CreateResourceDefinitionResponse) => void): Request<Greengrass.Types.CreateResourceDefinitionResponse, AWSError>;
/**
* Creates a version of a resource definition that has already been defined.
*/
createResourceDefinitionVersion(params: Greengrass.Types.CreateResourceDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateResourceDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateResourceDefinitionVersionResponse, AWSError>;
/**
* Creates a version of a resource definition that has already been defined.
*/
createResourceDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.CreateResourceDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateResourceDefinitionVersionResponse, AWSError>;
/**
* Creates a software update for a core or group of cores (specified as an IoT thing group.) Use this to update the OTA Agent as well as the Greengrass core software. It makes use of the IoT Jobs feature which provides additional commands to manage a Greengrass core software update job.
*/
createSoftwareUpdateJob(params: Greengrass.Types.CreateSoftwareUpdateJobRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateSoftwareUpdateJobResponse) => void): Request<Greengrass.Types.CreateSoftwareUpdateJobResponse, AWSError>;
/**
* Creates a software update for a core or group of cores (specified as an IoT thing group.) Use this to update the OTA Agent as well as the Greengrass core software. It makes use of the IoT Jobs feature which provides additional commands to manage a Greengrass core software update job.
*/
createSoftwareUpdateJob(callback?: (err: AWSError, data: Greengrass.Types.CreateSoftwareUpdateJobResponse) => void): Request<Greengrass.Types.CreateSoftwareUpdateJobResponse, AWSError>;
/**
* Creates a subscription definition. You may provide the initial version of the subscription definition now or use ''CreateSubscriptionDefinitionVersion'' at a later time.
*/
createSubscriptionDefinition(params: Greengrass.Types.CreateSubscriptionDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateSubscriptionDefinitionResponse) => void): Request<Greengrass.Types.CreateSubscriptionDefinitionResponse, AWSError>;
/**
* Creates a subscription definition. You may provide the initial version of the subscription definition now or use ''CreateSubscriptionDefinitionVersion'' at a later time.
*/
createSubscriptionDefinition(callback?: (err: AWSError, data: Greengrass.Types.CreateSubscriptionDefinitionResponse) => void): Request<Greengrass.Types.CreateSubscriptionDefinitionResponse, AWSError>;
/**
* Creates a version of a subscription definition which has already been defined.
*/
createSubscriptionDefinitionVersion(params: Greengrass.Types.CreateSubscriptionDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.CreateSubscriptionDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateSubscriptionDefinitionVersionResponse, AWSError>;
/**
* Creates a version of a subscription definition which has already been defined.
*/
createSubscriptionDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.CreateSubscriptionDefinitionVersionResponse) => void): Request<Greengrass.Types.CreateSubscriptionDefinitionVersionResponse, AWSError>;
/**
* Deletes a connector definition.
*/
deleteConnectorDefinition(params: Greengrass.Types.DeleteConnectorDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.DeleteConnectorDefinitionResponse) => void): Request<Greengrass.Types.DeleteConnectorDefinitionResponse, AWSError>;
/**
* Deletes a connector definition.
*/
deleteConnectorDefinition(callback?: (err: AWSError, data: Greengrass.Types.DeleteConnectorDefinitionResponse) => void): Request<Greengrass.Types.DeleteConnectorDefinitionResponse, AWSError>;
/**
* Deletes a core definition.
*/
deleteCoreDefinition(params: Greengrass.Types.DeleteCoreDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.DeleteCoreDefinitionResponse) => void): Request<Greengrass.Types.DeleteCoreDefinitionResponse, AWSError>;
/**
* Deletes a core definition.
*/
deleteCoreDefinition(callback?: (err: AWSError, data: Greengrass.Types.DeleteCoreDefinitionResponse) => void): Request<Greengrass.Types.DeleteCoreDefinitionResponse, AWSError>;
/**
* Deletes a device definition.
*/
deleteDeviceDefinition(params: Greengrass.Types.DeleteDeviceDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.DeleteDeviceDefinitionResponse) => void): Request<Greengrass.Types.DeleteDeviceDefinitionResponse, AWSError>;
/**
* Deletes a device definition.
*/
deleteDeviceDefinition(callback?: (err: AWSError, data: Greengrass.Types.DeleteDeviceDefinitionResponse) => void): Request<Greengrass.Types.DeleteDeviceDefinitionResponse, AWSError>;
/**
* Deletes a Lambda function definition.
*/
deleteFunctionDefinition(params: Greengrass.Types.DeleteFunctionDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.DeleteFunctionDefinitionResponse) => void): Request<Greengrass.Types.DeleteFunctionDefinitionResponse, AWSError>;
/**
* Deletes a Lambda function definition.
*/
deleteFunctionDefinition(callback?: (err: AWSError, data: Greengrass.Types.DeleteFunctionDefinitionResponse) => void): Request<Greengrass.Types.DeleteFunctionDefinitionResponse, AWSError>;
/**
* Deletes a group.
*/
deleteGroup(params: Greengrass.Types.DeleteGroupRequest, callback?: (err: AWSError, data: Greengrass.Types.DeleteGroupResponse) => void): Request<Greengrass.Types.DeleteGroupResponse, AWSError>;
/**
* Deletes a group.
*/
deleteGroup(callback?: (err: AWSError, data: Greengrass.Types.DeleteGroupResponse) => void): Request<Greengrass.Types.DeleteGroupResponse, AWSError>;
/**
* Deletes a logger definition.
*/
deleteLoggerDefinition(params: Greengrass.Types.DeleteLoggerDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.DeleteLoggerDefinitionResponse) => void): Request<Greengrass.Types.DeleteLoggerDefinitionResponse, AWSError>;
/**
* Deletes a logger definition.
*/
deleteLoggerDefinition(callback?: (err: AWSError, data: Greengrass.Types.DeleteLoggerDefinitionResponse) => void): Request<Greengrass.Types.DeleteLoggerDefinitionResponse, AWSError>;
/**
* Deletes a resource definition.
*/
deleteResourceDefinition(params: Greengrass.Types.DeleteResourceDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.DeleteResourceDefinitionResponse) => void): Request<Greengrass.Types.DeleteResourceDefinitionResponse, AWSError>;
/**
* Deletes a resource definition.
*/
deleteResourceDefinition(callback?: (err: AWSError, data: Greengrass.Types.DeleteResourceDefinitionResponse) => void): Request<Greengrass.Types.DeleteResourceDefinitionResponse, AWSError>;
/**
* Deletes a subscription definition.
*/
deleteSubscriptionDefinition(params: Greengrass.Types.DeleteSubscriptionDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.DeleteSubscriptionDefinitionResponse) => void): Request<Greengrass.Types.DeleteSubscriptionDefinitionResponse, AWSError>;
/**
* Deletes a subscription definition.
*/
deleteSubscriptionDefinition(callback?: (err: AWSError, data: Greengrass.Types.DeleteSubscriptionDefinitionResponse) => void): Request<Greengrass.Types.DeleteSubscriptionDefinitionResponse, AWSError>;
/**
* Disassociates the role from a group.
*/
disassociateRoleFromGroup(params: Greengrass.Types.DisassociateRoleFromGroupRequest, callback?: (err: AWSError, data: Greengrass.Types.DisassociateRoleFromGroupResponse) => void): Request<Greengrass.Types.DisassociateRoleFromGroupResponse, AWSError>;
/**
* Disassociates the role from a group.
*/
disassociateRoleFromGroup(callback?: (err: AWSError, data: Greengrass.Types.DisassociateRoleFromGroupResponse) => void): Request<Greengrass.Types.DisassociateRoleFromGroupResponse, AWSError>;
/**
* Disassociates the service role from your account. Without a service role, deployments will not work.
*/
disassociateServiceRoleFromAccount(params: Greengrass.Types.DisassociateServiceRoleFromAccountRequest, callback?: (err: AWSError, data: Greengrass.Types.DisassociateServiceRoleFromAccountResponse) => void): Request<Greengrass.Types.DisassociateServiceRoleFromAccountResponse, AWSError>;
/**
* Disassociates the service role from your account. Without a service role, deployments will not work.
*/
disassociateServiceRoleFromAccount(callback?: (err: AWSError, data: Greengrass.Types.DisassociateServiceRoleFromAccountResponse) => void): Request<Greengrass.Types.DisassociateServiceRoleFromAccountResponse, AWSError>;
/**
* Retrieves the role associated with a particular group.
*/
getAssociatedRole(params: Greengrass.Types.GetAssociatedRoleRequest, callback?: (err: AWSError, data: Greengrass.Types.GetAssociatedRoleResponse) => void): Request<Greengrass.Types.GetAssociatedRoleResponse, AWSError>;
/**
* Retrieves the role associated with a particular group.
*/
getAssociatedRole(callback?: (err: AWSError, data: Greengrass.Types.GetAssociatedRoleResponse) => void): Request<Greengrass.Types.GetAssociatedRoleResponse, AWSError>;
/**
* Returns the status of a bulk deployment.
*/
getBulkDeploymentStatus(params: Greengrass.Types.GetBulkDeploymentStatusRequest, callback?: (err: AWSError, data: Greengrass.Types.GetBulkDeploymentStatusResponse) => void): Request<Greengrass.Types.GetBulkDeploymentStatusResponse, AWSError>;
/**
* Returns the status of a bulk deployment.
*/
getBulkDeploymentStatus(callback?: (err: AWSError, data: Greengrass.Types.GetBulkDeploymentStatusResponse) => void): Request<Greengrass.Types.GetBulkDeploymentStatusResponse, AWSError>;
/**
* Retrieves the connectivity information for a core.
*/
getConnectivityInfo(params: Greengrass.Types.GetConnectivityInfoRequest, callback?: (err: AWSError, data: Greengrass.Types.GetConnectivityInfoResponse) => void): Request<Greengrass.Types.GetConnectivityInfoResponse, AWSError>;
/**
* Retrieves the connectivity information for a core.
*/
getConnectivityInfo(callback?: (err: AWSError, data: Greengrass.Types.GetConnectivityInfoResponse) => void): Request<Greengrass.Types.GetConnectivityInfoResponse, AWSError>;
/**
* Retrieves information about a connector definition.
*/
getConnectorDefinition(params: Greengrass.Types.GetConnectorDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetConnectorDefinitionResponse) => void): Request<Greengrass.Types.GetConnectorDefinitionResponse, AWSError>;
/**
* Retrieves information about a connector definition.
*/
getConnectorDefinition(callback?: (err: AWSError, data: Greengrass.Types.GetConnectorDefinitionResponse) => void): Request<Greengrass.Types.GetConnectorDefinitionResponse, AWSError>;
/**
* Retrieves information about a connector definition version, including the connectors that the version contains. Connectors are prebuilt modules that interact with local infrastructure, device protocols, AWS, and other cloud services.
*/
getConnectorDefinitionVersion(params: Greengrass.Types.GetConnectorDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetConnectorDefinitionVersionResponse) => void): Request<Greengrass.Types.GetConnectorDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a connector definition version, including the connectors that the version contains. Connectors are prebuilt modules that interact with local infrastructure, device protocols, AWS, and other cloud services.
*/
getConnectorDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.GetConnectorDefinitionVersionResponse) => void): Request<Greengrass.Types.GetConnectorDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a core definition version.
*/
getCoreDefinition(params: Greengrass.Types.GetCoreDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetCoreDefinitionResponse) => void): Request<Greengrass.Types.GetCoreDefinitionResponse, AWSError>;
/**
* Retrieves information about a core definition version.
*/
getCoreDefinition(callback?: (err: AWSError, data: Greengrass.Types.GetCoreDefinitionResponse) => void): Request<Greengrass.Types.GetCoreDefinitionResponse, AWSError>;
/**
* Retrieves information about a core definition version.
*/
getCoreDefinitionVersion(params: Greengrass.Types.GetCoreDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetCoreDefinitionVersionResponse) => void): Request<Greengrass.Types.GetCoreDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a core definition version.
*/
getCoreDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.GetCoreDefinitionVersionResponse) => void): Request<Greengrass.Types.GetCoreDefinitionVersionResponse, AWSError>;
/**
* Returns the status of a deployment.
*/
getDeploymentStatus(params: Greengrass.Types.GetDeploymentStatusRequest, callback?: (err: AWSError, data: Greengrass.Types.GetDeploymentStatusResponse) => void): Request<Greengrass.Types.GetDeploymentStatusResponse, AWSError>;
/**
* Returns the status of a deployment.
*/
getDeploymentStatus(callback?: (err: AWSError, data: Greengrass.Types.GetDeploymentStatusResponse) => void): Request<Greengrass.Types.GetDeploymentStatusResponse, AWSError>;
/**
* Retrieves information about a device definition.
*/
getDeviceDefinition(params: Greengrass.Types.GetDeviceDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetDeviceDefinitionResponse) => void): Request<Greengrass.Types.GetDeviceDefinitionResponse, AWSError>;
/**
* Retrieves information about a device definition.
*/
getDeviceDefinition(callback?: (err: AWSError, data: Greengrass.Types.GetDeviceDefinitionResponse) => void): Request<Greengrass.Types.GetDeviceDefinitionResponse, AWSError>;
/**
* Retrieves information about a device definition version.
*/
getDeviceDefinitionVersion(params: Greengrass.Types.GetDeviceDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetDeviceDefinitionVersionResponse) => void): Request<Greengrass.Types.GetDeviceDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a device definition version.
*/
getDeviceDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.GetDeviceDefinitionVersionResponse) => void): Request<Greengrass.Types.GetDeviceDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a Lambda function definition, including its creation time and latest version.
*/
getFunctionDefinition(params: Greengrass.Types.GetFunctionDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetFunctionDefinitionResponse) => void): Request<Greengrass.Types.GetFunctionDefinitionResponse, AWSError>;
/**
* Retrieves information about a Lambda function definition, including its creation time and latest version.
*/
getFunctionDefinition(callback?: (err: AWSError, data: Greengrass.Types.GetFunctionDefinitionResponse) => void): Request<Greengrass.Types.GetFunctionDefinitionResponse, AWSError>;
/**
* Retrieves information about a Lambda function definition version, including which Lambda functions are included in the version and their configurations.
*/
getFunctionDefinitionVersion(params: Greengrass.Types.GetFunctionDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetFunctionDefinitionVersionResponse) => void): Request<Greengrass.Types.GetFunctionDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a Lambda function definition version, including which Lambda functions are included in the version and their configurations.
*/
getFunctionDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.GetFunctionDefinitionVersionResponse) => void): Request<Greengrass.Types.GetFunctionDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a group.
*/
getGroup(params: Greengrass.Types.GetGroupRequest, callback?: (err: AWSError, data: Greengrass.Types.GetGroupResponse) => void): Request<Greengrass.Types.GetGroupResponse, AWSError>;
/**
* Retrieves information about a group.
*/
getGroup(callback?: (err: AWSError, data: Greengrass.Types.GetGroupResponse) => void): Request<Greengrass.Types.GetGroupResponse, AWSError>;
/**
* Retreives the CA associated with a group. Returns the public key of the CA.
*/
getGroupCertificateAuthority(params: Greengrass.Types.GetGroupCertificateAuthorityRequest, callback?: (err: AWSError, data: Greengrass.Types.GetGroupCertificateAuthorityResponse) => void): Request<Greengrass.Types.GetGroupCertificateAuthorityResponse, AWSError>;
/**
* Retreives the CA associated with a group. Returns the public key of the CA.
*/
getGroupCertificateAuthority(callback?: (err: AWSError, data: Greengrass.Types.GetGroupCertificateAuthorityResponse) => void): Request<Greengrass.Types.GetGroupCertificateAuthorityResponse, AWSError>;
/**
* Retrieves the current configuration for the CA used by the group.
*/
getGroupCertificateConfiguration(params: Greengrass.Types.GetGroupCertificateConfigurationRequest, callback?: (err: AWSError, data: Greengrass.Types.GetGroupCertificateConfigurationResponse) => void): Request<Greengrass.Types.GetGroupCertificateConfigurationResponse, AWSError>;
/**
* Retrieves the current configuration for the CA used by the group.
*/
getGroupCertificateConfiguration(callback?: (err: AWSError, data: Greengrass.Types.GetGroupCertificateConfigurationResponse) => void): Request<Greengrass.Types.GetGroupCertificateConfigurationResponse, AWSError>;
/**
* Retrieves information about a group version.
*/
getGroupVersion(params: Greengrass.Types.GetGroupVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetGroupVersionResponse) => void): Request<Greengrass.Types.GetGroupVersionResponse, AWSError>;
/**
* Retrieves information about a group version.
*/
getGroupVersion(callback?: (err: AWSError, data: Greengrass.Types.GetGroupVersionResponse) => void): Request<Greengrass.Types.GetGroupVersionResponse, AWSError>;
/**
* Retrieves information about a logger definition.
*/
getLoggerDefinition(params: Greengrass.Types.GetLoggerDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetLoggerDefinitionResponse) => void): Request<Greengrass.Types.GetLoggerDefinitionResponse, AWSError>;
/**
* Retrieves information about a logger definition.
*/
getLoggerDefinition(callback?: (err: AWSError, data: Greengrass.Types.GetLoggerDefinitionResponse) => void): Request<Greengrass.Types.GetLoggerDefinitionResponse, AWSError>;
/**
* Retrieves information about a logger definition version.
*/
getLoggerDefinitionVersion(params: Greengrass.Types.GetLoggerDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetLoggerDefinitionVersionResponse) => void): Request<Greengrass.Types.GetLoggerDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a logger definition version.
*/
getLoggerDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.GetLoggerDefinitionVersionResponse) => void): Request<Greengrass.Types.GetLoggerDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a resource definition, including its creation time and latest version.
*/
getResourceDefinition(params: Greengrass.Types.GetResourceDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetResourceDefinitionResponse) => void): Request<Greengrass.Types.GetResourceDefinitionResponse, AWSError>;
/**
* Retrieves information about a resource definition, including its creation time and latest version.
*/
getResourceDefinition(callback?: (err: AWSError, data: Greengrass.Types.GetResourceDefinitionResponse) => void): Request<Greengrass.Types.GetResourceDefinitionResponse, AWSError>;
/**
* Retrieves information about a resource definition version, including which resources are included in the version.
*/
getResourceDefinitionVersion(params: Greengrass.Types.GetResourceDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetResourceDefinitionVersionResponse) => void): Request<Greengrass.Types.GetResourceDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a resource definition version, including which resources are included in the version.
*/
getResourceDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.GetResourceDefinitionVersionResponse) => void): Request<Greengrass.Types.GetResourceDefinitionVersionResponse, AWSError>;
/**
* Retrieves the service role that is attached to your account.
*/
getServiceRoleForAccount(params: Greengrass.Types.GetServiceRoleForAccountRequest, callback?: (err: AWSError, data: Greengrass.Types.GetServiceRoleForAccountResponse) => void): Request<Greengrass.Types.GetServiceRoleForAccountResponse, AWSError>;
/**
* Retrieves the service role that is attached to your account.
*/
getServiceRoleForAccount(callback?: (err: AWSError, data: Greengrass.Types.GetServiceRoleForAccountResponse) => void): Request<Greengrass.Types.GetServiceRoleForAccountResponse, AWSError>;
/**
* Retrieves information about a subscription definition.
*/
getSubscriptionDefinition(params: Greengrass.Types.GetSubscriptionDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetSubscriptionDefinitionResponse) => void): Request<Greengrass.Types.GetSubscriptionDefinitionResponse, AWSError>;
/**
* Retrieves information about a subscription definition.
*/
getSubscriptionDefinition(callback?: (err: AWSError, data: Greengrass.Types.GetSubscriptionDefinitionResponse) => void): Request<Greengrass.Types.GetSubscriptionDefinitionResponse, AWSError>;
/**
* Retrieves information about a subscription definition version.
*/
getSubscriptionDefinitionVersion(params: Greengrass.Types.GetSubscriptionDefinitionVersionRequest, callback?: (err: AWSError, data: Greengrass.Types.GetSubscriptionDefinitionVersionResponse) => void): Request<Greengrass.Types.GetSubscriptionDefinitionVersionResponse, AWSError>;
/**
* Retrieves information about a subscription definition version.
*/
getSubscriptionDefinitionVersion(callback?: (err: AWSError, data: Greengrass.Types.GetSubscriptionDefinitionVersionResponse) => void): Request<Greengrass.Types.GetSubscriptionDefinitionVersionResponse, AWSError>;
/**
* Gets a paginated list of the deployments that have been started in a bulk deployment operation, and their current deployment status.
*/
listBulkDeploymentDetailedReports(params: Greengrass.Types.ListBulkDeploymentDetailedReportsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListBulkDeploymentDetailedReportsResponse) => void): Request<Greengrass.Types.ListBulkDeploymentDetailedReportsResponse, AWSError>;
/**
* Gets a paginated list of the deployments that have been started in a bulk deployment operation, and their current deployment status.
*/
listBulkDeploymentDetailedReports(callback?: (err: AWSError, data: Greengrass.Types.ListBulkDeploymentDetailedReportsResponse) => void): Request<Greengrass.Types.ListBulkDeploymentDetailedReportsResponse, AWSError>;
/**
* Returns a list of bulk deployments.
*/
listBulkDeployments(params: Greengrass.Types.ListBulkDeploymentsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListBulkDeploymentsResponse) => void): Request<Greengrass.Types.ListBulkDeploymentsResponse, AWSError>;
/**
* Returns a list of bulk deployments.
*/
listBulkDeployments(callback?: (err: AWSError, data: Greengrass.Types.ListBulkDeploymentsResponse) => void): Request<Greengrass.Types.ListBulkDeploymentsResponse, AWSError>;
/**
* Lists the versions of a connector definition, which are containers for connectors. Connectors run on the Greengrass core and contain built-in integration with local infrastructure, device protocols, AWS, and other cloud services.
*/
listConnectorDefinitionVersions(params: Greengrass.Types.ListConnectorDefinitionVersionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListConnectorDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListConnectorDefinitionVersionsResponse, AWSError>;
/**
* Lists the versions of a connector definition, which are containers for connectors. Connectors run on the Greengrass core and contain built-in integration with local infrastructure, device protocols, AWS, and other cloud services.
*/
listConnectorDefinitionVersions(callback?: (err: AWSError, data: Greengrass.Types.ListConnectorDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListConnectorDefinitionVersionsResponse, AWSError>;
/**
* Retrieves a list of connector definitions.
*/
listConnectorDefinitions(params: Greengrass.Types.ListConnectorDefinitionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListConnectorDefinitionsResponse) => void): Request<Greengrass.Types.ListConnectorDefinitionsResponse, AWSError>;
/**
* Retrieves a list of connector definitions.
*/
listConnectorDefinitions(callback?: (err: AWSError, data: Greengrass.Types.ListConnectorDefinitionsResponse) => void): Request<Greengrass.Types.ListConnectorDefinitionsResponse, AWSError>;
/**
* Lists the versions of a core definition.
*/
listCoreDefinitionVersions(params: Greengrass.Types.ListCoreDefinitionVersionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListCoreDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListCoreDefinitionVersionsResponse, AWSError>;
/**
* Lists the versions of a core definition.
*/
listCoreDefinitionVersions(callback?: (err: AWSError, data: Greengrass.Types.ListCoreDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListCoreDefinitionVersionsResponse, AWSError>;
/**
* Retrieves a list of core definitions.
*/
listCoreDefinitions(params: Greengrass.Types.ListCoreDefinitionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListCoreDefinitionsResponse) => void): Request<Greengrass.Types.ListCoreDefinitionsResponse, AWSError>;
/**
* Retrieves a list of core definitions.
*/
listCoreDefinitions(callback?: (err: AWSError, data: Greengrass.Types.ListCoreDefinitionsResponse) => void): Request<Greengrass.Types.ListCoreDefinitionsResponse, AWSError>;
/**
* Returns a history of deployments for the group.
*/
listDeployments(params: Greengrass.Types.ListDeploymentsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListDeploymentsResponse) => void): Request<Greengrass.Types.ListDeploymentsResponse, AWSError>;
/**
* Returns a history of deployments for the group.
*/
listDeployments(callback?: (err: AWSError, data: Greengrass.Types.ListDeploymentsResponse) => void): Request<Greengrass.Types.ListDeploymentsResponse, AWSError>;
/**
* Lists the versions of a device definition.
*/
listDeviceDefinitionVersions(params: Greengrass.Types.ListDeviceDefinitionVersionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListDeviceDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListDeviceDefinitionVersionsResponse, AWSError>;
/**
* Lists the versions of a device definition.
*/
listDeviceDefinitionVersions(callback?: (err: AWSError, data: Greengrass.Types.ListDeviceDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListDeviceDefinitionVersionsResponse, AWSError>;
/**
* Retrieves a list of device definitions.
*/
listDeviceDefinitions(params: Greengrass.Types.ListDeviceDefinitionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListDeviceDefinitionsResponse) => void): Request<Greengrass.Types.ListDeviceDefinitionsResponse, AWSError>;
/**
* Retrieves a list of device definitions.
*/
listDeviceDefinitions(callback?: (err: AWSError, data: Greengrass.Types.ListDeviceDefinitionsResponse) => void): Request<Greengrass.Types.ListDeviceDefinitionsResponse, AWSError>;
/**
* Lists the versions of a Lambda function definition.
*/
listFunctionDefinitionVersions(params: Greengrass.Types.ListFunctionDefinitionVersionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListFunctionDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListFunctionDefinitionVersionsResponse, AWSError>;
/**
* Lists the versions of a Lambda function definition.
*/
listFunctionDefinitionVersions(callback?: (err: AWSError, data: Greengrass.Types.ListFunctionDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListFunctionDefinitionVersionsResponse, AWSError>;
/**
* Retrieves a list of Lambda function definitions.
*/
listFunctionDefinitions(params: Greengrass.Types.ListFunctionDefinitionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListFunctionDefinitionsResponse) => void): Request<Greengrass.Types.ListFunctionDefinitionsResponse, AWSError>;
/**
* Retrieves a list of Lambda function definitions.
*/
listFunctionDefinitions(callback?: (err: AWSError, data: Greengrass.Types.ListFunctionDefinitionsResponse) => void): Request<Greengrass.Types.ListFunctionDefinitionsResponse, AWSError>;
/**
* Retrieves the current CAs for a group.
*/
listGroupCertificateAuthorities(params: Greengrass.Types.ListGroupCertificateAuthoritiesRequest, callback?: (err: AWSError, data: Greengrass.Types.ListGroupCertificateAuthoritiesResponse) => void): Request<Greengrass.Types.ListGroupCertificateAuthoritiesResponse, AWSError>;
/**
* Retrieves the current CAs for a group.
*/
listGroupCertificateAuthorities(callback?: (err: AWSError, data: Greengrass.Types.ListGroupCertificateAuthoritiesResponse) => void): Request<Greengrass.Types.ListGroupCertificateAuthoritiesResponse, AWSError>;
/**
* Lists the versions of a group.
*/
listGroupVersions(params: Greengrass.Types.ListGroupVersionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListGroupVersionsResponse) => void): Request<Greengrass.Types.ListGroupVersionsResponse, AWSError>;
/**
* Lists the versions of a group.
*/
listGroupVersions(callback?: (err: AWSError, data: Greengrass.Types.ListGroupVersionsResponse) => void): Request<Greengrass.Types.ListGroupVersionsResponse, AWSError>;
/**
* Retrieves a list of groups.
*/
listGroups(params: Greengrass.Types.ListGroupsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListGroupsResponse) => void): Request<Greengrass.Types.ListGroupsResponse, AWSError>;
/**
* Retrieves a list of groups.
*/
listGroups(callback?: (err: AWSError, data: Greengrass.Types.ListGroupsResponse) => void): Request<Greengrass.Types.ListGroupsResponse, AWSError>;
/**
* Lists the versions of a logger definition.
*/
listLoggerDefinitionVersions(params: Greengrass.Types.ListLoggerDefinitionVersionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListLoggerDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListLoggerDefinitionVersionsResponse, AWSError>;
/**
* Lists the versions of a logger definition.
*/
listLoggerDefinitionVersions(callback?: (err: AWSError, data: Greengrass.Types.ListLoggerDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListLoggerDefinitionVersionsResponse, AWSError>;
/**
* Retrieves a list of logger definitions.
*/
listLoggerDefinitions(params: Greengrass.Types.ListLoggerDefinitionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListLoggerDefinitionsResponse) => void): Request<Greengrass.Types.ListLoggerDefinitionsResponse, AWSError>;
/**
* Retrieves a list of logger definitions.
*/
listLoggerDefinitions(callback?: (err: AWSError, data: Greengrass.Types.ListLoggerDefinitionsResponse) => void): Request<Greengrass.Types.ListLoggerDefinitionsResponse, AWSError>;
/**
* Lists the versions of a resource definition.
*/
listResourceDefinitionVersions(params: Greengrass.Types.ListResourceDefinitionVersionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListResourceDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListResourceDefinitionVersionsResponse, AWSError>;
/**
* Lists the versions of a resource definition.
*/
listResourceDefinitionVersions(callback?: (err: AWSError, data: Greengrass.Types.ListResourceDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListResourceDefinitionVersionsResponse, AWSError>;
/**
* Retrieves a list of resource definitions.
*/
listResourceDefinitions(params: Greengrass.Types.ListResourceDefinitionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListResourceDefinitionsResponse) => void): Request<Greengrass.Types.ListResourceDefinitionsResponse, AWSError>;
/**
* Retrieves a list of resource definitions.
*/
listResourceDefinitions(callback?: (err: AWSError, data: Greengrass.Types.ListResourceDefinitionsResponse) => void): Request<Greengrass.Types.ListResourceDefinitionsResponse, AWSError>;
/**
* Lists the versions of a subscription definition.
*/
listSubscriptionDefinitionVersions(params: Greengrass.Types.ListSubscriptionDefinitionVersionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListSubscriptionDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListSubscriptionDefinitionVersionsResponse, AWSError>;
/**
* Lists the versions of a subscription definition.
*/
listSubscriptionDefinitionVersions(callback?: (err: AWSError, data: Greengrass.Types.ListSubscriptionDefinitionVersionsResponse) => void): Request<Greengrass.Types.ListSubscriptionDefinitionVersionsResponse, AWSError>;
/**
* Retrieves a list of subscription definitions.
*/
listSubscriptionDefinitions(params: Greengrass.Types.ListSubscriptionDefinitionsRequest, callback?: (err: AWSError, data: Greengrass.Types.ListSubscriptionDefinitionsResponse) => void): Request<Greengrass.Types.ListSubscriptionDefinitionsResponse, AWSError>;
/**
* Retrieves a list of subscription definitions.
*/
listSubscriptionDefinitions(callback?: (err: AWSError, data: Greengrass.Types.ListSubscriptionDefinitionsResponse) => void): Request<Greengrass.Types.ListSubscriptionDefinitionsResponse, AWSError>;
/**
* Retrieves a list of resource tags for a resource arn.
*/
listTagsForResource(params: Greengrass.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Greengrass.Types.ListTagsForResourceResponse) => void): Request<Greengrass.Types.ListTagsForResourceResponse, AWSError>;
/**
* Retrieves a list of resource tags for a resource arn.
*/
listTagsForResource(callback?: (err: AWSError, data: Greengrass.Types.ListTagsForResourceResponse) => void): Request<Greengrass.Types.ListTagsForResourceResponse, AWSError>;
/**
* Resets a group's deployments.
*/
resetDeployments(params: Greengrass.Types.ResetDeploymentsRequest, callback?: (err: AWSError, data: Greengrass.Types.ResetDeploymentsResponse) => void): Request<Greengrass.Types.ResetDeploymentsResponse, AWSError>;
/**
* Resets a group's deployments.
*/
resetDeployments(callback?: (err: AWSError, data: Greengrass.Types.ResetDeploymentsResponse) => void): Request<Greengrass.Types.ResetDeploymentsResponse, AWSError>;
/**
* Deploys multiple groups in one operation. This action starts the bulk deployment of a specified set of group versions. Each group version deployment will be triggered with an adaptive rate that has a fixed upper limit. We recommend that you include an ''X-Amzn-Client-Token'' token in every ''StartBulkDeployment'' request. These requests are idempotent with respect to the token and the request parameters.
*/
startBulkDeployment(params: Greengrass.Types.StartBulkDeploymentRequest, callback?: (err: AWSError, data: Greengrass.Types.StartBulkDeploymentResponse) => void): Request<Greengrass.Types.StartBulkDeploymentResponse, AWSError>;
/**
* Deploys multiple groups in one operation. This action starts the bulk deployment of a specified set of group versions. Each group version deployment will be triggered with an adaptive rate that has a fixed upper limit. We recommend that you include an ''X-Amzn-Client-Token'' token in every ''StartBulkDeployment'' request. These requests are idempotent with respect to the token and the request parameters.
*/
startBulkDeployment(callback?: (err: AWSError, data: Greengrass.Types.StartBulkDeploymentResponse) => void): Request<Greengrass.Types.StartBulkDeploymentResponse, AWSError>;
/**
* Stops the execution of a bulk deployment. This action returns a status of ''Stopping'' until the deployment is stopped. You cannot start a new bulk deployment while a previous deployment is in the ''Stopping'' state. This action doesn't rollback completed deployments or cancel pending deployments.
*/
stopBulkDeployment(params: Greengrass.Types.StopBulkDeploymentRequest, callback?: (err: AWSError, data: Greengrass.Types.StopBulkDeploymentResponse) => void): Request<Greengrass.Types.StopBulkDeploymentResponse, AWSError>;
/**
* Stops the execution of a bulk deployment. This action returns a status of ''Stopping'' until the deployment is stopped. You cannot start a new bulk deployment while a previous deployment is in the ''Stopping'' state. This action doesn't rollback completed deployments or cancel pending deployments.
*/
stopBulkDeployment(callback?: (err: AWSError, data: Greengrass.Types.StopBulkDeploymentResponse) => void): Request<Greengrass.Types.StopBulkDeploymentResponse, AWSError>;
/**
* Adds tags to a Greengrass resource. Valid resources are 'Group', 'ConnectorDefinition', 'CoreDefinition', 'DeviceDefinition', 'FunctionDefinition', 'LoggerDefinition', 'SubscriptionDefinition', 'ResourceDefinition', and 'BulkDeployment'.
*/
tagResource(params: Greengrass.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Adds tags to a Greengrass resource. Valid resources are 'Group', 'ConnectorDefinition', 'CoreDefinition', 'DeviceDefinition', 'FunctionDefinition', 'LoggerDefinition', 'SubscriptionDefinition', 'ResourceDefinition', and 'BulkDeployment'.
*/
tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Remove resource tags from a Greengrass Resource.
*/
untagResource(params: Greengrass.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Remove resource tags from a Greengrass Resource.
*/
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the connectivity information for the core. Any devices that belong to the group which has this core will receive this information in order to find the location of the core and connect to it.
*/
updateConnectivityInfo(params: Greengrass.Types.UpdateConnectivityInfoRequest, callback?: (err: AWSError, data: Greengrass.Types.UpdateConnectivityInfoResponse) => void): Request<Greengrass.Types.UpdateConnectivityInfoResponse, AWSError>;
/**
* Updates the connectivity information for the core. Any devices that belong to the group which has this core will receive this information in order to find the location of the core and connect to it.
*/
updateConnectivityInfo(callback?: (err: AWSError, data: Greengrass.Types.UpdateConnectivityInfoResponse) => void): Request<Greengrass.Types.UpdateConnectivityInfoResponse, AWSError>;
/**
* Updates a connector definition.
*/
updateConnectorDefinition(params: Greengrass.Types.UpdateConnectorDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.UpdateConnectorDefinitionResponse) => void): Request<Greengrass.Types.UpdateConnectorDefinitionResponse, AWSError>;
/**
* Updates a connector definition.
*/
updateConnectorDefinition(callback?: (err: AWSError, data: Greengrass.Types.UpdateConnectorDefinitionResponse) => void): Request<Greengrass.Types.UpdateConnectorDefinitionResponse, AWSError>;
/**
* Updates a core definition.
*/
updateCoreDefinition(params: Greengrass.Types.UpdateCoreDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.UpdateCoreDefinitionResponse) => void): Request<Greengrass.Types.UpdateCoreDefinitionResponse, AWSError>;
/**
* Updates a core definition.
*/
updateCoreDefinition(callback?: (err: AWSError, data: Greengrass.Types.UpdateCoreDefinitionResponse) => void): Request<Greengrass.Types.UpdateCoreDefinitionResponse, AWSError>;
/**
* Updates a device definition.
*/
updateDeviceDefinition(params: Greengrass.Types.UpdateDeviceDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.UpdateDeviceDefinitionResponse) => void): Request<Greengrass.Types.UpdateDeviceDefinitionResponse, AWSError>;
/**
* Updates a device definition.
*/
updateDeviceDefinition(callback?: (err: AWSError, data: Greengrass.Types.UpdateDeviceDefinitionResponse) => void): Request<Greengrass.Types.UpdateDeviceDefinitionResponse, AWSError>;
/**
* Updates a Lambda function definition.
*/
updateFunctionDefinition(params: Greengrass.Types.UpdateFunctionDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.UpdateFunctionDefinitionResponse) => void): Request<Greengrass.Types.UpdateFunctionDefinitionResponse, AWSError>;
/**
* Updates a Lambda function definition.
*/
updateFunctionDefinition(callback?: (err: AWSError, data: Greengrass.Types.UpdateFunctionDefinitionResponse) => void): Request<Greengrass.Types.UpdateFunctionDefinitionResponse, AWSError>;
/**
* Updates a group.
*/
updateGroup(params: Greengrass.Types.UpdateGroupRequest, callback?: (err: AWSError, data: Greengrass.Types.UpdateGroupResponse) => void): Request<Greengrass.Types.UpdateGroupResponse, AWSError>;
/**
* Updates a group.
*/
updateGroup(callback?: (err: AWSError, data: Greengrass.Types.UpdateGroupResponse) => void): Request<Greengrass.Types.UpdateGroupResponse, AWSError>;
/**
* Updates the Certificate expiry time for a group.
*/
updateGroupCertificateConfiguration(params: Greengrass.Types.UpdateGroupCertificateConfigurationRequest, callback?: (err: AWSError, data: Greengrass.Types.UpdateGroupCertificateConfigurationResponse) => void): Request<Greengrass.Types.UpdateGroupCertificateConfigurationResponse, AWSError>;
/**
* Updates the Certificate expiry time for a group.
*/
updateGroupCertificateConfiguration(callback?: (err: AWSError, data: Greengrass.Types.UpdateGroupCertificateConfigurationResponse) => void): Request<Greengrass.Types.UpdateGroupCertificateConfigurationResponse, AWSError>;
/**
* Updates a logger definition.
*/
updateLoggerDefinition(params: Greengrass.Types.UpdateLoggerDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.UpdateLoggerDefinitionResponse) => void): Request<Greengrass.Types.UpdateLoggerDefinitionResponse, AWSError>;
/**
* Updates a logger definition.
*/
updateLoggerDefinition(callback?: (err: AWSError, data: Greengrass.Types.UpdateLoggerDefinitionResponse) => void): Request<Greengrass.Types.UpdateLoggerDefinitionResponse, AWSError>;
/**
* Updates a resource definition.
*/
updateResourceDefinition(params: Greengrass.Types.UpdateResourceDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.UpdateResourceDefinitionResponse) => void): Request<Greengrass.Types.UpdateResourceDefinitionResponse, AWSError>;
/**
* Updates a resource definition.
*/
updateResourceDefinition(callback?: (err: AWSError, data: Greengrass.Types.UpdateResourceDefinitionResponse) => void): Request<Greengrass.Types.UpdateResourceDefinitionResponse, AWSError>;
/**
* Updates a subscription definition.
*/
updateSubscriptionDefinition(params: Greengrass.Types.UpdateSubscriptionDefinitionRequest, callback?: (err: AWSError, data: Greengrass.Types.UpdateSubscriptionDefinitionResponse) => void): Request<Greengrass.Types.UpdateSubscriptionDefinitionResponse, AWSError>;
/**
* Updates a subscription definition.
*/
updateSubscriptionDefinition(callback?: (err: AWSError, data: Greengrass.Types.UpdateSubscriptionDefinitionResponse) => void): Request<Greengrass.Types.UpdateSubscriptionDefinitionResponse, AWSError>;
}
declare namespace Greengrass {
export interface AssociateRoleToGroupRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
/**
* The ARN of the role you wish to associate with this group. The existence of the role is not validated.
*/
RoleArn: __string;
}
export interface AssociateRoleToGroupResponse {
/**
* The time, in milliseconds since the epoch, when the role ARN was associated with the group.
*/
AssociatedAt?: __string;
}
export interface AssociateServiceRoleToAccountRequest {
/**
* The ARN of the service role you wish to associate with your account.
*/
RoleArn: __string;
}
export interface AssociateServiceRoleToAccountResponse {
/**
* The time when the service role was associated with the account.
*/
AssociatedAt?: __string;
}
export interface BulkDeployment {
/**
* The ARN of the bulk deployment.
*/
BulkDeploymentArn?: __string;
/**
* The ID of the bulk deployment.
*/
BulkDeploymentId?: __string;
/**
* The time, in ISO format, when the deployment was created.
*/
CreatedAt?: __string;
}
export interface BulkDeploymentMetrics {
/**
* The total number of records that returned a non-retryable error. For example, this can occur if a group record from the input file uses an invalid format or specifies a nonexistent group version, or if the execution role doesn't grant permission to deploy a group or group version.
*/
InvalidInputRecords?: __integer;
/**
* The total number of group records from the input file that have been processed so far, or attempted.
*/
RecordsProcessed?: __integer;
/**
* The total number of deployment attempts that returned a retryable error. For example, a retry is triggered if the attempt to deploy a group returns a throttling error. ''StartBulkDeployment'' retries a group deployment up to five times.
*/
RetryAttempts?: __integer;
}
export interface BulkDeploymentResult {
/**
* The time, in ISO format, when the deployment was created.
*/
CreatedAt?: __string;
/**
* The ARN of the group deployment.
*/
DeploymentArn?: __string;
/**
* The ID of the group deployment.
*/
DeploymentId?: __string;
/**
* The current status of the group deployment: ''InProgress'', ''Building'', ''Success'', or ''Failure''.
*/
DeploymentStatus?: __string;
/**
* The type of the deployment.
*/
DeploymentType?: DeploymentType;
/**
* Details about the error.
*/
ErrorDetails?: ErrorDetails;
/**
* The error message for a failed deployment
*/
ErrorMessage?: __string;
/**
* The ARN of the Greengrass group.
*/
GroupArn?: __string;
}
export type BulkDeploymentResults = BulkDeploymentResult[];
export type BulkDeploymentStatus = "Initializing"|"Running"|"Completed"|"Stopping"|"Stopped"|"Failed"|string;
export type BulkDeployments = BulkDeployment[];
export interface ConnectivityInfo {
/**
* The endpoint for the Greengrass core. Can be an IP address or DNS.
*/
HostAddress?: __string;
/**
* The ID of the connectivity information.
*/
Id?: __string;
/**
* Metadata for this endpoint.
*/
Metadata?: __string;
/**
* The port of the Greengrass core. Usually 8883.
*/
PortNumber?: __integer;
}
export interface Connector {
/**
* The ARN of the connector.
*/
ConnectorArn: __string;
/**
* A descriptive or arbitrary ID for the connector. This value must be unique within the connector definition version. Max length is 128 characters with pattern [a-zA-Z0-9:_-]+.
*/
Id: __string;
/**
* The parameters or configuration that the connector uses.
*/
Parameters?: __mapOf__string;
}
export interface ConnectorDefinitionVersion {
/**
* A list of references to connectors in this version, with their corresponding configuration settings.
*/
Connectors?: __listOfConnector;
}
export interface Core {
/**
* The ARN of the certificate associated with the core.
*/
CertificateArn: __string;
/**
* A descriptive or arbitrary ID for the core. This value must be unique within the core definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.
*/
Id: __string;
/**
* If true, the core's local shadow is automatically synced with the cloud.
*/
SyncShadow?: __boolean;
/**
* The ARN of the thing which is the core.
*/
ThingArn: __string;
}
export interface CoreDefinitionVersion {
/**
* A list of cores in the core definition version.
*/
Cores?: __listOfCore;
}
export interface CreateConnectorDefinitionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* Information about the initial version of the connector definition.
*/
InitialVersion?: ConnectorDefinitionVersion;
/**
* The name of the connector definition.
*/
Name?: __string;
/**
* Tag(s) to add to the new resource.
*/
tags?: Tags;
}
export interface CreateConnectorDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface CreateConnectorDefinitionVersionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The ID of the connector definition.
*/
ConnectorDefinitionId: __string;
/**
* A list of references to connectors in this version, with their corresponding configuration settings.
*/
Connectors?: __listOfConnector;
}
export interface CreateConnectorDefinitionVersionResponse {
/**
* The ARN of the version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the version was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the parent definition that the version is associated with.
*/
Id?: __string;
/**
* The ID of the version.
*/
Version?: __string;
}
export interface CreateCoreDefinitionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* Information about the initial version of the core definition.
*/
InitialVersion?: CoreDefinitionVersion;
/**
* The name of the core definition.
*/
Name?: __string;
/**
* Tag(s) to add to the new resource.
*/
tags?: Tags;
}
export interface CreateCoreDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface CreateCoreDefinitionVersionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The ID of the core definition.
*/
CoreDefinitionId: __string;
/**
* A list of cores in the core definition version.
*/
Cores?: __listOfCore;
}
export interface CreateCoreDefinitionVersionResponse {
/**
* The ARN of the version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the version was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the parent definition that the version is associated with.
*/
Id?: __string;
/**
* The ID of the version.
*/
Version?: __string;
}
export interface CreateDeploymentRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The ID of the deployment if you wish to redeploy a previous deployment.
*/
DeploymentId?: __string;
/**
* The type of deployment. When used for ''CreateDeployment'', only ''NewDeployment'' and ''Redeployment'' are valid.
*/
DeploymentType: DeploymentType;
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
/**
* The ID of the group version to be deployed.
*/
GroupVersionId?: __string;
}
export interface CreateDeploymentResponse {
/**
* The ARN of the deployment.
*/
DeploymentArn?: __string;
/**
* The ID of the deployment.
*/
DeploymentId?: __string;
}
export interface CreateDeviceDefinitionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* Information about the initial version of the device definition.
*/
InitialVersion?: DeviceDefinitionVersion;
/**
* The name of the device definition.
*/
Name?: __string;
/**
* Tag(s) to add to the new resource.
*/
tags?: Tags;
}
export interface CreateDeviceDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface CreateDeviceDefinitionVersionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The ID of the device definition.
*/
DeviceDefinitionId: __string;
/**
* A list of devices in the definition version.
*/
Devices?: __listOfDevice;
}
export interface CreateDeviceDefinitionVersionResponse {
/**
* The ARN of the version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the version was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the parent definition that the version is associated with.
*/
Id?: __string;
/**
* The ID of the version.
*/
Version?: __string;
}
export interface CreateFunctionDefinitionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* Information about the initial version of the function definition.
*/
InitialVersion?: FunctionDefinitionVersion;
/**
* The name of the function definition.
*/
Name?: __string;
/**
* Tag(s) to add to the new resource.
*/
tags?: Tags;
}
export interface CreateFunctionDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface CreateFunctionDefinitionVersionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The default configuration that applies to all Lambda functions in this function definition version. Individual Lambda functions can override these settings.
*/
DefaultConfig?: FunctionDefaultConfig;
/**
* The ID of the Lambda function definition.
*/
FunctionDefinitionId: __string;
/**
* A list of Lambda functions in this function definition version.
*/
Functions?: __listOfFunction;
}
export interface CreateFunctionDefinitionVersionResponse {
/**
* The ARN of the version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the version was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the parent definition that the version is associated with.
*/
Id?: __string;
/**
* The ID of the version.
*/
Version?: __string;
}
export interface CreateGroupCertificateAuthorityRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface CreateGroupCertificateAuthorityResponse {
/**
* The ARN of the group certificate authority.
*/
GroupCertificateAuthorityArn?: __string;
}
export interface CreateGroupRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* Information about the initial version of the group.
*/
InitialVersion?: GroupVersion;
/**
* The name of the group.
*/
Name?: __string;
/**
* Tag(s) to add to the new resource.
*/
tags?: Tags;
}
export interface CreateGroupResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface CreateGroupVersionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The ARN of the connector definition version for this group.
*/
ConnectorDefinitionVersionArn?: __string;
/**
* The ARN of the core definition version for this group.
*/
CoreDefinitionVersionArn?: __string;
/**
* The ARN of the device definition version for this group.
*/
DeviceDefinitionVersionArn?: __string;
/**
* The ARN of the function definition version for this group.
*/
FunctionDefinitionVersionArn?: __string;
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
/**
* The ARN of the logger definition version for this group.
*/
LoggerDefinitionVersionArn?: __string;
/**
* The ARN of the resource definition version for this group.
*/
ResourceDefinitionVersionArn?: __string;
/**
* The ARN of the subscription definition version for this group.
*/
SubscriptionDefinitionVersionArn?: __string;
}
export interface CreateGroupVersionResponse {
/**
* The ARN of the version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the version was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the parent definition that the version is associated with.
*/
Id?: __string;
/**
* The ID of the version.
*/
Version?: __string;
}
export interface CreateLoggerDefinitionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* Information about the initial version of the logger definition.
*/
InitialVersion?: LoggerDefinitionVersion;
/**
* The name of the logger definition.
*/
Name?: __string;
/**
* Tag(s) to add to the new resource.
*/
tags?: Tags;
}
export interface CreateLoggerDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface CreateLoggerDefinitionVersionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The ID of the logger definition.
*/
LoggerDefinitionId: __string;
/**
* A list of loggers.
*/
Loggers?: __listOfLogger;
}
export interface CreateLoggerDefinitionVersionResponse {
/**
* The ARN of the version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the version was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the parent definition that the version is associated with.
*/
Id?: __string;
/**
* The ID of the version.
*/
Version?: __string;
}
export interface CreateResourceDefinitionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* Information about the initial version of the resource definition.
*/
InitialVersion?: ResourceDefinitionVersion;
/**
* The name of the resource definition.
*/
Name?: __string;
/**
* Tag(s) to add to the new resource.
*/
tags?: Tags;
}
export interface CreateResourceDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface CreateResourceDefinitionVersionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The ID of the resource definition.
*/
ResourceDefinitionId: __string;
/**
* A list of resources.
*/
Resources?: __listOfResource;
}
export interface CreateResourceDefinitionVersionResponse {
/**
* The ARN of the version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the version was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the parent definition that the version is associated with.
*/
Id?: __string;
/**
* The ID of the version.
*/
Version?: __string;
}
export interface CreateSoftwareUpdateJobRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
S3UrlSignerRole: S3UrlSignerRole;
SoftwareToUpdate: SoftwareToUpdate;
UpdateAgentLogLevel?: UpdateAgentLogLevel;
UpdateTargets: UpdateTargets;
UpdateTargetsArchitecture: UpdateTargetsArchitecture;
UpdateTargetsOperatingSystem: UpdateTargetsOperatingSystem;
}
export interface CreateSoftwareUpdateJobResponse {
/**
* The IoT Job ARN corresponding to this update.
*/
IotJobArn?: __string;
/**
* The IoT Job Id corresponding to this update.
*/
IotJobId?: __string;
/**
* The software version installed on the device or devices after the update.
*/
PlatformSoftwareVersion?: __string;
}
export interface CreateSubscriptionDefinitionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* Information about the initial version of the subscription definition.
*/
InitialVersion?: SubscriptionDefinitionVersion;
/**
* The name of the subscription definition.
*/
Name?: __string;
/**
* Tag(s) to add to the new resource.
*/
tags?: Tags;
}
export interface CreateSubscriptionDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface CreateSubscriptionDefinitionVersionRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The ID of the subscription definition.
*/
SubscriptionDefinitionId: __string;
/**
* A list of subscriptions.
*/
Subscriptions?: __listOfSubscription;
}
export interface CreateSubscriptionDefinitionVersionResponse {
/**
* The ARN of the version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the version was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the parent definition that the version is associated with.
*/
Id?: __string;
/**
* The ID of the version.
*/
Version?: __string;
}
export interface DefinitionInformation {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
/**
* Tag(s) attached to the resource arn.
*/
Tags?: Tags;
}
export interface DeleteConnectorDefinitionRequest {
/**
* The ID of the connector definition.
*/
ConnectorDefinitionId: __string;
}
export interface DeleteConnectorDefinitionResponse {
}
export interface DeleteCoreDefinitionRequest {
/**
* The ID of the core definition.
*/
CoreDefinitionId: __string;
}
export interface DeleteCoreDefinitionResponse {
}
export interface DeleteDeviceDefinitionRequest {
/**
* The ID of the device definition.
*/
DeviceDefinitionId: __string;
}
export interface DeleteDeviceDefinitionResponse {
}
export interface DeleteFunctionDefinitionRequest {
/**
* The ID of the Lambda function definition.
*/
FunctionDefinitionId: __string;
}
export interface DeleteFunctionDefinitionResponse {
}
export interface DeleteGroupRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface DeleteGroupResponse {
}
export interface DeleteLoggerDefinitionRequest {
/**
* The ID of the logger definition.
*/
LoggerDefinitionId: __string;
}
export interface DeleteLoggerDefinitionResponse {
}
export interface DeleteResourceDefinitionRequest {
/**
* The ID of the resource definition.
*/
ResourceDefinitionId: __string;
}
export interface DeleteResourceDefinitionResponse {
}
export interface DeleteSubscriptionDefinitionRequest {
/**
* The ID of the subscription definition.
*/
SubscriptionDefinitionId: __string;
}
export interface DeleteSubscriptionDefinitionResponse {
}
export interface Deployment {
/**
* The time, in milliseconds since the epoch, when the deployment was created.
*/
CreatedAt?: __string;
/**
* The ARN of the deployment.
*/
DeploymentArn?: __string;
/**
* The ID of the deployment.
*/
DeploymentId?: __string;
/**
* The type of the deployment.
*/
DeploymentType?: DeploymentType;
/**
* The ARN of the group for this deployment.
*/
GroupArn?: __string;
}
export type DeploymentType = "NewDeployment"|"Redeployment"|"ResetDeployment"|"ForceResetDeployment"|string;
export type Deployments = Deployment[];
export interface Device {
/**
* The ARN of the certificate associated with the device.
*/
CertificateArn: __string;
/**
* A descriptive or arbitrary ID for the device. This value must be unique within the device definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.
*/
Id: __string;
/**
* If true, the device's local shadow will be automatically synced with the cloud.
*/
SyncShadow?: __boolean;
/**
* The thing ARN of the device.
*/
ThingArn: __string;
}
export interface DeviceDefinitionVersion {
/**
* A list of devices in the definition version.
*/
Devices?: __listOfDevice;
}
export interface DisassociateRoleFromGroupRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface DisassociateRoleFromGroupResponse {
/**
* The time, in milliseconds since the epoch, when the role was disassociated from the group.
*/
DisassociatedAt?: __string;
}
export interface DisassociateServiceRoleFromAccountRequest {
}
export interface DisassociateServiceRoleFromAccountResponse {
/**
* The time when the service role was disassociated from the account.
*/
DisassociatedAt?: __string;
}
export type EncodingType = "binary"|"json"|string;
export interface ErrorDetail {
/**
* A detailed error code.
*/
DetailedErrorCode?: __string;
/**
* A detailed error message.
*/
DetailedErrorMessage?: __string;
}
export type ErrorDetails = ErrorDetail[];
export interface Function {
/**
* The ARN of the Lambda function.
*/
FunctionArn?: __string;
/**
* The configuration of the Lambda function.
*/
FunctionConfiguration?: FunctionConfiguration;
/**
* A descriptive or arbitrary ID for the function. This value must be unique within the function definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.
*/
Id: __string;
}
export interface FunctionConfiguration {
/**
* The expected encoding type of the input payload for the function. The default is ''json''.
*/
EncodingType?: EncodingType;
/**
* The environment configuration of the function.
*/
Environment?: FunctionConfigurationEnvironment;
/**
* The execution arguments.
*/
ExecArgs?: __string;
/**
* The name of the function executable.
*/
Executable?: __string;
/**
* The memory size, in KB, which the function requires. This setting is not applicable and should be cleared when you run the Lambda function without containerization.
*/
MemorySize?: __integer;
/**
* True if the function is pinned. Pinned means the function is long-lived and starts when the core starts.
*/
Pinned?: __boolean;
/**
* The allowed function execution time, after which Lambda should terminate the function. This timeout still applies to pinned Lambda functions for each request.
*/
Timeout?: __integer;
}
export interface FunctionConfigurationEnvironment {
/**
* If true, the Lambda function is allowed to access the host's /sys folder. Use this when the Lambda function needs to read device information from /sys. This setting applies only when you run the Lambda function in a Greengrass container.
*/
AccessSysfs?: __boolean;
/**
* Configuration related to executing the Lambda function
*/
Execution?: FunctionExecutionConfig;
/**
* A list of the resources, with their permissions, to which the Lambda function will be granted access. A Lambda function can have at most 10 resources. ResourceAccessPolicies apply only when you run the Lambda function in a Greengrass container.
*/
ResourceAccessPolicies?: __listOfResourceAccessPolicy;
/**
* Environment variables for the Lambda function's configuration.
*/
Variables?: __mapOf__string;
}
export interface FunctionDefaultConfig {
Execution?: FunctionDefaultExecutionConfig;
}
export interface FunctionDefaultExecutionConfig {
IsolationMode?: FunctionIsolationMode;
RunAs?: FunctionRunAsConfig;
}
export interface FunctionDefinitionVersion {
/**
* The default configuration that applies to all Lambda functions in this function definition version. Individual Lambda functions can override these settings.
*/
DefaultConfig?: FunctionDefaultConfig;
/**
* A list of Lambda functions in this function definition version.
*/
Functions?: __listOfFunction;
}
export interface FunctionExecutionConfig {
IsolationMode?: FunctionIsolationMode;
RunAs?: FunctionRunAsConfig;
}
export type FunctionIsolationMode = "GreengrassContainer"|"NoContainer"|string;
export interface FunctionRunAsConfig {
/**
* The group ID whose permissions are used to run a Lambda function.
*/
Gid?: __integer;
/**
* The user ID whose permissions are used to run a Lambda function.
*/
Uid?: __integer;
}
export interface GetAssociatedRoleRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface GetAssociatedRoleResponse {
/**
* The time when the role was associated with the group.
*/
AssociatedAt?: __string;
/**
* The ARN of the role that is associated with the group.
*/
RoleArn?: __string;
}
export interface GetBulkDeploymentStatusRequest {
/**
* The ID of the bulk deployment.
*/
BulkDeploymentId: __string;
}
export interface GetBulkDeploymentStatusResponse {
/**
* Relevant metrics on input records processed during bulk deployment.
*/
BulkDeploymentMetrics?: BulkDeploymentMetrics;
/**
* The status of the bulk deployment.
*/
BulkDeploymentStatus?: BulkDeploymentStatus;
/**
* The time, in ISO format, when the deployment was created.
*/
CreatedAt?: __string;
/**
* Error details
*/
ErrorDetails?: ErrorDetails;
/**
* Error message
*/
ErrorMessage?: __string;
/**
* Tag(s) attached to the resource arn.
*/
tags?: Tags;
}
export interface GetConnectivityInfoRequest {
/**
* The thing name.
*/
ThingName: __string;
}
export interface GetConnectivityInfoResponse {
/**
* Connectivity info list.
*/
ConnectivityInfo?: __listOfConnectivityInfo;
/**
* A message about the connectivity info request.
*/
Message?: __string;
}
export interface GetConnectorDefinitionRequest {
/**
* The ID of the connector definition.
*/
ConnectorDefinitionId: __string;
}
export interface GetConnectorDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
/**
* Tag(s) attached to the resource arn.
*/
tags?: Tags;
}
export interface GetConnectorDefinitionVersionRequest {
/**
* The ID of the connector definition.
*/
ConnectorDefinitionId: __string;
/**
* The ID of the connector definition version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListConnectorDefinitionVersions'' requests. If the version is the last one that was associated with a connector definition, the value also maps to the ''LatestVersion'' property of the corresponding ''DefinitionInformation'' object.
*/
ConnectorDefinitionVersionId: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface GetConnectorDefinitionVersionResponse {
/**
* The ARN of the connector definition version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the connector definition version was created.
*/
CreationTimestamp?: __string;
/**
* Information about the connector definition version.
*/
Definition?: ConnectorDefinitionVersion;
/**
* The ID of the connector definition version.
*/
Id?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* The version of the connector definition version.
*/
Version?: __string;
}
export interface GetCoreDefinitionRequest {
/**
* The ID of the core definition.
*/
CoreDefinitionId: __string;
}
export interface GetCoreDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
/**
* Tag(s) attached to the resource arn.
*/
tags?: Tags;
}
export interface GetCoreDefinitionVersionRequest {
/**
* The ID of the core definition.
*/
CoreDefinitionId: __string;
/**
* The ID of the core definition version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListCoreDefinitionVersions'' requests. If the version is the last one that was associated with a core definition, the value also maps to the ''LatestVersion'' property of the corresponding ''DefinitionInformation'' object.
*/
CoreDefinitionVersionId: __string;
}
export interface GetCoreDefinitionVersionResponse {
/**
* The ARN of the core definition version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the core definition version was created.
*/
CreationTimestamp?: __string;
/**
* Information about the core definition version.
*/
Definition?: CoreDefinitionVersion;
/**
* The ID of the core definition version.
*/
Id?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* The version of the core definition version.
*/
Version?: __string;
}
export interface GetDeploymentStatusRequest {
/**
* The ID of the deployment.
*/
DeploymentId: __string;
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface GetDeploymentStatusResponse {
/**
* The status of the deployment: ''InProgress'', ''Building'', ''Success'', or ''Failure''.
*/
DeploymentStatus?: __string;
/**
* The type of the deployment.
*/
DeploymentType?: DeploymentType;
/**
* Error details
*/
ErrorDetails?: ErrorDetails;
/**
* Error message
*/
ErrorMessage?: __string;
/**
* The time, in milliseconds since the epoch, when the deployment status was updated.
*/
UpdatedAt?: __string;
}
export interface GetDeviceDefinitionRequest {
/**
* The ID of the device definition.
*/
DeviceDefinitionId: __string;
}
export interface GetDeviceDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
/**
* Tag(s) attached to the resource arn.
*/
tags?: Tags;
}
export interface GetDeviceDefinitionVersionRequest {
/**
* The ID of the device definition.
*/
DeviceDefinitionId: __string;
/**
* The ID of the device definition version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListDeviceDefinitionVersions'' requests. If the version is the last one that was associated with a device definition, the value also maps to the ''LatestVersion'' property of the corresponding ''DefinitionInformation'' object.
*/
DeviceDefinitionVersionId: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface GetDeviceDefinitionVersionResponse {
/**
* The ARN of the device definition version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the device definition version was created.
*/
CreationTimestamp?: __string;
/**
* Information about the device definition version.
*/
Definition?: DeviceDefinitionVersion;
/**
* The ID of the device definition version.
*/
Id?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* The version of the device definition version.
*/
Version?: __string;
}
export interface GetFunctionDefinitionRequest {
/**
* The ID of the Lambda function definition.
*/
FunctionDefinitionId: __string;
}
export interface GetFunctionDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
/**
* Tag(s) attached to the resource arn.
*/
tags?: Tags;
}
export interface GetFunctionDefinitionVersionRequest {
/**
* The ID of the Lambda function definition.
*/
FunctionDefinitionId: __string;
/**
* The ID of the function definition version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListFunctionDefinitionVersions'' requests. If the version is the last one that was associated with a function definition, the value also maps to the ''LatestVersion'' property of the corresponding ''DefinitionInformation'' object.
*/
FunctionDefinitionVersionId: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface GetFunctionDefinitionVersionResponse {
/**
* The ARN of the function definition version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the function definition version was created.
*/
CreationTimestamp?: __string;
/**
* Information on the definition.
*/
Definition?: FunctionDefinitionVersion;
/**
* The ID of the function definition version.
*/
Id?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* The version of the function definition version.
*/
Version?: __string;
}
export interface GetGroupCertificateAuthorityRequest {
/**
* The ID of the certificate authority.
*/
CertificateAuthorityId: __string;
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface GetGroupCertificateAuthorityResponse {
/**
* The ARN of the certificate authority for the group.
*/
GroupCertificateAuthorityArn?: __string;
/**
* The ID of the certificate authority for the group.
*/
GroupCertificateAuthorityId?: __string;
/**
* The PEM encoded certificate for the group.
*/
PemEncodedCertificate?: __string;
}
export interface GetGroupCertificateConfigurationRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface GetGroupCertificateConfigurationResponse {
/**
* The amount of time remaining before the certificate authority expires, in milliseconds.
*/
CertificateAuthorityExpiryInMilliseconds?: __string;
/**
* The amount of time remaining before the certificate expires, in milliseconds.
*/
CertificateExpiryInMilliseconds?: __string;
/**
* The ID of the group certificate configuration.
*/
GroupId?: __string;
}
export interface GetGroupRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface GetGroupResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
/**
* Tag(s) attached to the resource arn.
*/
tags?: Tags;
}
export interface GetGroupVersionRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
/**
* The ID of the group version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListGroupVersions'' requests. If the version is the last one that was associated with a group, the value also maps to the ''LatestVersion'' property of the corresponding ''GroupInformation'' object.
*/
GroupVersionId: __string;
}
export interface GetGroupVersionResponse {
/**
* The ARN of the group version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the group version was created.
*/
CreationTimestamp?: __string;
/**
* Information about the group version definition.
*/
Definition?: GroupVersion;
/**
* The ID of the group that the version is associated with.
*/
Id?: __string;
/**
* The ID of the group version.
*/
Version?: __string;
}
export interface GetLoggerDefinitionRequest {
/**
* The ID of the logger definition.
*/
LoggerDefinitionId: __string;
}
export interface GetLoggerDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
/**
* Tag(s) attached to the resource arn.
*/
tags?: Tags;
}
export interface GetLoggerDefinitionVersionRequest {
/**
* The ID of the logger definition.
*/
LoggerDefinitionId: __string;
/**
* The ID of the logger definition version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListLoggerDefinitionVersions'' requests. If the version is the last one that was associated with a logger definition, the value also maps to the ''LatestVersion'' property of the corresponding ''DefinitionInformation'' object.
*/
LoggerDefinitionVersionId: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface GetLoggerDefinitionVersionResponse {
/**
* The ARN of the logger definition version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the logger definition version was created.
*/
CreationTimestamp?: __string;
/**
* Information about the logger definition version.
*/
Definition?: LoggerDefinitionVersion;
/**
* The ID of the logger definition version.
*/
Id?: __string;
/**
* The version of the logger definition version.
*/
Version?: __string;
}
export interface GetResourceDefinitionRequest {
/**
* The ID of the resource definition.
*/
ResourceDefinitionId: __string;
}
export interface GetResourceDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
/**
* Tag(s) attached to the resource arn.
*/
tags?: Tags;
}
export interface GetResourceDefinitionVersionRequest {
/**
* The ID of the resource definition.
*/
ResourceDefinitionId: __string;
/**
* The ID of the resource definition version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListResourceDefinitionVersions'' requests. If the version is the last one that was associated with a resource definition, the value also maps to the ''LatestVersion'' property of the corresponding ''DefinitionInformation'' object.
*/
ResourceDefinitionVersionId: __string;
}
export interface GetResourceDefinitionVersionResponse {
/**
* Arn of the resource definition version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the resource definition version was created.
*/
CreationTimestamp?: __string;
/**
* Information about the definition.
*/
Definition?: ResourceDefinitionVersion;
/**
* The ID of the resource definition version.
*/
Id?: __string;
/**
* The version of the resource definition version.
*/
Version?: __string;
}
export interface GetServiceRoleForAccountRequest {
}
export interface GetServiceRoleForAccountResponse {
/**
* The time when the service role was associated with the account.
*/
AssociatedAt?: __string;
/**
* The ARN of the role which is associated with the account.
*/
RoleArn?: __string;
}
export interface GetSubscriptionDefinitionRequest {
/**
* The ID of the subscription definition.
*/
SubscriptionDefinitionId: __string;
}
export interface GetSubscriptionDefinitionResponse {
/**
* The ARN of the definition.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the definition.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the definition was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the definition.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the definition.
*/
LatestVersionArn?: __string;
/**
* The name of the definition.
*/
Name?: __string;
/**
* Tag(s) attached to the resource arn.
*/
tags?: Tags;
}
export interface GetSubscriptionDefinitionVersionRequest {
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* The ID of the subscription definition.
*/
SubscriptionDefinitionId: __string;
/**
* The ID of the subscription definition version. This value maps to the ''Version'' property of the corresponding ''VersionInformation'' object, which is returned by ''ListSubscriptionDefinitionVersions'' requests. If the version is the last one that was associated with a subscription definition, the value also maps to the ''LatestVersion'' property of the corresponding ''DefinitionInformation'' object.
*/
SubscriptionDefinitionVersionId: __string;
}
export interface GetSubscriptionDefinitionVersionResponse {
/**
* The ARN of the subscription definition version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the subscription definition version was created.
*/
CreationTimestamp?: __string;
/**
* Information about the subscription definition version.
*/
Definition?: SubscriptionDefinitionVersion;
/**
* The ID of the subscription definition version.
*/
Id?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* The version of the subscription definition version.
*/
Version?: __string;
}
export interface GroupCertificateAuthorityProperties {
/**
* The ARN of the certificate authority for the group.
*/
GroupCertificateAuthorityArn?: __string;
/**
* The ID of the certificate authority for the group.
*/
GroupCertificateAuthorityId?: __string;
}
export interface GroupInformation {
/**
* The ARN of the group.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the group was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the group.
*/
Id?: __string;
/**
* The time, in milliseconds since the epoch, when the group was last updated.
*/
LastUpdatedTimestamp?: __string;
/**
* The ID of the latest version associated with the group.
*/
LatestVersion?: __string;
/**
* The ARN of the latest version associated with the group.
*/
LatestVersionArn?: __string;
/**
* The name of the group.
*/
Name?: __string;
}
export interface GroupOwnerSetting {
/**
* If true, AWS IoT Greengrass automatically adds the specified Linux OS group owner of the resource to the Lambda process privileges. Thus the Lambda process will have the file access permissions of the added Linux group.
*/
AutoAddGroupOwner?: __boolean;
/**
* The name of the Linux OS group whose privileges will be added to the Lambda process. This field is optional.
*/
GroupOwner?: __string;
}
export interface GroupVersion {
/**
* The ARN of the connector definition version for this group.
*/
ConnectorDefinitionVersionArn?: __string;
/**
* The ARN of the core definition version for this group.
*/
CoreDefinitionVersionArn?: __string;
/**
* The ARN of the device definition version for this group.
*/
DeviceDefinitionVersionArn?: __string;
/**
* The ARN of the function definition version for this group.
*/
FunctionDefinitionVersionArn?: __string;
/**
* The ARN of the logger definition version for this group.
*/
LoggerDefinitionVersionArn?: __string;
/**
* The ARN of the resource definition version for this group.
*/
ResourceDefinitionVersionArn?: __string;
/**
* The ARN of the subscription definition version for this group.
*/
SubscriptionDefinitionVersionArn?: __string;
}
export interface ListBulkDeploymentDetailedReportsRequest {
/**
* The ID of the bulk deployment.
*/
BulkDeploymentId: __string;
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListBulkDeploymentDetailedReportsResponse {
/**
* A list of the individual group deployments in the bulk deployment operation.
*/
Deployments?: BulkDeploymentResults;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListBulkDeploymentsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListBulkDeploymentsResponse {
/**
* A list of bulk deployments.
*/
BulkDeployments?: BulkDeployments;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListConnectorDefinitionVersionsRequest {
/**
* The ID of the connector definition.
*/
ConnectorDefinitionId: __string;
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListConnectorDefinitionVersionsResponse {
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* Information about a version.
*/
Versions?: __listOfVersionInformation;
}
export interface ListConnectorDefinitionsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListConnectorDefinitionsResponse {
/**
* Information about a definition.
*/
Definitions?: __listOfDefinitionInformation;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListCoreDefinitionVersionsRequest {
/**
* The ID of the core definition.
*/
CoreDefinitionId: __string;
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListCoreDefinitionVersionsResponse {
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* Information about a version.
*/
Versions?: __listOfVersionInformation;
}
export interface ListCoreDefinitionsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListCoreDefinitionsResponse {
/**
* Information about a definition.
*/
Definitions?: __listOfDefinitionInformation;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListDeploymentsRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListDeploymentsResponse {
/**
* A list of deployments for the requested groups.
*/
Deployments?: Deployments;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListDeviceDefinitionVersionsRequest {
/**
* The ID of the device definition.
*/
DeviceDefinitionId: __string;
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListDeviceDefinitionVersionsResponse {
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* Information about a version.
*/
Versions?: __listOfVersionInformation;
}
export interface ListDeviceDefinitionsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListDeviceDefinitionsResponse {
/**
* Information about a definition.
*/
Definitions?: __listOfDefinitionInformation;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListFunctionDefinitionVersionsRequest {
/**
* The ID of the Lambda function definition.
*/
FunctionDefinitionId: __string;
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListFunctionDefinitionVersionsResponse {
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* Information about a version.
*/
Versions?: __listOfVersionInformation;
}
export interface ListFunctionDefinitionsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListFunctionDefinitionsResponse {
/**
* Information about a definition.
*/
Definitions?: __listOfDefinitionInformation;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListGroupCertificateAuthoritiesRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface ListGroupCertificateAuthoritiesResponse {
/**
* A list of certificate authorities associated with the group.
*/
GroupCertificateAuthorities?: __listOfGroupCertificateAuthorityProperties;
}
export interface ListGroupVersionsRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListGroupVersionsResponse {
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* Information about a version.
*/
Versions?: __listOfVersionInformation;
}
export interface ListGroupsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListGroupsResponse {
/**
* Information about a group.
*/
Groups?: __listOfGroupInformation;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListLoggerDefinitionVersionsRequest {
/**
* The ID of the logger definition.
*/
LoggerDefinitionId: __string;
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListLoggerDefinitionVersionsResponse {
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* Information about a version.
*/
Versions?: __listOfVersionInformation;
}
export interface ListLoggerDefinitionsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListLoggerDefinitionsResponse {
/**
* Information about a definition.
*/
Definitions?: __listOfDefinitionInformation;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListResourceDefinitionVersionsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* The ID of the resource definition.
*/
ResourceDefinitionId: __string;
}
export interface ListResourceDefinitionVersionsResponse {
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* Information about a version.
*/
Versions?: __listOfVersionInformation;
}
export interface ListResourceDefinitionsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListResourceDefinitionsResponse {
/**
* Information about a definition.
*/
Definitions?: __listOfDefinitionInformation;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListSubscriptionDefinitionVersionsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* The ID of the subscription definition.
*/
SubscriptionDefinitionId: __string;
}
export interface ListSubscriptionDefinitionVersionsResponse {
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
/**
* Information about a version.
*/
Versions?: __listOfVersionInformation;
}
export interface ListSubscriptionDefinitionsRequest {
/**
* The maximum number of results to be returned per request.
*/
MaxResults?: __string;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListSubscriptionDefinitionsResponse {
/**
* Information about a definition.
*/
Definitions?: __listOfDefinitionInformation;
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*/
NextToken?: __string;
}
export interface ListTagsForResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
ResourceArn: __string;
}
export interface ListTagsForResourceResponse {
tags?: Tags;
}
export interface LocalDeviceResourceData {
/**
* Group/owner related settings for local resources.
*/
GroupOwnerSetting?: GroupOwnerSetting;
/**
* The local absolute path of the device resource. The source path for a device resource can refer only to a character device or block device under ''/dev''.
*/
SourcePath?: __string;
}
export interface LocalVolumeResourceData {
/**
* The absolute local path of the resource inside the Lambda environment.
*/
DestinationPath?: __string;
/**
* Allows you to configure additional group privileges for the Lambda process. This field is optional.
*/
GroupOwnerSetting?: GroupOwnerSetting;
/**
* The local absolute path of the volume resource on the host. The source path for a volume resource type cannot start with ''/sys''.
*/
SourcePath?: __string;
}
export interface Logger {
/**
* The component that will be subject to logging.
*/
Component: LoggerComponent;
/**
* A descriptive or arbitrary ID for the logger. This value must be unique within the logger definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.
*/
Id: __string;
/**
* The level of the logs.
*/
Level: LoggerLevel;
/**
* The amount of file space, in KB, to use if the local file system is used for logging purposes.
*/
Space?: __integer;
/**
* The type of log output which will be used.
*/
Type: LoggerType;
}
export type LoggerComponent = "GreengrassSystem"|"Lambda"|string;
export interface LoggerDefinitionVersion {
/**
* A list of loggers.
*/
Loggers?: __listOfLogger;
}
export type LoggerLevel = "DEBUG"|"INFO"|"WARN"|"ERROR"|"FATAL"|string;
export type LoggerType = "FileSystem"|"AWSCloudWatch"|string;
export type Permission = "ro"|"rw"|string;
export interface ResetDeploymentsRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* If true, performs a best-effort only core reset.
*/
Force?: __boolean;
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface ResetDeploymentsResponse {
/**
* The ARN of the deployment.
*/
DeploymentArn?: __string;
/**
* The ID of the deployment.
*/
DeploymentId?: __string;
}
export interface Resource {
/**
* The resource ID, used to refer to a resource in the Lambda function configuration. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''. This must be unique within a Greengrass group.
*/
Id: __string;
/**
* The descriptive resource name, which is displayed on the AWS IoT Greengrass console. Max length 128 characters with pattern ''[a-zA-Z0-9:_-]+''. This must be unique within a Greengrass group.
*/
Name: __string;
/**
* A container of data for all resource types.
*/
ResourceDataContainer: ResourceDataContainer;
}
export interface ResourceAccessPolicy {
/**
* The permissions that the Lambda function has to the resource. Can be one of ''rw'' (read/write) or ''ro'' (read-only).
*/
Permission?: Permission;
/**
* The ID of the resource. (This ID is assigned to the resource when you create the resource definiton.)
*/
ResourceId: __string;
}
export interface ResourceDataContainer {
/**
* Attributes that define the local device resource.
*/
LocalDeviceResourceData?: LocalDeviceResourceData;
/**
* Attributes that define the local volume resource.
*/
LocalVolumeResourceData?: LocalVolumeResourceData;
/**
* Attributes that define an Amazon S3 machine learning resource.
*/
S3MachineLearningModelResourceData?: S3MachineLearningModelResourceData;
/**
* Attributes that define an Amazon SageMaker machine learning resource.
*/
SageMakerMachineLearningModelResourceData?: SageMakerMachineLearningModelResourceData;
/**
* Attributes that define a secret resource, which references a secret from AWS Secrets Manager.
*/
SecretsManagerSecretResourceData?: SecretsManagerSecretResourceData;
}
export interface ResourceDefinitionVersion {
/**
* A list of resources.
*/
Resources?: __listOfResource;
}
export interface ResourceDownloadOwnerSetting {
/**
* The group owner of the resource. This is the name of an existing Linux OS group on the system or a GID. The group's permissions are added to the Lambda process.
*/
GroupOwner: __string;
/**
* The permissions that the group owner has to the resource. Valid values are ''rw'' (read/write) or ''ro'' (read-only).
*/
GroupPermission: Permission;
}
export interface S3MachineLearningModelResourceData {
/**
* The absolute local path of the resource inside the Lambda environment.
*/
DestinationPath?: __string;
OwnerSetting?: ResourceDownloadOwnerSetting;
/**
* The URI of the source model in an S3 bucket. The model package must be in tar.gz or .zip format.
*/
S3Uri?: __string;
}
export type S3UrlSignerRole = string;
export interface SageMakerMachineLearningModelResourceData {
/**
* The absolute local path of the resource inside the Lambda environment.
*/
DestinationPath?: __string;
OwnerSetting?: ResourceDownloadOwnerSetting;
/**
* The ARN of the Amazon SageMaker training job that represents the source model.
*/
SageMakerJobArn?: __string;
}
export interface SecretsManagerSecretResourceData {
/**
* The ARN of the Secrets Manager secret to make available on the core. The value of the secret's latest version (represented by the ''AWSCURRENT'' staging label) is included by default.
*/
ARN?: __string;
/**
* Optional. The staging labels whose values you want to make available on the core, in addition to ''AWSCURRENT''.
*/
AdditionalStagingLabelsToDownload?: __listOf__string;
}
export type SoftwareToUpdate = "core"|"ota_agent"|string;
export interface StartBulkDeploymentRequest {
/**
* A client token used to correlate requests and responses.
*/
AmznClientToken?: __string;
/**
* The ARN of the execution role to associate with the bulk deployment operation. This IAM role must allow the ''greengrass:CreateDeployment'' action for all group versions that are listed in the input file. This IAM role must have access to the S3 bucket containing the input file.
*/
ExecutionRoleArn: __string;
/**
* The URI of the input file contained in the S3 bucket. The execution role must have ''getObject'' permissions on this bucket to access the input file. The input file is a JSON-serialized, line delimited file with UTF-8 encoding that provides a list of group and version IDs and the deployment type. This file must be less than 100 MB. Currently, AWS IoT Greengrass supports only ''NewDeployment'' deployment types.
*/
InputFileUri: __string;
/**
* Tag(s) to add to the new resource.
*/
tags?: Tags;
}
export interface StartBulkDeploymentResponse {
/**
* The ARN of the bulk deployment.
*/
BulkDeploymentArn?: __string;
/**
* The ID of the bulk deployment.
*/
BulkDeploymentId?: __string;
}
export interface StopBulkDeploymentRequest {
/**
* The ID of the bulk deployment.
*/
BulkDeploymentId: __string;
}
export interface StopBulkDeploymentResponse {
}
export interface Subscription {
/**
* A descriptive or arbitrary ID for the subscription. This value must be unique within the subscription definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.
*/
Id: __string;
/**
* The source of the subscription. Can be a thing ARN, a Lambda function ARN, a connector ARN, 'cloud' (which represents the AWS IoT cloud), or 'GGShadowService'.
*/
Source: __string;
/**
* The MQTT topic used to route the message.
*/
Subject: __string;
/**
* Where the message is sent to. Can be a thing ARN, a Lambda function ARN, a connector ARN, 'cloud' (which represents the AWS IoT cloud), or 'GGShadowService'.
*/
Target: __string;
}
export interface SubscriptionDefinitionVersion {
/**
* A list of subscriptions.
*/
Subscriptions?: __listOfSubscription;
}
export interface TagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
ResourceArn: __string;
tags?: Tags;
}
export type Tags = {[key: string]: __string};
export interface UntagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
ResourceArn: __string;
/**
* An array of tag keys to delete
*/
TagKeys: __listOf__string;
}
export type UpdateAgentLogLevel = "NONE"|"TRACE"|"DEBUG"|"VERBOSE"|"INFO"|"WARN"|"ERROR"|"FATAL"|string;
export interface UpdateConnectivityInfoRequest {
/**
* A list of connectivity info.
*/
ConnectivityInfo?: __listOfConnectivityInfo;
/**
* The thing name.
*/
ThingName: __string;
}
export interface UpdateConnectivityInfoResponse {
/**
* A message about the connectivity info update request.
*/
Message?: __string;
/**
* The new version of the connectivity info.
*/
Version?: __string;
}
export interface UpdateConnectorDefinitionRequest {
/**
* The ID of the connector definition.
*/
ConnectorDefinitionId: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface UpdateConnectorDefinitionResponse {
}
export interface UpdateCoreDefinitionRequest {
/**
* The ID of the core definition.
*/
CoreDefinitionId: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface UpdateCoreDefinitionResponse {
}
export interface UpdateDeviceDefinitionRequest {
/**
* The ID of the device definition.
*/
DeviceDefinitionId: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface UpdateDeviceDefinitionResponse {
}
export interface UpdateFunctionDefinitionRequest {
/**
* The ID of the Lambda function definition.
*/
FunctionDefinitionId: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface UpdateFunctionDefinitionResponse {
}
export interface UpdateGroupCertificateConfigurationRequest {
/**
* The amount of time remaining before the certificate expires, in milliseconds.
*/
CertificateExpiryInMilliseconds?: __string;
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
}
export interface UpdateGroupCertificateConfigurationResponse {
/**
* The amount of time remaining before the certificate authority expires, in milliseconds.
*/
CertificateAuthorityExpiryInMilliseconds?: __string;
/**
* The amount of time remaining before the certificate expires, in milliseconds.
*/
CertificateExpiryInMilliseconds?: __string;
/**
* The ID of the group certificate configuration.
*/
GroupId?: __string;
}
export interface UpdateGroupRequest {
/**
* The ID of the Greengrass group.
*/
GroupId: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface UpdateGroupResponse {
}
export interface UpdateLoggerDefinitionRequest {
/**
* The ID of the logger definition.
*/
LoggerDefinitionId: __string;
/**
* The name of the definition.
*/
Name?: __string;
}
export interface UpdateLoggerDefinitionResponse {
}
export interface UpdateResourceDefinitionRequest {
/**
* The name of the definition.
*/
Name?: __string;
/**
* The ID of the resource definition.
*/
ResourceDefinitionId: __string;
}
export interface UpdateResourceDefinitionResponse {
}
export interface UpdateSubscriptionDefinitionRequest {
/**
* The name of the definition.
*/
Name?: __string;
/**
* The ID of the subscription definition.
*/
SubscriptionDefinitionId: __string;
}
export interface UpdateSubscriptionDefinitionResponse {
}
export type UpdateTargets = __string[];
export type UpdateTargetsArchitecture = "armv6l"|"armv7l"|"x86_64"|"aarch64"|string;
export type UpdateTargetsOperatingSystem = "ubuntu"|"raspbian"|"amazon_linux"|"openwrt"|string;
export interface VersionInformation {
/**
* The ARN of the version.
*/
Arn?: __string;
/**
* The time, in milliseconds since the epoch, when the version was created.
*/
CreationTimestamp?: __string;
/**
* The ID of the parent definition that the version is associated with.
*/
Id?: __string;
/**
* The ID of the version.
*/
Version?: __string;
}
export type __boolean = boolean;
export type __integer = number;
export type __listOfConnectivityInfo = ConnectivityInfo[];
export type __listOfConnector = Connector[];
export type __listOfCore = Core[];
export type __listOfDefinitionInformation = DefinitionInformation[];
export type __listOfDevice = Device[];
export type __listOfFunction = Function[];
export type __listOfGroupCertificateAuthorityProperties = GroupCertificateAuthorityProperties[];
export type __listOfGroupInformation = GroupInformation[];
export type __listOfLogger = Logger[];
export type __listOfResource = Resource[];
export type __listOfResourceAccessPolicy = ResourceAccessPolicy[];
export type __listOfSubscription = Subscription[];
export type __listOfVersionInformation = VersionInformation[];
export type __listOf__string = __string[];
export type __mapOf__string = {[key: string]: __string};
export type __string = string;
/**
* 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 = "2017-06-07"|"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 Greengrass client.
*/
export import Types = Greengrass;
}
export = Greengrass;