summaryrefslogtreecommitdiff
path: root/net/py-awscli/PLIST
blob: 02bf466b98599fdd6121fd33c142865db8f2af3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
@comment $NetBSD: PLIST,v 1.32 2022/10/26 10:33:28 adam Exp $
bin/aws
bin/aws.cmd
bin/aws_bash_completer
bin/aws_completer
bin/aws_zsh_completer.sh
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/awscli/__init__.py
${PYSITELIB}/awscli/__init__.pyc
${PYSITELIB}/awscli/__init__.pyo
${PYSITELIB}/awscli/__main__.py
${PYSITELIB}/awscli/__main__.pyc
${PYSITELIB}/awscli/__main__.pyo
${PYSITELIB}/awscli/alias.py
${PYSITELIB}/awscli/alias.pyc
${PYSITELIB}/awscli/alias.pyo
${PYSITELIB}/awscli/argparser.py
${PYSITELIB}/awscli/argparser.pyc
${PYSITELIB}/awscli/argparser.pyo
${PYSITELIB}/awscli/argprocess.py
${PYSITELIB}/awscli/argprocess.pyc
${PYSITELIB}/awscli/argprocess.pyo
${PYSITELIB}/awscli/arguments.py
${PYSITELIB}/awscli/arguments.pyc
${PYSITELIB}/awscli/arguments.pyo
${PYSITELIB}/awscli/bcdoc/__init__.py
${PYSITELIB}/awscli/bcdoc/__init__.pyc
${PYSITELIB}/awscli/bcdoc/__init__.pyo
${PYSITELIB}/awscli/bcdoc/docevents.py
${PYSITELIB}/awscli/bcdoc/docevents.pyc
${PYSITELIB}/awscli/bcdoc/docevents.pyo
${PYSITELIB}/awscli/bcdoc/docstringparser.py
${PYSITELIB}/awscli/bcdoc/docstringparser.pyc
${PYSITELIB}/awscli/bcdoc/docstringparser.pyo
${PYSITELIB}/awscli/bcdoc/restdoc.py
${PYSITELIB}/awscli/bcdoc/restdoc.pyc
${PYSITELIB}/awscli/bcdoc/restdoc.pyo
${PYSITELIB}/awscli/bcdoc/style.py
${PYSITELIB}/awscli/bcdoc/style.pyc
${PYSITELIB}/awscli/bcdoc/style.pyo
${PYSITELIB}/awscli/bcdoc/textwriter.py
${PYSITELIB}/awscli/bcdoc/textwriter.pyc
${PYSITELIB}/awscli/bcdoc/textwriter.pyo
${PYSITELIB}/awscli/clidocs.py
${PYSITELIB}/awscli/clidocs.pyc
${PYSITELIB}/awscli/clidocs.pyo
${PYSITELIB}/awscli/clidriver.py
${PYSITELIB}/awscli/clidriver.pyc
${PYSITELIB}/awscli/clidriver.pyo
${PYSITELIB}/awscli/commands.py
${PYSITELIB}/awscli/commands.pyc
${PYSITELIB}/awscli/commands.pyo
${PYSITELIB}/awscli/compat.py
${PYSITELIB}/awscli/compat.pyc
${PYSITELIB}/awscli/compat.pyo
${PYSITELIB}/awscli/completer.py
${PYSITELIB}/awscli/completer.pyc
${PYSITELIB}/awscli/completer.pyo
${PYSITELIB}/awscli/customizations/__init__.py
${PYSITELIB}/awscli/customizations/__init__.pyc
${PYSITELIB}/awscli/customizations/__init__.pyo
${PYSITELIB}/awscli/customizations/addexamples.py
${PYSITELIB}/awscli/customizations/addexamples.pyc
${PYSITELIB}/awscli/customizations/addexamples.pyo
${PYSITELIB}/awscli/customizations/argrename.py
${PYSITELIB}/awscli/customizations/argrename.pyc
${PYSITELIB}/awscli/customizations/argrename.pyo
${PYSITELIB}/awscli/customizations/arguments.py
${PYSITELIB}/awscli/customizations/arguments.pyc
${PYSITELIB}/awscli/customizations/arguments.pyo
${PYSITELIB}/awscli/customizations/assumerole.py
${PYSITELIB}/awscli/customizations/assumerole.pyc
${PYSITELIB}/awscli/customizations/assumerole.pyo
${PYSITELIB}/awscli/customizations/awslambda.py
${PYSITELIB}/awscli/customizations/awslambda.pyc
${PYSITELIB}/awscli/customizations/awslambda.pyo
${PYSITELIB}/awscli/customizations/cliinputjson.py
${PYSITELIB}/awscli/customizations/cliinputjson.pyc
${PYSITELIB}/awscli/customizations/cliinputjson.pyo
${PYSITELIB}/awscli/customizations/cloudformation/__init__.py
${PYSITELIB}/awscli/customizations/cloudformation/__init__.pyc
${PYSITELIB}/awscli/customizations/cloudformation/__init__.pyo
${PYSITELIB}/awscli/customizations/cloudformation/artifact_exporter.py
${PYSITELIB}/awscli/customizations/cloudformation/artifact_exporter.pyc
${PYSITELIB}/awscli/customizations/cloudformation/artifact_exporter.pyo
${PYSITELIB}/awscli/customizations/cloudformation/deploy.py
${PYSITELIB}/awscli/customizations/cloudformation/deploy.pyc
${PYSITELIB}/awscli/customizations/cloudformation/deploy.pyo
${PYSITELIB}/awscli/customizations/cloudformation/deployer.py
${PYSITELIB}/awscli/customizations/cloudformation/deployer.pyc
${PYSITELIB}/awscli/customizations/cloudformation/deployer.pyo
${PYSITELIB}/awscli/customizations/cloudformation/exceptions.py
${PYSITELIB}/awscli/customizations/cloudformation/exceptions.pyc
${PYSITELIB}/awscli/customizations/cloudformation/exceptions.pyo
${PYSITELIB}/awscli/customizations/cloudformation/package.py
${PYSITELIB}/awscli/customizations/cloudformation/package.pyc
${PYSITELIB}/awscli/customizations/cloudformation/package.pyo
${PYSITELIB}/awscli/customizations/cloudformation/yamlhelper.py
${PYSITELIB}/awscli/customizations/cloudformation/yamlhelper.pyc
${PYSITELIB}/awscli/customizations/cloudformation/yamlhelper.pyo
${PYSITELIB}/awscli/customizations/cloudfront.py
${PYSITELIB}/awscli/customizations/cloudfront.pyc
${PYSITELIB}/awscli/customizations/cloudfront.pyo
${PYSITELIB}/awscli/customizations/cloudsearch.py
${PYSITELIB}/awscli/customizations/cloudsearch.pyc
${PYSITELIB}/awscli/customizations/cloudsearch.pyo
${PYSITELIB}/awscli/customizations/cloudsearchdomain.py
${PYSITELIB}/awscli/customizations/cloudsearchdomain.pyc
${PYSITELIB}/awscli/customizations/cloudsearchdomain.pyo
${PYSITELIB}/awscli/customizations/cloudtrail/__init__.py
${PYSITELIB}/awscli/customizations/cloudtrail/__init__.pyc
${PYSITELIB}/awscli/customizations/cloudtrail/__init__.pyo
${PYSITELIB}/awscli/customizations/cloudtrail/subscribe.py
${PYSITELIB}/awscli/customizations/cloudtrail/subscribe.pyc
${PYSITELIB}/awscli/customizations/cloudtrail/subscribe.pyo
${PYSITELIB}/awscli/customizations/cloudtrail/utils.py
${PYSITELIB}/awscli/customizations/cloudtrail/utils.pyc
${PYSITELIB}/awscli/customizations/cloudtrail/utils.pyo
${PYSITELIB}/awscli/customizations/cloudtrail/validation.py
${PYSITELIB}/awscli/customizations/cloudtrail/validation.pyc
${PYSITELIB}/awscli/customizations/cloudtrail/validation.pyo
${PYSITELIB}/awscli/customizations/codeartifact/__init__.py
${PYSITELIB}/awscli/customizations/codeartifact/__init__.pyc
${PYSITELIB}/awscli/customizations/codeartifact/__init__.pyo
${PYSITELIB}/awscli/customizations/codeartifact/login.py
${PYSITELIB}/awscli/customizations/codeartifact/login.pyc
${PYSITELIB}/awscli/customizations/codeartifact/login.pyo
${PYSITELIB}/awscli/customizations/codecommit.py
${PYSITELIB}/awscli/customizations/codecommit.pyc
${PYSITELIB}/awscli/customizations/codecommit.pyo
${PYSITELIB}/awscli/customizations/codedeploy/__init__.py
${PYSITELIB}/awscli/customizations/codedeploy/__init__.pyc
${PYSITELIB}/awscli/customizations/codedeploy/__init__.pyo
${PYSITELIB}/awscli/customizations/codedeploy/codedeploy.py
${PYSITELIB}/awscli/customizations/codedeploy/codedeploy.pyc
${PYSITELIB}/awscli/customizations/codedeploy/codedeploy.pyo
${PYSITELIB}/awscli/customizations/codedeploy/deregister.py
${PYSITELIB}/awscli/customizations/codedeploy/deregister.pyc
${PYSITELIB}/awscli/customizations/codedeploy/deregister.pyo
${PYSITELIB}/awscli/customizations/codedeploy/install.py
${PYSITELIB}/awscli/customizations/codedeploy/install.pyc
${PYSITELIB}/awscli/customizations/codedeploy/install.pyo
${PYSITELIB}/awscli/customizations/codedeploy/locationargs.py
${PYSITELIB}/awscli/customizations/codedeploy/locationargs.pyc
${PYSITELIB}/awscli/customizations/codedeploy/locationargs.pyo
${PYSITELIB}/awscli/customizations/codedeploy/push.py
${PYSITELIB}/awscli/customizations/codedeploy/push.pyc
${PYSITELIB}/awscli/customizations/codedeploy/push.pyo
${PYSITELIB}/awscli/customizations/codedeploy/register.py
${PYSITELIB}/awscli/customizations/codedeploy/register.pyc
${PYSITELIB}/awscli/customizations/codedeploy/register.pyo
${PYSITELIB}/awscli/customizations/codedeploy/systems.py
${PYSITELIB}/awscli/customizations/codedeploy/systems.pyc
${PYSITELIB}/awscli/customizations/codedeploy/systems.pyo
${PYSITELIB}/awscli/customizations/codedeploy/uninstall.py
${PYSITELIB}/awscli/customizations/codedeploy/uninstall.pyc
${PYSITELIB}/awscli/customizations/codedeploy/uninstall.pyo
${PYSITELIB}/awscli/customizations/codedeploy/utils.py
${PYSITELIB}/awscli/customizations/codedeploy/utils.pyc
${PYSITELIB}/awscli/customizations/codedeploy/utils.pyo
${PYSITELIB}/awscli/customizations/commands.py
${PYSITELIB}/awscli/customizations/commands.pyc
${PYSITELIB}/awscli/customizations/commands.pyo
${PYSITELIB}/awscli/customizations/configservice/__init__.py
${PYSITELIB}/awscli/customizations/configservice/__init__.pyc
${PYSITELIB}/awscli/customizations/configservice/__init__.pyo
${PYSITELIB}/awscli/customizations/configservice/getstatus.py
${PYSITELIB}/awscli/customizations/configservice/getstatus.pyc
${PYSITELIB}/awscli/customizations/configservice/getstatus.pyo
${PYSITELIB}/awscli/customizations/configservice/putconfigurationrecorder.py
${PYSITELIB}/awscli/customizations/configservice/putconfigurationrecorder.pyc
${PYSITELIB}/awscli/customizations/configservice/putconfigurationrecorder.pyo
${PYSITELIB}/awscli/customizations/configservice/rename_cmd.py
${PYSITELIB}/awscli/customizations/configservice/rename_cmd.pyc
${PYSITELIB}/awscli/customizations/configservice/rename_cmd.pyo
${PYSITELIB}/awscli/customizations/configservice/subscribe.py
${PYSITELIB}/awscli/customizations/configservice/subscribe.pyc
${PYSITELIB}/awscli/customizations/configservice/subscribe.pyo
${PYSITELIB}/awscli/customizations/configure/__init__.py
${PYSITELIB}/awscli/customizations/configure/__init__.pyc
${PYSITELIB}/awscli/customizations/configure/__init__.pyo
${PYSITELIB}/awscli/customizations/configure/addmodel.py
${PYSITELIB}/awscli/customizations/configure/addmodel.pyc
${PYSITELIB}/awscli/customizations/configure/addmodel.pyo
${PYSITELIB}/awscli/customizations/configure/configure.py
${PYSITELIB}/awscli/customizations/configure/configure.pyc
${PYSITELIB}/awscli/customizations/configure/configure.pyo
${PYSITELIB}/awscli/customizations/configure/get.py
${PYSITELIB}/awscli/customizations/configure/get.pyc
${PYSITELIB}/awscli/customizations/configure/get.pyo
${PYSITELIB}/awscli/customizations/configure/list.py
${PYSITELIB}/awscli/customizations/configure/list.pyc
${PYSITELIB}/awscli/customizations/configure/list.pyo
${PYSITELIB}/awscli/customizations/configure/set.py
${PYSITELIB}/awscli/customizations/configure/set.pyc
${PYSITELIB}/awscli/customizations/configure/set.pyo
${PYSITELIB}/awscli/customizations/configure/writer.py
${PYSITELIB}/awscli/customizations/configure/writer.pyc
${PYSITELIB}/awscli/customizations/configure/writer.pyo
${PYSITELIB}/awscli/customizations/datapipeline/__init__.py
${PYSITELIB}/awscli/customizations/datapipeline/__init__.pyc
${PYSITELIB}/awscli/customizations/datapipeline/__init__.pyo
${PYSITELIB}/awscli/customizations/datapipeline/constants.py
${PYSITELIB}/awscli/customizations/datapipeline/constants.pyc
${PYSITELIB}/awscli/customizations/datapipeline/constants.pyo
${PYSITELIB}/awscli/customizations/datapipeline/createdefaultroles.py
${PYSITELIB}/awscli/customizations/datapipeline/createdefaultroles.pyc
${PYSITELIB}/awscli/customizations/datapipeline/createdefaultroles.pyo
${PYSITELIB}/awscli/customizations/datapipeline/listrunsformatter.py
${PYSITELIB}/awscli/customizations/datapipeline/listrunsformatter.pyc
${PYSITELIB}/awscli/customizations/datapipeline/listrunsformatter.pyo
${PYSITELIB}/awscli/customizations/datapipeline/translator.py
${PYSITELIB}/awscli/customizations/datapipeline/translator.pyc
${PYSITELIB}/awscli/customizations/datapipeline/translator.pyo
${PYSITELIB}/awscli/customizations/dlm/__init__.py
${PYSITELIB}/awscli/customizations/dlm/__init__.pyc
${PYSITELIB}/awscli/customizations/dlm/__init__.pyo
${PYSITELIB}/awscli/customizations/dlm/constants.py
${PYSITELIB}/awscli/customizations/dlm/constants.pyc
${PYSITELIB}/awscli/customizations/dlm/constants.pyo
${PYSITELIB}/awscli/customizations/dlm/createdefaultrole.py
${PYSITELIB}/awscli/customizations/dlm/createdefaultrole.pyc
${PYSITELIB}/awscli/customizations/dlm/createdefaultrole.pyo
${PYSITELIB}/awscli/customizations/dlm/dlm.py
${PYSITELIB}/awscli/customizations/dlm/dlm.pyc
${PYSITELIB}/awscli/customizations/dlm/dlm.pyo
${PYSITELIB}/awscli/customizations/dlm/iam.py
${PYSITELIB}/awscli/customizations/dlm/iam.pyc
${PYSITELIB}/awscli/customizations/dlm/iam.pyo
${PYSITELIB}/awscli/customizations/dynamodb.py
${PYSITELIB}/awscli/customizations/dynamodb.pyc
${PYSITELIB}/awscli/customizations/dynamodb.pyo
${PYSITELIB}/awscli/customizations/ec2/__init__.py
${PYSITELIB}/awscli/customizations/ec2/__init__.pyc
${PYSITELIB}/awscli/customizations/ec2/__init__.pyo
${PYSITELIB}/awscli/customizations/ec2/addcount.py
${PYSITELIB}/awscli/customizations/ec2/addcount.pyc
${PYSITELIB}/awscli/customizations/ec2/addcount.pyo
${PYSITELIB}/awscli/customizations/ec2/bundleinstance.py
${PYSITELIB}/awscli/customizations/ec2/bundleinstance.pyc
${PYSITELIB}/awscli/customizations/ec2/bundleinstance.pyo
${PYSITELIB}/awscli/customizations/ec2/decryptpassword.py
${PYSITELIB}/awscli/customizations/ec2/decryptpassword.pyc
${PYSITELIB}/awscli/customizations/ec2/decryptpassword.pyo
${PYSITELIB}/awscli/customizations/ec2/paginate.py
${PYSITELIB}/awscli/customizations/ec2/paginate.pyc
${PYSITELIB}/awscli/customizations/ec2/paginate.pyo
${PYSITELIB}/awscli/customizations/ec2/protocolarg.py
${PYSITELIB}/awscli/customizations/ec2/protocolarg.pyc
${PYSITELIB}/awscli/customizations/ec2/protocolarg.pyo
${PYSITELIB}/awscli/customizations/ec2/runinstances.py
${PYSITELIB}/awscli/customizations/ec2/runinstances.pyc
${PYSITELIB}/awscli/customizations/ec2/runinstances.pyo
${PYSITELIB}/awscli/customizations/ec2/secgroupsimplify.py
${PYSITELIB}/awscli/customizations/ec2/secgroupsimplify.pyc
${PYSITELIB}/awscli/customizations/ec2/secgroupsimplify.pyo
${PYSITELIB}/awscli/customizations/ecr.py
${PYSITELIB}/awscli/customizations/ecr.pyc
${PYSITELIB}/awscli/customizations/ecr.pyo
${PYSITELIB}/awscli/customizations/ecr_public.py
${PYSITELIB}/awscli/customizations/ecr_public.pyc
${PYSITELIB}/awscli/customizations/ecr_public.pyo
${PYSITELIB}/awscli/customizations/ecs/__init__.py
${PYSITELIB}/awscli/customizations/ecs/__init__.pyc
${PYSITELIB}/awscli/customizations/ecs/__init__.pyo
${PYSITELIB}/awscli/customizations/ecs/deploy.py
${PYSITELIB}/awscli/customizations/ecs/deploy.pyc
${PYSITELIB}/awscli/customizations/ecs/deploy.pyo
${PYSITELIB}/awscli/customizations/ecs/exceptions.py
${PYSITELIB}/awscli/customizations/ecs/exceptions.pyc
${PYSITELIB}/awscli/customizations/ecs/exceptions.pyo
${PYSITELIB}/awscli/customizations/ecs/executecommand.py
${PYSITELIB}/awscli/customizations/ecs/executecommand.pyc
${PYSITELIB}/awscli/customizations/ecs/executecommand.pyo
${PYSITELIB}/awscli/customizations/ecs/filehelpers.py
${PYSITELIB}/awscli/customizations/ecs/filehelpers.pyc
${PYSITELIB}/awscli/customizations/ecs/filehelpers.pyo
${PYSITELIB}/awscli/customizations/eks/__init__.py
${PYSITELIB}/awscli/customizations/eks/__init__.pyc
${PYSITELIB}/awscli/customizations/eks/__init__.pyo
${PYSITELIB}/awscli/customizations/eks/exceptions.py
${PYSITELIB}/awscli/customizations/eks/exceptions.pyc
${PYSITELIB}/awscli/customizations/eks/exceptions.pyo
${PYSITELIB}/awscli/customizations/eks/get_token.py
${PYSITELIB}/awscli/customizations/eks/get_token.pyc
${PYSITELIB}/awscli/customizations/eks/get_token.pyo
${PYSITELIB}/awscli/customizations/eks/kubeconfig.py
${PYSITELIB}/awscli/customizations/eks/kubeconfig.pyc
${PYSITELIB}/awscli/customizations/eks/kubeconfig.pyo
${PYSITELIB}/awscli/customizations/eks/ordered_yaml.py
${PYSITELIB}/awscli/customizations/eks/ordered_yaml.pyc
${PYSITELIB}/awscli/customizations/eks/ordered_yaml.pyo
${PYSITELIB}/awscli/customizations/eks/update_kubeconfig.py
${PYSITELIB}/awscli/customizations/eks/update_kubeconfig.pyc
${PYSITELIB}/awscli/customizations/eks/update_kubeconfig.pyo
${PYSITELIB}/awscli/customizations/emr/__init__.py
${PYSITELIB}/awscli/customizations/emr/__init__.pyc
${PYSITELIB}/awscli/customizations/emr/__init__.pyo
${PYSITELIB}/awscli/customizations/emr/addinstancegroups.py
${PYSITELIB}/awscli/customizations/emr/addinstancegroups.pyc
${PYSITELIB}/awscli/customizations/emr/addinstancegroups.pyo
${PYSITELIB}/awscli/customizations/emr/addsteps.py
${PYSITELIB}/awscli/customizations/emr/addsteps.pyc
${PYSITELIB}/awscli/customizations/emr/addsteps.pyo
${PYSITELIB}/awscli/customizations/emr/addtags.py
${PYSITELIB}/awscli/customizations/emr/addtags.pyc
${PYSITELIB}/awscli/customizations/emr/addtags.pyo
${PYSITELIB}/awscli/customizations/emr/applicationutils.py
${PYSITELIB}/awscli/customizations/emr/applicationutils.pyc
${PYSITELIB}/awscli/customizations/emr/applicationutils.pyo
${PYSITELIB}/awscli/customizations/emr/argumentschema.py
${PYSITELIB}/awscli/customizations/emr/argumentschema.pyc
${PYSITELIB}/awscli/customizations/emr/argumentschema.pyo
${PYSITELIB}/awscli/customizations/emr/command.py
${PYSITELIB}/awscli/customizations/emr/command.pyc
${PYSITELIB}/awscli/customizations/emr/command.pyo
${PYSITELIB}/awscli/customizations/emr/config.py
${PYSITELIB}/awscli/customizations/emr/config.pyc
${PYSITELIB}/awscli/customizations/emr/config.pyo
${PYSITELIB}/awscli/customizations/emr/configutils.py
${PYSITELIB}/awscli/customizations/emr/configutils.pyc
${PYSITELIB}/awscli/customizations/emr/configutils.pyo
${PYSITELIB}/awscli/customizations/emr/constants.py
${PYSITELIB}/awscli/customizations/emr/constants.pyc
${PYSITELIB}/awscli/customizations/emr/constants.pyo
${PYSITELIB}/awscli/customizations/emr/createcluster.py
${PYSITELIB}/awscli/customizations/emr/createcluster.pyc
${PYSITELIB}/awscli/customizations/emr/createcluster.pyo
${PYSITELIB}/awscli/customizations/emr/createdefaultroles.py
${PYSITELIB}/awscli/customizations/emr/createdefaultroles.pyc
${PYSITELIB}/awscli/customizations/emr/createdefaultroles.pyo
${PYSITELIB}/awscli/customizations/emr/describecluster.py
${PYSITELIB}/awscli/customizations/emr/describecluster.pyc
${PYSITELIB}/awscli/customizations/emr/describecluster.pyo
${PYSITELIB}/awscli/customizations/emr/emr.py
${PYSITELIB}/awscli/customizations/emr/emr.pyc
${PYSITELIB}/awscli/customizations/emr/emr.pyo
${PYSITELIB}/awscli/customizations/emr/emrfsutils.py
${PYSITELIB}/awscli/customizations/emr/emrfsutils.pyc
${PYSITELIB}/awscli/customizations/emr/emrfsutils.pyo
${PYSITELIB}/awscli/customizations/emr/emrutils.py
${PYSITELIB}/awscli/customizations/emr/emrutils.pyc
${PYSITELIB}/awscli/customizations/emr/emrutils.pyo
${PYSITELIB}/awscli/customizations/emr/exceptions.py
${PYSITELIB}/awscli/customizations/emr/exceptions.pyc
${PYSITELIB}/awscli/customizations/emr/exceptions.pyo
${PYSITELIB}/awscli/customizations/emr/hbase.py
${PYSITELIB}/awscli/customizations/emr/hbase.pyc
${PYSITELIB}/awscli/customizations/emr/hbase.pyo
${PYSITELIB}/awscli/customizations/emr/hbaseutils.py
${PYSITELIB}/awscli/customizations/emr/hbaseutils.pyc
${PYSITELIB}/awscli/customizations/emr/hbaseutils.pyo
${PYSITELIB}/awscli/customizations/emr/helptext.py
${PYSITELIB}/awscli/customizations/emr/helptext.pyc
${PYSITELIB}/awscli/customizations/emr/helptext.pyo
${PYSITELIB}/awscli/customizations/emr/installapplications.py
${PYSITELIB}/awscli/customizations/emr/installapplications.pyc
${PYSITELIB}/awscli/customizations/emr/installapplications.pyo
${PYSITELIB}/awscli/customizations/emr/instancefleetsutils.py
${PYSITELIB}/awscli/customizations/emr/instancefleetsutils.pyc
${PYSITELIB}/awscli/customizations/emr/instancefleetsutils.pyo
${PYSITELIB}/awscli/customizations/emr/instancegroupsutils.py
${PYSITELIB}/awscli/customizations/emr/instancegroupsutils.pyc
${PYSITELIB}/awscli/customizations/emr/instancegroupsutils.pyo
${PYSITELIB}/awscli/customizations/emr/listclusters.py
${PYSITELIB}/awscli/customizations/emr/listclusters.pyc
${PYSITELIB}/awscli/customizations/emr/listclusters.pyo
${PYSITELIB}/awscli/customizations/emr/modifyclusterattributes.py
${PYSITELIB}/awscli/customizations/emr/modifyclusterattributes.pyc
${PYSITELIB}/awscli/customizations/emr/modifyclusterattributes.pyo
${PYSITELIB}/awscli/customizations/emr/ssh.py
${PYSITELIB}/awscli/customizations/emr/ssh.pyc
${PYSITELIB}/awscli/customizations/emr/ssh.pyo
${PYSITELIB}/awscli/customizations/emr/sshutils.py
${PYSITELIB}/awscli/customizations/emr/sshutils.pyc
${PYSITELIB}/awscli/customizations/emr/sshutils.pyo
${PYSITELIB}/awscli/customizations/emr/steputils.py
${PYSITELIB}/awscli/customizations/emr/steputils.pyc
${PYSITELIB}/awscli/customizations/emr/steputils.pyo
${PYSITELIB}/awscli/customizations/emr/terminateclusters.py
${PYSITELIB}/awscli/customizations/emr/terminateclusters.pyc
${PYSITELIB}/awscli/customizations/emr/terminateclusters.pyo
${PYSITELIB}/awscli/customizations/emrcontainers/__init__.py
${PYSITELIB}/awscli/customizations/emrcontainers/__init__.pyc
${PYSITELIB}/awscli/customizations/emrcontainers/__init__.pyo
${PYSITELIB}/awscli/customizations/emrcontainers/base36.py
${PYSITELIB}/awscli/customizations/emrcontainers/base36.pyc
${PYSITELIB}/awscli/customizations/emrcontainers/base36.pyo
${PYSITELIB}/awscli/customizations/emrcontainers/constants.py
${PYSITELIB}/awscli/customizations/emrcontainers/constants.pyc
${PYSITELIB}/awscli/customizations/emrcontainers/constants.pyo
${PYSITELIB}/awscli/customizations/emrcontainers/eks.py
${PYSITELIB}/awscli/customizations/emrcontainers/eks.pyc
${PYSITELIB}/awscli/customizations/emrcontainers/eks.pyo
${PYSITELIB}/awscli/customizations/emrcontainers/iam.py
${PYSITELIB}/awscli/customizations/emrcontainers/iam.pyc
${PYSITELIB}/awscli/customizations/emrcontainers/iam.pyo
${PYSITELIB}/awscli/customizations/emrcontainers/update_role_trust_policy.py
${PYSITELIB}/awscli/customizations/emrcontainers/update_role_trust_policy.pyc
${PYSITELIB}/awscli/customizations/emrcontainers/update_role_trust_policy.pyo
${PYSITELIB}/awscli/customizations/flatten.py
${PYSITELIB}/awscli/customizations/flatten.pyc
${PYSITELIB}/awscli/customizations/flatten.pyo
${PYSITELIB}/awscli/customizations/gamelift/__init__.py
${PYSITELIB}/awscli/customizations/gamelift/__init__.pyc
${PYSITELIB}/awscli/customizations/gamelift/__init__.pyo
${PYSITELIB}/awscli/customizations/gamelift/getlog.py
${PYSITELIB}/awscli/customizations/gamelift/getlog.pyc
${PYSITELIB}/awscli/customizations/gamelift/getlog.pyo
${PYSITELIB}/awscli/customizations/gamelift/uploadbuild.py
${PYSITELIB}/awscli/customizations/gamelift/uploadbuild.pyc
${PYSITELIB}/awscli/customizations/gamelift/uploadbuild.pyo
${PYSITELIB}/awscli/customizations/generatecliskeleton.py
${PYSITELIB}/awscli/customizations/generatecliskeleton.pyc
${PYSITELIB}/awscli/customizations/generatecliskeleton.pyo
${PYSITELIB}/awscli/customizations/globalargs.py
${PYSITELIB}/awscli/customizations/globalargs.pyc
${PYSITELIB}/awscli/customizations/globalargs.pyo
${PYSITELIB}/awscli/customizations/history/__init__.py
${PYSITELIB}/awscli/customizations/history/__init__.pyc
${PYSITELIB}/awscli/customizations/history/__init__.pyo
${PYSITELIB}/awscli/customizations/history/commands.py
${PYSITELIB}/awscli/customizations/history/commands.pyc
${PYSITELIB}/awscli/customizations/history/commands.pyo
${PYSITELIB}/awscli/customizations/history/constants.py
${PYSITELIB}/awscli/customizations/history/constants.pyc
${PYSITELIB}/awscli/customizations/history/constants.pyo
${PYSITELIB}/awscli/customizations/history/db.py
${PYSITELIB}/awscli/customizations/history/db.pyc
${PYSITELIB}/awscli/customizations/history/db.pyo
${PYSITELIB}/awscli/customizations/history/filters.py
${PYSITELIB}/awscli/customizations/history/filters.pyc
${PYSITELIB}/awscli/customizations/history/filters.pyo
${PYSITELIB}/awscli/customizations/history/list.py
${PYSITELIB}/awscli/customizations/history/list.pyc
${PYSITELIB}/awscli/customizations/history/list.pyo
${PYSITELIB}/awscli/customizations/history/show.py
${PYSITELIB}/awscli/customizations/history/show.pyc
${PYSITELIB}/awscli/customizations/history/show.pyo
${PYSITELIB}/awscli/customizations/iamvirtmfa.py
${PYSITELIB}/awscli/customizations/iamvirtmfa.pyc
${PYSITELIB}/awscli/customizations/iamvirtmfa.pyo
${PYSITELIB}/awscli/customizations/iot.py
${PYSITELIB}/awscli/customizations/iot.pyc
${PYSITELIB}/awscli/customizations/iot.pyo
${PYSITELIB}/awscli/customizations/iot_data.py
${PYSITELIB}/awscli/customizations/iot_data.pyc
${PYSITELIB}/awscli/customizations/iot_data.pyo
${PYSITELIB}/awscli/customizations/kms.py
${PYSITELIB}/awscli/customizations/kms.pyc
${PYSITELIB}/awscli/customizations/kms.pyo
${PYSITELIB}/awscli/customizations/mturk.py
${PYSITELIB}/awscli/customizations/mturk.pyc
${PYSITELIB}/awscli/customizations/mturk.pyo
${PYSITELIB}/awscli/customizations/opsworks.py
${PYSITELIB}/awscli/customizations/opsworks.pyc
${PYSITELIB}/awscli/customizations/opsworks.pyo
${PYSITELIB}/awscli/customizations/opsworkscm.py
${PYSITELIB}/awscli/customizations/opsworkscm.pyc
${PYSITELIB}/awscli/customizations/opsworkscm.pyo
${PYSITELIB}/awscli/customizations/overridesslcommonname.py
${PYSITELIB}/awscli/customizations/overridesslcommonname.pyc
${PYSITELIB}/awscli/customizations/overridesslcommonname.pyo
${PYSITELIB}/awscli/customizations/paginate.py
${PYSITELIB}/awscli/customizations/paginate.pyc
${PYSITELIB}/awscli/customizations/paginate.pyo
${PYSITELIB}/awscli/customizations/preview.py
${PYSITELIB}/awscli/customizations/preview.pyc
${PYSITELIB}/awscli/customizations/preview.pyo
${PYSITELIB}/awscli/customizations/putmetricdata.py
${PYSITELIB}/awscli/customizations/putmetricdata.pyc
${PYSITELIB}/awscli/customizations/putmetricdata.pyo
${PYSITELIB}/awscli/customizations/rds.py
${PYSITELIB}/awscli/customizations/rds.pyc
${PYSITELIB}/awscli/customizations/rds.pyo
${PYSITELIB}/awscli/customizations/rekognition.py
${PYSITELIB}/awscli/customizations/rekognition.pyc
${PYSITELIB}/awscli/customizations/rekognition.pyo
${PYSITELIB}/awscli/customizations/removals.py
${PYSITELIB}/awscli/customizations/removals.pyc
${PYSITELIB}/awscli/customizations/removals.pyo
${PYSITELIB}/awscli/customizations/route53.py
${PYSITELIB}/awscli/customizations/route53.pyc
${PYSITELIB}/awscli/customizations/route53.pyo
${PYSITELIB}/awscli/customizations/s3/__init__.py
${PYSITELIB}/awscli/customizations/s3/__init__.pyc
${PYSITELIB}/awscli/customizations/s3/__init__.pyo
${PYSITELIB}/awscli/customizations/s3/comparator.py
${PYSITELIB}/awscli/customizations/s3/comparator.pyc
${PYSITELIB}/awscli/customizations/s3/comparator.pyo
${PYSITELIB}/awscli/customizations/s3/fileformat.py
${PYSITELIB}/awscli/customizations/s3/fileformat.pyc
${PYSITELIB}/awscli/customizations/s3/fileformat.pyo
${PYSITELIB}/awscli/customizations/s3/filegenerator.py
${PYSITELIB}/awscli/customizations/s3/filegenerator.pyc
${PYSITELIB}/awscli/customizations/s3/filegenerator.pyo
${PYSITELIB}/awscli/customizations/s3/fileinfo.py
${PYSITELIB}/awscli/customizations/s3/fileinfo.pyc
${PYSITELIB}/awscli/customizations/s3/fileinfo.pyo
${PYSITELIB}/awscli/customizations/s3/fileinfobuilder.py
${PYSITELIB}/awscli/customizations/s3/fileinfobuilder.pyc
${PYSITELIB}/awscli/customizations/s3/fileinfobuilder.pyo
${PYSITELIB}/awscli/customizations/s3/filters.py
${PYSITELIB}/awscli/customizations/s3/filters.pyc
${PYSITELIB}/awscli/customizations/s3/filters.pyo
${PYSITELIB}/awscli/customizations/s3/results.py
${PYSITELIB}/awscli/customizations/s3/results.pyc
${PYSITELIB}/awscli/customizations/s3/results.pyo
${PYSITELIB}/awscli/customizations/s3/s3.py
${PYSITELIB}/awscli/customizations/s3/s3.pyc
${PYSITELIB}/awscli/customizations/s3/s3.pyo
${PYSITELIB}/awscli/customizations/s3/s3handler.py
${PYSITELIB}/awscli/customizations/s3/s3handler.pyc
${PYSITELIB}/awscli/customizations/s3/s3handler.pyo
${PYSITELIB}/awscli/customizations/s3/subcommands.py
${PYSITELIB}/awscli/customizations/s3/subcommands.pyc
${PYSITELIB}/awscli/customizations/s3/subcommands.pyo
${PYSITELIB}/awscli/customizations/s3/syncstrategy/__init__.py
${PYSITELIB}/awscli/customizations/s3/syncstrategy/__init__.pyc
${PYSITELIB}/awscli/customizations/s3/syncstrategy/__init__.pyo
${PYSITELIB}/awscli/customizations/s3/syncstrategy/base.py
${PYSITELIB}/awscli/customizations/s3/syncstrategy/base.pyc
${PYSITELIB}/awscli/customizations/s3/syncstrategy/base.pyo
${PYSITELIB}/awscli/customizations/s3/syncstrategy/delete.py
${PYSITELIB}/awscli/customizations/s3/syncstrategy/delete.pyc
${PYSITELIB}/awscli/customizations/s3/syncstrategy/delete.pyo
${PYSITELIB}/awscli/customizations/s3/syncstrategy/exacttimestamps.py
${PYSITELIB}/awscli/customizations/s3/syncstrategy/exacttimestamps.pyc
${PYSITELIB}/awscli/customizations/s3/syncstrategy/exacttimestamps.pyo
${PYSITELIB}/awscli/customizations/s3/syncstrategy/register.py
${PYSITELIB}/awscli/customizations/s3/syncstrategy/register.pyc
${PYSITELIB}/awscli/customizations/s3/syncstrategy/register.pyo
${PYSITELIB}/awscli/customizations/s3/syncstrategy/sizeonly.py
${PYSITELIB}/awscli/customizations/s3/syncstrategy/sizeonly.pyc
${PYSITELIB}/awscli/customizations/s3/syncstrategy/sizeonly.pyo
${PYSITELIB}/awscli/customizations/s3/transferconfig.py
${PYSITELIB}/awscli/customizations/s3/transferconfig.pyc
${PYSITELIB}/awscli/customizations/s3/transferconfig.pyo
${PYSITELIB}/awscli/customizations/s3/utils.py
${PYSITELIB}/awscli/customizations/s3/utils.pyc
${PYSITELIB}/awscli/customizations/s3/utils.pyo
${PYSITELIB}/awscli/customizations/s3errormsg.py
${PYSITELIB}/awscli/customizations/s3errormsg.pyc
${PYSITELIB}/awscli/customizations/s3errormsg.pyo
${PYSITELIB}/awscli/customizations/s3events.py
${PYSITELIB}/awscli/customizations/s3events.pyc
${PYSITELIB}/awscli/customizations/s3events.pyo
${PYSITELIB}/awscli/customizations/s3uploader.py
${PYSITELIB}/awscli/customizations/s3uploader.pyc
${PYSITELIB}/awscli/customizations/s3uploader.pyo
${PYSITELIB}/awscli/customizations/sagemaker.py
${PYSITELIB}/awscli/customizations/sagemaker.pyc
${PYSITELIB}/awscli/customizations/sagemaker.pyo
${PYSITELIB}/awscli/customizations/scalarparse.py
${PYSITELIB}/awscli/customizations/scalarparse.pyc
${PYSITELIB}/awscli/customizations/scalarparse.pyo
${PYSITELIB}/awscli/customizations/servicecatalog/__init__.py
${PYSITELIB}/awscli/customizations/servicecatalog/__init__.pyc
${PYSITELIB}/awscli/customizations/servicecatalog/__init__.pyo
${PYSITELIB}/awscli/customizations/servicecatalog/exceptions.py
${PYSITELIB}/awscli/customizations/servicecatalog/exceptions.pyc
${PYSITELIB}/awscli/customizations/servicecatalog/exceptions.pyo
${PYSITELIB}/awscli/customizations/servicecatalog/generate.py
${PYSITELIB}/awscli/customizations/servicecatalog/generate.pyc
${PYSITELIB}/awscli/customizations/servicecatalog/generate.pyo
${PYSITELIB}/awscli/customizations/servicecatalog/generatebase.py
${PYSITELIB}/awscli/customizations/servicecatalog/generatebase.pyc
${PYSITELIB}/awscli/customizations/servicecatalog/generatebase.pyo
${PYSITELIB}/awscli/customizations/servicecatalog/generateproduct.py
${PYSITELIB}/awscli/customizations/servicecatalog/generateproduct.pyc
${PYSITELIB}/awscli/customizations/servicecatalog/generateproduct.pyo
${PYSITELIB}/awscli/customizations/servicecatalog/generateprovisioningartifact.py
${PYSITELIB}/awscli/customizations/servicecatalog/generateprovisioningartifact.pyc
${PYSITELIB}/awscli/customizations/servicecatalog/generateprovisioningartifact.pyo
${PYSITELIB}/awscli/customizations/servicecatalog/helptext.py
${PYSITELIB}/awscli/customizations/servicecatalog/helptext.pyc
${PYSITELIB}/awscli/customizations/servicecatalog/helptext.pyo
${PYSITELIB}/awscli/customizations/servicecatalog/utils.py
${PYSITELIB}/awscli/customizations/servicecatalog/utils.pyc
${PYSITELIB}/awscli/customizations/servicecatalog/utils.pyo
${PYSITELIB}/awscli/customizations/sessendemail.py
${PYSITELIB}/awscli/customizations/sessendemail.pyc
${PYSITELIB}/awscli/customizations/sessendemail.pyo
${PYSITELIB}/awscli/customizations/sessionmanager.py
${PYSITELIB}/awscli/customizations/sessionmanager.pyc
${PYSITELIB}/awscli/customizations/sessionmanager.pyo
${PYSITELIB}/awscli/customizations/sms_voice.py
${PYSITELIB}/awscli/customizations/sms_voice.pyc
${PYSITELIB}/awscli/customizations/sms_voice.pyo
${PYSITELIB}/awscli/customizations/streamingoutputarg.py
${PYSITELIB}/awscli/customizations/streamingoutputarg.pyc
${PYSITELIB}/awscli/customizations/streamingoutputarg.pyo
${PYSITELIB}/awscli/customizations/toplevelbool.py
${PYSITELIB}/awscli/customizations/toplevelbool.pyc
${PYSITELIB}/awscli/customizations/toplevelbool.pyo
${PYSITELIB}/awscli/customizations/translate.py
${PYSITELIB}/awscli/customizations/translate.pyc
${PYSITELIB}/awscli/customizations/translate.pyo
${PYSITELIB}/awscli/customizations/utils.py
${PYSITELIB}/awscli/customizations/utils.pyc
${PYSITELIB}/awscli/customizations/utils.pyo
${PYSITELIB}/awscli/customizations/waiters.py
${PYSITELIB}/awscli/customizations/waiters.pyc
${PYSITELIB}/awscli/customizations/waiters.pyo
${PYSITELIB}/awscli/data/cli.json
${PYSITELIB}/awscli/errorhandler.py
${PYSITELIB}/awscli/errorhandler.pyc
${PYSITELIB}/awscli/errorhandler.pyo
${PYSITELIB}/awscli/examples/acm-pca/create-certificate-authority-audit-report.rst
${PYSITELIB}/awscli/examples/acm-pca/create-certificate-authority.rst
${PYSITELIB}/awscli/examples/acm-pca/delete-certificate-authority.rst
${PYSITELIB}/awscli/examples/acm-pca/describe-certificate-authority-audit-report.rst
${PYSITELIB}/awscli/examples/acm-pca/describe-certificate-authority.rst
${PYSITELIB}/awscli/examples/acm-pca/get-certificate-authority-certificate.rst
${PYSITELIB}/awscli/examples/acm-pca/get-certificate-authority-csr.rst
${PYSITELIB}/awscli/examples/acm-pca/get-certificate.rst
${PYSITELIB}/awscli/examples/acm-pca/import-certificate-authority-certificate.rst
${PYSITELIB}/awscli/examples/acm-pca/issue-certificate.rst
${PYSITELIB}/awscli/examples/acm-pca/list-certificate-authorities.rst
${PYSITELIB}/awscli/examples/acm-pca/list-tags.rst
${PYSITELIB}/awscli/examples/acm-pca/revoke-certificate.rst
${PYSITELIB}/awscli/examples/acm-pca/tag-certificate-authority.rst
${PYSITELIB}/awscli/examples/acm-pca/untag-certificate-authority.rst
${PYSITELIB}/awscli/examples/acm-pca/update-certificate-authority.rst
${PYSITELIB}/awscli/examples/acm/add-tags-to-certificate.rst
${PYSITELIB}/awscli/examples/acm/delete-certificate.rst
${PYSITELIB}/awscli/examples/acm/describe-certificate.rst
${PYSITELIB}/awscli/examples/acm/export-certificate.rst
${PYSITELIB}/awscli/examples/acm/get-certificate.rst
${PYSITELIB}/awscli/examples/acm/import-certificate.rst
${PYSITELIB}/awscli/examples/acm/list-certificates.rst
${PYSITELIB}/awscli/examples/acm/list-tags-for-certificate.rst
${PYSITELIB}/awscli/examples/acm/remove-tags-from-certificate.rst
${PYSITELIB}/awscli/examples/acm/request-certificate.rst
${PYSITELIB}/awscli/examples/acm/resend-validation-email.rst
${PYSITELIB}/awscli/examples/acm/update-certificate-options.rst
${PYSITELIB}/awscli/examples/alexaforbusiness/create-network-profile.rst
${PYSITELIB}/awscli/examples/alexaforbusiness/delete-network-profile.rst
${PYSITELIB}/awscli/examples/alexaforbusiness/get-network-profile.rst
${PYSITELIB}/awscli/examples/alexaforbusiness/search-network-profiles.rst
${PYSITELIB}/awscli/examples/alexaforbusiness/update-network-profile.rst
${PYSITELIB}/awscli/examples/apigateway/create-api-key.rst
${PYSITELIB}/awscli/examples/apigateway/create-authorizer.rst
${PYSITELIB}/awscli/examples/apigateway/create-base-path-mapping.rst
${PYSITELIB}/awscli/examples/apigateway/create-deployment.rst
${PYSITELIB}/awscli/examples/apigateway/create-domain-name.rst
${PYSITELIB}/awscli/examples/apigateway/create-model.rst
${PYSITELIB}/awscli/examples/apigateway/create-resource.rst
${PYSITELIB}/awscli/examples/apigateway/create-rest-api.rst
${PYSITELIB}/awscli/examples/apigateway/create-stage.rst
${PYSITELIB}/awscli/examples/apigateway/create-usage-plan-key.rst
${PYSITELIB}/awscli/examples/apigateway/create-usage-plan.rst
${PYSITELIB}/awscli/examples/apigateway/delete-api-key.rst
${PYSITELIB}/awscli/examples/apigateway/delete-authorizer.rst
${PYSITELIB}/awscli/examples/apigateway/delete-base-path-mapping.rst
${PYSITELIB}/awscli/examples/apigateway/delete-client-certificate.rst
${PYSITELIB}/awscli/examples/apigateway/delete-deployment.rst
${PYSITELIB}/awscli/examples/apigateway/delete-domain-name.rst
${PYSITELIB}/awscli/examples/apigateway/delete-integration-response.rst
${PYSITELIB}/awscli/examples/apigateway/delete-integration.rst
${PYSITELIB}/awscli/examples/apigateway/delete-method-response.rst
${PYSITELIB}/awscli/examples/apigateway/delete-method.rst
${PYSITELIB}/awscli/examples/apigateway/delete-model.rst
${PYSITELIB}/awscli/examples/apigateway/delete-resource.rst
${PYSITELIB}/awscli/examples/apigateway/delete-rest-api.rst
${PYSITELIB}/awscli/examples/apigateway/delete-stage.rst
${PYSITELIB}/awscli/examples/apigateway/delete-usage-plan-key.rst
${PYSITELIB}/awscli/examples/apigateway/delete-usage-plan.rst
${PYSITELIB}/awscli/examples/apigateway/flush-stage-authorizers-cache.rst
${PYSITELIB}/awscli/examples/apigateway/flush-stage-cache.rst
${PYSITELIB}/awscli/examples/apigateway/generate-client-certificate.rst
${PYSITELIB}/awscli/examples/apigateway/get-account.rst
${PYSITELIB}/awscli/examples/apigateway/get-api-key.rst
${PYSITELIB}/awscli/examples/apigateway/get-api-keys.rst
${PYSITELIB}/awscli/examples/apigateway/get-authorizer.rst
${PYSITELIB}/awscli/examples/apigateway/get-authorizers.rst
${PYSITELIB}/awscli/examples/apigateway/get-base-path-mapping.rst
${PYSITELIB}/awscli/examples/apigateway/get-base-path-mappings.rst
${PYSITELIB}/awscli/examples/apigateway/get-client-certificate.rst
${PYSITELIB}/awscli/examples/apigateway/get-client-certificates.rst
${PYSITELIB}/awscli/examples/apigateway/get-deployment.rst
${PYSITELIB}/awscli/examples/apigateway/get-deployments.rst
${PYSITELIB}/awscli/examples/apigateway/get-domain-name.rst
${PYSITELIB}/awscli/examples/apigateway/get-domain-names.rst
${PYSITELIB}/awscli/examples/apigateway/get-export.rst
${PYSITELIB}/awscli/examples/apigateway/get-integration-response.rst
${PYSITELIB}/awscli/examples/apigateway/get-integration.rst
${PYSITELIB}/awscli/examples/apigateway/get-method-response.rst
${PYSITELIB}/awscli/examples/apigateway/get-method.rst
${PYSITELIB}/awscli/examples/apigateway/get-model-template.rst
${PYSITELIB}/awscli/examples/apigateway/get-model.rst
${PYSITELIB}/awscli/examples/apigateway/get-models.rst
${PYSITELIB}/awscli/examples/apigateway/get-resource.rst
${PYSITELIB}/awscli/examples/apigateway/get-resources.rst
${PYSITELIB}/awscli/examples/apigateway/get-rest-api.rst
${PYSITELIB}/awscli/examples/apigateway/get-rest-apis.rst
${PYSITELIB}/awscli/examples/apigateway/get-sdk.rst
${PYSITELIB}/awscli/examples/apigateway/get-stage.rst
${PYSITELIB}/awscli/examples/apigateway/get-stages.rst
${PYSITELIB}/awscli/examples/apigateway/get-usage-plan-key.rst
${PYSITELIB}/awscli/examples/apigateway/get-usage-plan-keys.rst
${PYSITELIB}/awscli/examples/apigateway/get-usage-plan.rst
${PYSITELIB}/awscli/examples/apigateway/get-usage-plans.rst
${PYSITELIB}/awscli/examples/apigateway/get-usage.rst
${PYSITELIB}/awscli/examples/apigateway/import-rest-api.rst
${PYSITELIB}/awscli/examples/apigateway/put-integration-response.rst
${PYSITELIB}/awscli/examples/apigateway/put-integration.rst
${PYSITELIB}/awscli/examples/apigateway/put-method-response.rst
${PYSITELIB}/awscli/examples/apigateway/put-method.rst
${PYSITELIB}/awscli/examples/apigateway/put-rest-api.rst
${PYSITELIB}/awscli/examples/apigateway/test-invoke-authorizer.rst
${PYSITELIB}/awscli/examples/apigateway/test-invoke-method.rst
${PYSITELIB}/awscli/examples/apigateway/update-account.rst
${PYSITELIB}/awscli/examples/apigateway/update-api-key.rst
${PYSITELIB}/awscli/examples/apigateway/update-authorizer.rst
${PYSITELIB}/awscli/examples/apigateway/update-base-path-mapping.rst
${PYSITELIB}/awscli/examples/apigateway/update-client-certificate.rst
${PYSITELIB}/awscli/examples/apigateway/update-deployment.rst
${PYSITELIB}/awscli/examples/apigateway/update-domain-name.rst
${PYSITELIB}/awscli/examples/apigateway/update-integration-response.rst
${PYSITELIB}/awscli/examples/apigateway/update-integration.rst
${PYSITELIB}/awscli/examples/apigateway/update-method-response.rst
${PYSITELIB}/awscli/examples/apigateway/update-method.rst
${PYSITELIB}/awscli/examples/apigateway/update-model.rst
${PYSITELIB}/awscli/examples/apigateway/update-resource.rst
${PYSITELIB}/awscli/examples/apigateway/update-rest-api.rst
${PYSITELIB}/awscli/examples/apigateway/update-stage.rst
${PYSITELIB}/awscli/examples/apigateway/update-usage-plan.rst
${PYSITELIB}/awscli/examples/apigateway/update-usage.rst
${PYSITELIB}/awscli/examples/apigatewaymanagementapi/delete-connection.rst
${PYSITELIB}/awscli/examples/apigatewaymanagementapi/get-connection.rst
${PYSITELIB}/awscli/examples/apigatewaymanagementapi/post-to-connection.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-api-mapping.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-api.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-authorizer.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-deployment.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-domain-name.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-integration.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-route.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-stage.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-vpc-link.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-access-log-settings.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-api-mapping.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-api.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-authorizer.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-cors-configuration.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-deployment.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-domain-name.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-integration.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-route-settings.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-route.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-stage.rst
${PYSITELIB}/awscli/examples/apigatewayv2/delete-vpc-link.rst
${PYSITELIB}/awscli/examples/apigatewayv2/export-api.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-api-mapping.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-api-mappings.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-api.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-apis.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-authorizer.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-authorizers.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-deployment.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-deployments.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-domain-name.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-domain-names.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-integration.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-integrations.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-route.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-routes.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-stage.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-stages.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-tags.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-vpc-link.rst
${PYSITELIB}/awscli/examples/apigatewayv2/get-vpc-links.rst
${PYSITELIB}/awscli/examples/apigatewayv2/import-api.rst
${PYSITELIB}/awscli/examples/apigatewayv2/reimport-api.rst
${PYSITELIB}/awscli/examples/apigatewayv2/tag-resource.rst
${PYSITELIB}/awscli/examples/apigatewayv2/untag-resource.rst
${PYSITELIB}/awscli/examples/apigatewayv2/update-api-mapping.rst
${PYSITELIB}/awscli/examples/apigatewayv2/update-api.rst
${PYSITELIB}/awscli/examples/apigatewayv2/update-authorizer.rst
${PYSITELIB}/awscli/examples/apigatewayv2/update-deployment.rst
${PYSITELIB}/awscli/examples/apigatewayv2/update-domain-name.rst
${PYSITELIB}/awscli/examples/apigatewayv2/update-integration.rst
${PYSITELIB}/awscli/examples/apigatewayv2/update-route.rst
${PYSITELIB}/awscli/examples/apigatewayv2/update-stage.rst
${PYSITELIB}/awscli/examples/apigatewayv2/update-vpc-link.rst
${PYSITELIB}/awscli/examples/appconfig/create-application.rst
${PYSITELIB}/awscli/examples/appconfig/create-configuration-profile.rst
${PYSITELIB}/awscli/examples/appconfig/create-environment.rst
${PYSITELIB}/awscli/examples/appconfig/create-hosted-configuration-version.rst
${PYSITELIB}/awscli/examples/appconfig/delete-application.rst
${PYSITELIB}/awscli/examples/appconfig/delete-configuration-profile.rst
${PYSITELIB}/awscli/examples/appconfig/delete-deployment-strategy.rst
${PYSITELIB}/awscli/examples/appconfig/delete-environment.rst
${PYSITELIB}/awscli/examples/appconfig/delete-hosted-configuration-version.rst
${PYSITELIB}/awscli/examples/appconfig/get-application.rst
${PYSITELIB}/awscli/examples/appconfig/get-configuration-profile.rst
${PYSITELIB}/awscli/examples/appconfig/get-configuration.rst
${PYSITELIB}/awscli/examples/appconfig/get-deployment-strategy.rst
${PYSITELIB}/awscli/examples/appconfig/get-deployment.rst
${PYSITELIB}/awscli/examples/appconfig/get-environment.rst
${PYSITELIB}/awscli/examples/appconfig/get-hosted-configuration-version.rst
${PYSITELIB}/awscli/examples/appconfig/list-applications.rst
${PYSITELIB}/awscli/examples/appconfig/list-configuration-profiles.rst
${PYSITELIB}/awscli/examples/appconfig/list-deployment-strategies.rst
${PYSITELIB}/awscli/examples/appconfig/list-deployments.rst
${PYSITELIB}/awscli/examples/appconfig/list-environments.rst
${PYSITELIB}/awscli/examples/appconfig/list-hosted-configuration-versions.rst
${PYSITELIB}/awscli/examples/appconfig/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/appconfig/start-deployment.rst
${PYSITELIB}/awscli/examples/appconfig/stop-deployment.rst
${PYSITELIB}/awscli/examples/appconfig/tag-resource.rst
${PYSITELIB}/awscli/examples/appconfig/untag-resource.rst
${PYSITELIB}/awscli/examples/appconfig/update-application.rst
${PYSITELIB}/awscli/examples/appconfig/update-configuration-profile.rst
${PYSITELIB}/awscli/examples/appconfig/update-deployment-strategy.rst
${PYSITELIB}/awscli/examples/appconfig/update-environment.rst
${PYSITELIB}/awscli/examples/appconfig/validate-configuration.rst
${PYSITELIB}/awscli/examples/application-autoscaling/delete-scaling-policy.rst
${PYSITELIB}/awscli/examples/application-autoscaling/delete-scheduled-action.rst
${PYSITELIB}/awscli/examples/application-autoscaling/deregister-scalable-target.rst
${PYSITELIB}/awscli/examples/application-autoscaling/describe-scalable-targets.rst
${PYSITELIB}/awscli/examples/application-autoscaling/describe-scaling-activities.rst
${PYSITELIB}/awscli/examples/application-autoscaling/describe-scaling-policies.rst
${PYSITELIB}/awscli/examples/application-autoscaling/describe-scheduled-actions.rst
${PYSITELIB}/awscli/examples/application-autoscaling/put-scaling-policy.rst
${PYSITELIB}/awscli/examples/application-autoscaling/put-scheduled-action.rst
${PYSITELIB}/awscli/examples/application-autoscaling/register-scalable-target.rst
${PYSITELIB}/awscli/examples/appmesh/create-mesh.rst
${PYSITELIB}/awscli/examples/appmesh/create-route.rst
${PYSITELIB}/awscli/examples/appmesh/create-virtual-gateway.rst
${PYSITELIB}/awscli/examples/appmesh/create-virtual-node.rst
${PYSITELIB}/awscli/examples/appmesh/create-virtual-router.rst
${PYSITELIB}/awscli/examples/appmesh/create-virtual-service.rst
${PYSITELIB}/awscli/examples/appmesh/delete-mesh.rst
${PYSITELIB}/awscli/examples/appmesh/delete-route.rst
${PYSITELIB}/awscli/examples/appmesh/delete-virtual-node.rst
${PYSITELIB}/awscli/examples/appmesh/delete-virtual-router.rst
${PYSITELIB}/awscli/examples/appmesh/delete-virtual-service.rst
${PYSITELIB}/awscli/examples/appmesh/describe-mesh.rst
${PYSITELIB}/awscli/examples/appmesh/describe-route.rst
${PYSITELIB}/awscli/examples/appmesh/describe-virtual-node.rst
${PYSITELIB}/awscli/examples/appmesh/describe-virtual-router.rst
${PYSITELIB}/awscli/examples/appmesh/describe-virtual-service.rst
${PYSITELIB}/awscli/examples/appmesh/list-meshes.rst
${PYSITELIB}/awscli/examples/appmesh/list-routes.rst
${PYSITELIB}/awscli/examples/appmesh/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/appmesh/list-virtual-nodes.rst
${PYSITELIB}/awscli/examples/appmesh/list-virtual-routers.rst
${PYSITELIB}/awscli/examples/appmesh/list-virtual-services.rst
${PYSITELIB}/awscli/examples/appmesh/tag-resource.rst
${PYSITELIB}/awscli/examples/appmesh/untag-resource.rst
${PYSITELIB}/awscli/examples/appmesh/update-mesh.rst
${PYSITELIB}/awscli/examples/appmesh/update-route.rst
${PYSITELIB}/awscli/examples/appmesh/update-virtual-node.rst
${PYSITELIB}/awscli/examples/appmesh/update-virtual-router.rst
${PYSITELIB}/awscli/examples/appmesh/update-virtual-service.rst
${PYSITELIB}/awscli/examples/apprunner/associate-custom-domain.rst
${PYSITELIB}/awscli/examples/apprunner/create-auto-scaling-configuration.rst
${PYSITELIB}/awscli/examples/apprunner/create-connection.rst
${PYSITELIB}/awscli/examples/apprunner/create-service.rst
${PYSITELIB}/awscli/examples/apprunner/delete-auto-scaling-configuration.rst
${PYSITELIB}/awscli/examples/apprunner/delete-connection.rst
${PYSITELIB}/awscli/examples/apprunner/delete-service.rst
${PYSITELIB}/awscli/examples/apprunner/describe-auto-scaling-configuration.rst
${PYSITELIB}/awscli/examples/apprunner/describe-custom-domains.rst
${PYSITELIB}/awscli/examples/apprunner/describe-service.rst
${PYSITELIB}/awscli/examples/apprunner/disassociate-custom-domain.rst
${PYSITELIB}/awscli/examples/apprunner/list-auto-scaling-configurations.rst
${PYSITELIB}/awscli/examples/apprunner/list-connections.rst
${PYSITELIB}/awscli/examples/apprunner/list-operations.rst
${PYSITELIB}/awscli/examples/apprunner/list-services.rst
${PYSITELIB}/awscli/examples/apprunner/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/apprunner/pause-service.rst
${PYSITELIB}/awscli/examples/apprunner/resume-service.rst
${PYSITELIB}/awscli/examples/apprunner/start-deployment.rst
${PYSITELIB}/awscli/examples/apprunner/tag-resource.rst
${PYSITELIB}/awscli/examples/apprunner/untag-resource.rst
${PYSITELIB}/awscli/examples/apprunner/update-service.rst
${PYSITELIB}/awscli/examples/athena/batch-get-named-query.rst
${PYSITELIB}/awscli/examples/athena/batch-get-query-execution.rst
${PYSITELIB}/awscli/examples/athena/create-data-catalog.rst
${PYSITELIB}/awscli/examples/athena/create-named-query.rst
${PYSITELIB}/awscli/examples/athena/create-work-group.rst
${PYSITELIB}/awscli/examples/athena/delete-data-catalog.rst
${PYSITELIB}/awscli/examples/athena/delete-named-query.rst
${PYSITELIB}/awscli/examples/athena/delete-work-group.rst
${PYSITELIB}/awscli/examples/athena/get-data-catalog.rst
${PYSITELIB}/awscli/examples/athena/get-database.rst
${PYSITELIB}/awscli/examples/athena/get-named-query.rst
${PYSITELIB}/awscli/examples/athena/get-query-execution.rst
${PYSITELIB}/awscli/examples/athena/get-query-results.rst
${PYSITELIB}/awscli/examples/athena/get-table-metadata.rst
${PYSITELIB}/awscli/examples/athena/get-work-group.rst
${PYSITELIB}/awscli/examples/athena/list-data-catalogs.rst
${PYSITELIB}/awscli/examples/athena/list-databases.rst
${PYSITELIB}/awscli/examples/athena/list-named-queries.rst
${PYSITELIB}/awscli/examples/athena/list-query-executions.rst
${PYSITELIB}/awscli/examples/athena/list-table-metadata.rst
${PYSITELIB}/awscli/examples/athena/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/athena/list-work-groups.rst
${PYSITELIB}/awscli/examples/athena/start-query-execution.rst
${PYSITELIB}/awscli/examples/athena/stop-query-execution.rst
${PYSITELIB}/awscli/examples/athena/tag-resource.rst
${PYSITELIB}/awscli/examples/athena/untag-resource.rst
${PYSITELIB}/awscli/examples/athena/update-data-catalog.rst
${PYSITELIB}/awscli/examples/athena/update-work-group.rst
${PYSITELIB}/awscli/examples/autoscaling-plans/create-scaling-plan.rst
${PYSITELIB}/awscli/examples/autoscaling-plans/delete-scaling-plan.rst
${PYSITELIB}/awscli/examples/autoscaling-plans/describe-scaling-plan-resources.rst
${PYSITELIB}/awscli/examples/autoscaling-plans/describe-scaling-plans.rst
${PYSITELIB}/awscli/examples/autoscaling-plans/get-scaling-plan-resource-forecast-data.rst
${PYSITELIB}/awscli/examples/autoscaling-plans/update-scaling-plan.rst
${PYSITELIB}/awscli/examples/autoscaling/attach-instances.rst
${PYSITELIB}/awscli/examples/autoscaling/attach-load-balancer-target-groups.rst
${PYSITELIB}/awscli/examples/autoscaling/attach-load-balancers.rst
${PYSITELIB}/awscli/examples/autoscaling/cancel-instance-refresh.rst
${PYSITELIB}/awscli/examples/autoscaling/complete-lifecycle-action.rst
${PYSITELIB}/awscli/examples/autoscaling/create-auto-scaling-group.rst
${PYSITELIB}/awscli/examples/autoscaling/create-launch-configuration.rst
${PYSITELIB}/awscli/examples/autoscaling/create-or-update-tags.rst
${PYSITELIB}/awscli/examples/autoscaling/delete-auto-scaling-group.rst
${PYSITELIB}/awscli/examples/autoscaling/delete-launch-configuration.rst
${PYSITELIB}/awscli/examples/autoscaling/delete-lifecycle-hook.rst
${PYSITELIB}/awscli/examples/autoscaling/delete-notification-configuration.rst
${PYSITELIB}/awscli/examples/autoscaling/delete-policy.rst
${PYSITELIB}/awscli/examples/autoscaling/delete-scheduled-action.rst
${PYSITELIB}/awscli/examples/autoscaling/delete-tags.rst
${PYSITELIB}/awscli/examples/autoscaling/delete-warm-pool.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-account-limits.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-adjustment-types.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-auto-scaling-groups.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-auto-scaling-instances.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-auto-scaling-notification-types.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-instance-refreshes.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-launch-configurations.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-lifecycle-hook-types.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-lifecycle-hooks.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-load-balancer-target-groups.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-load-balancers.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-metric-collection-types.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-notification-configurations.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-policies.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-scaling-activities.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-scaling-process-types.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-scheduled-actions.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-tags.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-termination-policy-types.rst
${PYSITELIB}/awscli/examples/autoscaling/describe-warm-pool.rst
${PYSITELIB}/awscli/examples/autoscaling/detach-instances.rst
${PYSITELIB}/awscli/examples/autoscaling/detach-load-balancer-target-groups.rst
${PYSITELIB}/awscli/examples/autoscaling/detach-load-balancers.rst
${PYSITELIB}/awscli/examples/autoscaling/disable-metrics-collection.rst
${PYSITELIB}/awscli/examples/autoscaling/enable-metrics-collection.rst
${PYSITELIB}/awscli/examples/autoscaling/enter-standby.rst
${PYSITELIB}/awscli/examples/autoscaling/execute-policy.rst
${PYSITELIB}/awscli/examples/autoscaling/exit-standby.rst
${PYSITELIB}/awscli/examples/autoscaling/put-lifecycle-hook.rst
${PYSITELIB}/awscli/examples/autoscaling/put-notification-configuration.rst
${PYSITELIB}/awscli/examples/autoscaling/put-scaling-policy.rst
${PYSITELIB}/awscli/examples/autoscaling/put-scheduled-update-group-action.rst
${PYSITELIB}/awscli/examples/autoscaling/put-warm-pool.rst
${PYSITELIB}/awscli/examples/autoscaling/record-lifecycle-action-heartbeat.rst
${PYSITELIB}/awscli/examples/autoscaling/resume-processes.rst
${PYSITELIB}/awscli/examples/autoscaling/set-desired-capacity.rst
${PYSITELIB}/awscli/examples/autoscaling/set-instance-health.rst
${PYSITELIB}/awscli/examples/autoscaling/set-instance-protection.rst
${PYSITELIB}/awscli/examples/autoscaling/start-instance-refresh.rst
${PYSITELIB}/awscli/examples/autoscaling/suspend-processes.rst
${PYSITELIB}/awscli/examples/autoscaling/terminate-instance-in-auto-scaling-group.rst
${PYSITELIB}/awscli/examples/autoscaling/update-auto-scaling-group.rst
${PYSITELIB}/awscli/examples/backup/create-backup-plan.rst
${PYSITELIB}/awscli/examples/backup/create-backup-vault.rst
${PYSITELIB}/awscli/examples/backup/get-backup-plan-from-template.rst
${PYSITELIB}/awscli/examples/backup/get-backup-plan.rst
${PYSITELIB}/awscli/examples/backup/list-backup-jobs.rst
${PYSITELIB}/awscli/examples/batch/cancel-job.rst
${PYSITELIB}/awscli/examples/batch/create-compute-environment.rst
${PYSITELIB}/awscli/examples/batch/create-job-queue.rst
${PYSITELIB}/awscli/examples/batch/delete-compute-environment.rst
${PYSITELIB}/awscli/examples/batch/delete-job-queue.rst
${PYSITELIB}/awscli/examples/batch/deregister-job-definition.rst
${PYSITELIB}/awscli/examples/batch/describe-compute-environments.rst
${PYSITELIB}/awscli/examples/batch/describe-job-definitions.rst
${PYSITELIB}/awscli/examples/batch/describe-job-queues.rst
${PYSITELIB}/awscli/examples/batch/describe-jobs.rst
${PYSITELIB}/awscli/examples/batch/list-jobs.rst
${PYSITELIB}/awscli/examples/batch/register-job-definition.rst
${PYSITELIB}/awscli/examples/batch/submit-job.rst
${PYSITELIB}/awscli/examples/batch/terminate-job.rst
${PYSITELIB}/awscli/examples/batch/update-compute-environment.rst
${PYSITELIB}/awscli/examples/batch/update-job-queue.rst
${PYSITELIB}/awscli/examples/budgets/create-budget.rst
${PYSITELIB}/awscli/examples/budgets/create-notification.rst
${PYSITELIB}/awscli/examples/budgets/create-subscriber.rst
${PYSITELIB}/awscli/examples/budgets/delete-budget.rst
${PYSITELIB}/awscli/examples/budgets/delete-notification.rst
${PYSITELIB}/awscli/examples/budgets/delete-subscriber.rst
${PYSITELIB}/awscli/examples/budgets/describe-budget.rst
${PYSITELIB}/awscli/examples/budgets/describe-budgets.rst
${PYSITELIB}/awscli/examples/budgets/describe-notifications-for-budget.rst
${PYSITELIB}/awscli/examples/budgets/describe-subscribers-for-notification.rst
${PYSITELIB}/awscli/examples/budgets/update-budget.rst
${PYSITELIB}/awscli/examples/budgets/update-notification.rst
${PYSITELIB}/awscli/examples/budgets/update-subscriber.rst
${PYSITELIB}/awscli/examples/ce/get-cost-and-usage.rst
${PYSITELIB}/awscli/examples/ce/get-dimension-values.rst
${PYSITELIB}/awscli/examples/ce/get-reservation-coverage.rst
${PYSITELIB}/awscli/examples/ce/get-reservation-purchase-recommendation.rst
${PYSITELIB}/awscli/examples/ce/get-reservation-utilization.rst
${PYSITELIB}/awscli/examples/ce/get-tags.rst
${PYSITELIB}/awscli/examples/chime/associate-phone-number-with-user.rst
${PYSITELIB}/awscli/examples/chime/associate-phone-numbers-with-voice-connector-group.rst
${PYSITELIB}/awscli/examples/chime/associate-phone-numbers-with-voice-connector.rst
${PYSITELIB}/awscli/examples/chime/associate-signin-delegate-groups-with-account.rst
${PYSITELIB}/awscli/examples/chime/batch-create-room-membership.rst
${PYSITELIB}/awscli/examples/chime/batch-delete-phone-number.rst
${PYSITELIB}/awscli/examples/chime/batch-suspend-user.rst
${PYSITELIB}/awscli/examples/chime/batch-unsuspend-user.rst
${PYSITELIB}/awscli/examples/chime/batch-update-phone-number.rst
${PYSITELIB}/awscli/examples/chime/batch-update-user.rst
${PYSITELIB}/awscli/examples/chime/create-account.rst
${PYSITELIB}/awscli/examples/chime/create-bot.rst
${PYSITELIB}/awscli/examples/chime/create-phone-number-order.rst
${PYSITELIB}/awscli/examples/chime/create-proxy-session.rst
${PYSITELIB}/awscli/examples/chime/create-room-membership.rst
${PYSITELIB}/awscli/examples/chime/create-room.rst
${PYSITELIB}/awscli/examples/chime/create-user.rst
${PYSITELIB}/awscli/examples/chime/create-voice-connector-group.rst
${PYSITELIB}/awscli/examples/chime/create-voice-connector.rst
${PYSITELIB}/awscli/examples/chime/delete-account.rst
${PYSITELIB}/awscli/examples/chime/delete-phone-number.rst
${PYSITELIB}/awscli/examples/chime/delete-proxy-session.rst
${PYSITELIB}/awscli/examples/chime/delete-room-membership.rst
${PYSITELIB}/awscli/examples/chime/delete-room.rst
${PYSITELIB}/awscli/examples/chime/delete-voice-connector-group.rst
${PYSITELIB}/awscli/examples/chime/delete-voice-connector-origination.rst
${PYSITELIB}/awscli/examples/chime/delete-voice-connector-proxy.rst
${PYSITELIB}/awscli/examples/chime/delete-voice-connector-streaming-configuration.rst
${PYSITELIB}/awscli/examples/chime/delete-voice-connector-termination-credentials.rst
${PYSITELIB}/awscli/examples/chime/delete-voice-connector-termination.rst
${PYSITELIB}/awscli/examples/chime/delete-voice-connector.rst
${PYSITELIB}/awscli/examples/chime/disassociate-phone-number-from-user.rst
${PYSITELIB}/awscli/examples/chime/disassociate-phone-numbers-from-voice-connector-group.rst
${PYSITELIB}/awscli/examples/chime/disassociate-phone-numbers-from-voice-connector.rst
${PYSITELIB}/awscli/examples/chime/disassociate-signin-delegate-groups-from-account.rst
${PYSITELIB}/awscli/examples/chime/get-account-settings.rst
${PYSITELIB}/awscli/examples/chime/get-account.rst
${PYSITELIB}/awscli/examples/chime/get-bot.rst
${PYSITELIB}/awscli/examples/chime/get-global-settings.rst
${PYSITELIB}/awscli/examples/chime/get-phone-number-order.rst
${PYSITELIB}/awscli/examples/chime/get-phone-number-settings.rst
${PYSITELIB}/awscli/examples/chime/get-phone-number.rst
${PYSITELIB}/awscli/examples/chime/get-proxy-session.rst
${PYSITELIB}/awscli/examples/chime/get-room.rst
${PYSITELIB}/awscli/examples/chime/get-user-settings.rst
${PYSITELIB}/awscli/examples/chime/get-user.rst
${PYSITELIB}/awscli/examples/chime/get-voice-connector-group.rst
${PYSITELIB}/awscli/examples/chime/get-voice-connector-logging-configuration.rst
${PYSITELIB}/awscli/examples/chime/get-voice-connector-origination.rst
${PYSITELIB}/awscli/examples/chime/get-voice-connector-proxy.rst
${PYSITELIB}/awscli/examples/chime/get-voice-connector-streaming-configuration.rst
${PYSITELIB}/awscli/examples/chime/get-voice-connector-termination-health.rst
${PYSITELIB}/awscli/examples/chime/get-voice-connector-termination.rst
${PYSITELIB}/awscli/examples/chime/get-voice-connector.rst
${PYSITELIB}/awscli/examples/chime/invite-users.rst
${PYSITELIB}/awscli/examples/chime/list-accounts.rst
${PYSITELIB}/awscli/examples/chime/list-bots.rst
${PYSITELIB}/awscli/examples/chime/list-phone-number-orders.rst
${PYSITELIB}/awscli/examples/chime/list-phone-numbers.rst
${PYSITELIB}/awscli/examples/chime/list-proxy-sessions.rst
${PYSITELIB}/awscli/examples/chime/list-room-memberships.rst
${PYSITELIB}/awscli/examples/chime/list-rooms.rst
${PYSITELIB}/awscli/examples/chime/list-users.rst
${PYSITELIB}/awscli/examples/chime/list-voice-connector-groups.rst
${PYSITELIB}/awscli/examples/chime/list-voice-connector-termination-credentials.rst
${PYSITELIB}/awscli/examples/chime/list-voice-connectors.rst
${PYSITELIB}/awscli/examples/chime/logout-user.rst
${PYSITELIB}/awscli/examples/chime/put-voice-connector-logging-configuration.rst
${PYSITELIB}/awscli/examples/chime/put-voice-connector-origination.rst
${PYSITELIB}/awscli/examples/chime/put-voice-connector-proxy.rst
${PYSITELIB}/awscli/examples/chime/put-voice-connector-streaming-configuration.rst
${PYSITELIB}/awscli/examples/chime/put-voice-connector-termination-credentials.rst
${PYSITELIB}/awscli/examples/chime/put-voice-connector-termination.rst
${PYSITELIB}/awscli/examples/chime/regenerate-security-token.rst
${PYSITELIB}/awscli/examples/chime/reset-personal-pin.rst
${PYSITELIB}/awscli/examples/chime/restore-phone-number.rst
${PYSITELIB}/awscli/examples/chime/search-available-phone-numbers.rst
${PYSITELIB}/awscli/examples/chime/update-account-settings.rst
${PYSITELIB}/awscli/examples/chime/update-account.rst
${PYSITELIB}/awscli/examples/chime/update-bot.rst
${PYSITELIB}/awscli/examples/chime/update-global-settings.rst
${PYSITELIB}/awscli/examples/chime/update-phone-number-settings.rst
${PYSITELIB}/awscli/examples/chime/update-phone-number.rst
${PYSITELIB}/awscli/examples/chime/update-proxy-session.rst
${PYSITELIB}/awscli/examples/chime/update-room-membership.rst
${PYSITELIB}/awscli/examples/chime/update-room.rst
${PYSITELIB}/awscli/examples/chime/update-user-settings.rst
${PYSITELIB}/awscli/examples/chime/update-user.rst
${PYSITELIB}/awscli/examples/chime/update-voice-connector-group.rst
${PYSITELIB}/awscli/examples/chime/update-voice-connector.rst
${PYSITELIB}/awscli/examples/cloud9/create-environment-ec2.rst
${PYSITELIB}/awscli/examples/cloud9/create-environment-membership.rst
${PYSITELIB}/awscli/examples/cloud9/delete-environment-membership.rst
${PYSITELIB}/awscli/examples/cloud9/delete-environment.rst
${PYSITELIB}/awscli/examples/cloud9/describe-environment-memberships.rst
${PYSITELIB}/awscli/examples/cloud9/describe-environment-status.rst
${PYSITELIB}/awscli/examples/cloud9/describe-environments.rst
${PYSITELIB}/awscli/examples/cloud9/list-environments.rst
${PYSITELIB}/awscli/examples/cloud9/update-environment-membership.rst
${PYSITELIB}/awscli/examples/cloud9/update-environment.rst
${PYSITELIB}/awscli/examples/cloudcontrol/create-resource.rst
${PYSITELIB}/awscli/examples/cloudcontrol/delete-resource.rst
${PYSITELIB}/awscli/examples/cloudcontrol/get-resource-request-status.rst
${PYSITELIB}/awscli/examples/cloudcontrol/get-resource.rst
${PYSITELIB}/awscli/examples/cloudcontrol/list-resource-requests.rst
${PYSITELIB}/awscli/examples/cloudcontrol/list-resources.rst
${PYSITELIB}/awscli/examples/cloudcontrol/update-resource.rst
${PYSITELIB}/awscli/examples/cloudformation/_deploy_description.rst
${PYSITELIB}/awscli/examples/cloudformation/_package_description.rst
${PYSITELIB}/awscli/examples/cloudformation/activate-type.rst
${PYSITELIB}/awscli/examples/cloudformation/batch-describe-type-configurations.rst
${PYSITELIB}/awscli/examples/cloudformation/cancel-update-stack.rst
${PYSITELIB}/awscli/examples/cloudformation/continue-update-rollback.rst
${PYSITELIB}/awscli/examples/cloudformation/create-change-set.rst
${PYSITELIB}/awscli/examples/cloudformation/create-stack-instances.rst
${PYSITELIB}/awscli/examples/cloudformation/create-stack-set.rst
${PYSITELIB}/awscli/examples/cloudformation/create-stack.rst
${PYSITELIB}/awscli/examples/cloudformation/deactivate-type.rst
${PYSITELIB}/awscli/examples/cloudformation/delete-change-set.rst
${PYSITELIB}/awscli/examples/cloudformation/delete-stack-instances.rst
${PYSITELIB}/awscli/examples/cloudformation/delete-stack-set.rst
${PYSITELIB}/awscli/examples/cloudformation/delete-stack.rst
${PYSITELIB}/awscli/examples/cloudformation/deploy.rst
${PYSITELIB}/awscli/examples/cloudformation/deregister-type.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-account-limits.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-change-set.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-publisher.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-stack-drift-detection-status.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-stack-events.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-stack-instance.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-stack-resource-drifts.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-stack-resource.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-stack-resources.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-stack-set-operation.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-stack-set.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-stacks.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-type-registration.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-type.rst
${PYSITELIB}/awscli/examples/cloudformation/detect-stack-drift.rst
${PYSITELIB}/awscli/examples/cloudformation/detect-stack-resource-drift.rst
${PYSITELIB}/awscli/examples/cloudformation/detect-stack-set-drift.rst
${PYSITELIB}/awscli/examples/cloudformation/estimate-template-cost.rst
${PYSITELIB}/awscli/examples/cloudformation/execute-change-set.rst
${PYSITELIB}/awscli/examples/cloudformation/get-stack-policy.rst
${PYSITELIB}/awscli/examples/cloudformation/get-template-summary.rst
${PYSITELIB}/awscli/examples/cloudformation/get-template.rst
${PYSITELIB}/awscli/examples/cloudformation/list-change-sets.rst
${PYSITELIB}/awscli/examples/cloudformation/list-exports.rst
${PYSITELIB}/awscli/examples/cloudformation/list-imports.rst
${PYSITELIB}/awscli/examples/cloudformation/list-stack-instances.rst
${PYSITELIB}/awscli/examples/cloudformation/list-stack-resources.rst
${PYSITELIB}/awscli/examples/cloudformation/list-stack-set-operation-results.rst
${PYSITELIB}/awscli/examples/cloudformation/list-stack-set-operations.rst
${PYSITELIB}/awscli/examples/cloudformation/list-stack-sets.rst
${PYSITELIB}/awscli/examples/cloudformation/list-stacks.rst
${PYSITELIB}/awscli/examples/cloudformation/list-type-registrations.rst
${PYSITELIB}/awscli/examples/cloudformation/list-type-versions.rst
${PYSITELIB}/awscli/examples/cloudformation/list-types.rst
${PYSITELIB}/awscli/examples/cloudformation/package.rst
${PYSITELIB}/awscli/examples/cloudformation/publish-type.rst
${PYSITELIB}/awscli/examples/cloudformation/register-publisher.rst
${PYSITELIB}/awscli/examples/cloudformation/register-type.rst
${PYSITELIB}/awscli/examples/cloudformation/set-stack-policy.rst
${PYSITELIB}/awscli/examples/cloudformation/set-type-configuration.rst
${PYSITELIB}/awscli/examples/cloudformation/set-type-default-version.rst
${PYSITELIB}/awscli/examples/cloudformation/signal-resource.rst
${PYSITELIB}/awscli/examples/cloudformation/stop-stack-set-operation.rst
${PYSITELIB}/awscli/examples/cloudformation/test-type.rst
${PYSITELIB}/awscli/examples/cloudformation/update-stack-instances.rst
${PYSITELIB}/awscli/examples/cloudformation/update-stack-set.rst
${PYSITELIB}/awscli/examples/cloudformation/update-stack.rst
${PYSITELIB}/awscli/examples/cloudformation/update-termination-protection.rst
${PYSITELIB}/awscli/examples/cloudformation/validate-template.rst
${PYSITELIB}/awscli/examples/cloudformation/wait/change-set-create-complete.rst
${PYSITELIB}/awscli/examples/cloudformation/wait/stack-create-complete.rst
${PYSITELIB}/awscli/examples/cloudformation/wait/stack-delete-complete.rst
${PYSITELIB}/awscli/examples/cloudformation/wait/stack-exists.rst
${PYSITELIB}/awscli/examples/cloudformation/wait/stack-import-complete.rst
${PYSITELIB}/awscli/examples/cloudformation/wait/stack-rollback-complete.rst
${PYSITELIB}/awscli/examples/cloudformation/wait/stack-update-complete.rst
${PYSITELIB}/awscli/examples/cloudformation/wait/type-registration-complete.rst
${PYSITELIB}/awscli/examples/cloudfront/create-cloud-front-origin-access-identity.rst
${PYSITELIB}/awscli/examples/cloudfront/create-distribution-with-tags.rst
${PYSITELIB}/awscli/examples/cloudfront/create-distribution.rst
${PYSITELIB}/awscli/examples/cloudfront/create-field-level-encryption-config.rst
${PYSITELIB}/awscli/examples/cloudfront/create-field-level-encryption-profile.rst
${PYSITELIB}/awscli/examples/cloudfront/create-invalidation.rst
${PYSITELIB}/awscli/examples/cloudfront/create-public-key.rst
${PYSITELIB}/awscli/examples/cloudfront/delete-cloud-front-origin-access-identity.rst
${PYSITELIB}/awscli/examples/cloudfront/delete-distribution.rst
${PYSITELIB}/awscli/examples/cloudfront/delete-field-level-encryption-config.rst
${PYSITELIB}/awscli/examples/cloudfront/delete-field-level-encryption-profile.rst
${PYSITELIB}/awscli/examples/cloudfront/delete-public-key.rst
${PYSITELIB}/awscli/examples/cloudfront/get-cloud-front-origin-access-identity-config.rst
${PYSITELIB}/awscli/examples/cloudfront/get-cloud-front-origin-access-identity.rst
${PYSITELIB}/awscli/examples/cloudfront/get-distribution-config.rst
${PYSITELIB}/awscli/examples/cloudfront/get-distribution.rst
${PYSITELIB}/awscli/examples/cloudfront/get-field-level-encryption-config.rst
${PYSITELIB}/awscli/examples/cloudfront/get-field-level-encryption-profile-config.rst
${PYSITELIB}/awscli/examples/cloudfront/get-field-level-encryption-profile.rst
${PYSITELIB}/awscli/examples/cloudfront/get-field-level-encryption.rst
${PYSITELIB}/awscli/examples/cloudfront/get-invalidation.rst
${PYSITELIB}/awscli/examples/cloudfront/get-public-key-config.rst
${PYSITELIB}/awscli/examples/cloudfront/get-public-key.rst
${PYSITELIB}/awscli/examples/cloudfront/list-cloud-front-origin-access-identities.rst
${PYSITELIB}/awscli/examples/cloudfront/list-distributions.rst
${PYSITELIB}/awscli/examples/cloudfront/list-field-level-encryption-configs.rst
${PYSITELIB}/awscli/examples/cloudfront/list-field-level-encryption-profiles.rst
${PYSITELIB}/awscli/examples/cloudfront/list-invalidations.rst
${PYSITELIB}/awscli/examples/cloudfront/list-public-keys.rst
${PYSITELIB}/awscli/examples/cloudfront/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/cloudfront/sign.rst
${PYSITELIB}/awscli/examples/cloudfront/tag-resource.rst
${PYSITELIB}/awscli/examples/cloudfront/untag-resource.rst
${PYSITELIB}/awscli/examples/cloudfront/update-cloud-front-origin-access-identity.rst
${PYSITELIB}/awscli/examples/cloudfront/update-distribution.rst
${PYSITELIB}/awscli/examples/cloudfront/update-field-level-encryption-config.rst
${PYSITELIB}/awscli/examples/cloudfront/update-field-level-encryption-profile.rst
${PYSITELIB}/awscli/examples/cloudsearchdomain/upload-documents.rst
${PYSITELIB}/awscli/examples/cloudtrail/add-tags.rst
${PYSITELIB}/awscli/examples/cloudtrail/create-subscription.rst
${PYSITELIB}/awscli/examples/cloudtrail/create-trail.rst
${PYSITELIB}/awscli/examples/cloudtrail/delete-trail.rst
${PYSITELIB}/awscli/examples/cloudtrail/describe-trails.rst
${PYSITELIB}/awscli/examples/cloudtrail/get-event-selectors.rst
${PYSITELIB}/awscli/examples/cloudtrail/get-trail-status.rst
${PYSITELIB}/awscli/examples/cloudtrail/list-public-keys.rst
${PYSITELIB}/awscli/examples/cloudtrail/list-tags.rst
${PYSITELIB}/awscli/examples/cloudtrail/lookup-events.rst
${PYSITELIB}/awscli/examples/cloudtrail/put-event-selectors.rst
${PYSITELIB}/awscli/examples/cloudtrail/remove-tags.rst
${PYSITELIB}/awscli/examples/cloudtrail/start-logging.rst
${PYSITELIB}/awscli/examples/cloudtrail/stop-logging.rst
${PYSITELIB}/awscli/examples/cloudtrail/update-subscription.rst
${PYSITELIB}/awscli/examples/cloudtrail/update-trail.rst
${PYSITELIB}/awscli/examples/cloudtrail/validate-logs.rst
${PYSITELIB}/awscli/examples/cloudwatch/delete-alarms.rst
${PYSITELIB}/awscli/examples/cloudwatch/describe-alarm-history.rst
${PYSITELIB}/awscli/examples/cloudwatch/describe-alarms-for-metric.rst
${PYSITELIB}/awscli/examples/cloudwatch/describe-alarms.rst
${PYSITELIB}/awscli/examples/cloudwatch/disable-alarm-actions.rst
${PYSITELIB}/awscli/examples/cloudwatch/enable-alarm-actions.rst
${PYSITELIB}/awscli/examples/cloudwatch/get-metric-statistics.rst
${PYSITELIB}/awscli/examples/cloudwatch/list-metrics.rst
${PYSITELIB}/awscli/examples/cloudwatch/put-metric-alarm.rst
${PYSITELIB}/awscli/examples/cloudwatch/put-metric-data.rst
${PYSITELIB}/awscli/examples/cloudwatch/set-alarm-state.rst
${PYSITELIB}/awscli/examples/codeartifact/associate-external-connection.rst
${PYSITELIB}/awscli/examples/codeartifact/copy-package-versions.rst
${PYSITELIB}/awscli/examples/codeartifact/create-domain.rst
${PYSITELIB}/awscli/examples/codeartifact/create-repository.rst
${PYSITELIB}/awscli/examples/codeartifact/delete-domain-permissions-policy.rst
${PYSITELIB}/awscli/examples/codeartifact/delete-domain.rst
${PYSITELIB}/awscli/examples/codeartifact/delete-package-versions.rst
${PYSITELIB}/awscli/examples/codeartifact/delete-repository-permissions-policy.rst
${PYSITELIB}/awscli/examples/codeartifact/delete-repository.rst
${PYSITELIB}/awscli/examples/codeartifact/describe-domain.rst
${PYSITELIB}/awscli/examples/codeartifact/describe-repository.rst
${PYSITELIB}/awscli/examples/codeartifact/disassociate-external-connection.rst
${PYSITELIB}/awscli/examples/codeartifact/dispose-package-versions.rst
${PYSITELIB}/awscli/examples/codeartifact/get-authorization-token.rst
${PYSITELIB}/awscli/examples/codeartifact/get-domain-permissions-policy.rst
${PYSITELIB}/awscli/examples/codeartifact/get-package-version-asset.rst
${PYSITELIB}/awscli/examples/codeartifact/get-package-version-readme.rst
${PYSITELIB}/awscli/examples/codeartifact/get-repository-endpoint.rst
${PYSITELIB}/awscli/examples/codeartifact/get-repository-permissions-policy.rst
${PYSITELIB}/awscli/examples/codeartifact/list-domains.rst
${PYSITELIB}/awscli/examples/codeartifact/list-package-version-assets.rst
${PYSITELIB}/awscli/examples/codeartifact/list-package-version-dependencies.rst
${PYSITELIB}/awscli/examples/codeartifact/list-package-versions.rst
${PYSITELIB}/awscli/examples/codeartifact/list-packages.rst
${PYSITELIB}/awscli/examples/codeartifact/list-repositories-in-domain.rst
${PYSITELIB}/awscli/examples/codeartifact/list-repositories.rst
${PYSITELIB}/awscli/examples/codeartifact/login.rst
${PYSITELIB}/awscli/examples/codeartifact/put-domain-permissions-policy.rst
${PYSITELIB}/awscli/examples/codeartifact/put-repository-permissions-policy.rst
${PYSITELIB}/awscli/examples/codeartifact/update-package-versions-status.rst
${PYSITELIB}/awscli/examples/codeartifact/update-repository.rst
${PYSITELIB}/awscli/examples/codebuild/batch-delete-builds.rst
${PYSITELIB}/awscli/examples/codebuild/batch-get-build-batches.rst
${PYSITELIB}/awscli/examples/codebuild/batch-get-builds.rst
${PYSITELIB}/awscli/examples/codebuild/batch-get-projects.rst
${PYSITELIB}/awscli/examples/codebuild/batch-get-report-groups.rst
${PYSITELIB}/awscli/examples/codebuild/batch-get-reports.rst
${PYSITELIB}/awscli/examples/codebuild/create-project.rst
${PYSITELIB}/awscli/examples/codebuild/create-report-group.rst
${PYSITELIB}/awscli/examples/codebuild/create-webhook.rst
${PYSITELIB}/awscli/examples/codebuild/delete-build-batch.rst
${PYSITELIB}/awscli/examples/codebuild/delete-project.rst
${PYSITELIB}/awscli/examples/codebuild/delete-report-group.rst
${PYSITELIB}/awscli/examples/codebuild/delete-report.rst
${PYSITELIB}/awscli/examples/codebuild/delete-source-credentials.rst
${PYSITELIB}/awscli/examples/codebuild/delete-webhook.rst
${PYSITELIB}/awscli/examples/codebuild/describe-code-coverages.rst
${PYSITELIB}/awscli/examples/codebuild/describe-test-cases.rst
${PYSITELIB}/awscli/examples/codebuild/import-source-credentials.rst
${PYSITELIB}/awscli/examples/codebuild/invalidate-project-cache.rst
${PYSITELIB}/awscli/examples/codebuild/list-build-batches-for-project.rst
${PYSITELIB}/awscli/examples/codebuild/list-build-batches.rst
${PYSITELIB}/awscli/examples/codebuild/list-builds-for-project.rst
${PYSITELIB}/awscli/examples/codebuild/list-builds.rst
${PYSITELIB}/awscli/examples/codebuild/list-curated-environment-images.rst
${PYSITELIB}/awscli/examples/codebuild/list-projects.rst
${PYSITELIB}/awscli/examples/codebuild/list-report-groups.rst
${PYSITELIB}/awscli/examples/codebuild/list-reports-for-report-group.rst
${PYSITELIB}/awscli/examples/codebuild/list-reports.rst
${PYSITELIB}/awscli/examples/codebuild/list-shared-projects.rst
${PYSITELIB}/awscli/examples/codebuild/list-shared-report-groups.rst
${PYSITELIB}/awscli/examples/codebuild/list-source-credentials.rst
${PYSITELIB}/awscli/examples/codebuild/retry-build-batch.rst
${PYSITELIB}/awscli/examples/codebuild/retry-build.rst
${PYSITELIB}/awscli/examples/codebuild/start-build-batch.rst
${PYSITELIB}/awscli/examples/codebuild/start-build.rst
${PYSITELIB}/awscli/examples/codebuild/stop-build-batch.rst
${PYSITELIB}/awscli/examples/codebuild/stop-build.rst
${PYSITELIB}/awscli/examples/codebuild/update-project.rst
${PYSITELIB}/awscli/examples/codebuild/update-report-group.rst
${PYSITELIB}/awscli/examples/codebuild/update-webhook.rst
${PYSITELIB}/awscli/examples/codecommit/associate-approval-rule-template-with-repository.rst
${PYSITELIB}/awscli/examples/codecommit/batch-associate-approval-rule-template-with-repositories.rst
${PYSITELIB}/awscli/examples/codecommit/batch-describe-merge-conflicts.rst
${PYSITELIB}/awscli/examples/codecommit/batch-disassociate-approval-rule-template-from-repositories.rst
${PYSITELIB}/awscli/examples/codecommit/batch-get-commits.rst
${PYSITELIB}/awscli/examples/codecommit/batch-get-repositories.rst
${PYSITELIB}/awscli/examples/codecommit/create-approval-rule-template.rst
${PYSITELIB}/awscli/examples/codecommit/create-branch.rst
${PYSITELIB}/awscli/examples/codecommit/create-commit.rst
${PYSITELIB}/awscli/examples/codecommit/create-pull-request-approval-rule.rst
${PYSITELIB}/awscli/examples/codecommit/create-pull-request.rst
${PYSITELIB}/awscli/examples/codecommit/create-repository.rst
${PYSITELIB}/awscli/examples/codecommit/create-unreferenced-merge-commit.rst
${PYSITELIB}/awscli/examples/codecommit/credential-helper.rst
${PYSITELIB}/awscli/examples/codecommit/delete-approval-rule-template.rst
${PYSITELIB}/awscli/examples/codecommit/delete-branch.rst
${PYSITELIB}/awscli/examples/codecommit/delete-comment-content.rst
${PYSITELIB}/awscli/examples/codecommit/delete-file.rst
${PYSITELIB}/awscli/examples/codecommit/delete-pull-request-approval-rule.rst
${PYSITELIB}/awscli/examples/codecommit/delete-repository.rst
${PYSITELIB}/awscli/examples/codecommit/describe-merge-conflicts.rst
${PYSITELIB}/awscli/examples/codecommit/describe-pull-request-events.rst
${PYSITELIB}/awscli/examples/codecommit/disassociate-approval-rule-template-from-repository.rst
${PYSITELIB}/awscli/examples/codecommit/evaluate-pull-request-approval-rules.rst
${PYSITELIB}/awscli/examples/codecommit/get-approval-rule-template.rst
${PYSITELIB}/awscli/examples/codecommit/get-blob.rst
${PYSITELIB}/awscli/examples/codecommit/get-branch.rst
${PYSITELIB}/awscli/examples/codecommit/get-comment-reactions.rst
${PYSITELIB}/awscli/examples/codecommit/get-comment.rst
${PYSITELIB}/awscli/examples/codecommit/get-comments-for-compared-commit.rst
${PYSITELIB}/awscli/examples/codecommit/get-comments-for-pull-request.rst
${PYSITELIB}/awscli/examples/codecommit/get-commit.rst
${PYSITELIB}/awscli/examples/codecommit/get-differences.rst
${PYSITELIB}/awscli/examples/codecommit/get-file.rst
${PYSITELIB}/awscli/examples/codecommit/get-folder.rst
${PYSITELIB}/awscli/examples/codecommit/get-merge-commit.rst
${PYSITELIB}/awscli/examples/codecommit/get-merge-conflicts.rst
${PYSITELIB}/awscli/examples/codecommit/get-merge-options.rst
${PYSITELIB}/awscli/examples/codecommit/get-pull-request-approval-states.rst
${PYSITELIB}/awscli/examples/codecommit/get-pull-request-override-state.rst
${PYSITELIB}/awscli/examples/codecommit/get-pull-request.rst
${PYSITELIB}/awscli/examples/codecommit/get-repository-triggers.rst
${PYSITELIB}/awscli/examples/codecommit/get-repository.rst
${PYSITELIB}/awscli/examples/codecommit/list-approval-rule-templates.rst
${PYSITELIB}/awscli/examples/codecommit/list-associated-approval-rule-templates-for-repository.rst
${PYSITELIB}/awscli/examples/codecommit/list-branches.rst
${PYSITELIB}/awscli/examples/codecommit/list-pull-requests.rst
${PYSITELIB}/awscli/examples/codecommit/list-repositories-for-approval-rule-template.rst
${PYSITELIB}/awscli/examples/codecommit/list-repositories.rst
${PYSITELIB}/awscli/examples/codecommit/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/codecommit/merge-branches-by-fast-forward.rst
${PYSITELIB}/awscli/examples/codecommit/merge-branches-by-squash.rst
${PYSITELIB}/awscli/examples/codecommit/merge-branches-by-three-way.rst
${PYSITELIB}/awscli/examples/codecommit/merge-pull-request-by-fast-forward.rst
${PYSITELIB}/awscli/examples/codecommit/merge-pull-request-by-squash.rst
${PYSITELIB}/awscli/examples/codecommit/merge-pull-request-by-three-way.rst
${PYSITELIB}/awscli/examples/codecommit/override-pull-request-approval-rules.rst
${PYSITELIB}/awscli/examples/codecommit/post-comment-for-compared-commit.rst
${PYSITELIB}/awscli/examples/codecommit/post-comment-for-pull-request.rst
${PYSITELIB}/awscli/examples/codecommit/post-comment-reply.rst
${PYSITELIB}/awscli/examples/codecommit/put-comment-reaction.rst
${PYSITELIB}/awscli/examples/codecommit/put-file.rst
${PYSITELIB}/awscli/examples/codecommit/put-repository-triggers.rst
${PYSITELIB}/awscli/examples/codecommit/tag-resource.rst
${PYSITELIB}/awscli/examples/codecommit/test-repository-triggers.rst
${PYSITELIB}/awscli/examples/codecommit/untag-resource.rst
${PYSITELIB}/awscli/examples/codecommit/update-approval-rule-template-content.rst
${PYSITELIB}/awscli/examples/codecommit/update-approval-rule-template-description.rst
${PYSITELIB}/awscli/examples/codecommit/update-approval-rule-template-name.rst
${PYSITELIB}/awscli/examples/codecommit/update-comment.rst
${PYSITELIB}/awscli/examples/codecommit/update-default-branch.rst
${PYSITELIB}/awscli/examples/codecommit/update-pull-request-approval-rule-content.rst
${PYSITELIB}/awscli/examples/codecommit/update-pull-request-approval-state.rst
${PYSITELIB}/awscli/examples/codecommit/update-pull-request-description.rst
${PYSITELIB}/awscli/examples/codecommit/update-pull-request-status.rst
${PYSITELIB}/awscli/examples/codecommit/update-pull-request-title.rst
${PYSITELIB}/awscli/examples/codecommit/update-repository-description.rst
${PYSITELIB}/awscli/examples/codecommit/update-repository-name.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/associate-repository.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/create-code-review.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/describe-code-review.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/describe-recommendation-feedback.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/describe-repository-association.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/disassociate-repository.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/list-code-reviews.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/list-recommendation-feedback.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/list-recommendations.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/list-repository-associations.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/put-recommendation-feedback.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/tag-resource.rst
${PYSITELIB}/awscli/examples/codeguru-reviewer/untag-resource.rst
${PYSITELIB}/awscli/examples/codepipeline/acknowledge-job.rst
${PYSITELIB}/awscli/examples/codepipeline/create-custom-action-type.rst
${PYSITELIB}/awscli/examples/codepipeline/create-pipeline.rst
${PYSITELIB}/awscli/examples/codepipeline/delete-custom-action-type.rst
${PYSITELIB}/awscli/examples/codepipeline/delete-pipeline.rst
${PYSITELIB}/awscli/examples/codepipeline/delete-webhook.rst
${PYSITELIB}/awscli/examples/codepipeline/deregister-webhook-with-third-party.rst
${PYSITELIB}/awscli/examples/codepipeline/disable-stage-transition.rst
${PYSITELIB}/awscli/examples/codepipeline/enable-stage-transition.rst
${PYSITELIB}/awscli/examples/codepipeline/get-job-details.rst
${PYSITELIB}/awscli/examples/codepipeline/get-pipeline-state.rst
${PYSITELIB}/awscli/examples/codepipeline/get-pipeline.rst
${PYSITELIB}/awscli/examples/codepipeline/list-action-executions.rst
${PYSITELIB}/awscli/examples/codepipeline/list-action-types.rst
${PYSITELIB}/awscli/examples/codepipeline/list-pipeline-executions.rst
${PYSITELIB}/awscli/examples/codepipeline/list-pipelines.rst
${PYSITELIB}/awscli/examples/codepipeline/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/codepipeline/list-webhooks.rst
${PYSITELIB}/awscli/examples/codepipeline/poll-for-jobs.rst
${PYSITELIB}/awscli/examples/codepipeline/put-webhook.rst
${PYSITELIB}/awscli/examples/codepipeline/retry-stage-execution.rst
${PYSITELIB}/awscli/examples/codepipeline/start-pipeline-execution.rst
${PYSITELIB}/awscli/examples/codepipeline/stop-pipeline-execution.rst
${PYSITELIB}/awscli/examples/codepipeline/tag-resource.rst
${PYSITELIB}/awscli/examples/codepipeline/untag-resource.rst
${PYSITELIB}/awscli/examples/codepipeline/update-pipeline.rst
${PYSITELIB}/awscli/examples/codestar-connections/create-connection.rst
${PYSITELIB}/awscli/examples/codestar-connections/create-host.rst
${PYSITELIB}/awscli/examples/codestar-connections/delete-connection.rst
${PYSITELIB}/awscli/examples/codestar-connections/delete-host.rst
${PYSITELIB}/awscli/examples/codestar-connections/get-connection.rst
${PYSITELIB}/awscli/examples/codestar-connections/get-host.rst
${PYSITELIB}/awscli/examples/codestar-connections/list-connections.rst
${PYSITELIB}/awscli/examples/codestar-connections/list-hosts.rst
${PYSITELIB}/awscli/examples/codestar-connections/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/codestar-connections/tag-resource.rst
${PYSITELIB}/awscli/examples/codestar-connections/untag-resource.rst
${PYSITELIB}/awscli/examples/codestar-notifications/create-notification-rule.rst
${PYSITELIB}/awscli/examples/codestar-notifications/delete-notification-rule.rst
${PYSITELIB}/awscli/examples/codestar-notifications/delete-target.rst
${PYSITELIB}/awscli/examples/codestar-notifications/describe-notification-rule.rst
${PYSITELIB}/awscli/examples/codestar-notifications/list-event-types.rst
${PYSITELIB}/awscli/examples/codestar-notifications/list-notification-rules.rst
${PYSITELIB}/awscli/examples/codestar-notifications/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/codestar-notifications/list-targets.rst
${PYSITELIB}/awscli/examples/codestar-notifications/subscribe.rst
${PYSITELIB}/awscli/examples/codestar-notifications/tag-resource.rst
${PYSITELIB}/awscli/examples/codestar-notifications/unsubscribe.rst
${PYSITELIB}/awscli/examples/codestar-notifications/untag-resource.rst
${PYSITELIB}/awscli/examples/codestar-notifications/update-notification-rule.rst
${PYSITELIB}/awscli/examples/codestar/associate-team-member.rst
${PYSITELIB}/awscli/examples/codestar/create-project.rst
${PYSITELIB}/awscli/examples/codestar/create-user-profile.rst
${PYSITELIB}/awscli/examples/codestar/delete-project.rst
${PYSITELIB}/awscli/examples/codestar/delete-user-profile.rst
${PYSITELIB}/awscli/examples/codestar/describe-project.rst
${PYSITELIB}/awscli/examples/codestar/describe-user-profile.rst
${PYSITELIB}/awscli/examples/codestar/disassociate-team-member.rst
${PYSITELIB}/awscli/examples/codestar/list-projects.rst
${PYSITELIB}/awscli/examples/codestar/list-resources.rst
${PYSITELIB}/awscli/examples/codestar/list-tags-for-project.rst
${PYSITELIB}/awscli/examples/codestar/list-team-members.rst
${PYSITELIB}/awscli/examples/codestar/list-user-profiles.rst
${PYSITELIB}/awscli/examples/codestar/tag-project.rst
${PYSITELIB}/awscli/examples/codestar/untag-project.rst
${PYSITELIB}/awscli/examples/codestar/update-project.rst
${PYSITELIB}/awscli/examples/codestar/update-team-member.rst
${PYSITELIB}/awscli/examples/codestar/update-user-profile.rst
${PYSITELIB}/awscli/examples/cognito-identity/create-identity-pool.rst
${PYSITELIB}/awscli/examples/cognito-identity/delete-identities.rst
${PYSITELIB}/awscli/examples/cognito-identity/delete-identity-pool.rst
${PYSITELIB}/awscli/examples/cognito-identity/describe-identity-pool.rst
${PYSITELIB}/awscli/examples/cognito-identity/get-identity-pool-roles.rst
${PYSITELIB}/awscli/examples/cognito-identity/list-identity-pools.rst
${PYSITELIB}/awscli/examples/cognito-identity/set-identity-pool-roles.rst
${PYSITELIB}/awscli/examples/cognito-identity/update-identity-pool.rst
${PYSITELIB}/awscli/examples/cognito-idp/add-custom-attributes.rst
${PYSITELIB}/awscli/examples/cognito-idp/admim-disable-user.rst
${PYSITELIB}/awscli/examples/cognito-idp/admim-enable-user.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-add-user-to-group.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-confirm-sign-up.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-create-user.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-delete-user-attributes.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-delete-user.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-forget-device.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-get-device.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-get-user.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-initiate-auth.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-list-devices.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-list-groups-for-user.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-list-user-auth-events.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-remove-user-from-group.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-reset-user-password.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-set-user-mfa-preference.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-set-user-settings.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-update-auth-event-feedback.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-update-device-status.rst
${PYSITELIB}/awscli/examples/cognito-idp/admin-update-user-attributes.rst
${PYSITELIB}/awscli/examples/cognito-idp/change-password.rst
${PYSITELIB}/awscli/examples/cognito-idp/confirm-forgot-password.rst
${PYSITELIB}/awscli/examples/cognito-idp/confirm-sign-up.rst
${PYSITELIB}/awscli/examples/cognito-idp/create-group.rst
${PYSITELIB}/awscli/examples/cognito-idp/create-user-import-job.rst
${PYSITELIB}/awscli/examples/cognito-idp/create-user-pool-client.rst
${PYSITELIB}/awscli/examples/cognito-idp/create-user-pool-domain.rst
${PYSITELIB}/awscli/examples/cognito-idp/create-user-pool.rst
${PYSITELIB}/awscli/examples/cognito-idp/delete-group.rst
${PYSITELIB}/awscli/examples/cognito-idp/delete-identity-provider.rst
${PYSITELIB}/awscli/examples/cognito-idp/delete-resource-server.rst
${PYSITELIB}/awscli/examples/cognito-idp/delete-user-attributes.rst
${PYSITELIB}/awscli/examples/cognito-idp/delete-user-pool-client.rst
${PYSITELIB}/awscli/examples/cognito-idp/delete-user-pool-domain.rst
${PYSITELIB}/awscli/examples/cognito-idp/delete-user-pool.rst
${PYSITELIB}/awscli/examples/cognito-idp/delete-user.rst
${PYSITELIB}/awscli/examples/cognito-idp/describe-identity-provider.rst
${PYSITELIB}/awscli/examples/cognito-idp/describe-resource-server.rst
${PYSITELIB}/awscli/examples/cognito-idp/describe-risk-configuration.rst
${PYSITELIB}/awscli/examples/cognito-idp/describe-user-import-job.rst
${PYSITELIB}/awscli/examples/cognito-idp/describe-user-pool-client.rst
${PYSITELIB}/awscli/examples/cognito-idp/describe-user-pool-domain.rst
${PYSITELIB}/awscli/examples/cognito-idp/describe-user-pool.rst
${PYSITELIB}/awscli/examples/cognito-idp/forget-device.rst
${PYSITELIB}/awscli/examples/cognito-idp/forgot-password.rst
${PYSITELIB}/awscli/examples/cognito-idp/get-csv-header.rst
${PYSITELIB}/awscli/examples/cognito-idp/get-group.rst
${PYSITELIB}/awscli/examples/cognito-idp/get-signing-certificate.rst
${PYSITELIB}/awscli/examples/cognito-idp/get-ui-customization.rst
${PYSITELIB}/awscli/examples/cognito-idp/list-user-import-jobs.rst
${PYSITELIB}/awscli/examples/cognito-idp/list-user-pools.rst
${PYSITELIB}/awscli/examples/cognito-idp/list-users-in-group.rst
${PYSITELIB}/awscli/examples/cognito-idp/list-users.rst
${PYSITELIB}/awscli/examples/cognito-idp/resend-confirmation-code.rst
${PYSITELIB}/awscli/examples/cognito-idp/respond-to-auth-challenge.rst
${PYSITELIB}/awscli/examples/cognito-idp/set-risk-configuration.rst
${PYSITELIB}/awscli/examples/cognito-idp/set-ui-customization.rst
${PYSITELIB}/awscli/examples/cognito-idp/set-user-mfa-preference.rst
${PYSITELIB}/awscli/examples/cognito-idp/set-user-settings.rst
${PYSITELIB}/awscli/examples/cognito-idp/sign-up.rst
${PYSITELIB}/awscli/examples/cognito-idp/start-user-import-job.rst
${PYSITELIB}/awscli/examples/cognito-idp/stop-user-import-job.rst
${PYSITELIB}/awscli/examples/cognito-idp/update-auth-event-feedback.rst
${PYSITELIB}/awscli/examples/cognito-idp/update-device-status.rst
${PYSITELIB}/awscli/examples/cognito-idp/update-group.rst
${PYSITELIB}/awscli/examples/cognito-idp/update-resource-server.rst
${PYSITELIB}/awscli/examples/cognito-idp/update-user-attributes.rst
${PYSITELIB}/awscli/examples/cognito-idp/update-user-pool-client.rst
${PYSITELIB}/awscli/examples/cognito-idp/update-user-pool.rst
${PYSITELIB}/awscli/examples/comprehendmedical/describe-entities-detection-v2-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/describe-icd10-cm-inference-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/describe-phi-detection-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/describe-rx-norm-inference-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/describe-snomedct-inference-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/detect-entities-v2.rst
${PYSITELIB}/awscli/examples/comprehendmedical/detect-phi.rst
${PYSITELIB}/awscli/examples/comprehendmedical/infer-icd10-cm.rst
${PYSITELIB}/awscli/examples/comprehendmedical/infer-rx-norm.rst
${PYSITELIB}/awscli/examples/comprehendmedical/infer-snomedct.rst
${PYSITELIB}/awscli/examples/comprehendmedical/list-entities-detection-v2-jobs.rst
${PYSITELIB}/awscli/examples/comprehendmedical/list-icd10-cm-inference-jobs.rst
${PYSITELIB}/awscli/examples/comprehendmedical/list-phi-detection-jobs.rst
${PYSITELIB}/awscli/examples/comprehendmedical/list-rx-norm-inference-jobs.rst
${PYSITELIB}/awscli/examples/comprehendmedical/list-snomedct-inference-jobs.rst
${PYSITELIB}/awscli/examples/comprehendmedical/start-entities-detection-v2-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/start-icd10-cm-inference-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/start-phi-detection-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/start-rx-norm-inference-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/start-snomedct-inference-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/stop-entities-detection-v2-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/stop-icd10-cm-inference-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/stop-phi-detection-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/stop-rx-norm-inference-job.rst
${PYSITELIB}/awscli/examples/comprehendmedical/stop-snomedct-inference-job.rst
${PYSITELIB}/awscli/examples/configservice/delete-config-rule.rst
${PYSITELIB}/awscli/examples/configservice/delete-delivery-channel.rst
${PYSITELIB}/awscli/examples/configservice/delete-evaluation-results.rst
${PYSITELIB}/awscli/examples/configservice/deliver-config-snapshot.rst
${PYSITELIB}/awscli/examples/configservice/describe-compliance-by-config-rule.rst
${PYSITELIB}/awscli/examples/configservice/describe-compliance-by-resource.rst
${PYSITELIB}/awscli/examples/configservice/describe-config-rule-evaluation-status.rst
${PYSITELIB}/awscli/examples/configservice/describe-config-rules.rst
${PYSITELIB}/awscli/examples/configservice/describe-configuration-recorder-status.rst
${PYSITELIB}/awscli/examples/configservice/describe-configuration-recorders.rst
${PYSITELIB}/awscli/examples/configservice/describe-delivery-channel-status.rst
${PYSITELIB}/awscli/examples/configservice/describe-delivery-channels.rst
${PYSITELIB}/awscli/examples/configservice/get-compliance-details-by-config-rule.rst
${PYSITELIB}/awscli/examples/configservice/get-compliance-details-by-resource.rst
${PYSITELIB}/awscli/examples/configservice/get-compliance-summary-by-config-rule.rst
${PYSITELIB}/awscli/examples/configservice/get-compliance-summary-by-resource-type.rst
${PYSITELIB}/awscli/examples/configservice/get-resource-config-history.rst
${PYSITELIB}/awscli/examples/configservice/get-status.rst
${PYSITELIB}/awscli/examples/configservice/list-discovered-resources.rst
${PYSITELIB}/awscli/examples/configservice/put-config-rule.rst
${PYSITELIB}/awscli/examples/configservice/put-configuration-recorder.rst
${PYSITELIB}/awscli/examples/configservice/put-delivery-channel.rst
${PYSITELIB}/awscli/examples/configservice/start-config-rules-evaluation.rst
${PYSITELIB}/awscli/examples/configservice/start-configuration-recorder.rst
${PYSITELIB}/awscli/examples/configservice/stop-configuration-recorder.rst
${PYSITELIB}/awscli/examples/configservice/subscribe.rst
${PYSITELIB}/awscli/examples/configure/_description.rst
${PYSITELIB}/awscli/examples/configure/add-model.rst
${PYSITELIB}/awscli/examples/configure/get/_description.rst
${PYSITELIB}/awscli/examples/configure/get/_examples.rst
${PYSITELIB}/awscli/examples/configure/set/_description.rst
${PYSITELIB}/awscli/examples/configure/set/_examples.rst
${PYSITELIB}/awscli/examples/connect/create-user.rst
${PYSITELIB}/awscli/examples/connect/delete-user.rst
${PYSITELIB}/awscli/examples/connect/describe-user-hierarchy-group.rst
${PYSITELIB}/awscli/examples/connect/describe-user-hierarchy-structure.rst
${PYSITELIB}/awscli/examples/connect/describe-user.rst
${PYSITELIB}/awscli/examples/connect/get-contact-attributes.rst
${PYSITELIB}/awscli/examples/connect/list-contact-flows.rst
${PYSITELIB}/awscli/examples/connect/list-hours-of-operations.rst
${PYSITELIB}/awscli/examples/connect/list-phone-numbers.rst
${PYSITELIB}/awscli/examples/connect/list-queues.rst
${PYSITELIB}/awscli/examples/connect/list-routing-profiles.rst
${PYSITELIB}/awscli/examples/connect/list-security-profiles.rst
${PYSITELIB}/awscli/examples/connect/list-user-hierarchy-groups.rst
${PYSITELIB}/awscli/examples/connect/list-users.rst
${PYSITELIB}/awscli/examples/connect/update-contact-attributes.rst
${PYSITELIB}/awscli/examples/connect/update-user-hierarchy.rst
${PYSITELIB}/awscli/examples/connect/update-user-identity-info.rst
${PYSITELIB}/awscli/examples/connect/update-user-phone-config.rst
${PYSITELIB}/awscli/examples/connect/update-user-routing-profile.rst
${PYSITELIB}/awscli/examples/connect/update-user-security-profiles.rst
${PYSITELIB}/awscli/examples/cur/delete-report-definition.rst
${PYSITELIB}/awscli/examples/cur/describe-report-definitions.rst
${PYSITELIB}/awscli/examples/cur/put-report-definition.rst
${PYSITELIB}/awscli/examples/datapipeline/activate-pipeline.rst
${PYSITELIB}/awscli/examples/datapipeline/add-tags.rst
${PYSITELIB}/awscli/examples/datapipeline/create-pipeline.rst
${PYSITELIB}/awscli/examples/datapipeline/deactivate-pipeline.rst
${PYSITELIB}/awscli/examples/datapipeline/delete-pipeline.rst
${PYSITELIB}/awscli/examples/datapipeline/describe-pipelines.rst
${PYSITELIB}/awscli/examples/datapipeline/get-pipeline-definition.rst
${PYSITELIB}/awscli/examples/datapipeline/list-pipelines.rst
${PYSITELIB}/awscli/examples/datapipeline/list-runs.rst
${PYSITELIB}/awscli/examples/datapipeline/put-pipeline-definition.rst
${PYSITELIB}/awscli/examples/datapipeline/remove-tags.rst
${PYSITELIB}/awscli/examples/dax/create-cluster.rst
${PYSITELIB}/awscli/examples/dax/create-parameter-group.rst
${PYSITELIB}/awscli/examples/dax/create-subnet-group.rst
${PYSITELIB}/awscli/examples/dax/decrease-replication-factor.rst
${PYSITELIB}/awscli/examples/dax/delete-cluster.rst
${PYSITELIB}/awscli/examples/dax/delete-parameter-group.rst
${PYSITELIB}/awscli/examples/dax/delete-subnet-group.rst
${PYSITELIB}/awscli/examples/dax/describe-clusters.rst
${PYSITELIB}/awscli/examples/dax/describe-default-parameters.rst
${PYSITELIB}/awscli/examples/dax/describe-events.rst
${PYSITELIB}/awscli/examples/dax/describe-parameter-groups.rst
${PYSITELIB}/awscli/examples/dax/describe-parameters.rst
${PYSITELIB}/awscli/examples/dax/describe-subnet-groups.rst
${PYSITELIB}/awscli/examples/dax/increase-replication-factor.rst
${PYSITELIB}/awscli/examples/dax/list-tags.rst
${PYSITELIB}/awscli/examples/dax/tag-resource.rst
${PYSITELIB}/awscli/examples/dax/untag-resource.rst
${PYSITELIB}/awscli/examples/deploy/add-tags-to-on-premises-instances.rst
${PYSITELIB}/awscli/examples/deploy/batch-get-application-revisions.rst
${PYSITELIB}/awscli/examples/deploy/batch-get-applications.rst
${PYSITELIB}/awscli/examples/deploy/batch-get-deployment-groups.rst
${PYSITELIB}/awscli/examples/deploy/batch-get-deployment-targets.rst
${PYSITELIB}/awscli/examples/deploy/batch-get-deployments.rst
${PYSITELIB}/awscli/examples/deploy/batch-get-on-premises-instances.rst
${PYSITELIB}/awscli/examples/deploy/continue-deployment.rst
${PYSITELIB}/awscli/examples/deploy/create-application.rst
${PYSITELIB}/awscli/examples/deploy/create-deployment-config.rst
${PYSITELIB}/awscli/examples/deploy/create-deployment-group.rst
${PYSITELIB}/awscli/examples/deploy/create-deployment.rst
${PYSITELIB}/awscli/examples/deploy/delete-application.rst
${PYSITELIB}/awscli/examples/deploy/delete-deployment-config.rst
${PYSITELIB}/awscli/examples/deploy/delete-deployment-group.rst
${PYSITELIB}/awscli/examples/deploy/delete-git-hub-account-token.rst
${PYSITELIB}/awscli/examples/deploy/deregister-on-premises-instance.rst
${PYSITELIB}/awscli/examples/deploy/deregister.rst
${PYSITELIB}/awscli/examples/deploy/get-application-revision.rst
${PYSITELIB}/awscli/examples/deploy/get-application.rst
${PYSITELIB}/awscli/examples/deploy/get-deployment-config.rst
${PYSITELIB}/awscli/examples/deploy/get-deployment-group.rst
${PYSITELIB}/awscli/examples/deploy/get-deployment-instance.rst
${PYSITELIB}/awscli/examples/deploy/get-deployment-target.rst
${PYSITELIB}/awscli/examples/deploy/get-deployment.rst
${PYSITELIB}/awscli/examples/deploy/get-on-premises-instance.rst
${PYSITELIB}/awscli/examples/deploy/install.rst
${PYSITELIB}/awscli/examples/deploy/list-application-revisions.rst
${PYSITELIB}/awscli/examples/deploy/list-applications.rst
${PYSITELIB}/awscli/examples/deploy/list-deployment-configs.rst
${PYSITELIB}/awscli/examples/deploy/list-deployment-groups.rst
${PYSITELIB}/awscli/examples/deploy/list-deployment-instances.rst
${PYSITELIB}/awscli/examples/deploy/list-deployment-targets.rst
${PYSITELIB}/awscli/examples/deploy/list-deployments.rst
${PYSITELIB}/awscli/examples/deploy/list-git-hub-account-token-names.rst
${PYSITELIB}/awscli/examples/deploy/list-on-premises-instances.rst
${PYSITELIB}/awscli/examples/deploy/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/deploy/push.rst
${PYSITELIB}/awscli/examples/deploy/register-application-revision.rst
${PYSITELIB}/awscli/examples/deploy/register-on-premises-instance.rst
${PYSITELIB}/awscli/examples/deploy/register.rst
${PYSITELIB}/awscli/examples/deploy/remove-tags-from-on-premises-instances.rst
${PYSITELIB}/awscli/examples/deploy/stop-deployment.rst
${PYSITELIB}/awscli/examples/deploy/tag-resource.rst
${PYSITELIB}/awscli/examples/deploy/uninstall.rst
${PYSITELIB}/awscli/examples/deploy/untag-resource.rst
${PYSITELIB}/awscli/examples/deploy/update-application.rst
${PYSITELIB}/awscli/examples/deploy/update-deployment-group.rst
${PYSITELIB}/awscli/examples/deploy/wait/deployment-successful.rst
${PYSITELIB}/awscli/examples/detective/accept-invitation.rst
${PYSITELIB}/awscli/examples/detective/create-graph.rst
${PYSITELIB}/awscli/examples/detective/create-members.rst
${PYSITELIB}/awscli/examples/detective/delete-graph.rst
${PYSITELIB}/awscli/examples/detective/delete-members.rst
${PYSITELIB}/awscli/examples/detective/disassociate-membership.rst
${PYSITELIB}/awscli/examples/detective/get-members.rst
${PYSITELIB}/awscli/examples/detective/list-graphs.rst
${PYSITELIB}/awscli/examples/detective/list-invitations.rst
${PYSITELIB}/awscli/examples/detective/list-members.rst
${PYSITELIB}/awscli/examples/detective/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/detective/reject-invitation.rst
${PYSITELIB}/awscli/examples/detective/tag-resource.rst
${PYSITELIB}/awscli/examples/detective/untag-resource.rst
${PYSITELIB}/awscli/examples/devicefarm/create-device-pool.rst
${PYSITELIB}/awscli/examples/devicefarm/create-project.rst
${PYSITELIB}/awscli/examples/devicefarm/create-upload.rst
${PYSITELIB}/awscli/examples/devicefarm/get-upload.rst
${PYSITELIB}/awscli/examples/devicefarm/list-projects.rst
${PYSITELIB}/awscli/examples/directconnect/accept-direct-connect-gateway-association-proposal.rst
${PYSITELIB}/awscli/examples/directconnect/allocate-connection-on-interconnect.rst
${PYSITELIB}/awscli/examples/directconnect/allocate-hosted-connection.rst
${PYSITELIB}/awscli/examples/directconnect/allocate-private-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/allocate-public-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/allocate-transit-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/associate-connection-with-lag.rst
${PYSITELIB}/awscli/examples/directconnect/associate-hosted-connection.rst
${PYSITELIB}/awscli/examples/directconnect/associate-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/confirm-connection.rst
${PYSITELIB}/awscli/examples/directconnect/confirm-private-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/confirm-public-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/confirm-transit-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/create-bgp-peer.rst
${PYSITELIB}/awscli/examples/directconnect/create-connection.rst
${PYSITELIB}/awscli/examples/directconnect/create-direct-connect-gateway-association-proposal.rst
${PYSITELIB}/awscli/examples/directconnect/create-direct-connect-gateway-association.rst
${PYSITELIB}/awscli/examples/directconnect/create-direct-connect-gateway.rst
${PYSITELIB}/awscli/examples/directconnect/create-interconnect.rst
${PYSITELIB}/awscli/examples/directconnect/create-lag.rst
${PYSITELIB}/awscli/examples/directconnect/create-private-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/create-public-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/create-transit-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/delete-bgp-peer.rst
${PYSITELIB}/awscli/examples/directconnect/delete-connection.rst
${PYSITELIB}/awscli/examples/directconnect/delete-direct-connect-gateway-association.rst
${PYSITELIB}/awscli/examples/directconnect/delete-direct-connect-gateway.rst
${PYSITELIB}/awscli/examples/directconnect/delete-interconnect.rst
${PYSITELIB}/awscli/examples/directconnect/delete-lag.rst
${PYSITELIB}/awscli/examples/directconnect/delete-virtual-interface.rst
${PYSITELIB}/awscli/examples/directconnect/describe-connection-loa.rst
${PYSITELIB}/awscli/examples/directconnect/describe-connections-on-interconnect.rst
${PYSITELIB}/awscli/examples/directconnect/describe-connections.rst
${PYSITELIB}/awscli/examples/directconnect/describe-direct-connect-gateway-association-proposals.rst
${PYSITELIB}/awscli/examples/directconnect/describe-direct-connect-gateway-associations.rst
${PYSITELIB}/awscli/examples/directconnect/describe-direct-connect-gateway-attachments.rst
${PYSITELIB}/awscli/examples/directconnect/describe-direct-connect-gateways.rst
${PYSITELIB}/awscli/examples/directconnect/describe-hosted-connections.rst
${PYSITELIB}/awscli/examples/directconnect/describe-interconnect-loa.rst
${PYSITELIB}/awscli/examples/directconnect/describe-interconnects.rst
${PYSITELIB}/awscli/examples/directconnect/describe-lags.rst
${PYSITELIB}/awscli/examples/directconnect/describe-loa.rst
${PYSITELIB}/awscli/examples/directconnect/describe-locations.rst
${PYSITELIB}/awscli/examples/directconnect/describe-tags.rst
${PYSITELIB}/awscli/examples/directconnect/describe-virtual-gateways.rst
${PYSITELIB}/awscli/examples/directconnect/describe-virtual-interfaces.rst
${PYSITELIB}/awscli/examples/directconnect/disassociate-connection-from-lag.rst
${PYSITELIB}/awscli/examples/directconnect/tag-resource.rst
${PYSITELIB}/awscli/examples/directconnect/untag-resource.rst
${PYSITELIB}/awscli/examples/directconnect/update-direct-connect-gateway-association.rst
${PYSITELIB}/awscli/examples/directconnect/update-lag.rst
${PYSITELIB}/awscli/examples/directconnect/update-virtual-interface-attributes.rst
${PYSITELIB}/awscli/examples/discovery/describe-agents.rst
${PYSITELIB}/awscli/examples/discovery/describe-configurations.rst
${PYSITELIB}/awscli/examples/discovery/list-configurations.rst
${PYSITELIB}/awscli/examples/dlm/create-default-role.rst
${PYSITELIB}/awscli/examples/dlm/create-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/dlm/delete-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/dlm/get-lifecycle-policies.rst
${PYSITELIB}/awscli/examples/dlm/get-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/dlm/update-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/dms/add-tags-to-resource.rst
${PYSITELIB}/awscli/examples/dms/create-endpoint.rst
${PYSITELIB}/awscli/examples/dms/create-event-subscription.rst
${PYSITELIB}/awscli/examples/dms/create-replication-instance.rst
${PYSITELIB}/awscli/examples/dms/create-replication-subnet-group.rst
${PYSITELIB}/awscli/examples/dms/create-replication-task.rst
${PYSITELIB}/awscli/examples/dms/delete-connection.rst
${PYSITELIB}/awscli/examples/dms/delete-endpoint.rst
${PYSITELIB}/awscli/examples/dms/delete-event-subscription.rst
${PYSITELIB}/awscli/examples/dms/delete-replication-instance.rst
${PYSITELIB}/awscli/examples/dms/delete-replication-subnet-group.rst
${PYSITELIB}/awscli/examples/dms/delete-replication-task.rst
${PYSITELIB}/awscli/examples/dms/describe-account-attributes.rst
${PYSITELIB}/awscli/examples/dms/describe-certificates.rst
${PYSITELIB}/awscli/examples/dms/describe-connections.rst
${PYSITELIB}/awscli/examples/dms/describe-endpoint-types.rst
${PYSITELIB}/awscli/examples/dms/describe-endpoints.rst
${PYSITELIB}/awscli/examples/dms/describe-event-categories.rst
${PYSITELIB}/awscli/examples/dms/describe-event-subscriptions.rst
${PYSITELIB}/awscli/examples/dms/describe-events.rst
${PYSITELIB}/awscli/examples/dms/describe-orderable-replication-instances.rst
${PYSITELIB}/awscli/examples/dms/describe-refresh-schemas-status.rst
${PYSITELIB}/awscli/examples/dms/describe-replication-instances.rst
${PYSITELIB}/awscli/examples/dms/describe-replication-subnet-groups.rst
${PYSITELIB}/awscli/examples/dms/describe-replication-task-assessment-results.rst
${PYSITELIB}/awscli/examples/dms/describe-replication-tasks.rst
${PYSITELIB}/awscli/examples/dms/describe-schemas.rst
${PYSITELIB}/awscli/examples/dms/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/dms/modify-endpoint.rst
${PYSITELIB}/awscli/examples/dms/modify-event-subscription.rst
${PYSITELIB}/awscli/examples/dms/modify-replication-instance.rst
${PYSITELIB}/awscli/examples/dms/modify-replication-subnet-group.rst
${PYSITELIB}/awscli/examples/dms/modify-replication-task.rst
${PYSITELIB}/awscli/examples/dms/reboot-replication-instance.rst
${PYSITELIB}/awscli/examples/dms/refresh-schemas.rst
${PYSITELIB}/awscli/examples/dms/reload-tables.rst
${PYSITELIB}/awscli/examples/dms/remove-tags-from-resource.rst
${PYSITELIB}/awscli/examples/dms/start-replication-task-assessment.rst
${PYSITELIB}/awscli/examples/dms/start-replication-task.rst
${PYSITELIB}/awscli/examples/dms/stop-replication-task.rst
${PYSITELIB}/awscli/examples/dms/test-connection.rst
${PYSITELIB}/awscli/examples/docdb/add-tags-to-resource.rst
${PYSITELIB}/awscli/examples/docdb/apply-pending-maintenance-action.rst
${PYSITELIB}/awscli/examples/docdb/copy-db-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/docdb/copy-db-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/docdb/create-db-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/docdb/create-db-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/docdb/create-db-cluster.rst
${PYSITELIB}/awscli/examples/docdb/create-db-instance.rst
${PYSITELIB}/awscli/examples/docdb/create-db-subnet-group.rst
${PYSITELIB}/awscli/examples/docdb/delete-db-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/docdb/delete-db-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/docdb/delete-db-cluster.rst
${PYSITELIB}/awscli/examples/docdb/delete-db-instance.rst
${PYSITELIB}/awscli/examples/docdb/delete-db-subnet-group.rst
${PYSITELIB}/awscli/examples/docdb/describe-db-cluster-parameter-groups.rst
${PYSITELIB}/awscli/examples/docdb/describe-db-cluster-parameters.rst
${PYSITELIB}/awscli/examples/docdb/describe-db-cluster-snapshot-attributes.rst
${PYSITELIB}/awscli/examples/docdb/describe-db-cluster-snapshots.rst
${PYSITELIB}/awscli/examples/docdb/describe-db-clusters.rst
${PYSITELIB}/awscli/examples/docdb/describe-db-engine-versions.rst
${PYSITELIB}/awscli/examples/docdb/describe-db-instances.rst
${PYSITELIB}/awscli/examples/docdb/describe-db-subnet-groups.rst
${PYSITELIB}/awscli/examples/docdb/describe-engine-default-cluster-parameters.rst
${PYSITELIB}/awscli/examples/docdb/describe-event-categories.rst
${PYSITELIB}/awscli/examples/docdb/describe-events.rst
${PYSITELIB}/awscli/examples/docdb/describe-orderable-db-instance-options.rst
${PYSITELIB}/awscli/examples/docdb/describe-pending-maintenance-actions.rst
${PYSITELIB}/awscli/examples/docdb/failover-db-cluster.rst
${PYSITELIB}/awscli/examples/docdb/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/docdb/modify-db-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/docdb/modify-db-cluster-snapshot-attribute.rst
${PYSITELIB}/awscli/examples/docdb/modify-db-cluster.rst
${PYSITELIB}/awscli/examples/docdb/modify-db-instance.rst
${PYSITELIB}/awscli/examples/docdb/modify-db-subnet-group.rst
${PYSITELIB}/awscli/examples/docdb/reboot-db-instance.rst
${PYSITELIB}/awscli/examples/docdb/remove-tags-from-resource.rst
${PYSITELIB}/awscli/examples/docdb/reset-db-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/docdb/restore-db-cluster-from-snapshot.rst
${PYSITELIB}/awscli/examples/docdb/restore-db-cluster-to-point-in-time.rst
${PYSITELIB}/awscli/examples/docdb/start-db-cluster.rst
${PYSITELIB}/awscli/examples/docdb/stop-db-cluster.rst
${PYSITELIB}/awscli/examples/docdb/wait/db-instance-available.rst
${PYSITELIB}/awscli/examples/docdb/wait/db-instance-deleted.rst
${PYSITELIB}/awscli/examples/ds/describe-directories.rst
${PYSITELIB}/awscli/examples/ds/describe-trusts.rst
${PYSITELIB}/awscli/examples/dynamodb/batch-get-item.rst
${PYSITELIB}/awscli/examples/dynamodb/batch-write-item.rst
${PYSITELIB}/awscli/examples/dynamodb/create-backup.rst
${PYSITELIB}/awscli/examples/dynamodb/create-global-table.rst
${PYSITELIB}/awscli/examples/dynamodb/create-table.rst
${PYSITELIB}/awscli/examples/dynamodb/delete-backup.rst
${PYSITELIB}/awscli/examples/dynamodb/delete-item.rst
${PYSITELIB}/awscli/examples/dynamodb/delete-table.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-backup.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-continuous-backups.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-contributor-insights.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-endpoints.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-global-table-settings.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-global-table.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-limits.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-table-replica-auto-scaling.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-table.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-time-to-live.rst
${PYSITELIB}/awscli/examples/dynamodb/get-item.rst
${PYSITELIB}/awscli/examples/dynamodb/list-backups.rst
${PYSITELIB}/awscli/examples/dynamodb/list-contributor-insights.rst
${PYSITELIB}/awscli/examples/dynamodb/list-global-tables.rst
${PYSITELIB}/awscli/examples/dynamodb/list-tables.rst
${PYSITELIB}/awscli/examples/dynamodb/list-tags-of-resource.rst
${PYSITELIB}/awscli/examples/dynamodb/put-item.rst
${PYSITELIB}/awscli/examples/dynamodb/query.rst
${PYSITELIB}/awscli/examples/dynamodb/restore-table-from-backup.rst
${PYSITELIB}/awscli/examples/dynamodb/restore-table-to-point-in-time.rst
${PYSITELIB}/awscli/examples/dynamodb/scan.rst
${PYSITELIB}/awscli/examples/dynamodb/tag-resource.rst
${PYSITELIB}/awscli/examples/dynamodb/transact-get-items.rst
${PYSITELIB}/awscli/examples/dynamodb/transact-write-items.rst
${PYSITELIB}/awscli/examples/dynamodb/untag-resource.rst
${PYSITELIB}/awscli/examples/dynamodb/update-continuous-backups.rst
${PYSITELIB}/awscli/examples/dynamodb/update-contributor-insights.rst
${PYSITELIB}/awscli/examples/dynamodb/update-global-table-settings.rst
${PYSITELIB}/awscli/examples/dynamodb/update-global-table.rst
${PYSITELIB}/awscli/examples/dynamodb/update-item.rst
${PYSITELIB}/awscli/examples/dynamodb/update-table-replica-auto-scaling.rst
${PYSITELIB}/awscli/examples/dynamodb/update-table.rst
${PYSITELIB}/awscli/examples/dynamodb/update-time-to-live.rst
${PYSITELIB}/awscli/examples/dynamodb/wait/table-exists.rst
${PYSITELIB}/awscli/examples/dynamodbstreams/describe-stream.rst
${PYSITELIB}/awscli/examples/dynamodbstreams/get-records.rst
${PYSITELIB}/awscli/examples/dynamodbstreams/get-shard-iterator.rst
${PYSITELIB}/awscli/examples/dynamodbstreams/list-streams.rst
${PYSITELIB}/awscli/examples/ec2-instance-connect/send-ssh-public-key.rst
${PYSITELIB}/awscli/examples/ec2/accept-reserved-instances-exchange-quote.rst
${PYSITELIB}/awscli/examples/ec2/accept-transit-gateway-peering-attachment.rst
${PYSITELIB}/awscli/examples/ec2/accept-transit-gateway-vpc-attachment.rst
${PYSITELIB}/awscli/examples/ec2/accept-vpc-endpoint-connections.rst
${PYSITELIB}/awscli/examples/ec2/accept-vpc-peering-connection.rst
${PYSITELIB}/awscli/examples/ec2/advertise-byoip-cidr.rst
${PYSITELIB}/awscli/examples/ec2/allocate-address.rst
${PYSITELIB}/awscli/examples/ec2/allocate-hosts.rst
${PYSITELIB}/awscli/examples/ec2/allocate-ipam-pool-cidr.rst
${PYSITELIB}/awscli/examples/ec2/apply-security-groups-to-client-vpn-target-network.rst
${PYSITELIB}/awscli/examples/ec2/assign-ipv6-addresses.rst
${PYSITELIB}/awscli/examples/ec2/assign-private-ip-addresses.rst
${PYSITELIB}/awscli/examples/ec2/associate-address.rst
${PYSITELIB}/awscli/examples/ec2/associate-client-vpn-target-network.rst
${PYSITELIB}/awscli/examples/ec2/associate-dhcp-options.rst
${PYSITELIB}/awscli/examples/ec2/associate-iam-instance-profile.rst
${PYSITELIB}/awscli/examples/ec2/associate-instance-event-window.rst
${PYSITELIB}/awscli/examples/ec2/associate-route-table.rst
${PYSITELIB}/awscli/examples/ec2/associate-subnet-cidr-block.rst
${PYSITELIB}/awscli/examples/ec2/associate-transit-gateway-multicast-domain.rst
${PYSITELIB}/awscli/examples/ec2/associate-transit-gateway-route-table.rst
${PYSITELIB}/awscli/examples/ec2/associate-vpc-cidr-block.rst
${PYSITELIB}/awscli/examples/ec2/attach-classic-link-vpc.rst
${PYSITELIB}/awscli/examples/ec2/attach-internet-gateway.rst
${PYSITELIB}/awscli/examples/ec2/attach-network-interface.rst
${PYSITELIB}/awscli/examples/ec2/attach-volume.rst
${PYSITELIB}/awscli/examples/ec2/attach-vpn-gateway.rst
${PYSITELIB}/awscli/examples/ec2/authorize-client-vpn-ingress.rst
${PYSITELIB}/awscli/examples/ec2/authorize-security-group-egress.rst
${PYSITELIB}/awscli/examples/ec2/authorize-security-group-ingress.rst
${PYSITELIB}/awscli/examples/ec2/bundle-instance.rst
${PYSITELIB}/awscli/examples/ec2/cancel-bundle-task.rst
${PYSITELIB}/awscli/examples/ec2/cancel-capacity-reservation-fleets.rst
${PYSITELIB}/awscli/examples/ec2/cancel-capacity-reservation.rst
${PYSITELIB}/awscli/examples/ec2/cancel-conversion-task.rst
${PYSITELIB}/awscli/examples/ec2/cancel-export-task.rst
${PYSITELIB}/awscli/examples/ec2/cancel-import-task.rst
${PYSITELIB}/awscli/examples/ec2/cancel-reserved-instances-listing.rst
${PYSITELIB}/awscli/examples/ec2/cancel-spot-fleet-requests.rst
${PYSITELIB}/awscli/examples/ec2/cancel-spot-instance-requests.rst
${PYSITELIB}/awscli/examples/ec2/confirm-product-instance.rst
${PYSITELIB}/awscli/examples/ec2/copy-fpga-image.rst
${PYSITELIB}/awscli/examples/ec2/copy-image.rst
${PYSITELIB}/awscli/examples/ec2/copy-snapshot.rst
${PYSITELIB}/awscli/examples/ec2/create-capacity-reservation-fleet.rst
${PYSITELIB}/awscli/examples/ec2/create-capacity-reservation.rst
${PYSITELIB}/awscli/examples/ec2/create-client-vpn-endpoint.rst
${PYSITELIB}/awscli/examples/ec2/create-client-vpn-route.rst
${PYSITELIB}/awscli/examples/ec2/create-customer-gateway.rst
${PYSITELIB}/awscli/examples/ec2/create-default-subnet.rst
${PYSITELIB}/awscli/examples/ec2/create-default-vpc.rst
${PYSITELIB}/awscli/examples/ec2/create-dhcp-options.rst
${PYSITELIB}/awscli/examples/ec2/create-egress-only-internet-gateway.rst
${PYSITELIB}/awscli/examples/ec2/create-fleet.rst
${PYSITELIB}/awscli/examples/ec2/create-flow-logs.rst
${PYSITELIB}/awscli/examples/ec2/create-fpga-image.rst
${PYSITELIB}/awscli/examples/ec2/create-image.rst
${PYSITELIB}/awscli/examples/ec2/create-instance-event-window.rst
${PYSITELIB}/awscli/examples/ec2/create-instance-export-task.rst
${PYSITELIB}/awscli/examples/ec2/create-internet-gateway.rst
${PYSITELIB}/awscli/examples/ec2/create-ipam-pool.rst
${PYSITELIB}/awscli/examples/ec2/create-ipam-scope.rst
${PYSITELIB}/awscli/examples/ec2/create-ipam.rst
${PYSITELIB}/awscli/examples/ec2/create-key-pair.rst
${PYSITELIB}/awscli/examples/ec2/create-launch-template-version.rst
${PYSITELIB}/awscli/examples/ec2/create-launch-template.rst
${PYSITELIB}/awscli/examples/ec2/create-local-gateway-route-table-vpc-association.rst
${PYSITELIB}/awscli/examples/ec2/create-local-gateway-route.rst
${PYSITELIB}/awscli/examples/ec2/create-managed-prefix-list.rst
${PYSITELIB}/awscli/examples/ec2/create-nat-gateway.rst
${PYSITELIB}/awscli/examples/ec2/create-network-acl-entry.rst
${PYSITELIB}/awscli/examples/ec2/create-network-acl.rst
${PYSITELIB}/awscli/examples/ec2/create-network-insights-access-scope.rst
${PYSITELIB}/awscli/examples/ec2/create-network-insights-path.rst
${PYSITELIB}/awscli/examples/ec2/create-network-interface-permission.rst
${PYSITELIB}/awscli/examples/ec2/create-network-interface.rst
${PYSITELIB}/awscli/examples/ec2/create-placement-group.rst
${PYSITELIB}/awscli/examples/ec2/create-replace-root-volume-task.rst
${PYSITELIB}/awscli/examples/ec2/create-reserved-instances-listing.rst
${PYSITELIB}/awscli/examples/ec2/create-restore-image-task.rst
${PYSITELIB}/awscli/examples/ec2/create-route-table.rst
${PYSITELIB}/awscli/examples/ec2/create-route.rst
${PYSITELIB}/awscli/examples/ec2/create-security-group.rst
${PYSITELIB}/awscli/examples/ec2/create-snapshot.rst
${PYSITELIB}/awscli/examples/ec2/create-snapshots.rst
${PYSITELIB}/awscli/examples/ec2/create-spot-datafeed-subscription.rst
${PYSITELIB}/awscli/examples/ec2/create-store-image-task.rst
${PYSITELIB}/awscli/examples/ec2/create-subnet-cidr-reservation.rst
${PYSITELIB}/awscli/examples/ec2/create-subnet.rst
${PYSITELIB}/awscli/examples/ec2/create-tags.rst
${PYSITELIB}/awscli/examples/ec2/create-traffic-mirror-filter-rule.rst
${PYSITELIB}/awscli/examples/ec2/create-traffic-mirror-filter.rst
${PYSITELIB}/awscli/examples/ec2/create-traffic-mirror-session.rst
${PYSITELIB}/awscli/examples/ec2/create-traffic-mirror-target.rst
${PYSITELIB}/awscli/examples/ec2/create-transit-gateway-connect-peer.rst
${PYSITELIB}/awscli/examples/ec2/create-transit-gateway-connect.rst
${PYSITELIB}/awscli/examples/ec2/create-transit-gateway-multicast-domain.rst
${PYSITELIB}/awscli/examples/ec2/create-transit-gateway-peering-attachment.rst
${PYSITELIB}/awscli/examples/ec2/create-transit-gateway-prefix-list-reference.rst
${PYSITELIB}/awscli/examples/ec2/create-transit-gateway-route-table.rst
${PYSITELIB}/awscli/examples/ec2/create-transit-gateway-route.rst
${PYSITELIB}/awscli/examples/ec2/create-transit-gateway-vpc-attachment.rst
${PYSITELIB}/awscli/examples/ec2/create-transit-gateway.rst
${PYSITELIB}/awscli/examples/ec2/create-volume.rst
${PYSITELIB}/awscli/examples/ec2/create-vpc-endpoint-connection-notification.rst
${PYSITELIB}/awscli/examples/ec2/create-vpc-endpoint-service-configuration.rst
${PYSITELIB}/awscli/examples/ec2/create-vpc-endpoint.rst
${PYSITELIB}/awscli/examples/ec2/create-vpc-peering-connection.rst
${PYSITELIB}/awscli/examples/ec2/create-vpc.rst
${PYSITELIB}/awscli/examples/ec2/create-vpn-connection-route.rst
${PYSITELIB}/awscli/examples/ec2/create-vpn-connection.rst
${PYSITELIB}/awscli/examples/ec2/create-vpn-gateway.rst
${PYSITELIB}/awscli/examples/ec2/delete-carrier-gateway.rst
${PYSITELIB}/awscli/examples/ec2/delete-client-vpn-endpoint.rst
${PYSITELIB}/awscli/examples/ec2/delete-client-vpn-route.rst
${PYSITELIB}/awscli/examples/ec2/delete-customer-gateway.rst
${PYSITELIB}/awscli/examples/ec2/delete-dhcp-options.rst
${PYSITELIB}/awscli/examples/ec2/delete-egress-only-internet-gateway.rst
${PYSITELIB}/awscli/examples/ec2/delete-fleets.rst
${PYSITELIB}/awscli/examples/ec2/delete-flow-logs.rst
${PYSITELIB}/awscli/examples/ec2/delete-fpga-image.rst
${PYSITELIB}/awscli/examples/ec2/delete-instance-event-window.rst
${PYSITELIB}/awscli/examples/ec2/delete-internet-gateway.rst
${PYSITELIB}/awscli/examples/ec2/delete-ipam-scope.rst
${PYSITELIB}/awscli/examples/ec2/delete-ipam.rst
${PYSITELIB}/awscli/examples/ec2/delete-key-pair.rst
${PYSITELIB}/awscli/examples/ec2/delete-launch-template-versions.rst
${PYSITELIB}/awscli/examples/ec2/delete-launch-template.rst
${PYSITELIB}/awscli/examples/ec2/delete-local-gateway-route.rst
${PYSITELIB}/awscli/examples/ec2/delete-managed-prefix-list.rst
${PYSITELIB}/awscli/examples/ec2/delete-nat-gateway.rst
${PYSITELIB}/awscli/examples/ec2/delete-network-acl-entry.rst
${PYSITELIB}/awscli/examples/ec2/delete-network-acl.rst
${PYSITELIB}/awscli/examples/ec2/delete-network-insights-access-scope.rst
${PYSITELIB}/awscli/examples/ec2/delete-network-insights-analysis.rst
${PYSITELIB}/awscli/examples/ec2/delete-network-insights-path.rst
${PYSITELIB}/awscli/examples/ec2/delete-network-interface-permission.rst
${PYSITELIB}/awscli/examples/ec2/delete-network-interface.rst
${PYSITELIB}/awscli/examples/ec2/delete-placement-group.rst
${PYSITELIB}/awscli/examples/ec2/delete-queued-reserved-instances.rst
${PYSITELIB}/awscli/examples/ec2/delete-route-table.rst
${PYSITELIB}/awscli/examples/ec2/delete-route.rst
${PYSITELIB}/awscli/examples/ec2/delete-security-group.rst
${PYSITELIB}/awscli/examples/ec2/delete-snapshot.rst
${PYSITELIB}/awscli/examples/ec2/delete-spot-datafeed-subscription.rst
${PYSITELIB}/awscli/examples/ec2/delete-subnet-cidr-reservation.rst
${PYSITELIB}/awscli/examples/ec2/delete-subnet.rst
${PYSITELIB}/awscli/examples/ec2/delete-tags.rst
${PYSITELIB}/awscli/examples/ec2/delete-traffic-mirror-filter-rule.rst
${PYSITELIB}/awscli/examples/ec2/delete-traffic-mirror-filter.rst
${PYSITELIB}/awscli/examples/ec2/delete-traffic-mirror-session.rst
${PYSITELIB}/awscli/examples/ec2/delete-traffic-mirror-target.rst
${PYSITELIB}/awscli/examples/ec2/delete-transit-gateway-connect-peer.rst
${PYSITELIB}/awscli/examples/ec2/delete-transit-gateway-connect.rst
${PYSITELIB}/awscli/examples/ec2/delete-transit-gateway-multicast-domain.rst
${PYSITELIB}/awscli/examples/ec2/delete-transit-gateway-peering-attachment.rst
${PYSITELIB}/awscli/examples/ec2/delete-transit-gateway-prefix-list-reference.rst
${PYSITELIB}/awscli/examples/ec2/delete-transit-gateway-route-table.rst
${PYSITELIB}/awscli/examples/ec2/delete-transit-gateway-route.rst
${PYSITELIB}/awscli/examples/ec2/delete-transit-gateway-vpc-attachment.rst
${PYSITELIB}/awscli/examples/ec2/delete-transit-gateway.rst
${PYSITELIB}/awscli/examples/ec2/delete-volume.rst
${PYSITELIB}/awscli/examples/ec2/delete-vpc-endpoint-connection-notifications.rst
${PYSITELIB}/awscli/examples/ec2/delete-vpc-endpoint-service-configurations.rst
${PYSITELIB}/awscli/examples/ec2/delete-vpc-endpoints.rst
${PYSITELIB}/awscli/examples/ec2/delete-vpc-peering-connection.rst
${PYSITELIB}/awscli/examples/ec2/delete-vpc.rst
${PYSITELIB}/awscli/examples/ec2/delete-vpn-connection-route.rst
${PYSITELIB}/awscli/examples/ec2/delete-vpn-connection.rst
${PYSITELIB}/awscli/examples/ec2/delete-vpn-gateway.rst
${PYSITELIB}/awscli/examples/ec2/deprovision-byoip-cidr.rst
${PYSITELIB}/awscli/examples/ec2/deprovision-ipam-pool-cidr.rst
${PYSITELIB}/awscli/examples/ec2/deregister-image.rst
${PYSITELIB}/awscli/examples/ec2/deregister-instance-event-notification-attributes.rst
${PYSITELIB}/awscli/examples/ec2/deregister-transit-gateway-multicast-group-members.rst
${PYSITELIB}/awscli/examples/ec2/deregister-transit-gateway-multicast-group-source.rst
${PYSITELIB}/awscli/examples/ec2/describe-account-attributes.rst
${PYSITELIB}/awscli/examples/ec2/describe-addresses-attribute.rst
${PYSITELIB}/awscli/examples/ec2/describe-addresses.rst
${PYSITELIB}/awscli/examples/ec2/describe-aggregate-id-format.rst
${PYSITELIB}/awscli/examples/ec2/describe-availability-zones.rst
${PYSITELIB}/awscli/examples/ec2/describe-bundle-tasks.rst
${PYSITELIB}/awscli/examples/ec2/describe-byoip-cidrs.rst
${PYSITELIB}/awscli/examples/ec2/describe-capacity-reservation-fleets.rst
${PYSITELIB}/awscli/examples/ec2/describe-capacity-reservations.rst
${PYSITELIB}/awscli/examples/ec2/describe-carrier-gateways.rst
${PYSITELIB}/awscli/examples/ec2/describe-classic-link-instances.rst
${PYSITELIB}/awscli/examples/ec2/describe-client-vpn-authorization-rules.rst
${PYSITELIB}/awscli/examples/ec2/describe-client-vpn-connections.rst
${PYSITELIB}/awscli/examples/ec2/describe-client-vpn-endpoints.rst
${PYSITELIB}/awscli/examples/ec2/describe-client-vpn-routes.rst
${PYSITELIB}/awscli/examples/ec2/describe-client-vpn-target-networks.rst
${PYSITELIB}/awscli/examples/ec2/describe-coip-pools.rst
${PYSITELIB}/awscli/examples/ec2/describe-conversion-tasks.rst
${PYSITELIB}/awscli/examples/ec2/describe-customer-gateways.rst
${PYSITELIB}/awscli/examples/ec2/describe-dhcp-options.rst
${PYSITELIB}/awscli/examples/ec2/describe-egress-only-internet-gateways.rst
${PYSITELIB}/awscli/examples/ec2/describe-elastic-gpus.rst
${PYSITELIB}/awscli/examples/ec2/describe-export-image-tasks.rst
${PYSITELIB}/awscli/examples/ec2/describe-export-tasks.rst
${PYSITELIB}/awscli/examples/ec2/describe-fast-launch-images.rst
${PYSITELIB}/awscli/examples/ec2/describe-fast-snapshot-restores.rst
${PYSITELIB}/awscli/examples/ec2/describe-fleet-history.rst
${PYSITELIB}/awscli/examples/ec2/describe-fleet-instances.rst
${PYSITELIB}/awscli/examples/ec2/describe-fleets.rst
${PYSITELIB}/awscli/examples/ec2/describe-flow-logs.rst
${PYSITELIB}/awscli/examples/ec2/describe-fpga-image-attribute.rst
${PYSITELIB}/awscli/examples/ec2/describe-fpga-images.rst
${PYSITELIB}/awscli/examples/ec2/describe-host-reservation-offerings.rst
${PYSITELIB}/awscli/examples/ec2/describe-host-reservations.rst
${PYSITELIB}/awscli/examples/ec2/describe-hosts.rst
${PYSITELIB}/awscli/examples/ec2/describe-iam-instance-profile-associations.rst
${PYSITELIB}/awscli/examples/ec2/describe-id-format.rst
${PYSITELIB}/awscli/examples/ec2/describe-identity-id-format.rst
${PYSITELIB}/awscli/examples/ec2/describe-image-attribute.rst
${PYSITELIB}/awscli/examples/ec2/describe-images.rst
${PYSITELIB}/awscli/examples/ec2/describe-import-image-tasks.rst
${PYSITELIB}/awscli/examples/ec2/describe-import-snapshot-tasks.rst
${PYSITELIB}/awscli/examples/ec2/describe-instance-attribute.rst
${PYSITELIB}/awscli/examples/ec2/describe-instance-credit-specifications.rst
${PYSITELIB}/awscli/examples/ec2/describe-instance-event-notification-attributes.rst
${PYSITELIB}/awscli/examples/ec2/describe-instance-event-windows.rst
${PYSITELIB}/awscli/examples/ec2/describe-instance-status.rst
${PYSITELIB}/awscli/examples/ec2/describe-instance-type-offerings.rst
${PYSITELIB}/awscli/examples/ec2/describe-instance-types.rst
${PYSITELIB}/awscli/examples/ec2/describe-instances.rst
${PYSITELIB}/awscli/examples/ec2/describe-internet-gateways.rst
${PYSITELIB}/awscli/examples/ec2/describe-ipam-pools.rst
${PYSITELIB}/awscli/examples/ec2/describe-ipam-scopes.rst
${PYSITELIB}/awscli/examples/ec2/describe-ipams.rst
${PYSITELIB}/awscli/examples/ec2/describe-ipv6-pools.rst
${PYSITELIB}/awscli/examples/ec2/describe-key-pairs.rst
${PYSITELIB}/awscli/examples/ec2/describe-launch-template-versions.rst
${PYSITELIB}/awscli/examples/ec2/describe-launch-templates.rst
${PYSITELIB}/awscli/examples/ec2/describe-local-gateway-route-table-virtual-interface-group-associations.rst
${PYSITELIB}/awscli/examples/ec2/describe-local-gateway-route-table-vpc-associations.rst
${PYSITELIB}/awscli/examples/ec2/describe-local-gateway-route-tables.rst
${PYSITELIB}/awscli/examples/ec2/describe-local-gateway-virtual-interface-groups.rst
${PYSITELIB}/awscli/examples/ec2/describe-local-gateway-virtual-interfaces.rst
${PYSITELIB}/awscli/examples/ec2/describe-local-gateways.rst
${PYSITELIB}/awscli/examples/ec2/describe-managed-prefix-lists.rst
${PYSITELIB}/awscli/examples/ec2/describe-moving-addresses.rst
${PYSITELIB}/awscli/examples/ec2/describe-nat-gateways.rst
${PYSITELIB}/awscli/examples/ec2/describe-network-acls.rst
${PYSITELIB}/awscli/examples/ec2/describe-network-insights-access-scope-analyses.rst
${PYSITELIB}/awscli/examples/ec2/describe-network-insights-access-scopes.rst
${PYSITELIB}/awscli/examples/ec2/describe-network-insights-analyses.rst
${PYSITELIB}/awscli/examples/ec2/describe-network-insights-paths.rst
${PYSITELIB}/awscli/examples/ec2/describe-network-interface-attribute.rst
${PYSITELIB}/awscli/examples/ec2/describe-network-interface-permissions.rst
${PYSITELIB}/awscli/examples/ec2/describe-network-interfaces.rst
${PYSITELIB}/awscli/examples/ec2/describe-placement-groups.rst
${PYSITELIB}/awscli/examples/ec2/describe-prefix-lists.rst
${PYSITELIB}/awscli/examples/ec2/describe-principal-id-format.rst
${PYSITELIB}/awscli/examples/ec2/describe-public-ipv4-pools.rst
${PYSITELIB}/awscli/examples/ec2/describe-regions.rst
${PYSITELIB}/awscli/examples/ec2/describe-replace-root-volume-tasks.rst
${PYSITELIB}/awscli/examples/ec2/describe-reserved-instances-listings.rst
${PYSITELIB}/awscli/examples/ec2/describe-reserved-instances-modifications.rst
${PYSITELIB}/awscli/examples/ec2/describe-reserved-instances-offerings.rst
${PYSITELIB}/awscli/examples/ec2/describe-reserved-instances.rst
${PYSITELIB}/awscli/examples/ec2/describe-route-tables.rst
${PYSITELIB}/awscli/examples/ec2/describe-scheduled-instance-availability.rst
${PYSITELIB}/awscli/examples/ec2/describe-scheduled-instances.rst
${PYSITELIB}/awscli/examples/ec2/describe-security-group-references.rst
${PYSITELIB}/awscli/examples/ec2/describe-security-group-rules.rst
${PYSITELIB}/awscli/examples/ec2/describe-security-groups.rst
${PYSITELIB}/awscli/examples/ec2/describe-snapshot-attribute.rst
${PYSITELIB}/awscli/examples/ec2/describe-snapshot-tier-status.rst
${PYSITELIB}/awscli/examples/ec2/describe-snapshots.rst
${PYSITELIB}/awscli/examples/ec2/describe-spot-datafeed-subscription.rst
${PYSITELIB}/awscli/examples/ec2/describe-spot-fleet-instances.rst
${PYSITELIB}/awscli/examples/ec2/describe-spot-fleet-request-history.rst
${PYSITELIB}/awscli/examples/ec2/describe-spot-fleet-requests.rst
${PYSITELIB}/awscli/examples/ec2/describe-spot-instance-requests.rst
${PYSITELIB}/awscli/examples/ec2/describe-spot-price-history.rst
${PYSITELIB}/awscli/examples/ec2/describe-stale-security-groups.rst
${PYSITELIB}/awscli/examples/ec2/describe-store-image-tasks.rst
${PYSITELIB}/awscli/examples/ec2/describe-subnets.rst
${PYSITELIB}/awscli/examples/ec2/describe-tags.rst
${PYSITELIB}/awscli/examples/ec2/describe-traffic-mirror-filters.rst
${PYSITELIB}/awscli/examples/ec2/describe-traffic-mirror-sessions.rst
${PYSITELIB}/awscli/examples/ec2/describe-traffic-mirror-targets.rst
${PYSITELIB}/awscli/examples/ec2/describe-transit-gateway-attachments.rst
${PYSITELIB}/awscli/examples/ec2/describe-transit-gateway-connect-peers.rst
${PYSITELIB}/awscli/examples/ec2/describe-transit-gateway-connects.rst
${PYSITELIB}/awscli/examples/ec2/describe-transit-gateway-multicast-domains.rst
${PYSITELIB}/awscli/examples/ec2/describe-transit-gateway-peering-attachments.rst
${PYSITELIB}/awscli/examples/ec2/describe-transit-gateway-route-tables.rst
${PYSITELIB}/awscli/examples/ec2/describe-transit-gateway-vpc-attachments.rst
${PYSITELIB}/awscli/examples/ec2/describe-transit-gateways.rst
${PYSITELIB}/awscli/examples/ec2/describe-volume-attribute.rst
${PYSITELIB}/awscli/examples/ec2/describe-volume-status.rst
${PYSITELIB}/awscli/examples/ec2/describe-volumes-modifications.rst
${PYSITELIB}/awscli/examples/ec2/describe-volumes.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpc-attribute.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpc-classic-link-dns-support.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpc-classic-link.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpc-endpoint-connection-notifications.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpc-endpoint-connections.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpc-endpoint-service-configurations.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpc-endpoint-service-permissions.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpc-endpoint-services.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpc-endpoints.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpc-peering-connections.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpcs.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpn-connections.rst
${PYSITELIB}/awscli/examples/ec2/describe-vpn-gateways.rst
${PYSITELIB}/awscli/examples/ec2/detach-classic-link-vpc.rst
${PYSITELIB}/awscli/examples/ec2/detach-internet-gateway.rst
${PYSITELIB}/awscli/examples/ec2/detach-network-interface.rst
${PYSITELIB}/awscli/examples/ec2/detach-volume.rst
${PYSITELIB}/awscli/examples/ec2/detach-vpn-gateway.rst
${PYSITELIB}/awscli/examples/ec2/disable-ebs-encryption-by-default.rst
${PYSITELIB}/awscli/examples/ec2/disable-fast-launch.rst
${PYSITELIB}/awscli/examples/ec2/disable-fast-snapshot-restores.rst
${PYSITELIB}/awscli/examples/ec2/disable-image-deprecation.rst
${PYSITELIB}/awscli/examples/ec2/disable-serial-console-access.rst
${PYSITELIB}/awscli/examples/ec2/disable-transit-gateway-route-table-propagation.rst
${PYSITELIB}/awscli/examples/ec2/disable-vgw-route-propagation.rst
${PYSITELIB}/awscli/examples/ec2/disable-vpc-classic-link-dns-support.rst
${PYSITELIB}/awscli/examples/ec2/disable-vpc-classic-link.rst
${PYSITELIB}/awscli/examples/ec2/disassociate-address.rst
${PYSITELIB}/awscli/examples/ec2/disassociate-client-vpn-target-network.rst
${PYSITELIB}/awscli/examples/ec2/disassociate-iam-instance-profile.rst
${PYSITELIB}/awscli/examples/ec2/disassociate-instance-event-window.rst
${PYSITELIB}/awscli/examples/ec2/disassociate-route-table.rst
${PYSITELIB}/awscli/examples/ec2/disassociate-subnet-cidr-block.rst
${PYSITELIB}/awscli/examples/ec2/disassociate-transit-gateway-multicast-domain.rst
${PYSITELIB}/awscli/examples/ec2/disassociate-transit-gateway-route-table.rst
${PYSITELIB}/awscli/examples/ec2/disassociate-vpc-cidr-block.rst
${PYSITELIB}/awscli/examples/ec2/enable-ebs-encryption-by-default.rst
${PYSITELIB}/awscli/examples/ec2/enable-fast-launch.rst
${PYSITELIB}/awscli/examples/ec2/enable-fast-snapshot-restores.rst
${PYSITELIB}/awscli/examples/ec2/enable-image-deprecation.rst
${PYSITELIB}/awscli/examples/ec2/enable-ipam-organization-admin-account.rst
${PYSITELIB}/awscli/examples/ec2/enable-serial-console-access.rst
${PYSITELIB}/awscli/examples/ec2/enable-transit-gateway-route-table-propagation.rst
${PYSITELIB}/awscli/examples/ec2/enable-vgw-route-propagation.rst
${PYSITELIB}/awscli/examples/ec2/enable-volume-io.rst
${PYSITELIB}/awscli/examples/ec2/enable-vpc-classic-link-dns-support.rst
${PYSITELIB}/awscli/examples/ec2/enable-vpc-classic-link.rst
${PYSITELIB}/awscli/examples/ec2/export-client-vpn-client-certificate-revocation-list.rst
${PYSITELIB}/awscli/examples/ec2/export-client-vpn-client-configuration.rst
${PYSITELIB}/awscli/examples/ec2/export-image.rst
${PYSITELIB}/awscli/examples/ec2/get-associated-ipv6-pool-cidrs.rst
${PYSITELIB}/awscli/examples/ec2/get-capacity-reservation-usage.rst
${PYSITELIB}/awscli/examples/ec2/get-coip-pool-usage.rst
${PYSITELIB}/awscli/examples/ec2/get-console-output.rst
${PYSITELIB}/awscli/examples/ec2/get-console-screenshot.rst
${PYSITELIB}/awscli/examples/ec2/get-default-credit-specification.rst
${PYSITELIB}/awscli/examples/ec2/get-ebs-default-kms-key-id.rst
${PYSITELIB}/awscli/examples/ec2/get-ebs-encryption-by-default.rst
${PYSITELIB}/awscli/examples/ec2/get-flow-logs-integration-template.rst
${PYSITELIB}/awscli/examples/ec2/get-groups-for-capacity-reservation.rst
${PYSITELIB}/awscli/examples/ec2/get-host-reservation-purchase-preview.rst
${PYSITELIB}/awscli/examples/ec2/get-instance-types-from-instance-requirements.rst
${PYSITELIB}/awscli/examples/ec2/get-ipam-address-history.rst
${PYSITELIB}/awscli/examples/ec2/get-ipam-pool-allocations.rst
${PYSITELIB}/awscli/examples/ec2/get-ipam-pool-cidrs.rst
${PYSITELIB}/awscli/examples/ec2/get-ipam-resource-cidrs.rst
${PYSITELIB}/awscli/examples/ec2/get-launch-template-data.rst
${PYSITELIB}/awscli/examples/ec2/get-managed-prefix-list-associations.rst
${PYSITELIB}/awscli/examples/ec2/get-managed-prefix-list-entries.rst
${PYSITELIB}/awscli/examples/ec2/get-network-insights-access-scope-analysis-findings.rst
${PYSITELIB}/awscli/examples/ec2/get-network-insights-access-scope-content.rst
${PYSITELIB}/awscli/examples/ec2/get-password-data.rst
${PYSITELIB}/awscli/examples/ec2/get-reserved-instances-exchange-quote.rst
${PYSITELIB}/awscli/examples/ec2/get-serial-console-access-status.rst
${PYSITELIB}/awscli/examples/ec2/get-spot-placement-scores.rst
${PYSITELIB}/awscli/examples/ec2/get-subnet-cidr-reservations.rst
${PYSITELIB}/awscli/examples/ec2/get-transit-gateway-attachment-propagations.rst
${PYSITELIB}/awscli/examples/ec2/get-transit-gateway-multicast-domain-associations.rst
${PYSITELIB}/awscli/examples/ec2/get-transit-gateway-prefix-list-references.rst
${PYSITELIB}/awscli/examples/ec2/get-transit-gateway-route-table-associations.rst
${PYSITELIB}/awscli/examples/ec2/get-transit-gateway-route-table-propagations.rst
${PYSITELIB}/awscli/examples/ec2/import-client-vpn-client-certificate-revocation-list.rst
${PYSITELIB}/awscli/examples/ec2/import-image.rst
${PYSITELIB}/awscli/examples/ec2/import-key-pair.rst
${PYSITELIB}/awscli/examples/ec2/import-snapshot.rst
${PYSITELIB}/awscli/examples/ec2/list-images-in-recycle-bin.rst
${PYSITELIB}/awscli/examples/ec2/list-snapshots-in-recycle-bin.rst
${PYSITELIB}/awscli/examples/ec2/modify-address-attribute.rst
${PYSITELIB}/awscli/examples/ec2/modify-availability-zone-group.rst
${PYSITELIB}/awscli/examples/ec2/modify-capacity-reservation-fleet.rst
${PYSITELIB}/awscli/examples/ec2/modify-capacity-reservation.rst
${PYSITELIB}/awscli/examples/ec2/modify-client-vpn-endpoint.rst
${PYSITELIB}/awscli/examples/ec2/modify-default-credit-specification.rst
${PYSITELIB}/awscli/examples/ec2/modify-ebs-default-kms-key-id.rst
${PYSITELIB}/awscli/examples/ec2/modify-fleet.rst
${PYSITELIB}/awscli/examples/ec2/modify-fpga-image-attribute.rst
${PYSITELIB}/awscli/examples/ec2/modify-hosts.rst
${PYSITELIB}/awscli/examples/ec2/modify-id-format.rst
${PYSITELIB}/awscli/examples/ec2/modify-identity-id-format.rst
${PYSITELIB}/awscli/examples/ec2/modify-image-attribute.rst
${PYSITELIB}/awscli/examples/ec2/modify-instance-attribute.rst
${PYSITELIB}/awscli/examples/ec2/modify-instance-capacity-reservation-attributes.rst
${PYSITELIB}/awscli/examples/ec2/modify-instance-credit-specification.rst
${PYSITELIB}/awscli/examples/ec2/modify-instance-event-start-time.rst
${PYSITELIB}/awscli/examples/ec2/modify-instance-event-window.rst
${PYSITELIB}/awscli/examples/ec2/modify-instance-metadata-options.rst
${PYSITELIB}/awscli/examples/ec2/modify-instance-placement.rst
${PYSITELIB}/awscli/examples/ec2/modify-ipam-pool.rst
${PYSITELIB}/awscli/examples/ec2/modify-ipam-resource-cidr.rst
${PYSITELIB}/awscli/examples/ec2/modify-ipam.rst
${PYSITELIB}/awscli/examples/ec2/modify-launch-template.rst
${PYSITELIB}/awscli/examples/ec2/modify-managed-prefix-list.rst
${PYSITELIB}/awscli/examples/ec2/modify-network-interface-attribute.rst
${PYSITELIB}/awscli/examples/ec2/modify-reserved-instances.rst
${PYSITELIB}/awscli/examples/ec2/modify-security-group-rules.rst
${PYSITELIB}/awscli/examples/ec2/modify-snapshot-attribute.rst
${PYSITELIB}/awscli/examples/ec2/modify-snapshot-tier.rst
${PYSITELIB}/awscli/examples/ec2/modify-spot-fleet-request.rst
${PYSITELIB}/awscli/examples/ec2/modify-subnet-attribute.rst
${PYSITELIB}/awscli/examples/ec2/modify-traffic-mirror-filter-network-services.rst
${PYSITELIB}/awscli/examples/ec2/modify-traffic-mirror-filter-rule.rst
${PYSITELIB}/awscli/examples/ec2/modify-traffic-mirror-session.rst
${PYSITELIB}/awscli/examples/ec2/modify-transit-gateway-prefix-list-reference.rst
${PYSITELIB}/awscli/examples/ec2/modify-transit-gateway-vpc-attachment.rst
${PYSITELIB}/awscli/examples/ec2/modify-transit-gateway.rst
${PYSITELIB}/awscli/examples/ec2/modify-volume-attribute.rst
${PYSITELIB}/awscli/examples/ec2/modify-volume.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpc-attribute.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpc-endpoint-connection-notification.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpc-endpoint-service-configuration.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpc-endpoint-service-permissions.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpc-endpoint.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpc-peering-connection-options.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpc-tenancy.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpn-connection-options.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpn-connection.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpn-tunnel-certificate.rst
${PYSITELIB}/awscli/examples/ec2/modify-vpn-tunnel-options.rst
${PYSITELIB}/awscli/examples/ec2/monitor-instances.rst
${PYSITELIB}/awscli/examples/ec2/move-address-to-vpc.rst
${PYSITELIB}/awscli/examples/ec2/move-byoip-cidr-to-ipam.rst
${PYSITELIB}/awscli/examples/ec2/network-insights-access-scope.rst
${PYSITELIB}/awscli/examples/ec2/provision-byoip-cidr.rst
${PYSITELIB}/awscli/examples/ec2/provision-ipam-pool-cidr.rst
${PYSITELIB}/awscli/examples/ec2/purchase-host-reservation.rst
${PYSITELIB}/awscli/examples/ec2/purchase-reserved-instances-offering.rst
${PYSITELIB}/awscli/examples/ec2/purchase-scheduled-instances.rst
${PYSITELIB}/awscli/examples/ec2/reboot-instances.rst
${PYSITELIB}/awscli/examples/ec2/register-image.rst
${PYSITELIB}/awscli/examples/ec2/register-instance-event-notification-attributes.rst
${PYSITELIB}/awscli/examples/ec2/register-transit-gateway-multicase-group-sources.rst
${PYSITELIB}/awscli/examples/ec2/register-transit-gateway-multicast-group-members.rst
${PYSITELIB}/awscli/examples/ec2/register-transit-gateway-multicast-group-sources.rst
${PYSITELIB}/awscli/examples/ec2/reject-transit-gateway-peering-attachment.rst
${PYSITELIB}/awscli/examples/ec2/reject-transit-gateway-vpc-attachments.rst
${PYSITELIB}/awscli/examples/ec2/reject-vpc-endpoint-connections.rst
${PYSITELIB}/awscli/examples/ec2/reject-vpc-peering-connection.rst
${PYSITELIB}/awscli/examples/ec2/release-address.rst
${PYSITELIB}/awscli/examples/ec2/release-hosts.rst
${PYSITELIB}/awscli/examples/ec2/replace-iam-instance-profile-association.rst
${PYSITELIB}/awscli/examples/ec2/replace-network-acl-association.rst
${PYSITELIB}/awscli/examples/ec2/replace-network-acl-entry.rst
${PYSITELIB}/awscli/examples/ec2/replace-route-table-association.rst
${PYSITELIB}/awscli/examples/ec2/replace-route.rst
${PYSITELIB}/awscli/examples/ec2/replace-transit-gateway-route.rst
${PYSITELIB}/awscli/examples/ec2/report-instance-status.rst
${PYSITELIB}/awscli/examples/ec2/request-spot-fleet.rst
${PYSITELIB}/awscli/examples/ec2/request-spot-instances.rst
${PYSITELIB}/awscli/examples/ec2/reset-address-attribute.rst
${PYSITELIB}/awscli/examples/ec2/reset-ebs-default-kms-key-id.rst
${PYSITELIB}/awscli/examples/ec2/reset-fpga-image-attribute.rst
${PYSITELIB}/awscli/examples/ec2/reset-image-attribute.rst
${PYSITELIB}/awscli/examples/ec2/reset-instance-attribute.rst
${PYSITELIB}/awscli/examples/ec2/reset-network-interface-attribute.rst
${PYSITELIB}/awscli/examples/ec2/reset-snapshot-attribute.rst
${PYSITELIB}/awscli/examples/ec2/restore-address-to-classic.rst
${PYSITELIB}/awscli/examples/ec2/restore-image-from-recycle-bin.rst
${PYSITELIB}/awscli/examples/ec2/restore-managed-prefix-list-version.rst
${PYSITELIB}/awscli/examples/ec2/restore-snapshot-from-recycle-bin.rst
${PYSITELIB}/awscli/examples/ec2/restore-snapshot-tier.rst
${PYSITELIB}/awscli/examples/ec2/revoke-client-vpn-ingress.rst
${PYSITELIB}/awscli/examples/ec2/revoke-security-group-egress.rst
${PYSITELIB}/awscli/examples/ec2/revoke-security-group-ingress.rst
${PYSITELIB}/awscli/examples/ec2/run-instances.rst
${PYSITELIB}/awscli/examples/ec2/run-scheduled-instances.rst
${PYSITELIB}/awscli/examples/ec2/search-local-gateway-routes.rst
${PYSITELIB}/awscli/examples/ec2/search-transit-gateway-multicast-groups.rst
${PYSITELIB}/awscli/examples/ec2/search-transit-gateway-routes.rst
${PYSITELIB}/awscli/examples/ec2/send-diagnostic-interrupt.rst
${PYSITELIB}/awscli/examples/ec2/start-instances.rst
${PYSITELIB}/awscli/examples/ec2/start-network-insights-access-scope-analysis.rst
${PYSITELIB}/awscli/examples/ec2/start-network-insights-analysis.rst
${PYSITELIB}/awscli/examples/ec2/stop-instances.rst
${PYSITELIB}/awscli/examples/ec2/terminate-client-vpn-connections.rst
${PYSITELIB}/awscli/examples/ec2/terminate-instances.rst
${PYSITELIB}/awscli/examples/ec2/unassign-ipv6-addresses.rst
${PYSITELIB}/awscli/examples/ec2/unassign-private-ip-addresses.rst
${PYSITELIB}/awscli/examples/ec2/unmonitor-instances.rst
${PYSITELIB}/awscli/examples/ec2/update-security-group-rule-descriptions-egress.rst
${PYSITELIB}/awscli/examples/ec2/update-security-group-rule-descriptions-ingress.rst
${PYSITELIB}/awscli/examples/ec2/wait/bundle-task-complete.rst
${PYSITELIB}/awscli/examples/ec2/wait/conversion-task-cancelled.rst
${PYSITELIB}/awscli/examples/ec2/wait/conversion-task-completed.rst
${PYSITELIB}/awscli/examples/ec2/wait/conversion-task-deleted.rst
${PYSITELIB}/awscli/examples/ec2/wait/customer-gateway-available.rst
${PYSITELIB}/awscli/examples/ec2/wait/export-task-cancelled.rst
${PYSITELIB}/awscli/examples/ec2/wait/export-task-completed.rst
${PYSITELIB}/awscli/examples/ec2/wait/image-available.rst
${PYSITELIB}/awscli/examples/ec2/wait/image-exists.rst
${PYSITELIB}/awscli/examples/ec2/wait/instance-exists.rst
${PYSITELIB}/awscli/examples/ec2/wait/instance-running.rst
${PYSITELIB}/awscli/examples/ec2/wait/instance-status-ok.rst
${PYSITELIB}/awscli/examples/ec2/wait/instance-stopped.rst
${PYSITELIB}/awscli/examples/ec2/wait/instance-terminated.rst
${PYSITELIB}/awscli/examples/ec2/wait/key-pair-exists.rst
${PYSITELIB}/awscli/examples/ec2/wait/nat-gateway-available.rst
${PYSITELIB}/awscli/examples/ec2/wait/network-interface-available.rst
${PYSITELIB}/awscli/examples/ec2/wait/password-data-available.rst
${PYSITELIB}/awscli/examples/ec2/wait/security-group-exists.rst
${PYSITELIB}/awscli/examples/ec2/wait/snapshot-completed.rst
${PYSITELIB}/awscli/examples/ec2/wait/spot-instance-request-fulfilled.rst
${PYSITELIB}/awscli/examples/ec2/wait/subnet-available.rst
${PYSITELIB}/awscli/examples/ec2/wait/system-status-ok.rst
${PYSITELIB}/awscli/examples/ec2/wait/volume-available.rst
${PYSITELIB}/awscli/examples/ec2/wait/volume-deleted.rst
${PYSITELIB}/awscli/examples/ec2/wait/volume-in-use.rst
${PYSITELIB}/awscli/examples/ec2/wait/vpc-available.rst
${PYSITELIB}/awscli/examples/ec2/wait/vpc-exists.rst
${PYSITELIB}/awscli/examples/ec2/wait/vpc-peering-connection-deleted.rst
${PYSITELIB}/awscli/examples/ec2/wait/vpc-peering-connection-exists.rst
${PYSITELIB}/awscli/examples/ec2/wait/vpn-connection-available.rst
${PYSITELIB}/awscli/examples/ec2/wait/vpn-connection-deleted.rst
${PYSITELIB}/awscli/examples/ec2/withdraw-byoip-cidr.rst
${PYSITELIB}/awscli/examples/ecr-public/get-login-password_description.rst
${PYSITELIB}/awscli/examples/ecr/batch-check-layer-availability.rst
${PYSITELIB}/awscli/examples/ecr/batch-delete-image.rst
${PYSITELIB}/awscli/examples/ecr/batch-get-image.rst
${PYSITELIB}/awscli/examples/ecr/complete-layer-upload.rst
${PYSITELIB}/awscli/examples/ecr/create-repository.rst
${PYSITELIB}/awscli/examples/ecr/delete-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/ecr/delete-repository-policy.rst
${PYSITELIB}/awscli/examples/ecr/delete-repository.rst
${PYSITELIB}/awscli/examples/ecr/describe-image-scan-findings.rst
${PYSITELIB}/awscli/examples/ecr/describe-images.rst
${PYSITELIB}/awscli/examples/ecr/describe-repositories.rst
${PYSITELIB}/awscli/examples/ecr/get-authorization-token.rst
${PYSITELIB}/awscli/examples/ecr/get-download-url-for-layer.rst
${PYSITELIB}/awscli/examples/ecr/get-lifecycle-policy-preview.rst
${PYSITELIB}/awscli/examples/ecr/get-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/ecr/get-login-password.rst
${PYSITELIB}/awscli/examples/ecr/get-login-password_description.rst
${PYSITELIB}/awscli/examples/ecr/get-login.rst
${PYSITELIB}/awscli/examples/ecr/get-login_description.rst
${PYSITELIB}/awscli/examples/ecr/get-repository-policy.rst
${PYSITELIB}/awscli/examples/ecr/initiate-layer-upload.rst
${PYSITELIB}/awscli/examples/ecr/list-images.rst
${PYSITELIB}/awscli/examples/ecr/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/ecr/put-image-scanning-configuration.rst
${PYSITELIB}/awscli/examples/ecr/put-image-tag-mutability.rst
${PYSITELIB}/awscli/examples/ecr/put-image.rst
${PYSITELIB}/awscli/examples/ecr/put-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/ecr/set-repository-policy.rst
${PYSITELIB}/awscli/examples/ecr/start-image-scan.rst
${PYSITELIB}/awscli/examples/ecr/start-lifecycle-policy-preview.rst
${PYSITELIB}/awscli/examples/ecr/tag-resource.rst
${PYSITELIB}/awscli/examples/ecr/untag-resource.rst
${PYSITELIB}/awscli/examples/ecr/upload-layer-part.rst
${PYSITELIB}/awscli/examples/ecs/create-capacity-provider.rst
${PYSITELIB}/awscli/examples/ecs/create-cluster.rst
${PYSITELIB}/awscli/examples/ecs/create-service.rst
${PYSITELIB}/awscli/examples/ecs/create-task-set.rst
${PYSITELIB}/awscli/examples/ecs/delete-account-setting.rst
${PYSITELIB}/awscli/examples/ecs/delete-attributes.rst
${PYSITELIB}/awscli/examples/ecs/delete-capacity-provider.rst
${PYSITELIB}/awscli/examples/ecs/delete-cluster.rst
${PYSITELIB}/awscli/examples/ecs/delete-service.rst
${PYSITELIB}/awscli/examples/ecs/delete-task-set.rst
${PYSITELIB}/awscli/examples/ecs/deregister-container-instance.rst
${PYSITELIB}/awscli/examples/ecs/deregister-task-definition.rst
${PYSITELIB}/awscli/examples/ecs/describe-capacity-providers.rst
${PYSITELIB}/awscli/examples/ecs/describe-clusters.rst
${PYSITELIB}/awscli/examples/ecs/describe-container-instances.rst
${PYSITELIB}/awscli/examples/ecs/describe-services.rst
${PYSITELIB}/awscli/examples/ecs/describe-task-definition.rst
${PYSITELIB}/awscli/examples/ecs/describe-task-sets.rst
${PYSITELIB}/awscli/examples/ecs/describe-tasks.rst
${PYSITELIB}/awscli/examples/ecs/list-account-settings.rst
${PYSITELIB}/awscli/examples/ecs/list-attributes.rst
${PYSITELIB}/awscli/examples/ecs/list-clusters.rst
${PYSITELIB}/awscli/examples/ecs/list-container-instances.rst
${PYSITELIB}/awscli/examples/ecs/list-services.rst
${PYSITELIB}/awscli/examples/ecs/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/ecs/list-task-definition-families.rst
${PYSITELIB}/awscli/examples/ecs/list-task-definitions.rst
${PYSITELIB}/awscli/examples/ecs/list-tasks.rst
${PYSITELIB}/awscli/examples/ecs/put-account-setting-default.rst
${PYSITELIB}/awscli/examples/ecs/put-account-setting.rst
${PYSITELIB}/awscli/examples/ecs/put-account-settings.rst
${PYSITELIB}/awscli/examples/ecs/put-attributes.rst
${PYSITELIB}/awscli/examples/ecs/put-cluster-capacity-providers.rst
${PYSITELIB}/awscli/examples/ecs/register-task-definition.rst
${PYSITELIB}/awscli/examples/ecs/run-task.rst
${PYSITELIB}/awscli/examples/ecs/start-task.rst
${PYSITELIB}/awscli/examples/ecs/stop-task.rst
${PYSITELIB}/awscli/examples/ecs/tag-resource.rst
${PYSITELIB}/awscli/examples/ecs/untag-resource.rst
${PYSITELIB}/awscli/examples/ecs/update-cluster-settings.rst
${PYSITELIB}/awscli/examples/ecs/update-container-agent.rst
${PYSITELIB}/awscli/examples/ecs/update-container-instances-state.rst
${PYSITELIB}/awscli/examples/ecs/update-service-primary-task-set.rst
${PYSITELIB}/awscli/examples/ecs/update-service.rst
${PYSITELIB}/awscli/examples/ecs/update-task-set.rst
${PYSITELIB}/awscli/examples/ecs/wait/services-stable.rst
${PYSITELIB}/awscli/examples/efs/create-file-system.rst
${PYSITELIB}/awscli/examples/efs/create-mount-target.rst
${PYSITELIB}/awscli/examples/efs/delete-file-system.rst
${PYSITELIB}/awscli/examples/efs/delete-mount-target.rst
${PYSITELIB}/awscli/examples/efs/describe-file-systems.rst
${PYSITELIB}/awscli/examples/efs/describe-mount-targets.rst
${PYSITELIB}/awscli/examples/efs/describe-tags.rst
${PYSITELIB}/awscli/examples/efs/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/efs/tag-resource.rst
${PYSITELIB}/awscli/examples/efs/untag-resource.rst
${PYSITELIB}/awscli/examples/eks/create-cluster.rst
${PYSITELIB}/awscli/examples/eks/delete-cluster.rst
${PYSITELIB}/awscli/examples/eks/describe-cluster.rst
${PYSITELIB}/awscli/examples/eks/describe-update.rst
${PYSITELIB}/awscli/examples/eks/get-token.rst
${PYSITELIB}/awscli/examples/eks/list-clusters.rst
${PYSITELIB}/awscli/examples/eks/list-updates.rst
${PYSITELIB}/awscli/examples/eks/update-cluster-config.rst
${PYSITELIB}/awscli/examples/eks/update-cluster-version.rst
${PYSITELIB}/awscli/examples/eks/update-kubeconfig.rst
${PYSITELIB}/awscli/examples/eks/update-kubeconfig/_description.rst
${PYSITELIB}/awscli/examples/eks/wait.rst
${PYSITELIB}/awscli/examples/elasticache/add-tags-to-resource.rst
${PYSITELIB}/awscli/examples/elasticache/authorize-cache-security-group-ingress.rst
${PYSITELIB}/awscli/examples/elasticache/batch-apply-update-action.rst
${PYSITELIB}/awscli/examples/elasticache/batch-stop-update-action.rst
${PYSITELIB}/awscli/examples/elasticache/copy-snapshot.rst
${PYSITELIB}/awscli/examples/elasticache/create-cache-cluster.rst
${PYSITELIB}/awscli/examples/elasticache/create-cache-parameter-group.rst
${PYSITELIB}/awscli/examples/elasticache/create-cache-subnet-group.rst
${PYSITELIB}/awscli/examples/elasticache/create-global-replication-group.rst
${PYSITELIB}/awscli/examples/elasticache/create-replication-group.rst
${PYSITELIB}/awscli/examples/elasticache/create-snapshot.rst
${PYSITELIB}/awscli/examples/elasticache/create-user-group.rst
${PYSITELIB}/awscli/examples/elasticache/create-user.rst
${PYSITELIB}/awscli/examples/elasticache/decrease-node-groups-in-global-replication-group.rst
${PYSITELIB}/awscli/examples/elasticache/decrease-replica-count.rst
${PYSITELIB}/awscli/examples/elasticache/delete-cache-cluster.rst
${PYSITELIB}/awscli/examples/elasticache/delete-cache-parameter-group.rst
${PYSITELIB}/awscli/examples/elasticache/delete-cache-subnet-group.rst
${PYSITELIB}/awscli/examples/elasticache/delete-global-replication-group.rst
${PYSITELIB}/awscli/examples/elasticache/delete-replication-group.rst
${PYSITELIB}/awscli/examples/elasticache/delete-snapshot.rst
${PYSITELIB}/awscli/examples/elasticache/delete-user-group.rst
${PYSITELIB}/awscli/examples/elasticache/delete-user.rst
${PYSITELIB}/awscli/examples/elasticache/describe-cache-clusters.rst
${PYSITELIB}/awscli/examples/elasticache/describe-cache-engine-versions.rst
${PYSITELIB}/awscli/examples/elasticache/describe-cache-parameter-groups.rst
${PYSITELIB}/awscli/examples/elasticache/describe-cache-parameters.rst
${PYSITELIB}/awscli/examples/elasticache/describe-cache-subnet-groups.rst
${PYSITELIB}/awscli/examples/elasticache/describe-engine-default-parameters.rst
${PYSITELIB}/awscli/examples/elasticache/describe-events.rst
${PYSITELIB}/awscli/examples/elasticache/describe-global-replication-groups.rst
${PYSITELIB}/awscli/examples/elasticache/describe-replication-groups.rst
${PYSITELIB}/awscli/examples/elasticache/describe-reserved-cache-nodes-offerings.rst
${PYSITELIB}/awscli/examples/elasticache/describe-reserved-cache-nodes.rst
${PYSITELIB}/awscli/examples/elasticache/describe-service-updates.rst
${PYSITELIB}/awscli/examples/elasticache/describe-snapshots.rst
${PYSITELIB}/awscli/examples/elasticache/describe-update-actions.rst
${PYSITELIB}/awscli/examples/elasticache/describe-user-groups.rst
${PYSITELIB}/awscli/examples/elasticache/describe-users.rst
${PYSITELIB}/awscli/examples/elasticache/disassociate-global-replication-group.rst
${PYSITELIB}/awscli/examples/elasticache/increase-node-groups-in-global-replication-group.rst
${PYSITELIB}/awscli/examples/elasticache/increase-replica-count.rst
${PYSITELIB}/awscli/examples/elasticache/list-allowed-node-type-modifications.rst
${PYSITELIB}/awscli/examples/elasticache/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/elasticache/modify-cache-cluster.rst
${PYSITELIB}/awscli/examples/elasticache/modify-cache-parameter-group.rst
${PYSITELIB}/awscli/examples/elasticache/modify-cache-subnet-group.rst
${PYSITELIB}/awscli/examples/elasticache/modify-global-replication-group.rst
${PYSITELIB}/awscli/examples/elasticache/modify-replication-group-shard-configuration.rst
${PYSITELIB}/awscli/examples/elasticache/modify-replication-group.rst
${PYSITELIB}/awscli/examples/elasticache/modify-user-group.rst
${PYSITELIB}/awscli/examples/elasticache/modify-user.rst
${PYSITELIB}/awscli/examples/elasticache/purchase-reserved-cache-nodes-offering.rst
${PYSITELIB}/awscli/examples/elasticache/reboot-cache-cluster.rst
${PYSITELIB}/awscli/examples/elasticache/reset-cache-parameter-group.rst
${PYSITELIB}/awscli/examples/elasticache/start-migration.rst
${PYSITELIB}/awscli/examples/elasticache/test-failover.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/abort-environment-update.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/check-dns-availability.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/create-application-version.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/create-application.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/create-configuration-template.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/create-environment.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/create-storage-location.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/delete-application-version.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/delete-application.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/delete-configuration-template.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/delete-environment-configuration.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/describe-application-versions.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/describe-applications.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/describe-configuration-options.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/describe-configuration-settings.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/describe-environment-health.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/describe-environment-resources.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/describe-environments.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/describe-events.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/describe-instances-health.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/list-available-solution-stacks.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/rebuild-environment.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/request-environment-info.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/restart-app-server.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/retrieve-environment-info.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/swap-environment-cnames.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/terminate-environment.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/update-application-version.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/update-application.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/update-configuration-template.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/update-environment.rst
${PYSITELIB}/awscli/examples/elasticbeanstalk/validate-configuration-settings.rst
${PYSITELIB}/awscli/examples/elastictranscoder/cancel-job.rst
${PYSITELIB}/awscli/examples/elastictranscoder/create-job.rst
${PYSITELIB}/awscli/examples/elastictranscoder/create-pipeline.rst
${PYSITELIB}/awscli/examples/elastictranscoder/create-preset.rst
${PYSITELIB}/awscli/examples/elastictranscoder/delete-pipeline.rst
${PYSITELIB}/awscli/examples/elastictranscoder/delete-preset.rst
${PYSITELIB}/awscli/examples/elastictranscoder/list-jobs-by-pipeline.rst
${PYSITELIB}/awscli/examples/elastictranscoder/list-jobs-by-status.rst
${PYSITELIB}/awscli/examples/elastictranscoder/list-pipelines.rst
${PYSITELIB}/awscli/examples/elastictranscoder/list-presets.rst
${PYSITELIB}/awscli/examples/elastictranscoder/read-job.rst
${PYSITELIB}/awscli/examples/elastictranscoder/read-pipeline.rst
${PYSITELIB}/awscli/examples/elastictranscoder/read-preset.rst
${PYSITELIB}/awscli/examples/elastictranscoder/update-pipeline-notifications.rst
${PYSITELIB}/awscli/examples/elastictranscoder/update-pipeline-status.rst
${PYSITELIB}/awscli/examples/elastictranscoder/update-pipeline.rst
${PYSITELIB}/awscli/examples/elb/add-tags.rst
${PYSITELIB}/awscli/examples/elb/apply-security-groups-to-load-balancer.rst
${PYSITELIB}/awscli/examples/elb/attach-load-balancer-to-subnets.rst
${PYSITELIB}/awscli/examples/elb/configure-health-check.rst
${PYSITELIB}/awscli/examples/elb/create-app-cookie-stickiness-policy.rst
${PYSITELIB}/awscli/examples/elb/create-lb-cookie-stickiness-policy.rst
${PYSITELIB}/awscli/examples/elb/create-load-balancer-listeners.rst
${PYSITELIB}/awscli/examples/elb/create-load-balancer-policy.rst
${PYSITELIB}/awscli/examples/elb/create-load-balancer.rst
${PYSITELIB}/awscli/examples/elb/delete-load-balancer-listeners.rst
${PYSITELIB}/awscli/examples/elb/delete-load-balancer-policy.rst
${PYSITELIB}/awscli/examples/elb/delete-load-balancer.rst
${PYSITELIB}/awscli/examples/elb/deregister-instances-from-load-balancer.rst
${PYSITELIB}/awscli/examples/elb/describe-account-limits.rst
${PYSITELIB}/awscli/examples/elb/describe-instance-health.rst
${PYSITELIB}/awscli/examples/elb/describe-load-balancer-attributes.rst
${PYSITELIB}/awscli/examples/elb/describe-load-balancer-policies.rst
${PYSITELIB}/awscli/examples/elb/describe-load-balancer-policy-types.rst
${PYSITELIB}/awscli/examples/elb/describe-load-balancers.rst
${PYSITELIB}/awscli/examples/elb/describe-tags.rst
${PYSITELIB}/awscli/examples/elb/detach-load-balancer-from-subnets.rst
${PYSITELIB}/awscli/examples/elb/disable-availability-zones-for-load-balancer.rst
${PYSITELIB}/awscli/examples/elb/enable-availability-zones-for-load-balancer.rst
${PYSITELIB}/awscli/examples/elb/modify-load-balancer-attributes.rst
${PYSITELIB}/awscli/examples/elb/register-instances-with-load-balancer.rst
${PYSITELIB}/awscli/examples/elb/remove-tags.rst
${PYSITELIB}/awscli/examples/elb/set-load-balancer-listener-ssl-certificate.rst
${PYSITELIB}/awscli/examples/elb/set-load-balancer-policies-for-backend-server.rst
${PYSITELIB}/awscli/examples/elb/set-load-balancer-policies-of-listener.rst
${PYSITELIB}/awscli/examples/elb/wait/any-instance-in-service.rst
${PYSITELIB}/awscli/examples/elb/wait/instance-deregistered.rst
${PYSITELIB}/awscli/examples/elb/wait/instance-in-service.rst
${PYSITELIB}/awscli/examples/elbv2/add-listener-certificates.rst
${PYSITELIB}/awscli/examples/elbv2/add-tags.rst
${PYSITELIB}/awscli/examples/elbv2/create-listener.rst
${PYSITELIB}/awscli/examples/elbv2/create-load-balancer.rst
${PYSITELIB}/awscli/examples/elbv2/create-rule.rst
${PYSITELIB}/awscli/examples/elbv2/create-target-group.rst
${PYSITELIB}/awscli/examples/elbv2/delete-listener.rst
${PYSITELIB}/awscli/examples/elbv2/delete-load-balancer.rst
${PYSITELIB}/awscli/examples/elbv2/delete-rule.rst
${PYSITELIB}/awscli/examples/elbv2/delete-target-group.rst
${PYSITELIB}/awscli/examples/elbv2/deregister-targets.rst
${PYSITELIB}/awscli/examples/elbv2/describe-account-limits.rst
${PYSITELIB}/awscli/examples/elbv2/describe-listener-certificates.rst
${PYSITELIB}/awscli/examples/elbv2/describe-listeners.rst
${PYSITELIB}/awscli/examples/elbv2/describe-load-balancer-attributes.rst
${PYSITELIB}/awscli/examples/elbv2/describe-load-balancers.rst
${PYSITELIB}/awscli/examples/elbv2/describe-rules.rst
${PYSITELIB}/awscli/examples/elbv2/describe-ssl-policies.rst
${PYSITELIB}/awscli/examples/elbv2/describe-tags.rst
${PYSITELIB}/awscli/examples/elbv2/describe-target-group-attributes.rst
${PYSITELIB}/awscli/examples/elbv2/describe-target-groups.rst
${PYSITELIB}/awscli/examples/elbv2/describe-target-health.rst
${PYSITELIB}/awscli/examples/elbv2/modify-listener.rst
${PYSITELIB}/awscli/examples/elbv2/modify-load-balancer-attributes.rst
${PYSITELIB}/awscli/examples/elbv2/modify-rule.rst
${PYSITELIB}/awscli/examples/elbv2/modify-target-group-attributes.rst
${PYSITELIB}/awscli/examples/elbv2/modify-target-group.rst
${PYSITELIB}/awscli/examples/elbv2/register-targets.rst
${PYSITELIB}/awscli/examples/elbv2/remove-listener-certificates.rst
${PYSITELIB}/awscli/examples/elbv2/remove-tags.rst
${PYSITELIB}/awscli/examples/elbv2/set-ip-address-type.rst
${PYSITELIB}/awscli/examples/elbv2/set-rule-priorities.rst
${PYSITELIB}/awscli/examples/elbv2/set-security-groups.rst
${PYSITELIB}/awscli/examples/elbv2/set-subnets.rst
${PYSITELIB}/awscli/examples/elbv2/wait/load-balancer-available.rst
${PYSITELIB}/awscli/examples/elbv2/wait/load-balancer-exists.rst
${PYSITELIB}/awscli/examples/elbv2/wait/load-balancers-deleted.rst
${PYSITELIB}/awscli/examples/elbv2/wait/target-deregistered.rst
${PYSITELIB}/awscli/examples/elbv2/wait/target-in-service.rst
${PYSITELIB}/awscli/examples/emr-containers/update-role-trust-policy.rst
${PYSITELIB}/awscli/examples/emr-containers/update-role-trust-policy/_description.rst
${PYSITELIB}/awscli/examples/emr/add-instance-fleet.rst
${PYSITELIB}/awscli/examples/emr/add-steps.rst
${PYSITELIB}/awscli/examples/emr/add-tags.rst
${PYSITELIB}/awscli/examples/emr/create-cluster-examples.rst
${PYSITELIB}/awscli/examples/emr/create-cluster-synopsis.txt
${PYSITELIB}/awscli/examples/emr/create-default-roles.rst
${PYSITELIB}/awscli/examples/emr/create-security-configuration.rst
${PYSITELIB}/awscli/examples/emr/delete-security-configuration.rst
${PYSITELIB}/awscli/examples/emr/describe-cluster.rst
${PYSITELIB}/awscli/examples/emr/describe-step.rst
${PYSITELIB}/awscli/examples/emr/get.rst
${PYSITELIB}/awscli/examples/emr/list-clusters.rst
${PYSITELIB}/awscli/examples/emr/list-instance-fleets.rst
${PYSITELIB}/awscli/examples/emr/list-instances.rst
${PYSITELIB}/awscli/examples/emr/list-security-configurations.rst
${PYSITELIB}/awscli/examples/emr/list-steps.rst
${PYSITELIB}/awscli/examples/emr/modify-cluster-attributes.rst
${PYSITELIB}/awscli/examples/emr/modify-instance-fleet.rst
${PYSITELIB}/awscli/examples/emr/put.rst
${PYSITELIB}/awscli/examples/emr/remove-tags.rst
${PYSITELIB}/awscli/examples/emr/schedule-hbase-backup.rst
${PYSITELIB}/awscli/examples/emr/socks.rst
${PYSITELIB}/awscli/examples/emr/ssh.rst
${PYSITELIB}/awscli/examples/emr/wait.rst
${PYSITELIB}/awscli/examples/es/create-elasticsearch-domain.rst
${PYSITELIB}/awscli/examples/es/describe-elasticsearch-domain-config.rst
${PYSITELIB}/awscli/examples/es/describe-elasticsearch-domain.rst
${PYSITELIB}/awscli/examples/es/describe-elasticsearch-domains.rst
${PYSITELIB}/awscli/examples/es/describe-reserved-elasticsearch-instances.rst
${PYSITELIB}/awscli/examples/es/list-domain-names.rst
${PYSITELIB}/awscli/examples/events/delete-rule.rst
${PYSITELIB}/awscli/examples/events/describe-rule.rst
${PYSITELIB}/awscli/examples/events/disable-rule.rst
${PYSITELIB}/awscli/examples/events/enable-rule.rst
${PYSITELIB}/awscli/examples/events/list-rule-names-by-target.rst
${PYSITELIB}/awscli/examples/events/list-rules.rst
${PYSITELIB}/awscli/examples/events/list-targets-by-rule.rst
${PYSITELIB}/awscli/examples/events/put-events.rst
${PYSITELIB}/awscli/examples/events/put-rule.rst
${PYSITELIB}/awscli/examples/events/put-targets.rst
${PYSITELIB}/awscli/examples/events/remove-targets.rst
${PYSITELIB}/awscli/examples/events/test-event-pattern.rst
${PYSITELIB}/awscli/examples/firehose/list-delivery-streams.rst
${PYSITELIB}/awscli/examples/firehose/put-record-batch.rst
${PYSITELIB}/awscli/examples/firehose/put-record.rst
${PYSITELIB}/awscli/examples/fis/create-experiment-template.rst
${PYSITELIB}/awscli/examples/fis/delete-experiment-template.rst
${PYSITELIB}/awscli/examples/fis/get-action.rst
${PYSITELIB}/awscli/examples/fis/get-experiment-template.rst
${PYSITELIB}/awscli/examples/fis/get-experiment.rst
${PYSITELIB}/awscli/examples/fis/list-actions.rst
${PYSITELIB}/awscli/examples/fis/list-experiment-templates.rst
${PYSITELIB}/awscli/examples/fis/list-experiments.rst
${PYSITELIB}/awscli/examples/fis/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/fis/start-experiment.rst
${PYSITELIB}/awscli/examples/fis/stop-experiment.rst
${PYSITELIB}/awscli/examples/fis/tag-resource.rst
${PYSITELIB}/awscli/examples/fis/untag-resource.rst
${PYSITELIB}/awscli/examples/fis/update-experiment-template.rst
${PYSITELIB}/awscli/examples/fms/associate-admin-account.rst
${PYSITELIB}/awscli/examples/fms/delete-notification-channel.rst
${PYSITELIB}/awscli/examples/fms/delete-policy.rst
${PYSITELIB}/awscli/examples/fms/disassociate-admin-account.rst
${PYSITELIB}/awscli/examples/fms/get-admin-account.rst
${PYSITELIB}/awscli/examples/fms/get-compliance-detail.rst
${PYSITELIB}/awscli/examples/fms/get-notification-channel.rst
${PYSITELIB}/awscli/examples/fms/get-policy.rst
${PYSITELIB}/awscli/examples/fms/list-compliance-status.rst
${PYSITELIB}/awscli/examples/fms/list-member-accounts.rst
${PYSITELIB}/awscli/examples/fms/list-policies.rst
${PYSITELIB}/awscli/examples/fms/put-notification-channel.rst
${PYSITELIB}/awscli/examples/fms/put-policy.rst
${PYSITELIB}/awscli/examples/gamelift/create-build.rst
${PYSITELIB}/awscli/examples/gamelift/create-fleet.rst
${PYSITELIB}/awscli/examples/gamelift/create-game-session-queue.rst
${PYSITELIB}/awscli/examples/gamelift/delete-build.rst
${PYSITELIB}/awscli/examples/gamelift/delete-fleet.rst
${PYSITELIB}/awscli/examples/gamelift/delete-game-session-queue.rst
${PYSITELIB}/awscli/examples/gamelift/describe-build.rst
${PYSITELIB}/awscli/examples/gamelift/describe-ec2-instance-limits.rst
${PYSITELIB}/awscli/examples/gamelift/describe-fleet-attributes.rst
${PYSITELIB}/awscli/examples/gamelift/describe-fleet-capacity.rst
${PYSITELIB}/awscli/examples/gamelift/describe-fleet-events.rst
${PYSITELIB}/awscli/examples/gamelift/describe-fleet-port-settings.rst
${PYSITELIB}/awscli/examples/gamelift/describe-fleet-utilization.rst
${PYSITELIB}/awscli/examples/gamelift/describe-game-session-queues.rst
${PYSITELIB}/awscli/examples/gamelift/describe-runtime-configuration.rst
${PYSITELIB}/awscli/examples/gamelift/list-builds.rst
${PYSITELIB}/awscli/examples/gamelift/list-fleets.rst
${PYSITELIB}/awscli/examples/gamelift/request-upload-credentials.rst
${PYSITELIB}/awscli/examples/gamelift/start-fleet-actions.rst
${PYSITELIB}/awscli/examples/gamelift/stop-fleet-actions.rst
${PYSITELIB}/awscli/examples/gamelift/update-build.rst
${PYSITELIB}/awscli/examples/gamelift/update-game-session-queue.rst
${PYSITELIB}/awscli/examples/gamelift/upload-build.rst
${PYSITELIB}/awscli/examples/glacier/abort-multipart-upload.rst
${PYSITELIB}/awscli/examples/glacier/abort-vault-lock.rst
${PYSITELIB}/awscli/examples/glacier/add-tags-to-vault.rst
${PYSITELIB}/awscli/examples/glacier/complete-multipart-upload.rst
${PYSITELIB}/awscli/examples/glacier/complete-vault-lock.rst
${PYSITELIB}/awscli/examples/glacier/create-vault.rst
${PYSITELIB}/awscli/examples/glacier/delete-archive.rst
${PYSITELIB}/awscli/examples/glacier/delete-vault-access-policy.rst
${PYSITELIB}/awscli/examples/glacier/delete-vault-notifications.rst
${PYSITELIB}/awscli/examples/glacier/delete-vault.rst
${PYSITELIB}/awscli/examples/glacier/describe-job.rst
${PYSITELIB}/awscli/examples/glacier/describe-vault.rst
${PYSITELIB}/awscli/examples/glacier/get-data-retrieval-policy.rst
${PYSITELIB}/awscli/examples/glacier/get-job-output.rst
${PYSITELIB}/awscli/examples/glacier/get-vault-access-policy.rst
${PYSITELIB}/awscli/examples/glacier/get-vault-lock.rst
${PYSITELIB}/awscli/examples/glacier/get-vault-notifications.rst
${PYSITELIB}/awscli/examples/glacier/initiate-job.rst
${PYSITELIB}/awscli/examples/glacier/initiate-multipart-upload.rst
${PYSITELIB}/awscli/examples/glacier/initiate-vault-lock.rst
${PYSITELIB}/awscli/examples/glacier/list-jobs.rst
${PYSITELIB}/awscli/examples/glacier/list-multipart-uploads.rst
${PYSITELIB}/awscli/examples/glacier/list-parts.rst
${PYSITELIB}/awscli/examples/glacier/list-provisioned-capacity.rst
${PYSITELIB}/awscli/examples/glacier/list-tags-for-vault.rst
${PYSITELIB}/awscli/examples/glacier/list-vaults.rst
${PYSITELIB}/awscli/examples/glacier/purchase-provisioned-capacity.rst
${PYSITELIB}/awscli/examples/glacier/remove-tags-from-vault.rst
${PYSITELIB}/awscli/examples/glacier/set-data-retrieval-policy.rst
${PYSITELIB}/awscli/examples/glacier/set-vault-access-policy.rst
${PYSITELIB}/awscli/examples/glacier/set-vault-notifications.rst
${PYSITELIB}/awscli/examples/glacier/upload-archive.rst
${PYSITELIB}/awscli/examples/glacier/upload-multipart-part.rst
${PYSITELIB}/awscli/examples/glacier/wait/vault-exists.rst
${PYSITELIB}/awscli/examples/glacier/wait/vault-not-exists.rst
${PYSITELIB}/awscli/examples/global_options.rst
${PYSITELIB}/awscli/examples/global_synopsis.rst
${PYSITELIB}/awscli/examples/globalaccelerator/add-custom-routing-endpoints.rst
${PYSITELIB}/awscli/examples/globalaccelerator/advertise-byoip-cidr.rst
${PYSITELIB}/awscli/examples/globalaccelerator/allow-custom-routing-traffic.rst
${PYSITELIB}/awscli/examples/globalaccelerator/create-accelerator.rst
${PYSITELIB}/awscli/examples/globalaccelerator/create-custom-routing-accelerator.rst
${PYSITELIB}/awscli/examples/globalaccelerator/create-custom-routing-endpoint-group.rst
${PYSITELIB}/awscli/examples/globalaccelerator/create-custom-routing-listener.rst
${PYSITELIB}/awscli/examples/globalaccelerator/create-endpoint-group.rst
${PYSITELIB}/awscli/examples/globalaccelerator/create-listener.rst
${PYSITELIB}/awscli/examples/globalaccelerator/deny-custom-routing-traffic.rst
${PYSITELIB}/awscli/examples/globalaccelerator/deprovision-byoip-cidr.rst
${PYSITELIB}/awscli/examples/globalaccelerator/describe-accelerator-attributes.rst
${PYSITELIB}/awscli/examples/globalaccelerator/describe-accelerator.rst
${PYSITELIB}/awscli/examples/globalaccelerator/describe-custom-routing-accelerator-attributes.rst
${PYSITELIB}/awscli/examples/globalaccelerator/describe-custom-routing-accelerator.rst
${PYSITELIB}/awscli/examples/globalaccelerator/describe-custom-routing-endpoint-group.rst
${PYSITELIB}/awscli/examples/globalaccelerator/describe-custom-routing-listener.rst
${PYSITELIB}/awscli/examples/globalaccelerator/describe-endpoint-group.rst
${PYSITELIB}/awscli/examples/globalaccelerator/describe-listener.rst
${PYSITELIB}/awscli/examples/globalaccelerator/list-accelerators.rst
${PYSITELIB}/awscli/examples/globalaccelerator/list-byoip-cidr.rst
${PYSITELIB}/awscli/examples/globalaccelerator/list-custom-routing-accelerators.rst
${PYSITELIB}/awscli/examples/globalaccelerator/list-custom-routing-endpoint-groups.rst
${PYSITELIB}/awscli/examples/globalaccelerator/list-custom-routing-listeners.rst
${PYSITELIB}/awscli/examples/globalaccelerator/list-custom-routing-port-mappings-by-destination.rst
${PYSITELIB}/awscli/examples/globalaccelerator/list-custom-routing-port-mappings.rst
${PYSITELIB}/awscli/examples/globalaccelerator/list-endpoint-groups.rst
${PYSITELIB}/awscli/examples/globalaccelerator/list-listeners.rst
${PYSITELIB}/awscli/examples/globalaccelerator/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/globalaccelerator/provision-byoip-cidr.rst
${PYSITELIB}/awscli/examples/globalaccelerator/tag-resource.rst
${PYSITELIB}/awscli/examples/globalaccelerator/untag-resource.rst
${PYSITELIB}/awscli/examples/globalaccelerator/update-accelerator-attributes.rst
${PYSITELIB}/awscli/examples/globalaccelerator/update-accelerator.rst
${PYSITELIB}/awscli/examples/globalaccelerator/update-custom-routing-accelerator-attributes.rst
${PYSITELIB}/awscli/examples/globalaccelerator/update-custom-routing-accelerator.rst
${PYSITELIB}/awscli/examples/globalaccelerator/update-custom-routing-listener.rst
${PYSITELIB}/awscli/examples/globalaccelerator/update-endpoint-group.rst
${PYSITELIB}/awscli/examples/globalaccelerator/update-listener.rst
${PYSITELIB}/awscli/examples/globalaccelerator/withdraw-byoip-cidr.rst
${PYSITELIB}/awscli/examples/glue/batch-stop-job-run.rst
${PYSITELIB}/awscli/examples/glue/create-connection.rst
${PYSITELIB}/awscli/examples/glue/create-database.rst
${PYSITELIB}/awscli/examples/glue/create-job.rst
${PYSITELIB}/awscli/examples/glue/create-table.rst
${PYSITELIB}/awscli/examples/glue/delete-job.rst
${PYSITELIB}/awscli/examples/glue/get-databases.rst
${PYSITELIB}/awscli/examples/glue/get-job-run.rst
${PYSITELIB}/awscli/examples/glue/get-job-runs.rst
${PYSITELIB}/awscli/examples/glue/get-job.rst
${PYSITELIB}/awscli/examples/glue/get-plan.rst
${PYSITELIB}/awscli/examples/glue/get-tables.rst
${PYSITELIB}/awscli/examples/glue/start-crawler.rst
${PYSITELIB}/awscli/examples/glue/start-job-run.rst
${PYSITELIB}/awscli/examples/grafana/list-workspaces.rst
${PYSITELIB}/awscli/examples/greengrass/associate-role-to-group.rst
${PYSITELIB}/awscli/examples/greengrass/associate-service-role-to-account.rst
${PYSITELIB}/awscli/examples/greengrass/create-connector-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/create-connector-definition.rst
${PYSITELIB}/awscli/examples/greengrass/create-core-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/create-core-definition.rst
${PYSITELIB}/awscli/examples/greengrass/create-deployment.rst
${PYSITELIB}/awscli/examples/greengrass/create-device-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/create-device-definition.rst
${PYSITELIB}/awscli/examples/greengrass/create-function-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/create-function-definition.rst
${PYSITELIB}/awscli/examples/greengrass/create-group-certificate-authority.rst
${PYSITELIB}/awscli/examples/greengrass/create-group-version.rst
${PYSITELIB}/awscli/examples/greengrass/create-group.rst
${PYSITELIB}/awscli/examples/greengrass/create-logger-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/create-logger-definition.rst
${PYSITELIB}/awscli/examples/greengrass/create-resource-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/create-resource-definition.rst
${PYSITELIB}/awscli/examples/greengrass/create-software-update-job.rst
${PYSITELIB}/awscli/examples/greengrass/create-subscription-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/create-subscription-definition.rst
${PYSITELIB}/awscli/examples/greengrass/delete-connector-definition.rst
${PYSITELIB}/awscli/examples/greengrass/delete-core-definition.rst
${PYSITELIB}/awscli/examples/greengrass/delete-device-definition.rst
${PYSITELIB}/awscli/examples/greengrass/delete-function-definition.rst
${PYSITELIB}/awscli/examples/greengrass/delete-group.rst
${PYSITELIB}/awscli/examples/greengrass/delete-logger-definition.rst
${PYSITELIB}/awscli/examples/greengrass/delete-resource-definition.rst
${PYSITELIB}/awscli/examples/greengrass/delete-subscription-definition.rst
${PYSITELIB}/awscli/examples/greengrass/disassociate-role-from-group.rst
${PYSITELIB}/awscli/examples/greengrass/disassociate-service-role-from-account.rst
${PYSITELIB}/awscli/examples/greengrass/get-associated-role.rst
${PYSITELIB}/awscli/examples/greengrass/get-bulk-deployment-status.rst
${PYSITELIB}/awscli/examples/greengrass/get-connectivity-info.rst
${PYSITELIB}/awscli/examples/greengrass/get-connector-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/get-connector-definition.rst
${PYSITELIB}/awscli/examples/greengrass/get-core-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/get-core-definition.rst
${PYSITELIB}/awscli/examples/greengrass/get-deployment-status.rst
${PYSITELIB}/awscli/examples/greengrass/get-device-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/get-device-definition.rst
${PYSITELIB}/awscli/examples/greengrass/get-function-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/get-function-definition.rst
${PYSITELIB}/awscli/examples/greengrass/get-group-certificate-authority.rst
${PYSITELIB}/awscli/examples/greengrass/get-group-certificate-configuration.rst
${PYSITELIB}/awscli/examples/greengrass/get-group-version.rst
${PYSITELIB}/awscli/examples/greengrass/get-group.rst
${PYSITELIB}/awscli/examples/greengrass/get-logger-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/get-logger-definition.rst
${PYSITELIB}/awscli/examples/greengrass/get-resource-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/get-resource-definition.rst
${PYSITELIB}/awscli/examples/greengrass/get-service-role-for-account.rst
${PYSITELIB}/awscli/examples/greengrass/get-subscription-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/get-subscription-definition.rst
${PYSITELIB}/awscli/examples/greengrass/get-thing-runtime-configuration.rst
${PYSITELIB}/awscli/examples/greengrass/list-bulk-deployment-detailed-reports.rst
${PYSITELIB}/awscli/examples/greengrass/list-bulk-deployments.rst
${PYSITELIB}/awscli/examples/greengrass/list-connector-definition-versions.rst
${PYSITELIB}/awscli/examples/greengrass/list-connector-definitions.rst
${PYSITELIB}/awscli/examples/greengrass/list-core-definition-versions.rst
${PYSITELIB}/awscli/examples/greengrass/list-core-definitions.rst
${PYSITELIB}/awscli/examples/greengrass/list-deployments.rst
${PYSITELIB}/awscli/examples/greengrass/list-device-definition-versions.rst
${PYSITELIB}/awscli/examples/greengrass/list-device-definitions.rst
${PYSITELIB}/awscli/examples/greengrass/list-function-definition-versions.rst
${PYSITELIB}/awscli/examples/greengrass/list-function-definitions.rst
${PYSITELIB}/awscli/examples/greengrass/list-group-certificate-authorities.rst
${PYSITELIB}/awscli/examples/greengrass/list-group-versions.rst
${PYSITELIB}/awscli/examples/greengrass/list-groups.rst
${PYSITELIB}/awscli/examples/greengrass/list-logger-definition-versions.rst
${PYSITELIB}/awscli/examples/greengrass/list-logger-definitions.rst
${PYSITELIB}/awscli/examples/greengrass/list-resource-definition-versions.rst
${PYSITELIB}/awscli/examples/greengrass/list-resource-definitions.rst
${PYSITELIB}/awscli/examples/greengrass/list-subscription-definition-versions.rst
${PYSITELIB}/awscli/examples/greengrass/list-subscription-definitions.rst
${PYSITELIB}/awscli/examples/greengrass/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/greengrass/reset-deployments.rst
${PYSITELIB}/awscli/examples/greengrass/start-bulk-deployment.rst
${PYSITELIB}/awscli/examples/greengrass/stop-bulk-deployment.rst
${PYSITELIB}/awscli/examples/greengrass/tag-resource.rst
${PYSITELIB}/awscli/examples/greengrass/untag-resource.rst
${PYSITELIB}/awscli/examples/greengrass/update-connectivity-info.rst
${PYSITELIB}/awscli/examples/greengrass/update-connector-definition.rst
${PYSITELIB}/awscli/examples/greengrass/update-core-definition.rst
${PYSITELIB}/awscli/examples/greengrass/update-device-definition.rst
${PYSITELIB}/awscli/examples/greengrass/update-function-definition.rst
${PYSITELIB}/awscli/examples/greengrass/update-group-certificate-configuration.rst
${PYSITELIB}/awscli/examples/greengrass/update-group.rst
${PYSITELIB}/awscli/examples/greengrass/update-logger-definition.rst
${PYSITELIB}/awscli/examples/greengrass/update-resource-definition.rst
${PYSITELIB}/awscli/examples/greengrass/update-subscription-definition.rst
${PYSITELIB}/awscli/examples/greengrass/update-thing-runtime-configuration.rst
${PYSITELIB}/awscli/examples/greengrassv2/associate-service-role-to-account.rst
${PYSITELIB}/awscli/examples/greengrassv2/batch-associate-client-device-with-core-device.rst
${PYSITELIB}/awscli/examples/greengrassv2/batch-disassociate-client-device-from-core-device.rst
${PYSITELIB}/awscli/examples/greengrassv2/cancel-deployment.rst
${PYSITELIB}/awscli/examples/greengrassv2/create-component-version.rst
${PYSITELIB}/awscli/examples/greengrassv2/create-deployment.rst
${PYSITELIB}/awscli/examples/greengrassv2/delete-component.rst
${PYSITELIB}/awscli/examples/greengrassv2/delete-core-device.rst
${PYSITELIB}/awscli/examples/greengrassv2/describe-component.rst
${PYSITELIB}/awscli/examples/greengrassv2/disassociate-service-role-from-account.rst
${PYSITELIB}/awscli/examples/greengrassv2/get-component-version-artifact.rst
${PYSITELIB}/awscli/examples/greengrassv2/get-component.rst
${PYSITELIB}/awscli/examples/greengrassv2/get-connectivity-info.rst
${PYSITELIB}/awscli/examples/greengrassv2/get-core-device.rst
${PYSITELIB}/awscli/examples/greengrassv2/get-deployment.rst
${PYSITELIB}/awscli/examples/greengrassv2/get-service-role-for-account.rst
${PYSITELIB}/awscli/examples/greengrassv2/list-client-devices-associated-with-core-device.rst
${PYSITELIB}/awscli/examples/greengrassv2/list-component-versions.rst
${PYSITELIB}/awscli/examples/greengrassv2/list-components.rst
${PYSITELIB}/awscli/examples/greengrassv2/list-core-devices.rst
${PYSITELIB}/awscli/examples/greengrassv2/list-deployments.rst
${PYSITELIB}/awscli/examples/greengrassv2/list-effective-deployments.rst
${PYSITELIB}/awscli/examples/greengrassv2/list-installed-components.rst
${PYSITELIB}/awscli/examples/greengrassv2/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/greengrassv2/tag-resource.rst
${PYSITELIB}/awscli/examples/greengrassv2/untag-resource.rst
${PYSITELIB}/awscli/examples/greengrassv2/update-connectivity-info.rst
${PYSITELIB}/awscli/examples/guardduty/accept-invitation.rst
${PYSITELIB}/awscli/examples/guardduty/archive-findings.rst
${PYSITELIB}/awscli/examples/guardduty/create-detector.rst
${PYSITELIB}/awscli/examples/guardduty/create-filter.rst
${PYSITELIB}/awscli/examples/guardduty/create-ip-set.rst
${PYSITELIB}/awscli/examples/guardduty/create-members.rst
${PYSITELIB}/awscli/examples/guardduty/create-publishing-destination.rst
${PYSITELIB}/awscli/examples/guardduty/create-sample-findings.rst
${PYSITELIB}/awscli/examples/guardduty/create-threat-intel-set.rst
${PYSITELIB}/awscli/examples/guardduty/decline-invitations.rst
${PYSITELIB}/awscli/examples/guardduty/delete-detector.rst
${PYSITELIB}/awscli/examples/guardduty/delete-filter.rst
${PYSITELIB}/awscli/examples/guardduty/disable-organization-admin-account.rst
${PYSITELIB}/awscli/examples/guardduty/disassociate-from-master-account.rst
${PYSITELIB}/awscli/examples/guardduty/get-detector.rst
${PYSITELIB}/awscli/examples/guardduty/get-findings.rst
${PYSITELIB}/awscli/examples/guardduty/get-ip-set.rst
${PYSITELIB}/awscli/examples/guardduty/get-master-account.rst
${PYSITELIB}/awscli/examples/guardduty/list-detectors.rst
${PYSITELIB}/awscli/examples/guardduty/list-findings.rst
${PYSITELIB}/awscli/examples/guardduty/list-invitations.rst
${PYSITELIB}/awscli/examples/guardduty/list-ip-sets.rst
${PYSITELIB}/awscli/examples/guardduty/list-members.rst
${PYSITELIB}/awscli/examples/guardduty/update-ip-set.rst
${PYSITELIB}/awscli/examples/health/describe-affected-entities.rst
${PYSITELIB}/awscli/examples/health/describe-event-details.rst
${PYSITELIB}/awscli/examples/health/describe-events.rst
${PYSITELIB}/awscli/examples/healthlake/create-fhir-datastore.rst
${PYSITELIB}/awscli/examples/healthlake/delete-fhir-datastore.rst
${PYSITELIB}/awscli/examples/healthlake/describe-fhir-datastore.rst
${PYSITELIB}/awscli/examples/healthlake/describe-fhir-export-job.rst
${PYSITELIB}/awscli/examples/healthlake/describe-fhir-import-job.rst
${PYSITELIB}/awscli/examples/healthlake/list-fhir-datastores.rst
${PYSITELIB}/awscli/examples/healthlake/list-fhir-export-jobs.rst
${PYSITELIB}/awscli/examples/healthlake/list-fhir-import-jobs.rst
${PYSITELIB}/awscli/examples/healthlake/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/healthlake/start-fhir-export-job.rst
${PYSITELIB}/awscli/examples/healthlake/start-fhir-import-job.rst
${PYSITELIB}/awscli/examples/healthlake/tag-resource.rst
${PYSITELIB}/awscli/examples/healthlake/untag-resource.rst
${PYSITELIB}/awscli/examples/iam/add-client-id-to-open-id-connect-provider.rst
${PYSITELIB}/awscli/examples/iam/add-role-to-instance-profile.rst
${PYSITELIB}/awscli/examples/iam/add-user-to-group.rst
${PYSITELIB}/awscli/examples/iam/attach-group-policy.rst
${PYSITELIB}/awscli/examples/iam/attach-role-policy.rst
${PYSITELIB}/awscli/examples/iam/attach-user-policy.rst
${PYSITELIB}/awscli/examples/iam/change-password.rst
${PYSITELIB}/awscli/examples/iam/create-access-key.rst
${PYSITELIB}/awscli/examples/iam/create-account-alias.rst
${PYSITELIB}/awscli/examples/iam/create-group.rst
${PYSITELIB}/awscli/examples/iam/create-instance-profile.rst
${PYSITELIB}/awscli/examples/iam/create-login-profile.rst
${PYSITELIB}/awscli/examples/iam/create-open-id-connect-provider.rst
${PYSITELIB}/awscli/examples/iam/create-policy-version.rst
${PYSITELIB}/awscli/examples/iam/create-policy.rst
${PYSITELIB}/awscli/examples/iam/create-role.rst
${PYSITELIB}/awscli/examples/iam/create-saml-provider.rst
${PYSITELIB}/awscli/examples/iam/create-service-linked-role.rst
${PYSITELIB}/awscli/examples/iam/create-service-specific-credential.rst
${PYSITELIB}/awscli/examples/iam/create-user.rst
${PYSITELIB}/awscli/examples/iam/create-virtual-mfa-device.rst
${PYSITELIB}/awscli/examples/iam/deactivate-mfa-device.rst
${PYSITELIB}/awscli/examples/iam/decode-authorization-message.rst
${PYSITELIB}/awscli/examples/iam/delete-access-key.rst
${PYSITELIB}/awscli/examples/iam/delete-account-alias.rst
${PYSITELIB}/awscli/examples/iam/delete-account-password-policy.rst
${PYSITELIB}/awscli/examples/iam/delete-group-policy.rst
${PYSITELIB}/awscli/examples/iam/delete-group.rst
${PYSITELIB}/awscli/examples/iam/delete-instance-profile.rst
${PYSITELIB}/awscli/examples/iam/delete-login-profile.rst
${PYSITELIB}/awscli/examples/iam/delete-open-id-connect-provider.rst
${PYSITELIB}/awscli/examples/iam/delete-policy-version.rst
${PYSITELIB}/awscli/examples/iam/delete-policy.rst
${PYSITELIB}/awscli/examples/iam/delete-role-permissions-boundary.rst
${PYSITELIB}/awscli/examples/iam/delete-role-policy.rst
${PYSITELIB}/awscli/examples/iam/delete-role.rst
${PYSITELIB}/awscli/examples/iam/delete-saml-provider.rst
${PYSITELIB}/awscli/examples/iam/delete-server-certificate.rst
${PYSITELIB}/awscli/examples/iam/delete-service-linked-role.rst
${PYSITELIB}/awscli/examples/iam/delete-service-specific-credential.rst
${PYSITELIB}/awscli/examples/iam/delete-signing-certificate.rst
${PYSITELIB}/awscli/examples/iam/delete-ssh-public-key.rst
${PYSITELIB}/awscli/examples/iam/delete-user-permissions-boundary.rst
${PYSITELIB}/awscli/examples/iam/delete-user-policy.rst
${PYSITELIB}/awscli/examples/iam/delete-user.rst
${PYSITELIB}/awscli/examples/iam/delete-virtual-mfa-device.rst
${PYSITELIB}/awscli/examples/iam/detach-group-policy.rst
${PYSITELIB}/awscli/examples/iam/detach-role-policy.rst
${PYSITELIB}/awscli/examples/iam/detach-user-policy.rst
${PYSITELIB}/awscli/examples/iam/enable-mfa-device.rst
${PYSITELIB}/awscli/examples/iam/generate-credential-report.rst
${PYSITELIB}/awscli/examples/iam/generate-organizations-access-report.rst
${PYSITELIB}/awscli/examples/iam/generate-service-last-accessed-details.rst
${PYSITELIB}/awscli/examples/iam/get-access-key-last-used.rst
${PYSITELIB}/awscli/examples/iam/get-account-authorization-details.rst
${PYSITELIB}/awscli/examples/iam/get-account-password-policy.rst
${PYSITELIB}/awscli/examples/iam/get-account-summary.rst
${PYSITELIB}/awscli/examples/iam/get-context-keys-for-custom-policy.rst
${PYSITELIB}/awscli/examples/iam/get-context-keys-for-principal-policy.rst
${PYSITELIB}/awscli/examples/iam/get-credential-report.rst
${PYSITELIB}/awscli/examples/iam/get-group-policy.rst
${PYSITELIB}/awscli/examples/iam/get-group.rst
${PYSITELIB}/awscli/examples/iam/get-instance-profile.rst
${PYSITELIB}/awscli/examples/iam/get-login-profile.rst
${PYSITELIB}/awscli/examples/iam/get-open-id-connect-provider.rst
${PYSITELIB}/awscli/examples/iam/get-organizations-access-report.rst
${PYSITELIB}/awscli/examples/iam/get-policy-version.rst
${PYSITELIB}/awscli/examples/iam/get-policy.rst
${PYSITELIB}/awscli/examples/iam/get-role-policy.rst
${PYSITELIB}/awscli/examples/iam/get-role.rst
${PYSITELIB}/awscli/examples/iam/get-saml-provider.rst
${PYSITELIB}/awscli/examples/iam/get-server-certificate.rst
${PYSITELIB}/awscli/examples/iam/get-service-last-accessed-details-with-entities.rst
${PYSITELIB}/awscli/examples/iam/get-service-last-accessed-details.rst
${PYSITELIB}/awscli/examples/iam/get-service-linked-role-deletion-status.rst
${PYSITELIB}/awscli/examples/iam/get-ssh-public-key.rst
${PYSITELIB}/awscli/examples/iam/get-user-policy.rst
${PYSITELIB}/awscli/examples/iam/get-user.rst
${PYSITELIB}/awscli/examples/iam/list-access-keys.rst
${PYSITELIB}/awscli/examples/iam/list-account-aliases.rst
${PYSITELIB}/awscli/examples/iam/list-attached-group-policies.rst
${PYSITELIB}/awscli/examples/iam/list-attached-role-policies.rst
${PYSITELIB}/awscli/examples/iam/list-attached-user-policies.rst
${PYSITELIB}/awscli/examples/iam/list-entities-for-policy.rst
${PYSITELIB}/awscli/examples/iam/list-group-policies.rst
${PYSITELIB}/awscli/examples/iam/list-groups-for-user.rst
${PYSITELIB}/awscli/examples/iam/list-groups.rst
${PYSITELIB}/awscli/examples/iam/list-instance-profiles-for-role.rst
${PYSITELIB}/awscli/examples/iam/list-instance-profiles.rst
${PYSITELIB}/awscli/examples/iam/list-mfa-devices.rst
${PYSITELIB}/awscli/examples/iam/list-open-id-connect-providers.rst
${PYSITELIB}/awscli/examples/iam/list-policies-granting-service-access.rst
${PYSITELIB}/awscli/examples/iam/list-policies.rst
${PYSITELIB}/awscli/examples/iam/list-policy-versions.rst
${PYSITELIB}/awscli/examples/iam/list-role-policies.rst
${PYSITELIB}/awscli/examples/iam/list-role-tags.rst
${PYSITELIB}/awscli/examples/iam/list-roles.rst
${PYSITELIB}/awscli/examples/iam/list-saml-providers.rst
${PYSITELIB}/awscli/examples/iam/list-server-certificates.rst
${PYSITELIB}/awscli/examples/iam/list-service-specific-credential.rst
${PYSITELIB}/awscli/examples/iam/list-service-specific-credentials.rst
${PYSITELIB}/awscli/examples/iam/list-signing-certificates.rst
${PYSITELIB}/awscli/examples/iam/list-ssh-public-keys.rst
${PYSITELIB}/awscli/examples/iam/list-user-policies.rst
${PYSITELIB}/awscli/examples/iam/list-user-tags.rst
${PYSITELIB}/awscli/examples/iam/list-users.rst
${PYSITELIB}/awscli/examples/iam/list-virtual-mfa-devices.rst
${PYSITELIB}/awscli/examples/iam/put-group-policy.rst
${PYSITELIB}/awscli/examples/iam/put-role-permissions-boundary.rst
${PYSITELIB}/awscli/examples/iam/put-role-policy.rst
${PYSITELIB}/awscli/examples/iam/put-user-permissions-boundary.rst
${PYSITELIB}/awscli/examples/iam/put-user-policy.rst
${PYSITELIB}/awscli/examples/iam/remove-client-id-from-open-id-connect-provider.rst
${PYSITELIB}/awscli/examples/iam/remove-role-from-instance-profile.rst
${PYSITELIB}/awscli/examples/iam/remove-user-from-group.rst
${PYSITELIB}/awscli/examples/iam/reset-service-specific-credential.rst
${PYSITELIB}/awscli/examples/iam/resync-mfa-device.rst
${PYSITELIB}/awscli/examples/iam/set-default-policy-version.rst
${PYSITELIB}/awscli/examples/iam/set-security-token-service-preferences.rst
${PYSITELIB}/awscli/examples/iam/simulate-custom-policy.rst
${PYSITELIB}/awscli/examples/iam/simulate-principal-policy.rst
${PYSITELIB}/awscli/examples/iam/tag-role.rst
${PYSITELIB}/awscli/examples/iam/tag-user.rst
${PYSITELIB}/awscli/examples/iam/untag-role.rst
${PYSITELIB}/awscli/examples/iam/untag-user.rst
${PYSITELIB}/awscli/examples/iam/update-access-key.rst
${PYSITELIB}/awscli/examples/iam/update-account-password-policy.rst
${PYSITELIB}/awscli/examples/iam/update-assume-role-policy.rst
${PYSITELIB}/awscli/examples/iam/update-group.rst
${PYSITELIB}/awscli/examples/iam/update-login-profile.rst
${PYSITELIB}/awscli/examples/iam/update-open-id-connect-provider-thumbprint.rst
${PYSITELIB}/awscli/examples/iam/update-role-description.rst
${PYSITELIB}/awscli/examples/iam/update-role.rst
${PYSITELIB}/awscli/examples/iam/update-saml-provider.rst
${PYSITELIB}/awscli/examples/iam/update-server-certificate.rst
${PYSITELIB}/awscli/examples/iam/update-service-specific-credential.rst
${PYSITELIB}/awscli/examples/iam/update-signing-certificate.rst
${PYSITELIB}/awscli/examples/iam/update-ssh-public-key.rst
${PYSITELIB}/awscli/examples/iam/update-user.rst
${PYSITELIB}/awscli/examples/iam/upload-server-certificate.rst
${PYSITELIB}/awscli/examples/iam/upload-signing-certificate.rst
${PYSITELIB}/awscli/examples/iam/upload-ssh-public-key.rst
${PYSITELIB}/awscli/examples/iam/wait/instance-profile-exists.rst
${PYSITELIB}/awscli/examples/iam/wait/policy-exists.rst
${PYSITELIB}/awscli/examples/iam/wait/role-exists.rst
${PYSITELIB}/awscli/examples/iam/wait/user-exists.rst
${PYSITELIB}/awscli/examples/imagebuilder/create-component.rst
${PYSITELIB}/awscli/examples/imagebuilder/create-distribution-configuration.rst
${PYSITELIB}/awscli/examples/imagebuilder/create-image-pipeline.rst
${PYSITELIB}/awscli/examples/imagebuilder/create-image-recipe.rst
${PYSITELIB}/awscli/examples/imagebuilder/create-image.rst
${PYSITELIB}/awscli/examples/imagebuilder/create-infrastructure-configuration.rst
${PYSITELIB}/awscli/examples/imagebuilder/delete-component.rst
${PYSITELIB}/awscli/examples/imagebuilder/delete-image-pipeline.rst
${PYSITELIB}/awscli/examples/imagebuilder/delete-image-recipe.rst
${PYSITELIB}/awscli/examples/imagebuilder/delete-image.rst
${PYSITELIB}/awscli/examples/imagebuilder/delete-infrastructure-configuration.rst
${PYSITELIB}/awscli/examples/imagebuilder/get-component-policy.rst
${PYSITELIB}/awscli/examples/imagebuilder/get-component.rst
${PYSITELIB}/awscli/examples/imagebuilder/get-distribution-configuration.rst
${PYSITELIB}/awscli/examples/imagebuilder/get-image-pipeline.rst
${PYSITELIB}/awscli/examples/imagebuilder/get-image-policy.rst
${PYSITELIB}/awscli/examples/imagebuilder/get-image-recipe-policy.rst
${PYSITELIB}/awscli/examples/imagebuilder/get-image.rst
${PYSITELIB}/awscli/examples/imagebuilder/get-infrastructure-configuration.rst
${PYSITELIB}/awscli/examples/imagebuilder/import-component.rst
${PYSITELIB}/awscli/examples/imagebuilder/list-component-build-versions.rst
${PYSITELIB}/awscli/examples/imagebuilder/list-components.rst
${PYSITELIB}/awscli/examples/imagebuilder/list-distribution-configurations.rst
${PYSITELIB}/awscli/examples/imagebuilder/list-image-build-versions.rst
${PYSITELIB}/awscli/examples/imagebuilder/list-image-pipeline-images.rst
${PYSITELIB}/awscli/examples/imagebuilder/list-image-recipes.rst
${PYSITELIB}/awscli/examples/imagebuilder/list-images.rst
${PYSITELIB}/awscli/examples/imagebuilder/list-infrastructure-configurations.rst
${PYSITELIB}/awscli/examples/imagebuilder/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/imagebuilder/put-component-policy.rst
${PYSITELIB}/awscli/examples/imagebuilder/put-image-policy.rst
${PYSITELIB}/awscli/examples/imagebuilder/put-image-recipe-policy.rst
${PYSITELIB}/awscli/examples/imagebuilder/start-image-pipeline-execution.rst
${PYSITELIB}/awscli/examples/imagebuilder/tag-resource.rst
${PYSITELIB}/awscli/examples/imagebuilder/untag-resource.rst
${PYSITELIB}/awscli/examples/imagebuilder/update-distribution-configuration.rst
${PYSITELIB}/awscli/examples/imagebuilder/update-image-pipeline.rst
${PYSITELIB}/awscli/examples/imagebuilder/update-infrastructure-configuration.rst
${PYSITELIB}/awscli/examples/importexport/cancel-job.rst
${PYSITELIB}/awscli/examples/importexport/create-job.rst
${PYSITELIB}/awscli/examples/importexport/get-shipping-label.rst
${PYSITELIB}/awscli/examples/importexport/get-status.rst
${PYSITELIB}/awscli/examples/importexport/list-jobs.rst
${PYSITELIB}/awscli/examples/importexport/update-job.rst
${PYSITELIB}/awscli/examples/inspector/add-attributes-to-findings.rst
${PYSITELIB}/awscli/examples/inspector/create-assessment-target.rst
${PYSITELIB}/awscli/examples/inspector/create-assessment-template.rst
${PYSITELIB}/awscli/examples/inspector/create-resource-group.rst
${PYSITELIB}/awscli/examples/inspector/delete-assessment-run.rst
${PYSITELIB}/awscli/examples/inspector/delete-assessment-target.rst
${PYSITELIB}/awscli/examples/inspector/delete-assessment-template.rst
${PYSITELIB}/awscli/examples/inspector/describe-assessment-runs.rst
${PYSITELIB}/awscli/examples/inspector/describe-assessment-targets.rst
${PYSITELIB}/awscli/examples/inspector/describe-assessment-templates.rst
${PYSITELIB}/awscli/examples/inspector/describe-cross-account-access-role.rst
${PYSITELIB}/awscli/examples/inspector/describe-findings.rst
${PYSITELIB}/awscli/examples/inspector/describe-resource-groups.rst
${PYSITELIB}/awscli/examples/inspector/describe-rules-packages.rst
${PYSITELIB}/awscli/examples/inspector/get-telemetry-metadata.rst
${PYSITELIB}/awscli/examples/inspector/list-assessment-run-agents.rst
${PYSITELIB}/awscli/examples/inspector/list-assessment-runs.rst
${PYSITELIB}/awscli/examples/inspector/list-assessment-targets.rst
${PYSITELIB}/awscli/examples/inspector/list-assessment-templates.rst
${PYSITELIB}/awscli/examples/inspector/list-event-subscriptions.rst
${PYSITELIB}/awscli/examples/inspector/list-findings.rst
${PYSITELIB}/awscli/examples/inspector/list-rules-packages.rst
${PYSITELIB}/awscli/examples/inspector/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/inspector/preview-agents.rst
${PYSITELIB}/awscli/examples/inspector/register-cross-account-access-role.rst
${PYSITELIB}/awscli/examples/inspector/remove-attributes-from-findings.rst
${PYSITELIB}/awscli/examples/inspector/set-tags-for-resource.rst
${PYSITELIB}/awscli/examples/inspector/start-assessment-run.rst
${PYSITELIB}/awscli/examples/inspector/stop-assessment-run.rst
${PYSITELIB}/awscli/examples/inspector/subscribe-to-event.rst
${PYSITELIB}/awscli/examples/inspector/unsubscribe-from-event.rst
${PYSITELIB}/awscli/examples/inspector/update-assessment-target.rst
${PYSITELIB}/awscli/examples/iot-data/delete-thing-shadow.rst
${PYSITELIB}/awscli/examples/iot-data/get-thing-shadow.rst
${PYSITELIB}/awscli/examples/iot-data/update-thing-shadow.rst
${PYSITELIB}/awscli/examples/iot-jobs-data/describe-job-execution.rst
${PYSITELIB}/awscli/examples/iot-jobs-data/get-pending-job-executions.rst
${PYSITELIB}/awscli/examples/iot-jobs-data/start-next-pending-job-execution.rst
${PYSITELIB}/awscli/examples/iot-jobs-data/update-job-execution.rst
${PYSITELIB}/awscli/examples/iot/accept-certificate-transfer.rst
${PYSITELIB}/awscli/examples/iot/add-thing-to-billing-group.rst
${PYSITELIB}/awscli/examples/iot/add-thing-to-thing-group.rst
${PYSITELIB}/awscli/examples/iot/associate-targets-with-job.rst
${PYSITELIB}/awscli/examples/iot/attach-policy.rst
${PYSITELIB}/awscli/examples/iot/attach-security-profile.rst
${PYSITELIB}/awscli/examples/iot/attach-thing-principal.rst
${PYSITELIB}/awscli/examples/iot/cancel-audit-mitigation-actions-task.rst
${PYSITELIB}/awscli/examples/iot/cancel-audit-task.rst
${PYSITELIB}/awscli/examples/iot/cancel-certificate-transfer.rst
${PYSITELIB}/awscli/examples/iot/cancel-job-execution.rst
${PYSITELIB}/awscli/examples/iot/cancel-job.rst
${PYSITELIB}/awscli/examples/iot/clear-default-authorizer.rst
${PYSITELIB}/awscli/examples/iot/confirm-topic-rule-destination.rst
${PYSITELIB}/awscli/examples/iot/create-audit-suppression.rst
${PYSITELIB}/awscli/examples/iot/create-authorizer.rst
${PYSITELIB}/awscli/examples/iot/create-billing-group.rst
${PYSITELIB}/awscli/examples/iot/create-certificate-from-csr.rst
${PYSITELIB}/awscli/examples/iot/create-custom-metric.rst
${PYSITELIB}/awscli/examples/iot/create-dimension.rst
${PYSITELIB}/awscli/examples/iot/create-domain-configuration.rst
${PYSITELIB}/awscli/examples/iot/create-dynamic-thing-group.rst
${PYSITELIB}/awscli/examples/iot/create-job.rst
${PYSITELIB}/awscli/examples/iot/create-keys-and-certificate.rst
${PYSITELIB}/awscli/examples/iot/create-mitigation-action.rst
${PYSITELIB}/awscli/examples/iot/create-ota-update.rst
${PYSITELIB}/awscli/examples/iot/create-policy-version.rst
${PYSITELIB}/awscli/examples/iot/create-policy.rst
${PYSITELIB}/awscli/examples/iot/create-provisioning-claim.rst
${PYSITELIB}/awscli/examples/iot/create-provisioning-template-version.rst
${PYSITELIB}/awscli/examples/iot/create-provisioning-template.rst
${PYSITELIB}/awscli/examples/iot/create-role-alias.rst
${PYSITELIB}/awscli/examples/iot/create-scheduled-audit.rst
${PYSITELIB}/awscli/examples/iot/create-security-profile.rst
${PYSITELIB}/awscli/examples/iot/create-stream.rst
${PYSITELIB}/awscli/examples/iot/create-thing-group.rst
${PYSITELIB}/awscli/examples/iot/create-thing-type.rst
${PYSITELIB}/awscli/examples/iot/create-thing.rst
${PYSITELIB}/awscli/examples/iot/create-topic-rule-destination.rst
${PYSITELIB}/awscli/examples/iot/create-topic-rule.rst
${PYSITELIB}/awscli/examples/iot/delete-account-audit-configuration.rst
${PYSITELIB}/awscli/examples/iot/delete-audit-suppression.rst
${PYSITELIB}/awscli/examples/iot/delete-authorizer.rst
${PYSITELIB}/awscli/examples/iot/delete-billing-group.rst
${PYSITELIB}/awscli/examples/iot/delete-ca-certificate.rst
${PYSITELIB}/awscli/examples/iot/delete-certificate.rst
${PYSITELIB}/awscli/examples/iot/delete-custom-metric.rst
${PYSITELIB}/awscli/examples/iot/delete-dimension.rst
${PYSITELIB}/awscli/examples/iot/delete-domain-configuration.rst
${PYSITELIB}/awscli/examples/iot/delete-dynamic-thing-group.rst
${PYSITELIB}/awscli/examples/iot/delete-job-execution.rst
${PYSITELIB}/awscli/examples/iot/delete-job.rst
${PYSITELIB}/awscli/examples/iot/delete-mitigation-action.rst
${PYSITELIB}/awscli/examples/iot/delete-ota-update.rst
${PYSITELIB}/awscli/examples/iot/delete-policy-version.rst
${PYSITELIB}/awscli/examples/iot/delete-policy.rst
${PYSITELIB}/awscli/examples/iot/delete-provisioning-template-version.rst
${PYSITELIB}/awscli/examples/iot/delete-provisioning-template.rst
${PYSITELIB}/awscli/examples/iot/delete-registration-code.rst
${PYSITELIB}/awscli/examples/iot/delete-role-alias.rst
${PYSITELIB}/awscli/examples/iot/delete-scheduled-audit.rst
${PYSITELIB}/awscli/examples/iot/delete-security-profile.rst
${PYSITELIB}/awscli/examples/iot/delete-stream.rst
${PYSITELIB}/awscli/examples/iot/delete-thing-group.rst
${PYSITELIB}/awscli/examples/iot/delete-thing-type.rst
${PYSITELIB}/awscli/examples/iot/delete-thing.rst
${PYSITELIB}/awscli/examples/iot/delete-topic-rule-destination.rst
${PYSITELIB}/awscli/examples/iot/delete-topic-rule.rst
${PYSITELIB}/awscli/examples/iot/delete-v2-logging-level.rst
${PYSITELIB}/awscli/examples/iot/deprecate-thing-type.rst
${PYSITELIB}/awscli/examples/iot/describe-account-audit-configuration.rst
${PYSITELIB}/awscli/examples/iot/describe-audit-finding.rst
${PYSITELIB}/awscli/examples/iot/describe-audit-mitigation-actions-task.rst
${PYSITELIB}/awscli/examples/iot/describe-audit-suppression.rst
${PYSITELIB}/awscli/examples/iot/describe-audit-task.rst
${PYSITELIB}/awscli/examples/iot/describe-authorizer.rst
${PYSITELIB}/awscli/examples/iot/describe-billing-group.rst
${PYSITELIB}/awscli/examples/iot/describe-ca-certificate.rst
${PYSITELIB}/awscli/examples/iot/describe-certificate.rst
${PYSITELIB}/awscli/examples/iot/describe-custom-metric.rst
${PYSITELIB}/awscli/examples/iot/describe-default-authorizer.rst
${PYSITELIB}/awscli/examples/iot/describe-dimension.rst
${PYSITELIB}/awscli/examples/iot/describe-domain-configuration.rst
${PYSITELIB}/awscli/examples/iot/describe-endpoint.rst
${PYSITELIB}/awscli/examples/iot/describe-event-configurations.rst
${PYSITELIB}/awscli/examples/iot/describe-index.rst
${PYSITELIB}/awscli/examples/iot/describe-job-execution.rst
${PYSITELIB}/awscli/examples/iot/describe-job.rst
${PYSITELIB}/awscli/examples/iot/describe-mitigation-action.rst
${PYSITELIB}/awscli/examples/iot/describe-provisioning-template-version.rst
${PYSITELIB}/awscli/examples/iot/describe-provisioning-template.rst
${PYSITELIB}/awscli/examples/iot/describe-role-alias.rst
${PYSITELIB}/awscli/examples/iot/describe-scheduled-audit.rst
${PYSITELIB}/awscli/examples/iot/describe-security-profile.rst
${PYSITELIB}/awscli/examples/iot/describe-stream.rst
${PYSITELIB}/awscli/examples/iot/describe-thing-group.rst
${PYSITELIB}/awscli/examples/iot/describe-thing-type.rst
${PYSITELIB}/awscli/examples/iot/describe-thing.rst
${PYSITELIB}/awscli/examples/iot/detach-policy.rst
${PYSITELIB}/awscli/examples/iot/detach-security-profile.rst
${PYSITELIB}/awscli/examples/iot/detach-thing-principal.rst
${PYSITELIB}/awscli/examples/iot/disable-topic-rule.rst
${PYSITELIB}/awscli/examples/iot/enable-topic-rule.rst
${PYSITELIB}/awscli/examples/iot/get-behavior-model-training-summaries.rst
${PYSITELIB}/awscli/examples/iot/get-cardinality.rst
${PYSITELIB}/awscli/examples/iot/get-effective-policies.rst
${PYSITELIB}/awscli/examples/iot/get-indexing-configuration.rst
${PYSITELIB}/awscli/examples/iot/get-job-document.rst
${PYSITELIB}/awscli/examples/iot/get-logging-options.rst
${PYSITELIB}/awscli/examples/iot/get-ota-update.rst
${PYSITELIB}/awscli/examples/iot/get-percentiles.rst
${PYSITELIB}/awscli/examples/iot/get-policy-version.rst
${PYSITELIB}/awscli/examples/iot/get-policy.rst
${PYSITELIB}/awscli/examples/iot/get-registration-code.rst
${PYSITELIB}/awscli/examples/iot/get-statistics.rst
${PYSITELIB}/awscli/examples/iot/get-topic-rule-destination.rst
${PYSITELIB}/awscli/examples/iot/get-topic-rule.rst
${PYSITELIB}/awscli/examples/iot/get-v2-logging-options.rst
${PYSITELIB}/awscli/examples/iot/list-active-violations.rst
${PYSITELIB}/awscli/examples/iot/list-attached-policies.rst
${PYSITELIB}/awscli/examples/iot/list-audit-findings.rst
${PYSITELIB}/awscli/examples/iot/list-audit-mitigation-actions-executions.rst
${PYSITELIB}/awscli/examples/iot/list-audit-mitigation-actions-tasks.rst
${PYSITELIB}/awscli/examples/iot/list-audit-suppressions.rst
${PYSITELIB}/awscli/examples/iot/list-audit-tasks.rst
${PYSITELIB}/awscli/examples/iot/list-authorizers.rst
${PYSITELIB}/awscli/examples/iot/list-billing-groups.rst
${PYSITELIB}/awscli/examples/iot/list-ca-certificates.rst
${PYSITELIB}/awscli/examples/iot/list-certificates-by-ca.rst
${PYSITELIB}/awscli/examples/iot/list-certificates.rst
${PYSITELIB}/awscli/examples/iot/list-custom-metrics.rst
${PYSITELIB}/awscli/examples/iot/list-dimensions.rst
${PYSITELIB}/awscli/examples/iot/list-domain-configurations.rst
${PYSITELIB}/awscli/examples/iot/list-indices.rst
${PYSITELIB}/awscli/examples/iot/list-job-executions-for-job.rst
${PYSITELIB}/awscli/examples/iot/list-job-executions-for-thing.rst
${PYSITELIB}/awscli/examples/iot/list-jobs.rst
${PYSITELIB}/awscli/examples/iot/list-mitigation-actions.rst
${PYSITELIB}/awscli/examples/iot/list-mitigations-actions.rst
${PYSITELIB}/awscli/examples/iot/list-ota-updates.rst
${PYSITELIB}/awscli/examples/iot/list-outgoing-certificates.rst
${PYSITELIB}/awscli/examples/iot/list-policies.rst
${PYSITELIB}/awscli/examples/iot/list-policy-versions.rst
${PYSITELIB}/awscli/examples/iot/list-principal-things.rst
${PYSITELIB}/awscli/examples/iot/list-provisioning-template-versions.rst
${PYSITELIB}/awscli/examples/iot/list-provisioning-templates.rst
${PYSITELIB}/awscli/examples/iot/list-role-aliases.rst
${PYSITELIB}/awscli/examples/iot/list-scheduled-audits.rst
${PYSITELIB}/awscli/examples/iot/list-security-profiles-for-target.rst
${PYSITELIB}/awscli/examples/iot/list-security-profiles.rst
${PYSITELIB}/awscli/examples/iot/list-streams.rst
${PYSITELIB}/awscli/examples/iot/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/iot/list-targets-for-policy.rst
${PYSITELIB}/awscli/examples/iot/list-targets-for-security-profile.rst
${PYSITELIB}/awscli/examples/iot/list-thing-groups-for-thing.rst
${PYSITELIB}/awscli/examples/iot/list-thing-groups.rst
${PYSITELIB}/awscli/examples/iot/list-thing-principals.rst
${PYSITELIB}/awscli/examples/iot/list-thing-types.rst
${PYSITELIB}/awscli/examples/iot/list-things-in-billing-group.rst
${PYSITELIB}/awscli/examples/iot/list-things-in-thing-group.rst
${PYSITELIB}/awscli/examples/iot/list-things.rst
${PYSITELIB}/awscli/examples/iot/list-topic-rule-destinations.rst
${PYSITELIB}/awscli/examples/iot/list-topic-rules.rst
${PYSITELIB}/awscli/examples/iot/list-v2-logging-levels.rst
${PYSITELIB}/awscli/examples/iot/list-violation-events.rst
${PYSITELIB}/awscli/examples/iot/register-ca-certificate.rst
${PYSITELIB}/awscli/examples/iot/register-certificate.rst
${PYSITELIB}/awscli/examples/iot/register-thing.rst
${PYSITELIB}/awscli/examples/iot/reject-certificate-transfer.rst
${PYSITELIB}/awscli/examples/iot/remove-thing-from-billing-group.rst
${PYSITELIB}/awscli/examples/iot/remove-thing-from-thing-group.rst
${PYSITELIB}/awscli/examples/iot/replace-topic-rule.rst
${PYSITELIB}/awscli/examples/iot/search-index.rst
${PYSITELIB}/awscli/examples/iot/set-default-authorizer.rst
${PYSITELIB}/awscli/examples/iot/set-default-policy-version.rst
${PYSITELIB}/awscli/examples/iot/set-v2-logging-level.rst
${PYSITELIB}/awscli/examples/iot/set-v2-logging-options.rst
${PYSITELIB}/awscli/examples/iot/start-audit-mitigation-actions-task.rst
${PYSITELIB}/awscli/examples/iot/start-on-demand-audit-task.rst
${PYSITELIB}/awscli/examples/iot/tag-resource.rst
${PYSITELIB}/awscli/examples/iot/test-authorization.rst
${PYSITELIB}/awscli/examples/iot/test-invoke-authorizer.rst
${PYSITELIB}/awscli/examples/iot/transfer-certificate.rst
${PYSITELIB}/awscli/examples/iot/untag-resource.rst
${PYSITELIB}/awscli/examples/iot/update-account-audit-configuration.rst
${PYSITELIB}/awscli/examples/iot/update-audit-suppression.rst
${PYSITELIB}/awscli/examples/iot/update-authorizer.rst
${PYSITELIB}/awscli/examples/iot/update-billing-group.rst
${PYSITELIB}/awscli/examples/iot/update-ca-certificate.rst
${PYSITELIB}/awscli/examples/iot/update-certificate.rst
${PYSITELIB}/awscli/examples/iot/update-custom-metric.rst
${PYSITELIB}/awscli/examples/iot/update-dimension.rst
${PYSITELIB}/awscli/examples/iot/update-domain-configuration.rst
${PYSITELIB}/awscli/examples/iot/update-dynamic-thing-group.rst
${PYSITELIB}/awscli/examples/iot/update-event-configurations.rst
${PYSITELIB}/awscli/examples/iot/update-indexing-configuration.rst
${PYSITELIB}/awscli/examples/iot/update-job.rst
${PYSITELIB}/awscli/examples/iot/update-mitigation-action.rst
${PYSITELIB}/awscli/examples/iot/update-provisioning-template.rst
${PYSITELIB}/awscli/examples/iot/update-role-alias.rst
${PYSITELIB}/awscli/examples/iot/update-scheduled-audit.rst
${PYSITELIB}/awscli/examples/iot/update-security-profile.rst
${PYSITELIB}/awscli/examples/iot/update-stream.rst
${PYSITELIB}/awscli/examples/iot/update-thing-group.rst
${PYSITELIB}/awscli/examples/iot/update-thing-groups-for-thing.rst
${PYSITELIB}/awscli/examples/iot/update-thing.rst
${PYSITELIB}/awscli/examples/iot/update-topic-rule-destination.rst
${PYSITELIB}/awscli/examples/iot/validate-security-profile-behaviors.rst
${PYSITELIB}/awscli/examples/iot1click-devices/claim-devices-by-claim-code.rst
${PYSITELIB}/awscli/examples/iot1click-devices/describe-device.rst
${PYSITELIB}/awscli/examples/iot1click-devices/finalize-device-claim.rst
${PYSITELIB}/awscli/examples/iot1click-devices/get-device-methods.rst
${PYSITELIB}/awscli/examples/iot1click-devices/initiate-device-claim.rst
${PYSITELIB}/awscli/examples/iot1click-devices/invoke-device-method.rst
${PYSITELIB}/awscli/examples/iot1click-devices/list-device-events.rst
${PYSITELIB}/awscli/examples/iot1click-devices/list-devices.rst
${PYSITELIB}/awscli/examples/iot1click-devices/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/iot1click-devices/tag-resource.rst
${PYSITELIB}/awscli/examples/iot1click-devices/unclaim-device.rst
${PYSITELIB}/awscli/examples/iot1click-devices/untag-resource.rst
${PYSITELIB}/awscli/examples/iot1click-devices/update-device-state.rst
${PYSITELIB}/awscli/examples/iot1click-projects/associate-device-with-placement.rst
${PYSITELIB}/awscli/examples/iot1click-projects/create-placement.rst
${PYSITELIB}/awscli/examples/iot1click-projects/create-project.rst
${PYSITELIB}/awscli/examples/iot1click-projects/delete-placement.rst
${PYSITELIB}/awscli/examples/iot1click-projects/delete-project.rst
${PYSITELIB}/awscli/examples/iot1click-projects/describe-placement.rst
${PYSITELIB}/awscli/examples/iot1click-projects/describe-project.rst
${PYSITELIB}/awscli/examples/iot1click-projects/disassociate-device-from-placement.rst
${PYSITELIB}/awscli/examples/iot1click-projects/get-devices-in-placement.rst
${PYSITELIB}/awscli/examples/iot1click-projects/list-placements.rst
${PYSITELIB}/awscli/examples/iot1click-projects/list-projects.rst
${PYSITELIB}/awscli/examples/iot1click-projects/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/iot1click-projects/tag-resource.rst
${PYSITELIB}/awscli/examples/iot1click-projects/untag-resource.rst
${PYSITELIB}/awscli/examples/iot1click-projects/update-placement.rst
${PYSITELIB}/awscli/examples/iot1click-projects/update-project.rst
${PYSITELIB}/awscli/examples/iotanalytics/batch-put-message.rst
${PYSITELIB}/awscli/examples/iotanalytics/cancel-pipeline-reprocessing.rst
${PYSITELIB}/awscli/examples/iotanalytics/create-channel.rst
${PYSITELIB}/awscli/examples/iotanalytics/create-dataset-content.rst
${PYSITELIB}/awscli/examples/iotanalytics/create-dataset.rst
${PYSITELIB}/awscli/examples/iotanalytics/create-datastore.rst
${PYSITELIB}/awscli/examples/iotanalytics/create-pipeline.rst
${PYSITELIB}/awscli/examples/iotanalytics/delete-channel.rst
${PYSITELIB}/awscli/examples/iotanalytics/delete-dataset-content.rst
${PYSITELIB}/awscli/examples/iotanalytics/delete-dataset.rst
${PYSITELIB}/awscli/examples/iotanalytics/delete-datastore.rst
${PYSITELIB}/awscli/examples/iotanalytics/delete-pipeline.rst
${PYSITELIB}/awscli/examples/iotanalytics/describe-channel.rst
${PYSITELIB}/awscli/examples/iotanalytics/describe-dataset.rst
${PYSITELIB}/awscli/examples/iotanalytics/describe-datastore.rst
${PYSITELIB}/awscli/examples/iotanalytics/describe-logging-options.rst
${PYSITELIB}/awscli/examples/iotanalytics/describe-pipeline.rst
${PYSITELIB}/awscli/examples/iotanalytics/get-dataset-content.rst
${PYSITELIB}/awscli/examples/iotanalytics/list-channels.rst
${PYSITELIB}/awscli/examples/iotanalytics/list-dataset-contents.rst
${PYSITELIB}/awscli/examples/iotanalytics/list-datasets.rst
${PYSITELIB}/awscli/examples/iotanalytics/list-datastores.rst
${PYSITELIB}/awscli/examples/iotanalytics/list-pipelines.rst
${PYSITELIB}/awscli/examples/iotanalytics/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/iotanalytics/put-logging-options.rst
${PYSITELIB}/awscli/examples/iotanalytics/run-pipeline-activity.rst
${PYSITELIB}/awscli/examples/iotanalytics/sample-channel-data.rst
${PYSITELIB}/awscli/examples/iotanalytics/start-pipeline-reprocessing.rst
${PYSITELIB}/awscli/examples/iotanalytics/tag-resource.rst
${PYSITELIB}/awscli/examples/iotanalytics/untag-resource.rst
${PYSITELIB}/awscli/examples/iotanalytics/update-channel.rst
${PYSITELIB}/awscli/examples/iotanalytics/update-dataset.rst
${PYSITELIB}/awscli/examples/iotanalytics/update-datastore.rst
${PYSITELIB}/awscli/examples/iotanalytics/update-pipeline.rst
${PYSITELIB}/awscli/examples/iotevents-data/batch-put-message.rst
${PYSITELIB}/awscli/examples/iotevents-data/batch-update-detector.rst
${PYSITELIB}/awscli/examples/iotevents-data/create-detector-model.rst
${PYSITELIB}/awscli/examples/iotevents-data/create-input.rst
${PYSITELIB}/awscli/examples/iotevents-data/delete-detector-model.rst
${PYSITELIB}/awscli/examples/iotevents-data/delete-input.rst
${PYSITELIB}/awscli/examples/iotevents-data/describe-detector-model.rst
${PYSITELIB}/awscli/examples/iotevents-data/describe-detector.rst
${PYSITELIB}/awscli/examples/iotevents-data/describe-input.rst
${PYSITELIB}/awscli/examples/iotevents-data/describe-logging-options.rst
${PYSITELIB}/awscli/examples/iotevents-data/list-detector-model-versions.rst
${PYSITELIB}/awscli/examples/iotevents-data/list-detector-models.rst
${PYSITELIB}/awscli/examples/iotevents-data/list-detectors.rst
${PYSITELIB}/awscli/examples/iotevents-data/list-inputs.rst
${PYSITELIB}/awscli/examples/iotevents-data/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/iotevents-data/put-logging-options.rst
${PYSITELIB}/awscli/examples/iotevents-data/tag-resource.rst
${PYSITELIB}/awscli/examples/iotevents-data/untag-resource.rst
${PYSITELIB}/awscli/examples/iotevents-data/update-detector-model.rst
${PYSITELIB}/awscli/examples/iotevents-data/update-input.rst
${PYSITELIB}/awscli/examples/iotevents/batch-put-message.rst
${PYSITELIB}/awscli/examples/iotevents/batch-update-detector.rst
${PYSITELIB}/awscli/examples/iotevents/create-detector-model.rst
${PYSITELIB}/awscli/examples/iotevents/create-input.rst
${PYSITELIB}/awscli/examples/iotevents/delete-detector-model.rst
${PYSITELIB}/awscli/examples/iotevents/delete-input.rst
${PYSITELIB}/awscli/examples/iotevents/describe-detector-model.rst
${PYSITELIB}/awscli/examples/iotevents/describe-detector.rst
${PYSITELIB}/awscli/examples/iotevents/describe-input.rst
${PYSITELIB}/awscli/examples/iotevents/describe-logging-options.rst
${PYSITELIB}/awscli/examples/iotevents/list-detector-model-versions.rst
${PYSITELIB}/awscli/examples/iotevents/list-detector-models.rst
${PYSITELIB}/awscli/examples/iotevents/list-detectors.rst
${PYSITELIB}/awscli/examples/iotevents/list-inputs.rst
${PYSITELIB}/awscli/examples/iotevents/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/iotevents/put-logging-options.rst
${PYSITELIB}/awscli/examples/iotevents/tag-resource.rst
${PYSITELIB}/awscli/examples/iotevents/untag-resource.rst
${PYSITELIB}/awscli/examples/iotevents/update-detector-model.rst
${PYSITELIB}/awscli/examples/iotevents/update-input.rst
${PYSITELIB}/awscli/examples/iotsitewise/associate-assets.rst
${PYSITELIB}/awscli/examples/iotsitewise/batch-associate-project-assets.rst
${PYSITELIB}/awscli/examples/iotsitewise/batch-disassociate-project-assets.rst
${PYSITELIB}/awscli/examples/iotsitewise/batch-put-asset-property-value.rst
${PYSITELIB}/awscli/examples/iotsitewise/create-access-policy.rst
${PYSITELIB}/awscli/examples/iotsitewise/create-asset-model.rst
${PYSITELIB}/awscli/examples/iotsitewise/create-asset.rst
${PYSITELIB}/awscli/examples/iotsitewise/create-dashboard.rst
${PYSITELIB}/awscli/examples/iotsitewise/create-gateway.rst
${PYSITELIB}/awscli/examples/iotsitewise/create-portal.rst
${PYSITELIB}/awscli/examples/iotsitewise/create-project.rst
${PYSITELIB}/awscli/examples/iotsitewise/delete-access-policy.rst
${PYSITELIB}/awscli/examples/iotsitewise/delete-asset-model.rst
${PYSITELIB}/awscli/examples/iotsitewise/delete-asset.rst
${PYSITELIB}/awscli/examples/iotsitewise/delete-dashboard.rst
${PYSITELIB}/awscli/examples/iotsitewise/delete-gateway.rst
${PYSITELIB}/awscli/examples/iotsitewise/delete-portal.rst
${PYSITELIB}/awscli/examples/iotsitewise/delete-project.rst
${PYSITELIB}/awscli/examples/iotsitewise/describe-access-policy.rst
${PYSITELIB}/awscli/examples/iotsitewise/describe-asset-model.rst
${PYSITELIB}/awscli/examples/iotsitewise/describe-asset-property.rst
${PYSITELIB}/awscli/examples/iotsitewise/describe-asset.rst
${PYSITELIB}/awscli/examples/iotsitewise/describe-dashboard.rst
${PYSITELIB}/awscli/examples/iotsitewise/describe-gateway-capability-configuration.rst
${PYSITELIB}/awscli/examples/iotsitewise/describe-gateway.rst
${PYSITELIB}/awscli/examples/iotsitewise/describe-logging-options.rst
${PYSITELIB}/awscli/examples/iotsitewise/describe-portal.rst
${PYSITELIB}/awscli/examples/iotsitewise/describe-project.rst
${PYSITELIB}/awscli/examples/iotsitewise/disassociate-assets.rst
${PYSITELIB}/awscli/examples/iotsitewise/get-asset-property-aggregates.rst
${PYSITELIB}/awscli/examples/iotsitewise/get-asset-property-value-history.rst
${PYSITELIB}/awscli/examples/iotsitewise/get-asset-property-value.rst
${PYSITELIB}/awscli/examples/iotsitewise/list-access-policies.rst
${PYSITELIB}/awscli/examples/iotsitewise/list-asset-models.rst
${PYSITELIB}/awscli/examples/iotsitewise/list-assets.rst
${PYSITELIB}/awscli/examples/iotsitewise/list-associated-assets.rst
${PYSITELIB}/awscli/examples/iotsitewise/list-dashboards.rst
${PYSITELIB}/awscli/examples/iotsitewise/list-gateways.rst
${PYSITELIB}/awscli/examples/iotsitewise/list-portals.rst
${PYSITELIB}/awscli/examples/iotsitewise/list-project-assets.rst
${PYSITELIB}/awscli/examples/iotsitewise/list-projects.rst
${PYSITELIB}/awscli/examples/iotsitewise/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/iotsitewise/put-logging-options.rst
${PYSITELIB}/awscli/examples/iotsitewise/tag-resource.rst
${PYSITELIB}/awscli/examples/iotsitewise/untag-resource.rst
${PYSITELIB}/awscli/examples/iotsitewise/update-access-policy.rst
${PYSITELIB}/awscli/examples/iotsitewise/update-asset-model.rst
${PYSITELIB}/awscli/examples/iotsitewise/update-asset-property.rst
${PYSITELIB}/awscli/examples/iotsitewise/update-asset.rst
${PYSITELIB}/awscli/examples/iotsitewise/update-dashboard.rst
${PYSITELIB}/awscli/examples/iotsitewise/update-gateway-capability-configuration.rst
${PYSITELIB}/awscli/examples/iotsitewise/update-gateway.rst
${PYSITELIB}/awscli/examples/iotsitewise/update-portal.rst
${PYSITELIB}/awscli/examples/iotsitewise/update-project.rst
${PYSITELIB}/awscli/examples/iotsitewise/wait/asset-active.rst
${PYSITELIB}/awscli/examples/iotsitewise/wait/asset-model-active.rst
${PYSITELIB}/awscli/examples/iotsitewise/wait/asset-model-not-exists.rst
${PYSITELIB}/awscli/examples/iotsitewise/wait/asset-not-exists.rst
${PYSITELIB}/awscli/examples/iotsitewise/wait/portal-active.rst
${PYSITELIB}/awscli/examples/iotsitewise/wait/portal-not-exists.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/associate-entity-to-thing.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/create-flow-template.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/create-system-instance.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/create-system-template.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/delete-flow-template.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/delete-namespace.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/delete-system-instance.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/delete-system-template.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/deploy-system-instance.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/deprecate-flow-template.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/deprecate-system-template.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/describe-namespace.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/dissociate-entity-from-thing.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/get-entities.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/get-flow-template-revisions.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/get-flow-template.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/get-namespace-deletion-status.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/get-system-instance.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/get-system-template-revisions.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/get-system-template.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/get-upload-status.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/list-flow-execution-messages.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/search-entities.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/search-flow-executions.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/search-flow-templates.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/search-system-instances.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/search-system-templates.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/search-things.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/tag-resource.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/undeploy-system-instance.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/untag-resource.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/update-flow-template.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/update-system-template.rst
${PYSITELIB}/awscli/examples/iotthingsgraph/upload-entity-definitions.rst
${PYSITELIB}/awscli/examples/iotwireless/associate-aws-account-with-partner-account.rst
${PYSITELIB}/awscli/examples/iotwireless/associate-wireless-device-with-thing.rst
${PYSITELIB}/awscli/examples/iotwireless/associate-wireless-gateway-with-certificate.rst
${PYSITELIB}/awscli/examples/iotwireless/associate-wireless-gateway-with-thing.rst
${PYSITELIB}/awscli/examples/iotwireless/create-destination.rst
${PYSITELIB}/awscli/examples/iotwireless/create-device-profile.rst
${PYSITELIB}/awscli/examples/iotwireless/create-service-profile.rst
${PYSITELIB}/awscli/examples/iotwireless/create-wireless-device.rst
${PYSITELIB}/awscli/examples/iotwireless/create-wireless-gateway-task-definition.rst
${PYSITELIB}/awscli/examples/iotwireless/create-wireless-gateway-task.rst
${PYSITELIB}/awscli/examples/iotwireless/create-wireless-gateway.rst
${PYSITELIB}/awscli/examples/iotwireless/delete-destination.rst
${PYSITELIB}/awscli/examples/iotwireless/delete-device-profile.rst
${PYSITELIB}/awscli/examples/iotwireless/delete-service-profile.rst
${PYSITELIB}/awscli/examples/iotwireless/delete-wireless-device.rst
${PYSITELIB}/awscli/examples/iotwireless/delete-wireless-gateway-task-definition.rst
${PYSITELIB}/awscli/examples/iotwireless/delete-wireless-gateway-task.rst
${PYSITELIB}/awscli/examples/iotwireless/delete-wireless-gateway.rst
${PYSITELIB}/awscli/examples/iotwireless/disassociate-aws-account-from-partner-account.rst
${PYSITELIB}/awscli/examples/iotwireless/disassociate-wireless-device-from-thing.rst
${PYSITELIB}/awscli/examples/iotwireless/disassociate-wireless-gateway-from-certificate.rst
${PYSITELIB}/awscli/examples/iotwireless/disassociate-wireless-gateway-from-thing.rst
${PYSITELIB}/awscli/examples/iotwireless/get-destination.rst
${PYSITELIB}/awscli/examples/iotwireless/get-device-profile.rst
${PYSITELIB}/awscli/examples/iotwireless/get-partner-account.rst
${PYSITELIB}/awscli/examples/iotwireless/get-service-endpoint.rst
${PYSITELIB}/awscli/examples/iotwireless/get-service-profile.rst
${PYSITELIB}/awscli/examples/iotwireless/get-wireless-device-statistics.rst
${PYSITELIB}/awscli/examples/iotwireless/get-wireless-device.rst
${PYSITELIB}/awscli/examples/iotwireless/get-wireless-gateway-certificate.rst
${PYSITELIB}/awscli/examples/iotwireless/get-wireless-gateway-firmware-information.rst
${PYSITELIB}/awscli/examples/iotwireless/get-wireless-gateway-statistics.rst
${PYSITELIB}/awscli/examples/iotwireless/get-wireless-gateway-task-definition.rst
${PYSITELIB}/awscli/examples/iotwireless/get-wireless-gateway-task.rst
${PYSITELIB}/awscli/examples/iotwireless/get-wireless-gateway.rst
${PYSITELIB}/awscli/examples/iotwireless/list-destinations.rst
${PYSITELIB}/awscli/examples/iotwireless/list-device-profiles.rst
${PYSITELIB}/awscli/examples/iotwireless/list-partner-accounts.rst
${PYSITELIB}/awscli/examples/iotwireless/list-service-profiles.rst
${PYSITELIB}/awscli/examples/iotwireless/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/iotwireless/list-wireless-devices.rst
${PYSITELIB}/awscli/examples/iotwireless/list-wireless-gateway-task-definitions.rst
${PYSITELIB}/awscli/examples/iotwireless/list-wireless-gateways.rst
${PYSITELIB}/awscli/examples/iotwireless/send-data-to-wireless-device.rst
${PYSITELIB}/awscli/examples/iotwireless/tag-resource.rst
${PYSITELIB}/awscli/examples/iotwireless/test-wireless-device.rst
${PYSITELIB}/awscli/examples/iotwireless/untag-resource.rst
${PYSITELIB}/awscli/examples/iotwireless/update-destination.rst
${PYSITELIB}/awscli/examples/iotwireless/update-partner-account.rst
${PYSITELIB}/awscli/examples/iotwireless/update-wireless-device.rst
${PYSITELIB}/awscli/examples/iotwireless/update-wireless-gateway.rst
${PYSITELIB}/awscli/examples/ivs/batch-get-channel.rst
${PYSITELIB}/awscli/examples/ivs/batch-get-stream-key.rst
${PYSITELIB}/awscli/examples/ivs/create-channel.rst
${PYSITELIB}/awscli/examples/ivs/create-recording-configuration.rst
${PYSITELIB}/awscli/examples/ivs/create-stream-key.rst
${PYSITELIB}/awscli/examples/ivs/delete-channel.rst
${PYSITELIB}/awscli/examples/ivs/delete-playback-key-pair.rst
${PYSITELIB}/awscli/examples/ivs/delete-recording-configuration.rst
${PYSITELIB}/awscli/examples/ivs/delete-stream-key.rst
${PYSITELIB}/awscli/examples/ivs/get-channel.rst
${PYSITELIB}/awscli/examples/ivs/get-playback-key-pair.rst
${PYSITELIB}/awscli/examples/ivs/get-recording-configuration.rst
${PYSITELIB}/awscli/examples/ivs/get-stream-key.rst
${PYSITELIB}/awscli/examples/ivs/get-stream-session.rst
${PYSITELIB}/awscli/examples/ivs/get-stream.rst
${PYSITELIB}/awscli/examples/ivs/import-playback-key-pair.rst
${PYSITELIB}/awscli/examples/ivs/list-channels.rst
${PYSITELIB}/awscli/examples/ivs/list-playback-key-pairs.rst
${PYSITELIB}/awscli/examples/ivs/list-recording-configurations.rst
${PYSITELIB}/awscli/examples/ivs/list-stream-keys.rst
${PYSITELIB}/awscli/examples/ivs/list-stream-sessions.rst
${PYSITELIB}/awscli/examples/ivs/list-streams.rst
${PYSITELIB}/awscli/examples/ivs/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/ivs/put-metadata.rst
${PYSITELIB}/awscli/examples/ivs/stop-stream.rst
${PYSITELIB}/awscli/examples/ivs/tag-resource.rst
${PYSITELIB}/awscli/examples/ivs/untag-resource.rst
${PYSITELIB}/awscli/examples/ivs/update-channel.rst
${PYSITELIB}/awscli/examples/ivschat/create-chat-token.rst
${PYSITELIB}/awscli/examples/ivschat/create-room.rst
${PYSITELIB}/awscli/examples/ivschat/delete-message.rst
${PYSITELIB}/awscli/examples/ivschat/delete-room.rst
${PYSITELIB}/awscli/examples/ivschat/disconnect-user.rst
${PYSITELIB}/awscli/examples/ivschat/get-room.rst
${PYSITELIB}/awscli/examples/ivschat/list-rooms.rst
${PYSITELIB}/awscli/examples/ivschat/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/ivschat/send-event.rst
${PYSITELIB}/awscli/examples/ivschat/tag-resource.rst
${PYSITELIB}/awscli/examples/ivschat/untag-resource.rst
${PYSITELIB}/awscli/examples/ivschat/update-room.rst
${PYSITELIB}/awscli/examples/kafka/create-cluster.rst
${PYSITELIB}/awscli/examples/kafka/create-configuration.rst
${PYSITELIB}/awscli/examples/kafka/describe-cluster.rst
${PYSITELIB}/awscli/examples/kafka/get-bootstrap-brokers.rst
${PYSITELIB}/awscli/examples/kafka/list-clusters.rst
${PYSITELIB}/awscli/examples/kafka/update-broker-storage.rst
${PYSITELIB}/awscli/examples/kafka/update-cluster-configuration.rst
${PYSITELIB}/awscli/examples/kinesis/add-tags-to-stream.rst
${PYSITELIB}/awscli/examples/kinesis/create-stream.rst
${PYSITELIB}/awscli/examples/kinesis/decrease-stream-retention-period.rst
${PYSITELIB}/awscli/examples/kinesis/delete-stream.rst
${PYSITELIB}/awscli/examples/kinesis/deregister-stream-consumer.rst
${PYSITELIB}/awscli/examples/kinesis/describe-limits.rst
${PYSITELIB}/awscli/examples/kinesis/describe-stream-consumer.rst
${PYSITELIB}/awscli/examples/kinesis/describe-stream-summary.rst
${PYSITELIB}/awscli/examples/kinesis/describe-stream.rst
${PYSITELIB}/awscli/examples/kinesis/disable-enhanced-monitoring.rst
${PYSITELIB}/awscli/examples/kinesis/enable-enhanced-monitoring.rst
${PYSITELIB}/awscli/examples/kinesis/get-records.rst
${PYSITELIB}/awscli/examples/kinesis/get-shard-iterator.rst
${PYSITELIB}/awscli/examples/kinesis/increase-stream-retention-period.rst
${PYSITELIB}/awscli/examples/kinesis/list-shards.rst
${PYSITELIB}/awscli/examples/kinesis/list-streams.rst
${PYSITELIB}/awscli/examples/kinesis/list-tags-for-stream.rst
${PYSITELIB}/awscli/examples/kinesis/merge-shards.rst
${PYSITELIB}/awscli/examples/kinesis/put-record.rst
${PYSITELIB}/awscli/examples/kinesis/put-records.rst
${PYSITELIB}/awscli/examples/kinesis/register-stream-consumer.rst
${PYSITELIB}/awscli/examples/kinesis/remove-tags-from-stream.rst
${PYSITELIB}/awscli/examples/kinesis/split-shard.rst
${PYSITELIB}/awscli/examples/kinesis/start-stream-encryption.rst
${PYSITELIB}/awscli/examples/kinesis/stop-stream-encryption.rst
${PYSITELIB}/awscli/examples/kinesis/update-shard-count.rst
${PYSITELIB}/awscli/examples/kms/cancel-key-deletion.rst
${PYSITELIB}/awscli/examples/kms/connect-custom-key-store.rst
${PYSITELIB}/awscli/examples/kms/create-alias.rst
${PYSITELIB}/awscli/examples/kms/create-custom-key-store.rst
${PYSITELIB}/awscli/examples/kms/create-grant.rst
${PYSITELIB}/awscli/examples/kms/create-key.rst
${PYSITELIB}/awscli/examples/kms/decrypt.rst
${PYSITELIB}/awscli/examples/kms/delete-alias.rst
${PYSITELIB}/awscli/examples/kms/delete-custom-key-store.rst
${PYSITELIB}/awscli/examples/kms/delete-imported-key-material.rst
${PYSITELIB}/awscli/examples/kms/describe-custom-key-stores.rst
${PYSITELIB}/awscli/examples/kms/describe-key.rst
${PYSITELIB}/awscli/examples/kms/disable-key-rotation.rst
${PYSITELIB}/awscli/examples/kms/disable-key.rst
${PYSITELIB}/awscli/examples/kms/disconnect-custom-key-store.rst
${PYSITELIB}/awscli/examples/kms/enable-key-rotation.rst
${PYSITELIB}/awscli/examples/kms/enable-key.rst
${PYSITELIB}/awscli/examples/kms/encrypt.rst
${PYSITELIB}/awscli/examples/kms/generate-data-key-pair-without-plaintext.rst
${PYSITELIB}/awscli/examples/kms/generate-data-key-pair.rst
${PYSITELIB}/awscli/examples/kms/generate-data-key-without-plaintext.rst
${PYSITELIB}/awscli/examples/kms/generate-data-key.rst
${PYSITELIB}/awscli/examples/kms/generate-random.rst
${PYSITELIB}/awscli/examples/kms/get-key-policy.rst
${PYSITELIB}/awscli/examples/kms/get-key-rotation-status.rst
${PYSITELIB}/awscli/examples/kms/get-parameters-for-import.rst
${PYSITELIB}/awscli/examples/kms/get-public-key.rst
${PYSITELIB}/awscli/examples/kms/import-key-material.rst
${PYSITELIB}/awscli/examples/kms/list-aliases.rst
${PYSITELIB}/awscli/examples/kms/list-grants.rst
${PYSITELIB}/awscli/examples/kms/list-key-policies.rst
${PYSITELIB}/awscli/examples/kms/list-keys.rst
${PYSITELIB}/awscli/examples/kms/list-resource-tags.rst
${PYSITELIB}/awscli/examples/kms/list-retirable-grants.rst
${PYSITELIB}/awscli/examples/kms/put-key-policy.rst
${PYSITELIB}/awscli/examples/kms/re-encrypt.rst
${PYSITELIB}/awscli/examples/kms/retire-grant.rst
${PYSITELIB}/awscli/examples/kms/revoke-grant.rst
${PYSITELIB}/awscli/examples/kms/schedule-key-deletion.rst
${PYSITELIB}/awscli/examples/kms/sign.rst
${PYSITELIB}/awscli/examples/kms/tag-resource.rst
${PYSITELIB}/awscli/examples/kms/untag-resource.rst
${PYSITELIB}/awscli/examples/kms/update-alias.rst
${PYSITELIB}/awscli/examples/kms/update-custom-key-store.rst
${PYSITELIB}/awscli/examples/kms/update-key-description.rst
${PYSITELIB}/awscli/examples/kms/verify.rst
${PYSITELIB}/awscli/examples/lakeformation/add-lf-tags-to-resource.rst
${PYSITELIB}/awscli/examples/lakeformation/batch-grant-permissions.rst
${PYSITELIB}/awscli/examples/lakeformation/batch-revoke-permissions.rst
${PYSITELIB}/awscli/examples/lakeformation/cancel-transaction.rst
${PYSITELIB}/awscli/examples/lakeformation/commit-transaction.rst
${PYSITELIB}/awscli/examples/lakeformation/create-data-cells-filter.rst
${PYSITELIB}/awscli/examples/lakeformation/create-lf-tag.rst
${PYSITELIB}/awscli/examples/lakeformation/delete-data-cells-filter.rst
${PYSITELIB}/awscli/examples/lakeformation/delete-lf-tag.rst
${PYSITELIB}/awscli/examples/lakeformation/delete-objects-on-cancel.rst
${PYSITELIB}/awscli/examples/lakeformation/deregister-resource.rst
${PYSITELIB}/awscli/examples/lakeformation/describe-transaction.rst
${PYSITELIB}/awscli/examples/lakeformation/extend-transaction.rst
${PYSITELIB}/awscli/examples/lakeformation/get-data-lake-settings.rst
${PYSITELIB}/awscli/examples/lakeformation/get-effective-permissions-for-path.rst
${PYSITELIB}/awscli/examples/lakeformation/get-lf-tag.rst
${PYSITELIB}/awscli/examples/lakeformation/get-query-state.rst
${PYSITELIB}/awscli/examples/lakeformation/get-query-statistics.rst
${PYSITELIB}/awscli/examples/lakeformation/get-resource-lf-tags.rst
${PYSITELIB}/awscli/examples/lakeformation/get-table-objects.rst
${PYSITELIB}/awscli/examples/lakeformation/get-work-unit-results.rst
${PYSITELIB}/awscli/examples/lakeformation/get-work-units.rst
${PYSITELIB}/awscli/examples/lakeformation/grant-permissions.rst
${PYSITELIB}/awscli/examples/lakeformation/list-data-cells-filter.rst
${PYSITELIB}/awscli/examples/lakeformation/list-permissions.rst
${PYSITELIB}/awscli/examples/lakeformation/list-resources.rst
${PYSITELIB}/awscli/examples/lakeformation/list-transactions.rst
${PYSITELIB}/awscli/examples/lakeformation/put-data-lake-settings.rst
${PYSITELIB}/awscli/examples/lakeformation/register-resource.rst
${PYSITELIB}/awscli/examples/lakeformation/remove-lf-tags-from-resource.rst
${PYSITELIB}/awscli/examples/lakeformation/revoke-permissions.rst
${PYSITELIB}/awscli/examples/lakeformation/search-databases-by-lf-tags.rst
${PYSITELIB}/awscli/examples/lakeformation/search-tables-by-lf-tags.rst
${PYSITELIB}/awscli/examples/lakeformation/start-query-planning.rst
${PYSITELIB}/awscli/examples/lakeformation/start-transaction.rst
${PYSITELIB}/awscli/examples/lakeformation/update-lf-tag.rst
${PYSITELIB}/awscli/examples/lakeformation/update-table-objects.rst
${PYSITELIB}/awscli/examples/lambda/add-layer-version-permission.rst
${PYSITELIB}/awscli/examples/lambda/add-permission.rst
${PYSITELIB}/awscli/examples/lambda/create-alias.rst
${PYSITELIB}/awscli/examples/lambda/create-event-source-mapping.rst
${PYSITELIB}/awscli/examples/lambda/create-function.rst
${PYSITELIB}/awscli/examples/lambda/delete-alias.rst
${PYSITELIB}/awscli/examples/lambda/delete-event-source-mapping.rst
${PYSITELIB}/awscli/examples/lambda/delete-function-concurrency.rst
${PYSITELIB}/awscli/examples/lambda/delete-function-event-invoke-config.rst
${PYSITELIB}/awscli/examples/lambda/delete-function.rst
${PYSITELIB}/awscli/examples/lambda/delete-layer-version.rst
${PYSITELIB}/awscli/examples/lambda/delete-provisioned-concurrency-config.rst
${PYSITELIB}/awscli/examples/lambda/get-account-settings.rst
${PYSITELIB}/awscli/examples/lambda/get-alias.rst
${PYSITELIB}/awscli/examples/lambda/get-event-source-mapping.rst
${PYSITELIB}/awscli/examples/lambda/get-function-concurrency.rst
${PYSITELIB}/awscli/examples/lambda/get-function-configuration.rst
${PYSITELIB}/awscli/examples/lambda/get-function-event-invoke-config.rst
${PYSITELIB}/awscli/examples/lambda/get-function.rst
${PYSITELIB}/awscli/examples/lambda/get-layer-version-by-arn.rst
${PYSITELIB}/awscli/examples/lambda/get-layer-version-policy.rst
${PYSITELIB}/awscli/examples/lambda/get-layer-version.rst
${PYSITELIB}/awscli/examples/lambda/get-policy.rst
${PYSITELIB}/awscli/examples/lambda/get-provisioned-concurrency-config.rst
${PYSITELIB}/awscli/examples/lambda/invoke.rst
${PYSITELIB}/awscli/examples/lambda/list-aliases.rst
${PYSITELIB}/awscli/examples/lambda/list-event-source-mappings.rst
${PYSITELIB}/awscli/examples/lambda/list-function-event-invoke-configs.rst
${PYSITELIB}/awscli/examples/lambda/list-functions.rst
${PYSITELIB}/awscli/examples/lambda/list-layer-versions.rst
${PYSITELIB}/awscli/examples/lambda/list-layers.rst
${PYSITELIB}/awscli/examples/lambda/list-provisioned-concurrency-configs.rst
${PYSITELIB}/awscli/examples/lambda/list-tags.rst
${PYSITELIB}/awscli/examples/lambda/list-versions-by-function.rst
${PYSITELIB}/awscli/examples/lambda/publish-layer-version.rst
${PYSITELIB}/awscli/examples/lambda/publish-version.rst
${PYSITELIB}/awscli/examples/lambda/put-function-concurrency.rst
${PYSITELIB}/awscli/examples/lambda/put-function-event-invoke-config.rst
${PYSITELIB}/awscli/examples/lambda/put-provisioned-concurrency-config.rst
${PYSITELIB}/awscli/examples/lambda/remove-layer-version-permission.rst
${PYSITELIB}/awscli/examples/lambda/remove-permission.rst
${PYSITELIB}/awscli/examples/lambda/tag-resource.rst
${PYSITELIB}/awscli/examples/lambda/untag-resource.rst
${PYSITELIB}/awscli/examples/lambda/update-alias.rst
${PYSITELIB}/awscli/examples/lambda/update-event-source-mapping.rst
${PYSITELIB}/awscli/examples/lambda/update-function-code.rst
${PYSITELIB}/awscli/examples/lambda/update-function-configuration.rst
${PYSITELIB}/awscli/examples/lambda/update-function-event-invoke-config.rst
${PYSITELIB}/awscli/examples/license-manager/create-license-configuration.rst
${PYSITELIB}/awscli/examples/license-manager/delete-license-configuration.rst
${PYSITELIB}/awscli/examples/license-manager/get-license-configuration.rst
${PYSITELIB}/awscli/examples/license-manager/get-service-settings.rst
${PYSITELIB}/awscli/examples/license-manager/list-associations-for-license-configuration.rst
${PYSITELIB}/awscli/examples/license-manager/list-license-configurations.rst
${PYSITELIB}/awscli/examples/license-manager/list-license-specifications-for-resource.rst
${PYSITELIB}/awscli/examples/license-manager/list-resource-inventory.rst
${PYSITELIB}/awscli/examples/license-manager/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/license-manager/list-usage-for-license-configuration.rst
${PYSITELIB}/awscli/examples/license-manager/tag-resource.rst
${PYSITELIB}/awscli/examples/license-manager/untag-resource.rst
${PYSITELIB}/awscli/examples/license-manager/update-license-configuration.rst
${PYSITELIB}/awscli/examples/license-manager/update-license-specifications-for-resource.rst
${PYSITELIB}/awscli/examples/license-manager/update-service-settings.rst
${PYSITELIB}/awscli/examples/lightsail/allocate-static-ip.rst
${PYSITELIB}/awscli/examples/lightsail/attach-disk.rst
${PYSITELIB}/awscli/examples/lightsail/attach-instances-to-load-balancer.rst
${PYSITELIB}/awscli/examples/lightsail/attach-load-balancer-tls-certificate.rst
${PYSITELIB}/awscli/examples/lightsail/attach-static-ip.rst
${PYSITELIB}/awscli/examples/lightsail/close-instance-public-ports.rst
${PYSITELIB}/awscli/examples/lightsail/copy-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/create-disk-from-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/create-disk-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/create-disk.rst
${PYSITELIB}/awscli/examples/lightsail/create-domain-entry.rst
${PYSITELIB}/awscli/examples/lightsail/create-domain.rst
${PYSITELIB}/awscli/examples/lightsail/create-instance-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/create-instances-from-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/create-instances.rst
${PYSITELIB}/awscli/examples/lightsail/create-key-pair.rst
${PYSITELIB}/awscli/examples/lightsail/create-load-balancer-tls-certificate.rst
${PYSITELIB}/awscli/examples/lightsail/create-load-balancer.rst
${PYSITELIB}/awscli/examples/lightsail/create-relational-database-from-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/create-relational-database-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/create-relational-database.rst
${PYSITELIB}/awscli/examples/lightsail/delete-auto-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/delete-disk-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/delete-disk.rst
${PYSITELIB}/awscli/examples/lightsail/delete-domain-entry.rst
${PYSITELIB}/awscli/examples/lightsail/delete-domain.rst
${PYSITELIB}/awscli/examples/lightsail/delete-instance-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/delete-instance.rst
${PYSITELIB}/awscli/examples/lightsail/delete-key-pair.rst
${PYSITELIB}/awscli/examples/lightsail/delete-known-host-keys.rst
${PYSITELIB}/awscli/examples/lightsail/delete-load-balancer-tls-certificate.rst
${PYSITELIB}/awscli/examples/lightsail/delete-load-balancer.rst
${PYSITELIB}/awscli/examples/lightsail/delete-relational-database-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/delete-relational-database.rst
${PYSITELIB}/awscli/examples/lightsail/detach-static-ip.rst
${PYSITELIB}/awscli/examples/lightsail/get-active-names.rst
${PYSITELIB}/awscli/examples/lightsail/get-auto-snapshots.rst
${PYSITELIB}/awscli/examples/lightsail/get-blueprints.rst
${PYSITELIB}/awscli/examples/lightsail/get-bundles.rst
${PYSITELIB}/awscli/examples/lightsail/get-cloud-formation-stack-records.rst
${PYSITELIB}/awscli/examples/lightsail/get-disk-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/get-disk-snapshots.rst
${PYSITELIB}/awscli/examples/lightsail/get-disk.rst
${PYSITELIB}/awscli/examples/lightsail/get-disks.rst
${PYSITELIB}/awscli/examples/lightsail/get-domain.rst
${PYSITELIB}/awscli/examples/lightsail/get-domains.rst
${PYSITELIB}/awscli/examples/lightsail/get-export-snapshot-record.rst
${PYSITELIB}/awscli/examples/lightsail/get-instance-access-details.rst
${PYSITELIB}/awscli/examples/lightsail/get-instance-metric-data.rst
${PYSITELIB}/awscli/examples/lightsail/get-instance-port-states.rst
${PYSITELIB}/awscli/examples/lightsail/get-instance-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/get-instance-snapshots.rst
${PYSITELIB}/awscli/examples/lightsail/get-instance-state.rst
${PYSITELIB}/awscli/examples/lightsail/get-instance.rst
${PYSITELIB}/awscli/examples/lightsail/get-instances.rst
${PYSITELIB}/awscli/examples/lightsail/get-key-pair.rst
${PYSITELIB}/awscli/examples/lightsail/get-key-pairs.rst
${PYSITELIB}/awscli/examples/lightsail/get-load-balancer-tls-certificates.rst
${PYSITELIB}/awscli/examples/lightsail/get-load-balancer.rst
${PYSITELIB}/awscli/examples/lightsail/get-load-balancers.rst
${PYSITELIB}/awscli/examples/lightsail/get-operation.rst
${PYSITELIB}/awscli/examples/lightsail/get-operations-for-resource.rst
${PYSITELIB}/awscli/examples/lightsail/get-operations.rst
${PYSITELIB}/awscli/examples/lightsail/get-regions.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database-blueprints.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database-bundles.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database-events.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database-log-events.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database-log-streams.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database-master-user-password.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database-metric-data.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database-parameters.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database-snapshot.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database-snapshots.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-database.rst
${PYSITELIB}/awscli/examples/lightsail/get-relational-databases.rst
${PYSITELIB}/awscli/examples/lightsail/get-static-ip.rst
${PYSITELIB}/awscli/examples/lightsail/get-static-ips.rst
${PYSITELIB}/awscli/examples/lightsail/is-vpc-peered.rst
${PYSITELIB}/awscli/examples/lightsail/open-instance-public-ports.rst
${PYSITELIB}/awscli/examples/lightsail/peer-vpc.rst
${PYSITELIB}/awscli/examples/lightsail/reboot-instance.rst
${PYSITELIB}/awscli/examples/lightsail/reboot-relational-database.rst
${PYSITELIB}/awscli/examples/lightsail/release-static-ip.rst
${PYSITELIB}/awscli/examples/lightsail/start-instance.rst
${PYSITELIB}/awscli/examples/lightsail/start-relational-database.rst
${PYSITELIB}/awscli/examples/lightsail/stop-instance.rst
${PYSITELIB}/awscli/examples/lightsail/stop-relational-database.rst
${PYSITELIB}/awscli/examples/lightsail/unpeer-vpc.rst
${PYSITELIB}/awscli/examples/logs/create-log-group.rst
${PYSITELIB}/awscli/examples/logs/create-log-stream.rst
${PYSITELIB}/awscli/examples/logs/delete-log-group.rst
${PYSITELIB}/awscli/examples/logs/delete-log-stream.rst
${PYSITELIB}/awscli/examples/logs/delete-retention-policy.rst
${PYSITELIB}/awscli/examples/logs/describe-log-groups.rst
${PYSITELIB}/awscli/examples/logs/describe-log-streams.rst
${PYSITELIB}/awscli/examples/logs/get-log-events.rst
${PYSITELIB}/awscli/examples/logs/put-log-events.rst
${PYSITELIB}/awscli/examples/logs/put-retention-policy.rst
${PYSITELIB}/awscli/examples/mediaconnect/add-flow-outputs.rst
${PYSITELIB}/awscli/examples/mediaconnect/create-flow.rst
${PYSITELIB}/awscli/examples/mediaconnect/delete-flow.rst
${PYSITELIB}/awscli/examples/mediaconnect/describe-flow.rst
${PYSITELIB}/awscli/examples/mediaconnect/grant-flow-entitlements.rst
${PYSITELIB}/awscli/examples/mediaconnect/list-entitlements.rst
${PYSITELIB}/awscli/examples/mediaconnect/list-flows.rst
${PYSITELIB}/awscli/examples/mediaconnect/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/mediaconnect/remove-flow-output.rst
${PYSITELIB}/awscli/examples/mediaconnect/revoke-flow-entitlement.rst
${PYSITELIB}/awscli/examples/mediaconnect/start-flow.rst
${PYSITELIB}/awscli/examples/mediaconnect/stop-flow.rst
${PYSITELIB}/awscli/examples/mediaconnect/tag-resource.rst
${PYSITELIB}/awscli/examples/mediaconnect/untag-resource.rst
${PYSITELIB}/awscli/examples/mediaconnect/update-flow-entitlement.rst
${PYSITELIB}/awscli/examples/mediaconnect/update-flow-output.rst
${PYSITELIB}/awscli/examples/mediaconnect/update-flow-source.rst
${PYSITELIB}/awscli/examples/mediaconvert/cancel-job.rst
${PYSITELIB}/awscli/examples/mediaconvert/create-job-template.rst
${PYSITELIB}/awscli/examples/mediaconvert/create-job.rst
${PYSITELIB}/awscli/examples/mediaconvert/create-preset.rst
${PYSITELIB}/awscli/examples/mediaconvert/create-queue.rst
${PYSITELIB}/awscli/examples/mediaconvert/delete-job-template.rst
${PYSITELIB}/awscli/examples/mediaconvert/delete-preset.rst
${PYSITELIB}/awscli/examples/mediaconvert/delete-queue.rst
${PYSITELIB}/awscli/examples/mediaconvert/describe-endpoints.rst
${PYSITELIB}/awscli/examples/mediaconvert/get-job-template.rst
${PYSITELIB}/awscli/examples/mediaconvert/get-job.rst
${PYSITELIB}/awscli/examples/mediaconvert/get-preset.rst
${PYSITELIB}/awscli/examples/mediaconvert/get-queue.rst
${PYSITELIB}/awscli/examples/mediaconvert/list-job-templates.rst
${PYSITELIB}/awscli/examples/mediaconvert/list-jobs.rst
${PYSITELIB}/awscli/examples/mediaconvert/list-presets.rst
${PYSITELIB}/awscli/examples/mediaconvert/list-queues.rst
${PYSITELIB}/awscli/examples/mediaconvert/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/mediaconvert/update-job-template.rst
${PYSITELIB}/awscli/examples/mediaconvert/update-preset.rst
${PYSITELIB}/awscli/examples/mediaconvert/update-queue.rst
${PYSITELIB}/awscli/examples/medialive/create-channel.rst
${PYSITELIB}/awscli/examples/medialive/create-input.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/create-asset.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/create-packaging-configuration.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/create-packaging-group.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/delete-asset.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/delete-packaging-configuration.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/delete-packaging-group.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/describe-asset.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/describe-packaging-configuration.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/describe-packaging-group.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/list-assets.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/list-packaging-configurations.rst
${PYSITELIB}/awscli/examples/mediapackage-vod/list-packaging-groups.rst
${PYSITELIB}/awscli/examples/mediapackage/create-channel.rst
${PYSITELIB}/awscli/examples/mediapackage/create-origin-endpoint.rst
${PYSITELIB}/awscli/examples/mediapackage/delete-channel.rst
${PYSITELIB}/awscli/examples/mediapackage/delete-origin-endpoint.rst
${PYSITELIB}/awscli/examples/mediapackage/describe-channel.rst
${PYSITELIB}/awscli/examples/mediapackage/describe-origin-endpoint.rst
${PYSITELIB}/awscli/examples/mediapackage/list-channels.rst
${PYSITELIB}/awscli/examples/mediapackage/list-origin-endpoints.rst
${PYSITELIB}/awscli/examples/mediapackage/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/mediapackage/rotate-ingest-endpoint-credentials.rst
${PYSITELIB}/awscli/examples/mediapackage/tag-resource.rst
${PYSITELIB}/awscli/examples/mediapackage/untag-resource.rst
${PYSITELIB}/awscli/examples/mediapackage/update-channel.rst
${PYSITELIB}/awscli/examples/mediapackage/update-origin-endpoint.rst
${PYSITELIB}/awscli/examples/mediastore-data/delete-object.rst
${PYSITELIB}/awscli/examples/mediastore-data/describe-object.rst
${PYSITELIB}/awscli/examples/mediastore-data/get-object.rst
${PYSITELIB}/awscli/examples/mediastore-data/list-items.rst
${PYSITELIB}/awscli/examples/mediastore-data/put-object.rst
${PYSITELIB}/awscli/examples/mediastore/create-container.rst
${PYSITELIB}/awscli/examples/mediastore/delete-container-policy.rst
${PYSITELIB}/awscli/examples/mediastore/delete-container.rst
${PYSITELIB}/awscli/examples/mediastore/delete-cors-policy.rst
${PYSITELIB}/awscli/examples/mediastore/delete-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/mediastore/describe-container.rst
${PYSITELIB}/awscli/examples/mediastore/describe-object.rst
${PYSITELIB}/awscli/examples/mediastore/get-container-policy.rst
${PYSITELIB}/awscli/examples/mediastore/get-cors-policy.rst
${PYSITELIB}/awscli/examples/mediastore/get-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/mediastore/get-object.rst
${PYSITELIB}/awscli/examples/mediastore/list-containers.rst
${PYSITELIB}/awscli/examples/mediastore/list-items.rst
${PYSITELIB}/awscli/examples/mediastore/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/mediastore/put-container-policy.rst
${PYSITELIB}/awscli/examples/mediastore/put-cors-policy.rst
${PYSITELIB}/awscli/examples/mediastore/put-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/mediastore/put-object.rst
${PYSITELIB}/awscli/examples/mediastore/start-access-logging.rst
${PYSITELIB}/awscli/examples/mediastore/stop-access-logging.rst
${PYSITELIB}/awscli/examples/mediastore/tag-resource.rst
${PYSITELIB}/awscli/examples/mediastore/untag-resource.rst
${PYSITELIB}/awscli/examples/mediatailor/delete-playback-configuration.rst
${PYSITELIB}/awscli/examples/mediatailor/get-playback-configuration.rst
${PYSITELIB}/awscli/examples/mediatailor/list-playback-configurations.rst
${PYSITELIB}/awscli/examples/mediatailor/put-playback-configuration.rst
${PYSITELIB}/awscli/examples/memorydb/copy-snapshot.rst
${PYSITELIB}/awscli/examples/memorydb/create-acl.rst
${PYSITELIB}/awscli/examples/memorydb/create-cluster.rst
${PYSITELIB}/awscli/examples/memorydb/create-parameter-group.rst
${PYSITELIB}/awscli/examples/memorydb/create-snapshot.rst
${PYSITELIB}/awscli/examples/memorydb/create-subnet-group.rst
${PYSITELIB}/awscli/examples/memorydb/create-user.rst
${PYSITELIB}/awscli/examples/memorydb/delete-acl.rst
${PYSITELIB}/awscli/examples/memorydb/delete-cluster.rst
${PYSITELIB}/awscli/examples/memorydb/delete-parameter-group.rst
${PYSITELIB}/awscli/examples/memorydb/delete-snapshot.rst
${PYSITELIB}/awscli/examples/memorydb/delete-subnet-group.rst
${PYSITELIB}/awscli/examples/memorydb/delete-user.rst
${PYSITELIB}/awscli/examples/memorydb/describe-acls.rst
${PYSITELIB}/awscli/examples/memorydb/describe-clusters.rst
${PYSITELIB}/awscli/examples/memorydb/describe-engine-versions.rst
${PYSITELIB}/awscli/examples/memorydb/describe-events.rst
${PYSITELIB}/awscli/examples/memorydb/describe-parameter-groups.rst
${PYSITELIB}/awscli/examples/memorydb/describe-parameters.rst
${PYSITELIB}/awscli/examples/memorydb/describe-snapshots.rst
${PYSITELIB}/awscli/examples/memorydb/describe-subnet-groups.rst
${PYSITELIB}/awscli/examples/memorydb/describe-users.rst
${PYSITELIB}/awscli/examples/memorydb/failover-shard.rst
${PYSITELIB}/awscli/examples/memorydb/list-allowed-node-type-updates.rst
${PYSITELIB}/awscli/examples/memorydb/list-tags.rst
${PYSITELIB}/awscli/examples/memorydb/reset-parameter-group.rst
${PYSITELIB}/awscli/examples/memorydb/tag-resource.rst
${PYSITELIB}/awscli/examples/memorydb/untag-resource.rst
${PYSITELIB}/awscli/examples/memorydb/update-cluster.rst
${PYSITELIB}/awscli/examples/memorydb/update-parameter-group.rst
${PYSITELIB}/awscli/examples/memorydb/update-subnet-group.rst
${PYSITELIB}/awscli/examples/memorydb/update-user.rst
${PYSITELIB}/awscli/examples/networkmanager/associate-customer-gateway.rst
${PYSITELIB}/awscli/examples/networkmanager/associate-link.rst
${PYSITELIB}/awscli/examples/networkmanager/create-core-network.rst
${PYSITELIB}/awscli/examples/networkmanager/create-device.rst
${PYSITELIB}/awscli/examples/networkmanager/create-global-network.rst
${PYSITELIB}/awscli/examples/networkmanager/create-link.rst
${PYSITELIB}/awscli/examples/networkmanager/create-site.rst
${PYSITELIB}/awscli/examples/networkmanager/create-vpc-attachment.rst
${PYSITELIB}/awscli/examples/networkmanager/delete-attachment.rst
${PYSITELIB}/awscli/examples/networkmanager/delete-bucket-analytics-configuration.rst
${PYSITELIB}/awscli/examples/networkmanager/delete-bucket-metrics-configuration.rst
${PYSITELIB}/awscli/examples/networkmanager/delete-core-network.rst
${PYSITELIB}/awscli/examples/networkmanager/delete-device.rst
${PYSITELIB}/awscli/examples/networkmanager/delete-global-network.rst
${PYSITELIB}/awscli/examples/networkmanager/delete-link.rst
${PYSITELIB}/awscli/examples/networkmanager/delete-public-access-block.rst
${PYSITELIB}/awscli/examples/networkmanager/delete-site.rst
${PYSITELIB}/awscli/examples/networkmanager/deregister-transit-gateway.rst
${PYSITELIB}/awscli/examples/networkmanager/describe-global-networks.rst
${PYSITELIB}/awscli/examples/networkmanager/disassociate-customer-gateway.rst
${PYSITELIB}/awscli/examples/networkmanager/disassociate-link.rst
${PYSITELIB}/awscli/examples/networkmanager/get-bucket-analytics-configuration.rst
${PYSITELIB}/awscli/examples/networkmanager/get-bucket-metrics-configuration.rst
${PYSITELIB}/awscli/examples/networkmanager/get-customer-gateway-associations.rst
${PYSITELIB}/awscli/examples/networkmanager/get-devices.rst
${PYSITELIB}/awscli/examples/networkmanager/get-link-associations.rst
${PYSITELIB}/awscli/examples/networkmanager/get-links.rst
${PYSITELIB}/awscli/examples/networkmanager/get-object-retention.rst
${PYSITELIB}/awscli/examples/networkmanager/get-public-access-block.rst
${PYSITELIB}/awscli/examples/networkmanager/get-sites.rst
${PYSITELIB}/awscli/examples/networkmanager/get-transit-gateway-registrations.rst
${PYSITELIB}/awscli/examples/networkmanager/get-vpc-attachment.rst
${PYSITELIB}/awscli/examples/networkmanager/list-bucket-analytics-configurations.rst
${PYSITELIB}/awscli/examples/networkmanager/list-bucket-metrics-configurations.rst
${PYSITELIB}/awscli/examples/networkmanager/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/networkmanager/put-bucket-metrics-configuration.rst
${PYSITELIB}/awscli/examples/networkmanager/put-object-retention.rst
${PYSITELIB}/awscli/examples/networkmanager/put-public-access-block.rst
${PYSITELIB}/awscli/examples/networkmanager/register-transit-gateway.rst
${PYSITELIB}/awscli/examples/networkmanager/reject-attachment.rst
${PYSITELIB}/awscli/examples/networkmanager/tag-resource.rst
${PYSITELIB}/awscli/examples/networkmanager/untag-resource.rst
${PYSITELIB}/awscli/examples/networkmanager/update-device.rst
${PYSITELIB}/awscli/examples/networkmanager/update-global-network.rst
${PYSITELIB}/awscli/examples/networkmanager/update-link.rst
${PYSITELIB}/awscli/examples/networkmanager/update-site.rst
${PYSITELIB}/awscli/examples/nimble/get-eula.rst
${PYSITELIB}/awscli/examples/nimble/get-launch-profile-details.rst
${PYSITELIB}/awscli/examples/nimble/get-launch-profile.rst
${PYSITELIB}/awscli/examples/nimble/get-studio.rst
${PYSITELIB}/awscli/examples/nimble/list-eula-acceptances.rst
${PYSITELIB}/awscli/examples/nimble/list-eulas.rst
${PYSITELIB}/awscli/examples/nimble/list-launch-profiles.rst
${PYSITELIB}/awscli/examples/nimble/list-studio-components.rst
${PYSITELIB}/awscli/examples/nimble/list-studio-members.rst
${PYSITELIB}/awscli/examples/nimble/list-studios.rst
${PYSITELIB}/awscli/examples/opsworks/assign-instance.rst
${PYSITELIB}/awscli/examples/opsworks/assign-volume.rst
${PYSITELIB}/awscli/examples/opsworks/associate-elastic-ip.rst
${PYSITELIB}/awscli/examples/opsworks/attach-elastic-load-balancer.rst
${PYSITELIB}/awscli/examples/opsworks/create-app.rst
${PYSITELIB}/awscli/examples/opsworks/create-deployment.rst
${PYSITELIB}/awscli/examples/opsworks/create-instance.rst
${PYSITELIB}/awscli/examples/opsworks/create-layer.rst
${PYSITELIB}/awscli/examples/opsworks/create-server.rst
${PYSITELIB}/awscli/examples/opsworks/create-stack.rst
${PYSITELIB}/awscli/examples/opsworks/create-user-profile.rst
${PYSITELIB}/awscli/examples/opsworks/delete-app.rst
${PYSITELIB}/awscli/examples/opsworks/delete-instance.rst
${PYSITELIB}/awscli/examples/opsworks/delete-layer.rst
${PYSITELIB}/awscli/examples/opsworks/delete-stack.rst
${PYSITELIB}/awscli/examples/opsworks/delete-user-profile.rst
${PYSITELIB}/awscli/examples/opsworks/deregister-elastic-ip.rst
${PYSITELIB}/awscli/examples/opsworks/deregister-instance.rst
${PYSITELIB}/awscli/examples/opsworks/deregister-rds-db-instance.rst
${PYSITELIB}/awscli/examples/opsworks/deregister-volume.rst
${PYSITELIB}/awscli/examples/opsworks/describe-apps.rst
${PYSITELIB}/awscli/examples/opsworks/describe-commands.rst
${PYSITELIB}/awscli/examples/opsworks/describe-deployments.rst
${PYSITELIB}/awscli/examples/opsworks/describe-elastic-ips.rst
${PYSITELIB}/awscli/examples/opsworks/describe-elastic-load-balancers.rst
${PYSITELIB}/awscli/examples/opsworks/describe-instances.rst
${PYSITELIB}/awscli/examples/opsworks/describe-layers.rst
${PYSITELIB}/awscli/examples/opsworks/describe-load-based-auto-scaling.rst
${PYSITELIB}/awscli/examples/opsworks/describe-my-user-profile.rst
${PYSITELIB}/awscli/examples/opsworks/describe-permissions.rst
${PYSITELIB}/awscli/examples/opsworks/describe-raid-arrays.rst
${PYSITELIB}/awscli/examples/opsworks/describe-rds-db-instances.rst
${PYSITELIB}/awscli/examples/opsworks/describe-stack-provisioning-parameters.rst
${PYSITELIB}/awscli/examples/opsworks/describe-stack-summary.rst
${PYSITELIB}/awscli/examples/opsworks/describe-stacks.rst
${PYSITELIB}/awscli/examples/opsworks/describe-timebased-auto-scaling.rst
${PYSITELIB}/awscli/examples/opsworks/describe-user-profiles.rst
${PYSITELIB}/awscli/examples/opsworks/describe-volumes.rst
${PYSITELIB}/awscli/examples/opsworks/detach-elastic-load-balancer.rst
${PYSITELIB}/awscli/examples/opsworks/disassociate-elastic-ip.rst
${PYSITELIB}/awscli/examples/opsworks/get-hostname-suggestion.rst
${PYSITELIB}/awscli/examples/opsworks/reboot-instance.rst
${PYSITELIB}/awscli/examples/opsworks/register-elastic-ip.rst
${PYSITELIB}/awscli/examples/opsworks/register-rds-db-instance.rst
${PYSITELIB}/awscli/examples/opsworks/register-volume.rst
${PYSITELIB}/awscli/examples/opsworks/register.rst
${PYSITELIB}/awscli/examples/opsworks/set-load-based-auto-scaling.rst
${PYSITELIB}/awscli/examples/opsworks/set-permission.rst
${PYSITELIB}/awscli/examples/opsworks/set-time-based-auto-scaling.rst
${PYSITELIB}/awscli/examples/opsworks/start-instance.rst
${PYSITELIB}/awscli/examples/opsworks/start-stack.rst
${PYSITELIB}/awscli/examples/opsworks/stop-instance.rst
${PYSITELIB}/awscli/examples/opsworks/stop-stack.rst
${PYSITELIB}/awscli/examples/opsworks/unassign-instance.rst
${PYSITELIB}/awscli/examples/opsworks/unassign-volume.rst
${PYSITELIB}/awscli/examples/opsworks/update-app.rst
${PYSITELIB}/awscli/examples/opsworks/update-elastic-ip.rst
${PYSITELIB}/awscli/examples/opsworks/update-instance.rst
${PYSITELIB}/awscli/examples/opsworks/update-layer.rst
${PYSITELIB}/awscli/examples/opsworks/update-my-user-profile.rst
${PYSITELIB}/awscli/examples/opsworks/update-rds-db-instance.rst
${PYSITELIB}/awscli/examples/opsworks/update-volume.rst
${PYSITELIB}/awscli/examples/opsworkscm/associate-node.rst
${PYSITELIB}/awscli/examples/opsworkscm/create-backup.rst
${PYSITELIB}/awscli/examples/opsworkscm/create-server.rst
${PYSITELIB}/awscli/examples/opsworkscm/delete-backup.rst
${PYSITELIB}/awscli/examples/opsworkscm/delete-server.rst
${PYSITELIB}/awscli/examples/opsworkscm/describe-account-attributes.rst
${PYSITELIB}/awscli/examples/opsworkscm/describe-backups.rst
${PYSITELIB}/awscli/examples/opsworkscm/describe-events.rst
${PYSITELIB}/awscli/examples/opsworkscm/describe-node-association-status.rst
${PYSITELIB}/awscli/examples/opsworkscm/describe-servers.rst
${PYSITELIB}/awscli/examples/opsworkscm/disassociate-node.rst
${PYSITELIB}/awscli/examples/opsworkscm/restore-server.rst
${PYSITELIB}/awscli/examples/opsworkscm/start-maintenance.rst
${PYSITELIB}/awscli/examples/opsworkscm/update-server-engine-attributes.rst
${PYSITELIB}/awscli/examples/opsworkscm/update-server.rst
${PYSITELIB}/awscli/examples/organizations/accept-handshake.rst
${PYSITELIB}/awscli/examples/organizations/attach-policy.rst
${PYSITELIB}/awscli/examples/organizations/cancel-handshake.rst
${PYSITELIB}/awscli/examples/organizations/create-account.rst
${PYSITELIB}/awscli/examples/organizations/create-organization.rst
${PYSITELIB}/awscli/examples/organizations/create-organizational-unit.rst
${PYSITELIB}/awscli/examples/organizations/create-policy.rst
${PYSITELIB}/awscli/examples/organizations/decline-handshake.rst
${PYSITELIB}/awscli/examples/organizations/delete-organization.rst
${PYSITELIB}/awscli/examples/organizations/delete-organizational-unit.rst
${PYSITELIB}/awscli/examples/organizations/delete-policy.rst
${PYSITELIB}/awscli/examples/organizations/describe-account.rst
${PYSITELIB}/awscli/examples/organizations/describe-create-account-status.rst
${PYSITELIB}/awscli/examples/organizations/describe-handshake.rst
${PYSITELIB}/awscli/examples/organizations/describe-organization.rst
${PYSITELIB}/awscli/examples/organizations/describe-organizational-unit.rst
${PYSITELIB}/awscli/examples/organizations/describe-policy.rst
${PYSITELIB}/awscli/examples/organizations/detach-policy.rst
${PYSITELIB}/awscli/examples/organizations/disable-policy-type.rst
${PYSITELIB}/awscli/examples/organizations/enable-all-features.rst
${PYSITELIB}/awscli/examples/organizations/enable-policy-type.rst
${PYSITELIB}/awscli/examples/organizations/invite-account-to-organization.rst
${PYSITELIB}/awscli/examples/organizations/leave-organization.rst
${PYSITELIB}/awscli/examples/organizations/list-accounts-for-parent.rst
${PYSITELIB}/awscli/examples/organizations/list-accounts.rst
${PYSITELIB}/awscli/examples/organizations/list-children.rst
${PYSITELIB}/awscli/examples/organizations/list-create-account-status.rst
${PYSITELIB}/awscli/examples/organizations/list-handshakes-for-account.rst
${PYSITELIB}/awscli/examples/organizations/list-handshakes-for-organization.rst
${PYSITELIB}/awscli/examples/organizations/list-organizational-units-for-parent.rst
${PYSITELIB}/awscli/examples/organizations/list-parents.rst
${PYSITELIB}/awscli/examples/organizations/list-policies-for-target.rst
${PYSITELIB}/awscli/examples/organizations/list-policies.rst
${PYSITELIB}/awscli/examples/organizations/list-roots.rst
${PYSITELIB}/awscli/examples/organizations/list-targets-for-policy.rst
${PYSITELIB}/awscli/examples/organizations/move-account.rst
${PYSITELIB}/awscli/examples/organizations/remove-account-from-organization.rst
${PYSITELIB}/awscli/examples/organizations/update-organizational-unit.rst
${PYSITELIB}/awscli/examples/organizations/update-policy.rst
${PYSITELIB}/awscli/examples/outposts/get-outpost-instance-types.rst
${PYSITELIB}/awscli/examples/outposts/get-outpost.rst
${PYSITELIB}/awscli/examples/outposts/list-outposts.rst
${PYSITELIB}/awscli/examples/outposts/list-sites.rst
${PYSITELIB}/awscli/examples/pi/describe-dimension-keys.rst
${PYSITELIB}/awscli/examples/pi/get-resource-metrics.rst
${PYSITELIB}/awscli/examples/pinpoint/create-app.rst
${PYSITELIB}/awscli/examples/pinpoint/delete-app.rst
${PYSITELIB}/awscli/examples/pinpoint/get-apns-channel.rst
${PYSITELIB}/awscli/examples/pinpoint/get-app.rst
${PYSITELIB}/awscli/examples/pinpoint/get-apps.rst
${PYSITELIB}/awscli/examples/pinpoint/get-campaign.rst
${PYSITELIB}/awscli/examples/pinpoint/get-campaigns.rst
${PYSITELIB}/awscli/examples/pinpoint/get-channels.rst
${PYSITELIB}/awscli/examples/pinpoint/get-email-channel.rst
${PYSITELIB}/awscli/examples/pinpoint/get-endpoint.rst
${PYSITELIB}/awscli/examples/pinpoint/get-gcm-channel.rst
${PYSITELIB}/awscli/examples/pinpoint/get-sms-channel.rst
${PYSITELIB}/awscli/examples/pinpoint/get-voice-channel.rst
${PYSITELIB}/awscli/examples/pinpoint/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/pinpoint/tag-resource.rst
${PYSITELIB}/awscli/examples/pinpoint/untag-resource.rst
${PYSITELIB}/awscli/examples/polly/delete-lexicon.rst
${PYSITELIB}/awscli/examples/polly/get-lexicon.rst
${PYSITELIB}/awscli/examples/polly/get-speech-synthesis-task.rst
${PYSITELIB}/awscli/examples/polly/list-lexicons.rst
${PYSITELIB}/awscli/examples/polly/list-speech-synthesis-tasks.rst
${PYSITELIB}/awscli/examples/polly/put-lexicon.rst
${PYSITELIB}/awscli/examples/polly/start-speech-synthesis-task.rst
${PYSITELIB}/awscli/examples/pricing/describe-services.rst
${PYSITELIB}/awscli/examples/pricing/get-attribute-values.rst
${PYSITELIB}/awscli/examples/pricing/get-products.rst
${PYSITELIB}/awscli/examples/proton/cancel-service-instance-deployment.rst
${PYSITELIB}/awscli/examples/proton/cancel-service-pipeline-deployment.rst
${PYSITELIB}/awscli/examples/proton/create-service.rst
${PYSITELIB}/awscli/examples/proton/delete-service.rst
${PYSITELIB}/awscli/examples/proton/get-service-instance.rst
${PYSITELIB}/awscli/examples/proton/get-service.rst
${PYSITELIB}/awscli/examples/proton/list-service-instances.rst
${PYSITELIB}/awscli/examples/proton/update-service-instance.rst
${PYSITELIB}/awscli/examples/proton/update-service-pipeline.rst
${PYSITELIB}/awscli/examples/proton/update-service.rst
${PYSITELIB}/awscli/examples/qldb/cancel-journal-kinesis-stream.rst
${PYSITELIB}/awscli/examples/qldb/create-ledger.rst
${PYSITELIB}/awscli/examples/qldb/delete-ledger.rst
${PYSITELIB}/awscli/examples/qldb/describe-journal-kinesis-stream.rst
${PYSITELIB}/awscli/examples/qldb/describe-journal-s3-export.rst
${PYSITELIB}/awscli/examples/qldb/describe-ledger.rst
${PYSITELIB}/awscli/examples/qldb/export-journal-to-s3.rst
${PYSITELIB}/awscli/examples/qldb/get-block.rst
${PYSITELIB}/awscli/examples/qldb/get-digest.rst
${PYSITELIB}/awscli/examples/qldb/get-revision.rst
${PYSITELIB}/awscli/examples/qldb/list-journal-kinesis-streams-for-ledger.rst
${PYSITELIB}/awscli/examples/qldb/list-journal-s3-exports-for-ledger.rst
${PYSITELIB}/awscli/examples/qldb/list-journal-s3-exports.rst
${PYSITELIB}/awscli/examples/qldb/list-ledgers.rst
${PYSITELIB}/awscli/examples/qldb/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/qldb/stream-journal-to-kinesis.rst
${PYSITELIB}/awscli/examples/qldb/tag-resource.rst
${PYSITELIB}/awscli/examples/qldb/untag-resource.rst
${PYSITELIB}/awscli/examples/qldb/update-ledger-permissions-mode.rst
${PYSITELIB}/awscli/examples/qldb/update-ledger.rst
${PYSITELIB}/awscli/examples/ram/accept-resource-share-invitation.rst
${PYSITELIB}/awscli/examples/ram/associate-resource-share-permission.rst
${PYSITELIB}/awscli/examples/ram/associate-resource-share.rst
${PYSITELIB}/awscli/examples/ram/create-resource-share.rst
${PYSITELIB}/awscli/examples/ram/delete-resource-share.rst
${PYSITELIB}/awscli/examples/ram/disassociate-resource-share-permission.rst
${PYSITELIB}/awscli/examples/ram/disassociate-resource-share.rst
${PYSITELIB}/awscli/examples/ram/enable-sharing-with-aws-organization.rst
${PYSITELIB}/awscli/examples/ram/get-permission.rst
${PYSITELIB}/awscli/examples/ram/get-resource-policies.rst
${PYSITELIB}/awscli/examples/ram/get-resource-share-associations.rst
${PYSITELIB}/awscli/examples/ram/get-resource-share-invitations.rst
${PYSITELIB}/awscli/examples/ram/get-resource-shares.rst
${PYSITELIB}/awscli/examples/ram/list-pending-invitation-resources.rst
${PYSITELIB}/awscli/examples/ram/list-permissions.rst
${PYSITELIB}/awscli/examples/ram/list-principals.rst
${PYSITELIB}/awscli/examples/ram/list-resource-share-permissions.rst
${PYSITELIB}/awscli/examples/ram/list-resource-types.rst
${PYSITELIB}/awscli/examples/ram/list-resources.rst
${PYSITELIB}/awscli/examples/ram/promote-resource-share-created-from-policy.rst
${PYSITELIB}/awscli/examples/ram/reject-resource-share-invitation.rst
${PYSITELIB}/awscli/examples/ram/tag-resource.rst
${PYSITELIB}/awscli/examples/ram/untag-resource.rst
${PYSITELIB}/awscli/examples/ram/update-resource-share.rst
${PYSITELIB}/awscli/examples/rds-data/batch-execute-statement.rst
${PYSITELIB}/awscli/examples/rds-data/begin-transaction.rst
${PYSITELIB}/awscli/examples/rds-data/commit-transaction.rst
${PYSITELIB}/awscli/examples/rds-data/execute-statement.rst
${PYSITELIB}/awscli/examples/rds-data/rollback-transaction.rst
${PYSITELIB}/awscli/examples/rds/add-option-to-option-group.rst
${PYSITELIB}/awscli/examples/rds/add-role-to-db-cluster.rst
${PYSITELIB}/awscli/examples/rds/add-role-to-db-instance.rst
${PYSITELIB}/awscli/examples/rds/add-source-identifier-to-subscription.rst
${PYSITELIB}/awscli/examples/rds/add-tags-to-resource.rst
${PYSITELIB}/awscli/examples/rds/apply-pending-maintenance-action.rst
${PYSITELIB}/awscli/examples/rds/authorize-db-security-group-ingress.rst
${PYSITELIB}/awscli/examples/rds/backtrack-db-cluster.rst
${PYSITELIB}/awscli/examples/rds/cancel-export-task.rst
${PYSITELIB}/awscli/examples/rds/copy-db-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/copy-db-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/rds/copy-db-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/copy-db-snapshot.rst
${PYSITELIB}/awscli/examples/rds/copy-option-group.rst
${PYSITELIB}/awscli/examples/rds/create-db-cluster-endpoint.rst
${PYSITELIB}/awscli/examples/rds/create-db-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/create-db-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/rds/create-db-cluster.rst
${PYSITELIB}/awscli/examples/rds/create-db-instance-read-replica.rst
${PYSITELIB}/awscli/examples/rds/create-db-instance.rst
${PYSITELIB}/awscli/examples/rds/create-db-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/create-db-security-group.rst
${PYSITELIB}/awscli/examples/rds/create-db-snapshot.rst
${PYSITELIB}/awscli/examples/rds/create-db-subnet-group.rst
${PYSITELIB}/awscli/examples/rds/create-event-subscription.rst
${PYSITELIB}/awscli/examples/rds/create-global-cluster.rst
${PYSITELIB}/awscli/examples/rds/create-option-group.rst
${PYSITELIB}/awscli/examples/rds/delete-db-cluster-endpoint.rst
${PYSITELIB}/awscli/examples/rds/delete-db-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/delete-db-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/rds/delete-db-cluster.rst
${PYSITELIB}/awscli/examples/rds/delete-db-instance-automated-backup.rst
${PYSITELIB}/awscli/examples/rds/delete-db-instance.rst
${PYSITELIB}/awscli/examples/rds/delete-db-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/delete-db-security-group.rst
${PYSITELIB}/awscli/examples/rds/delete-db-snapshot.rst
${PYSITELIB}/awscli/examples/rds/delete-db-subnet-group.rst
${PYSITELIB}/awscli/examples/rds/delete-event-subscription.rst
${PYSITELIB}/awscli/examples/rds/delete-global-cluster.rst
${PYSITELIB}/awscli/examples/rds/delete-option-group.rst
${PYSITELIB}/awscli/examples/rds/describe-account-attributes.rst
${PYSITELIB}/awscli/examples/rds/describe-certificates.rst
${PYSITELIB}/awscli/examples/rds/describe-db-cluster-backtracks.rst
${PYSITELIB}/awscli/examples/rds/describe-db-cluster-endpoints.rst
${PYSITELIB}/awscli/examples/rds/describe-db-cluster-parameter-groups.rst
${PYSITELIB}/awscli/examples/rds/describe-db-cluster-parameters.rst
${PYSITELIB}/awscli/examples/rds/describe-db-cluster-snapshot-attributes.rst
${PYSITELIB}/awscli/examples/rds/describe-db-cluster-snapshots.rst
${PYSITELIB}/awscli/examples/rds/describe-db-clusters.rst
${PYSITELIB}/awscli/examples/rds/describe-db-engine-versions.rst
${PYSITELIB}/awscli/examples/rds/describe-db-instance-automated-backups.rst
${PYSITELIB}/awscli/examples/rds/describe-db-instances.rst
${PYSITELIB}/awscli/examples/rds/describe-db-log-files.rst
${PYSITELIB}/awscli/examples/rds/describe-db-parameter-groups.rst
${PYSITELIB}/awscli/examples/rds/describe-db-parameters.rst
${PYSITELIB}/awscli/examples/rds/describe-db-security-groups.rst
${PYSITELIB}/awscli/examples/rds/describe-db-snapshot-attributes.rst
${PYSITELIB}/awscli/examples/rds/describe-db-snapshots.rst
${PYSITELIB}/awscli/examples/rds/describe-db-subnet-groups.rst
${PYSITELIB}/awscli/examples/rds/describe-engine-default-cluster-parameters.rst
${PYSITELIB}/awscli/examples/rds/describe-engine-default-parameters.rst
${PYSITELIB}/awscli/examples/rds/describe-event-categories.rst
${PYSITELIB}/awscli/examples/rds/describe-event-subscriptions.rst
${PYSITELIB}/awscli/examples/rds/describe-events.rst
${PYSITELIB}/awscli/examples/rds/describe-export-tasks.rst
${PYSITELIB}/awscli/examples/rds/describe-global-clusters.rst
${PYSITELIB}/awscli/examples/rds/describe-option-group-options.rst
${PYSITELIB}/awscli/examples/rds/describe-option-groups.rst
${PYSITELIB}/awscli/examples/rds/describe-orderable-db-instance-options.rst
${PYSITELIB}/awscli/examples/rds/describe-pending-maintenance-actions.rst
${PYSITELIB}/awscli/examples/rds/describe-reserved-db-instances-offerings.rst
${PYSITELIB}/awscli/examples/rds/describe-reserved-db-instances.rst
${PYSITELIB}/awscli/examples/rds/describe-source-regions.rst
${PYSITELIB}/awscli/examples/rds/describe-valid-db-instance-modifications.rst
${PYSITELIB}/awscli/examples/rds/download-db-log-file-portion.rst
${PYSITELIB}/awscli/examples/rds/generate-auth-token.rst
${PYSITELIB}/awscli/examples/rds/generate-db-auth-token.rst
${PYSITELIB}/awscli/examples/rds/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/rds/modify-certificates.rst
${PYSITELIB}/awscli/examples/rds/modify-current-db-cluster-capacity.rst
${PYSITELIB}/awscli/examples/rds/modify-db-cluster-endpoint.rst
${PYSITELIB}/awscli/examples/rds/modify-db-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/modify-db-cluster-snapshot-attribute.rst
${PYSITELIB}/awscli/examples/rds/modify-db-cluster.rst
${PYSITELIB}/awscli/examples/rds/modify-db-instance.rst
${PYSITELIB}/awscli/examples/rds/modify-db-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/modify-db-snapshot-attribute.rst
${PYSITELIB}/awscli/examples/rds/modify-db-snapshot-attributes.rst
${PYSITELIB}/awscli/examples/rds/modify-db-snapshot.rst
${PYSITELIB}/awscli/examples/rds/modify-db-subnet-group.rst
${PYSITELIB}/awscli/examples/rds/modify-event-subscription.rst
${PYSITELIB}/awscli/examples/rds/modify-global-cluster.rst
${PYSITELIB}/awscli/examples/rds/promote-read-replica-db-cluster.rst
${PYSITELIB}/awscli/examples/rds/promote-read-replica.rst
${PYSITELIB}/awscli/examples/rds/purchase-reserved-db-instance.rst
${PYSITELIB}/awscli/examples/rds/purchase-reserved-db-instances-offerings.rst
${PYSITELIB}/awscli/examples/rds/reboot-db-instance.rst
${PYSITELIB}/awscli/examples/rds/remove-from-global-cluster.rst
${PYSITELIB}/awscli/examples/rds/remove-option-from-option-group.rst
${PYSITELIB}/awscli/examples/rds/remove-role-from-db-cluster.rst
${PYSITELIB}/awscli/examples/rds/remove-role-from-db-instance.rst
${PYSITELIB}/awscli/examples/rds/remove-source-identifier-from-subscription.rst
${PYSITELIB}/awscli/examples/rds/remove-tags-from-resource.rst
${PYSITELIB}/awscli/examples/rds/reset-db-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/reset-db-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/restore-db-cluster-from-s3.rst
${PYSITELIB}/awscli/examples/rds/restore-db-cluster-from-snapshot.rst
${PYSITELIB}/awscli/examples/rds/restore-db-cluster-to-point-in-time.rst
${PYSITELIB}/awscli/examples/rds/restore-db-instance-from-db-snapshot.rst
${PYSITELIB}/awscli/examples/rds/restore-db-instance-from-s3.rst
${PYSITELIB}/awscli/examples/rds/restore-db-instance-to-point-in-time.rst
${PYSITELIB}/awscli/examples/rds/start-activity-stream.rst
${PYSITELIB}/awscli/examples/rds/start-db-cluster.rst
${PYSITELIB}/awscli/examples/rds/start-db-instance-automated-backups-replication.rst
${PYSITELIB}/awscli/examples/rds/start-db-instance.rst
${PYSITELIB}/awscli/examples/rds/start-export-task.rst
${PYSITELIB}/awscli/examples/rds/stop-activity-stream.rst
${PYSITELIB}/awscli/examples/rds/stop-db-cluster.rst
${PYSITELIB}/awscli/examples/rds/stop-db-instance-automated-backups-replication.rst
${PYSITELIB}/awscli/examples/rds/stop-db-instance.rst
${PYSITELIB}/awscli/examples/redshift/accept-reserved-node-exchange.rst
${PYSITELIB}/awscli/examples/redshift/authorize-cluster-security-group-ingress.rst
${PYSITELIB}/awscli/examples/redshift/authorize-snapshot-access.rst
${PYSITELIB}/awscli/examples/redshift/batch-delete-cluster-snapshots.rst
${PYSITELIB}/awscli/examples/redshift/batch-modify-cluster-snapshots.rst
${PYSITELIB}/awscli/examples/redshift/cancel-resize.rst
${PYSITELIB}/awscli/examples/redshift/copy-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/redshift/create-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/redshift/create-cluster-security-group.rst
${PYSITELIB}/awscli/examples/redshift/create-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/redshift/create-cluster-subnet-group.rst
${PYSITELIB}/awscli/examples/redshift/create-cluster.rst
${PYSITELIB}/awscli/examples/redshift/create-event-subscription.rst
${PYSITELIB}/awscli/examples/redshift/create-hsm-client-certificate.rst
${PYSITELIB}/awscli/examples/redshift/create-hsm-configuration.rst
${PYSITELIB}/awscli/examples/redshift/create-snapshot-copy-grant.rst
${PYSITELIB}/awscli/examples/redshift/create-snapshot-schedule.rst
${PYSITELIB}/awscli/examples/redshift/create-tags.rst
${PYSITELIB}/awscli/examples/redshift/delete-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/redshift/delete-cluster-security-group.rst
${PYSITELIB}/awscli/examples/redshift/delete-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/redshift/delete-cluster-subnet-group.rst
${PYSITELIB}/awscli/examples/redshift/delete-cluster.rst
${PYSITELIB}/awscli/examples/redshift/delete-event-subscription.rst
${PYSITELIB}/awscli/examples/redshift/delete-hsm-client-certificate.rst
${PYSITELIB}/awscli/examples/redshift/delete-hsm-configuration.rst
${PYSITELIB}/awscli/examples/redshift/delete-scheduled-action.rst
${PYSITELIB}/awscli/examples/redshift/delete-snapshot-copy-grant.rst
${PYSITELIB}/awscli/examples/redshift/delete-snapshot-schedule.rst
${PYSITELIB}/awscli/examples/redshift/delete-tags.rst
${PYSITELIB}/awscli/examples/redshift/describe-account-attributes.rst
${PYSITELIB}/awscli/examples/redshift/describe-cluster-db-revisions.rst
${PYSITELIB}/awscli/examples/redshift/describe-cluster-parameter-groups.rst
${PYSITELIB}/awscli/examples/redshift/describe-cluster-parameters.rst
${PYSITELIB}/awscli/examples/redshift/describe-cluster-security-groups.rst
${PYSITELIB}/awscli/examples/redshift/describe-cluster-snapshots.rst
${PYSITELIB}/awscli/examples/redshift/describe-cluster-subnet-groups.rst
${PYSITELIB}/awscli/examples/redshift/describe-cluster-tracks.rst
${PYSITELIB}/awscli/examples/redshift/describe-cluster-versions.rst
${PYSITELIB}/awscli/examples/redshift/describe-clusters.rst
${PYSITELIB}/awscli/examples/redshift/describe-default-cluster-parameters.rst
${PYSITELIB}/awscli/examples/redshift/describe-event-categories.rst
${PYSITELIB}/awscli/examples/redshift/describe-event-subscriptions.rst
${PYSITELIB}/awscli/examples/redshift/describe-events.rst
${PYSITELIB}/awscli/examples/redshift/describe-hsm-client-certificates.rst
${PYSITELIB}/awscli/examples/redshift/describe-hsm-configurations.rst
${PYSITELIB}/awscli/examples/redshift/describe-logging-status.rst
${PYSITELIB}/awscli/examples/redshift/describe-node-configuration-options.rst
${PYSITELIB}/awscli/examples/redshift/describe-orderable-cluster-options.rst
${PYSITELIB}/awscli/examples/redshift/describe-reserved-node-offerings.rst
${PYSITELIB}/awscli/examples/redshift/describe-reserved-nodes.rst
${PYSITELIB}/awscli/examples/redshift/describe-resize.rst
${PYSITELIB}/awscli/examples/redshift/describe-scheduled-actions.rst
${PYSITELIB}/awscli/examples/redshift/describe-snapshot-copy-grants.rst
${PYSITELIB}/awscli/examples/redshift/describe-snapshot-schedules.rst
${PYSITELIB}/awscli/examples/redshift/describe-storage.rst
${PYSITELIB}/awscli/examples/redshift/describe-table-restore-status.rst
${PYSITELIB}/awscli/examples/redshift/describe-tags.rst
${PYSITELIB}/awscli/examples/redshift/disable-snapshot-copy.rst
${PYSITELIB}/awscli/examples/redshift/enable-snapshot-copy.rst
${PYSITELIB}/awscli/examples/redshift/get-cluster-credentials.rst
${PYSITELIB}/awscli/examples/redshift/get-reserved-node-exchange-offerings.rst
${PYSITELIB}/awscli/examples/redshift/modify-cluster-iam-roles.rst
${PYSITELIB}/awscli/examples/redshift/modify-cluster-maintenance.rst
${PYSITELIB}/awscli/examples/redshift/modify-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/redshift/modify-cluster-snapshot-schedule.rst
${PYSITELIB}/awscli/examples/redshift/modify-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/redshift/modify-cluster-subnet-group.rst
${PYSITELIB}/awscli/examples/redshift/modify-cluster.rst
${PYSITELIB}/awscli/examples/redshift/modify-event-subscription.rst
${PYSITELIB}/awscli/examples/redshift/modify-scheduled-action.rst
${PYSITELIB}/awscli/examples/redshift/modify-snapshot-copy-retention-period.rst
${PYSITELIB}/awscli/examples/redshift/modify-snapshot-schedule.rst
${PYSITELIB}/awscli/examples/redshift/purchase-reserved-node-offering.rst
${PYSITELIB}/awscli/examples/redshift/reboot-cluster.rst
${PYSITELIB}/awscli/examples/redshift/reset-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/redshift/resize-cluster.rst
${PYSITELIB}/awscli/examples/redshift/restore-from-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/redshift/restore-table-from-cluster-snapshot.rst
${PYSITELIB}/awscli/examples/redshift/revoke-cluster-security-group-ingress.rst
${PYSITELIB}/awscli/examples/redshift/revoke-snapshot-access.rst
${PYSITELIB}/awscli/examples/redshift/rotate-encryption-key.rst
${PYSITELIB}/awscli/examples/redshift/wait/cluster-available.rst
${PYSITELIB}/awscli/examples/redshift/wait/cluster-deleted.rst
${PYSITELIB}/awscli/examples/redshift/wait/cluster-restored.rst
${PYSITELIB}/awscli/examples/redshift/wait/snapshot-available.rst
${PYSITELIB}/awscli/examples/rekognition/compare-faces.rst
${PYSITELIB}/awscli/examples/rekognition/create-collection.rst
${PYSITELIB}/awscli/examples/rekognition/create-stream-processor.rst
${PYSITELIB}/awscli/examples/rekognition/delete-collection.rst
${PYSITELIB}/awscli/examples/rekognition/delete-faces.rst
${PYSITELIB}/awscli/examples/rekognition/delete-stream-processor.rst
${PYSITELIB}/awscli/examples/rekognition/describe-collection.rst
${PYSITELIB}/awscli/examples/rekognition/describe-stream-processor.rst
${PYSITELIB}/awscli/examples/rekognition/detect-faces.rst
${PYSITELIB}/awscli/examples/rekognition/detect-labels.rst
${PYSITELIB}/awscli/examples/rekognition/detect-moderation-labels.rst
${PYSITELIB}/awscli/examples/rekognition/detect-text.rst
${PYSITELIB}/awscli/examples/rekognition/get-celebrity-info.rst
${PYSITELIB}/awscli/examples/rekognition/get-celebrity-recognition.rst
${PYSITELIB}/awscli/examples/rekognition/get-content-moderation.rst
${PYSITELIB}/awscli/examples/rekognition/get-face-detection.rst
${PYSITELIB}/awscli/examples/rekognition/get-face-search.rst
${PYSITELIB}/awscli/examples/rekognition/get-label-detection.rst
${PYSITELIB}/awscli/examples/rekognition/get-person-tracking.rst
${PYSITELIB}/awscli/examples/rekognition/index-faces.rst
${PYSITELIB}/awscli/examples/rekognition/list-collections.rst
${PYSITELIB}/awscli/examples/rekognition/list-faces.rst
${PYSITELIB}/awscli/examples/rekognition/list-stream-processors.rst
${PYSITELIB}/awscli/examples/rekognition/recognize-celebrities.rst
${PYSITELIB}/awscli/examples/rekognition/search-faces-by-image.rst
${PYSITELIB}/awscli/examples/rekognition/search-faces.rst
${PYSITELIB}/awscli/examples/rekognition/start-celebrity-recognition.rst
${PYSITELIB}/awscli/examples/rekognition/start-content-moderation.rst
${PYSITELIB}/awscli/examples/rekognition/start-face-detection.rst
${PYSITELIB}/awscli/examples/rekognition/start-face-search.rst
${PYSITELIB}/awscli/examples/rekognition/start-label-detection.rst
${PYSITELIB}/awscli/examples/rekognition/start-person-tracking.rst
${PYSITELIB}/awscli/examples/rekognition/start-stream-processor.rst
${PYSITELIB}/awscli/examples/rekognition/stop-stream-processor.rst
${PYSITELIB}/awscli/examples/resource-groups/create-group.rst
${PYSITELIB}/awscli/examples/resource-groups/delete-group.rst
${PYSITELIB}/awscli/examples/resource-groups/get-group-query.rst
${PYSITELIB}/awscli/examples/resource-groups/get-group.rst
${PYSITELIB}/awscli/examples/resource-groups/get-tags.rst
${PYSITELIB}/awscli/examples/resource-groups/list-group-resources.rst
${PYSITELIB}/awscli/examples/resource-groups/list-groups.rst
${PYSITELIB}/awscli/examples/resource-groups/list-resource-groups.rst
${PYSITELIB}/awscli/examples/resource-groups/put-group-configuration.rst
${PYSITELIB}/awscli/examples/resource-groups/search-resources.rst
${PYSITELIB}/awscli/examples/resource-groups/tag.rst
${PYSITELIB}/awscli/examples/resource-groups/untag.rst
${PYSITELIB}/awscli/examples/resource-groups/update-group-query.rst
${PYSITELIB}/awscli/examples/resource-groups/update-group.rst
${PYSITELIB}/awscli/examples/resourcegroupstaggingapi/get-resources.rst
${PYSITELIB}/awscli/examples/resourcegroupstaggingapi/get-tag-keys.rst
${PYSITELIB}/awscli/examples/resourcegroupstaggingapi/get-tag-values.rst
${PYSITELIB}/awscli/examples/resourcegroupstaggingapi/tag-resources.rst
${PYSITELIB}/awscli/examples/resourcegroupstaggingapi/untag-resources.rst
${PYSITELIB}/awscli/examples/robomaker/batch-describe-simulation-job.rst
${PYSITELIB}/awscli/examples/robomaker/cancel-simulation-job.rst
${PYSITELIB}/awscli/examples/robomaker/create-deployment-job.rst
${PYSITELIB}/awscli/examples/robomaker/create-fleet.rst
${PYSITELIB}/awscli/examples/robomaker/create-robot-application-version.rst
${PYSITELIB}/awscli/examples/robomaker/create-robot-application.rst
${PYSITELIB}/awscli/examples/robomaker/create-robot.rst
${PYSITELIB}/awscli/examples/robomaker/create-simulation-application-version.rst
${PYSITELIB}/awscli/examples/robomaker/create-simulation-application.rst
${PYSITELIB}/awscli/examples/robomaker/create-simulation-job.rst
${PYSITELIB}/awscli/examples/robomaker/delete-fleet.rst
${PYSITELIB}/awscli/examples/robomaker/delete-robot-application.rst
${PYSITELIB}/awscli/examples/robomaker/delete-robot.rst
${PYSITELIB}/awscli/examples/robomaker/delete-simulation-application.rst
${PYSITELIB}/awscli/examples/robomaker/deregister-robot.rst
${PYSITELIB}/awscli/examples/robomaker/describe-deployment-job.rst
${PYSITELIB}/awscli/examples/robomaker/describe-fleet.rst
${PYSITELIB}/awscli/examples/robomaker/describe-robot-application.rst
${PYSITELIB}/awscli/examples/robomaker/describe-robot.rst
${PYSITELIB}/awscli/examples/robomaker/describe-simulation-application.rst
${PYSITELIB}/awscli/examples/robomaker/describe-simulation-job.rst
${PYSITELIB}/awscli/examples/robomaker/list-deployment-jobs.rst
${PYSITELIB}/awscli/examples/robomaker/list-fleets.rst
${PYSITELIB}/awscli/examples/robomaker/list-robot-applications.rst
${PYSITELIB}/awscli/examples/robomaker/list-robots.rst
${PYSITELIB}/awscli/examples/robomaker/list-simulation-applications.rst
${PYSITELIB}/awscli/examples/robomaker/list-simulation-jobs.rst
${PYSITELIB}/awscli/examples/robomaker/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/robomaker/register-robot.rst
${PYSITELIB}/awscli/examples/robomaker/restart-simulation-job.rst
${PYSITELIB}/awscli/examples/robomaker/sync-deployment-job.rst
${PYSITELIB}/awscli/examples/robomaker/tag-resource.rst
${PYSITELIB}/awscli/examples/robomaker/untag-resource.rst
${PYSITELIB}/awscli/examples/robomaker/update-robot-application.rst
${PYSITELIB}/awscli/examples/robomaker/update-simulation-application.rst
${PYSITELIB}/awscli/examples/route53/change-resource-record-sets.rst
${PYSITELIB}/awscli/examples/route53/change-tags-for-resource.rst
${PYSITELIB}/awscli/examples/route53/create-health-check.rst
${PYSITELIB}/awscli/examples/route53/create-hosted-zone.rst
${PYSITELIB}/awscli/examples/route53/delete-health-check.rst
${PYSITELIB}/awscli/examples/route53/delete-hosted-zone.rst
${PYSITELIB}/awscli/examples/route53/get-change.rst
${PYSITELIB}/awscli/examples/route53/get-health-check.rst
${PYSITELIB}/awscli/examples/route53/get-hosted-zone.rst
${PYSITELIB}/awscli/examples/route53/list-health-checks.rst
${PYSITELIB}/awscli/examples/route53/list-hosted-zones-by-name.rst
${PYSITELIB}/awscli/examples/route53/list-hosted-zones.rst
${PYSITELIB}/awscli/examples/route53/list-query-logging-configs.rst
${PYSITELIB}/awscli/examples/route53/list-resource-record-sets.rst
${PYSITELIB}/awscli/examples/route53domains/check-domain-availability.rst
${PYSITELIB}/awscli/examples/route53domains/check-domain-transferability.rst
${PYSITELIB}/awscli/examples/route53domains/delete-tags-for-domain.rst
${PYSITELIB}/awscli/examples/route53domains/disable-domain-auto-renew.rst
${PYSITELIB}/awscli/examples/route53domains/disable-domain-transfer-lock.rst
${PYSITELIB}/awscli/examples/route53domains/enable-domain-auto-renew.rst
${PYSITELIB}/awscli/examples/route53domains/enable-domain-transfer-lock.rst
${PYSITELIB}/awscli/examples/route53domains/get-contact-reachability-status.rst
${PYSITELIB}/awscli/examples/route53domains/get-domain-detail.rst
${PYSITELIB}/awscli/examples/route53domains/get-domain-suggestions.rst
${PYSITELIB}/awscli/examples/route53domains/get-operation-detail.rst
${PYSITELIB}/awscli/examples/route53domains/list-domains.rst
${PYSITELIB}/awscli/examples/route53domains/list-operations.rst
${PYSITELIB}/awscli/examples/route53domains/list-tags-for-domain.rst
${PYSITELIB}/awscli/examples/route53domains/register-domain.rst
${PYSITELIB}/awscli/examples/route53domains/renew-domain.rst
${PYSITELIB}/awscli/examples/route53domains/resend-contact-reachability-email.rst
${PYSITELIB}/awscli/examples/route53domains/retrieve-domain-auth-code.rst
${PYSITELIB}/awscli/examples/route53domains/transfer-domain.rst
${PYSITELIB}/awscli/examples/route53domains/update-domain-contact-privacy.rst
${PYSITELIB}/awscli/examples/route53domains/update-domain-contact.rst
${PYSITELIB}/awscli/examples/route53domains/update-domain-nameservers.rst
${PYSITELIB}/awscli/examples/route53domains/update-tags-for-domain.rst
${PYSITELIB}/awscli/examples/route53domains/view-billing.rst
${PYSITELIB}/awscli/examples/route53resolver/associate-firewall-rule-group.rst
${PYSITELIB}/awscli/examples/route53resolver/associate-resolver-endpoint-ip-address.rst
${PYSITELIB}/awscli/examples/route53resolver/associate-resolver-rule.rst
${PYSITELIB}/awscli/examples/route53resolver/create-firewall-domain-list.rst
${PYSITELIB}/awscli/examples/route53resolver/create-firewall-rule-group.rst
${PYSITELIB}/awscli/examples/route53resolver/create-firewall-rule.rst
${PYSITELIB}/awscli/examples/route53resolver/create-resolver-endpoint.rst
${PYSITELIB}/awscli/examples/route53resolver/create-resolver-rule.rst
${PYSITELIB}/awscli/examples/route53resolver/delete-firewall-domain-list.rst
${PYSITELIB}/awscli/examples/route53resolver/delete-firewall-rule-group.rst
${PYSITELIB}/awscli/examples/route53resolver/delete-firewall-rule.rst
${PYSITELIB}/awscli/examples/route53resolver/delete-resolver-endpoint.rst
${PYSITELIB}/awscli/examples/route53resolver/delete-resolver-rule.rst
${PYSITELIB}/awscli/examples/route53resolver/disassociate-firewall-rule-group.rst
${PYSITELIB}/awscli/examples/route53resolver/disassociate-resolver-endpoint-ip-address.rst
${PYSITELIB}/awscli/examples/route53resolver/disassociate-resolver-rule.rst
${PYSITELIB}/awscli/examples/route53resolver/get-firewall-config.rst
${PYSITELIB}/awscli/examples/route53resolver/get-firewall-domain-list.rst
${PYSITELIB}/awscli/examples/route53resolver/get-firewall-rule-group-association.rst
${PYSITELIB}/awscli/examples/route53resolver/get-firewall-rule-group-policy.rst
${PYSITELIB}/awscli/examples/route53resolver/get-firewall-rule-group.rst
${PYSITELIB}/awscli/examples/route53resolver/get-resolver-endpoint.rst
${PYSITELIB}/awscli/examples/route53resolver/get-resolver-rule-association.rst
${PYSITELIB}/awscli/examples/route53resolver/get-resolver-rule.rst
${PYSITELIB}/awscli/examples/route53resolver/import-firewall-domains.rst
${PYSITELIB}/awscli/examples/route53resolver/list-firewall-configs.rst
${PYSITELIB}/awscli/examples/route53resolver/list-firewall-domain-lists.rst
${PYSITELIB}/awscli/examples/route53resolver/list-firewall-domains.rst
${PYSITELIB}/awscli/examples/route53resolver/list-firewall-rule-group-associations.rst
${PYSITELIB}/awscli/examples/route53resolver/list-firewall-rule-groups.rst
${PYSITELIB}/awscli/examples/route53resolver/list-firewall-rules.rst
${PYSITELIB}/awscli/examples/route53resolver/list-resolver-endpoint-ip-addresses.rst
${PYSITELIB}/awscli/examples/route53resolver/list-resolver-endpoints.rst
${PYSITELIB}/awscli/examples/route53resolver/list-resolver-rule-associations.rst
${PYSITELIB}/awscli/examples/route53resolver/list-resolver-rules.rst
${PYSITELIB}/awscli/examples/route53resolver/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/route53resolver/put-firewall-rule-group-policy.rst
${PYSITELIB}/awscli/examples/route53resolver/put-resolver-rule-policy.rst
${PYSITELIB}/awscli/examples/route53resolver/tag-resource.rst
${PYSITELIB}/awscli/examples/route53resolver/untag-resource.rst
${PYSITELIB}/awscli/examples/route53resolver/update-firewall-config.rst
${PYSITELIB}/awscli/examples/route53resolver/update-firewall-domains.rst
${PYSITELIB}/awscli/examples/route53resolver/update-firewall-rule-group-association.rst
${PYSITELIB}/awscli/examples/route53resolver/update-firewall-rule.rst
${PYSITELIB}/awscli/examples/route53resolver/update-resolver-endpoint.rst
${PYSITELIB}/awscli/examples/route53resolver/update-resolver-rule.rst
${PYSITELIB}/awscli/examples/s3/_concepts.rst
${PYSITELIB}/awscli/examples/s3/cp.rst
${PYSITELIB}/awscli/examples/s3/ls.rst
${PYSITELIB}/awscli/examples/s3/mb.rst
${PYSITELIB}/awscli/examples/s3/mv.rst
${PYSITELIB}/awscli/examples/s3/presign.rst
${PYSITELIB}/awscli/examples/s3/rb.rst
${PYSITELIB}/awscli/examples/s3/rm.rst
${PYSITELIB}/awscli/examples/s3/sync.rst
${PYSITELIB}/awscli/examples/s3/website.rst
${PYSITELIB}/awscli/examples/s3api/abort-multipart-upload.rst
${PYSITELIB}/awscli/examples/s3api/complete-multipart-upload.rst
${PYSITELIB}/awscli/examples/s3api/copy-object.rst
${PYSITELIB}/awscli/examples/s3api/create-bucket.rst
${PYSITELIB}/awscli/examples/s3api/create-multipart-upload.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-analytics-configuration.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-cors.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-encryption.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-inventory-configuration.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-lifecycle.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-metrics-configuration.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-policy.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-replication.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-tagging.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-website.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket.rst
${PYSITELIB}/awscli/examples/s3api/delete-object-tagging.rst
${PYSITELIB}/awscli/examples/s3api/delete-object.rst
${PYSITELIB}/awscli/examples/s3api/delete-objects.rst
${PYSITELIB}/awscli/examples/s3api/delete-public-access-block.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-accelerate-configuration.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-acl.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-analytics-configuration.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-cors.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-encryption.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-inventory-configuration.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-lifecycle-configuration.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-lifecycle.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-location.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-logging.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-metrics-configuration.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-notification-configuration.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-notification.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-policy-status.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-policy.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-replication.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-request-payment.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-tagging.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-versioning.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-website.rst
${PYSITELIB}/awscli/examples/s3api/get-object-acl.rst
${PYSITELIB}/awscli/examples/s3api/get-object-attributes.rst
${PYSITELIB}/awscli/examples/s3api/get-object-legal-hold.rst
${PYSITELIB}/awscli/examples/s3api/get-object-lock-configuration.rst
${PYSITELIB}/awscli/examples/s3api/get-object-retention.rst
${PYSITELIB}/awscli/examples/s3api/get-object-tagging.rst
${PYSITELIB}/awscli/examples/s3api/get-object-torrent.rst
${PYSITELIB}/awscli/examples/s3api/get-object.rst
${PYSITELIB}/awscli/examples/s3api/get-public-access-block.rst
${PYSITELIB}/awscli/examples/s3api/head-bucket.rst
${PYSITELIB}/awscli/examples/s3api/head-object.rst
${PYSITELIB}/awscli/examples/s3api/list-bucket-analytics-configurations.rst
${PYSITELIB}/awscli/examples/s3api/list-bucket-inventory-configurations.rst
${PYSITELIB}/awscli/examples/s3api/list-bucket-metrics-configurations.rst
${PYSITELIB}/awscli/examples/s3api/list-buckets.rst
${PYSITELIB}/awscli/examples/s3api/list-multipart-uploads.rst
${PYSITELIB}/awscli/examples/s3api/list-object-versions.rst
${PYSITELIB}/awscli/examples/s3api/list-objects-v2.rst
${PYSITELIB}/awscli/examples/s3api/list-objects.rst
${PYSITELIB}/awscli/examples/s3api/list-parts.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-accelerate-configuration.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-acl.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-analytics-configuration.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-cors.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-encryption.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-inventory-configuration.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-lifecycle-configuration.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-lifecycle.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-logging.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-metrics-configuration.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-notification-configuration.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-notification.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-policy.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-replication.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-request-payment.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-tagging.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-versioning.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-website.rst
${PYSITELIB}/awscli/examples/s3api/put-object-acl.rst
${PYSITELIB}/awscli/examples/s3api/put-object-legal-hold.rst
${PYSITELIB}/awscli/examples/s3api/put-object-lock-configuration.rst
${PYSITELIB}/awscli/examples/s3api/put-object-retention.rst
${PYSITELIB}/awscli/examples/s3api/put-object-tagging.rst
${PYSITELIB}/awscli/examples/s3api/put-object.rst
${PYSITELIB}/awscli/examples/s3api/put-public-access-block.rst
${PYSITELIB}/awscli/examples/s3api/restore-object.rst
${PYSITELIB}/awscli/examples/s3api/select-object-content.rst
${PYSITELIB}/awscli/examples/s3api/upload-part-copy.rst
${PYSITELIB}/awscli/examples/s3api/upload-part.rst
${PYSITELIB}/awscli/examples/s3api/wait/bucket-exists.rst
${PYSITELIB}/awscli/examples/s3api/wait/bucket-not-exists.rst
${PYSITELIB}/awscli/examples/s3api/wait/object-exists.rst
${PYSITELIB}/awscli/examples/s3api/wait/object-not-exists.rst
${PYSITELIB}/awscli/examples/s3control/create-access-point.rst
${PYSITELIB}/awscli/examples/s3control/create-job.rst
${PYSITELIB}/awscli/examples/s3control/delete-access-point-policy.rst
${PYSITELIB}/awscli/examples/s3control/delete-access-point.rst
${PYSITELIB}/awscli/examples/s3control/delete-public-access-block.rst
${PYSITELIB}/awscli/examples/s3control/describe-job.rst
${PYSITELIB}/awscli/examples/s3control/get-access-point-policy-status.rst
${PYSITELIB}/awscli/examples/s3control/get-access-point-policy.rst
${PYSITELIB}/awscli/examples/s3control/get-access-point.rst
${PYSITELIB}/awscli/examples/s3control/get-public-access-block.rst
${PYSITELIB}/awscli/examples/s3control/list-access-points.rst
${PYSITELIB}/awscli/examples/s3control/list-jobs.rst
${PYSITELIB}/awscli/examples/s3control/put-access-point-policy.rst
${PYSITELIB}/awscli/examples/s3control/put-public-access-block.rst
${PYSITELIB}/awscli/examples/s3control/update-job-priority.rst
${PYSITELIB}/awscli/examples/s3control/update-job-status.rst
${PYSITELIB}/awscli/examples/secretsmanager/cancel-rotate-secret.rst
${PYSITELIB}/awscli/examples/secretsmanager/create-secret.rst
${PYSITELIB}/awscli/examples/secretsmanager/delete-resource-policy.rst
${PYSITELIB}/awscli/examples/secretsmanager/delete-secret.rst
${PYSITELIB}/awscli/examples/secretsmanager/describe-secret.rst
${PYSITELIB}/awscli/examples/secretsmanager/get-random-password.rst
${PYSITELIB}/awscli/examples/secretsmanager/get-resource-policy.rst
${PYSITELIB}/awscli/examples/secretsmanager/get-secret-value.rst
${PYSITELIB}/awscli/examples/secretsmanager/list-secret-version-ids.rst
${PYSITELIB}/awscli/examples/secretsmanager/list-secrets.rst
${PYSITELIB}/awscli/examples/secretsmanager/put-resource-policy.rst
${PYSITELIB}/awscli/examples/secretsmanager/put-secret-value.rst
${PYSITELIB}/awscli/examples/secretsmanager/remove-regions-from-replication.rst
${PYSITELIB}/awscli/examples/secretsmanager/replicate-secret-to-regions.rst
${PYSITELIB}/awscli/examples/secretsmanager/restore-secret.rst
${PYSITELIB}/awscli/examples/secretsmanager/rotate-secret.rst
${PYSITELIB}/awscli/examples/secretsmanager/stop-replication-to-replica.rst
${PYSITELIB}/awscli/examples/secretsmanager/tag-resource.rst
${PYSITELIB}/awscli/examples/secretsmanager/untag-resource.rst
${PYSITELIB}/awscli/examples/secretsmanager/update-secret-version-stage.rst
${PYSITELIB}/awscli/examples/secretsmanager/update-secret.rst
${PYSITELIB}/awscli/examples/secretsmanager/validate-resource-policy.rst
${PYSITELIB}/awscli/examples/securityhub/accept-administrator-invitation.rst
${PYSITELIB}/awscli/examples/securityhub/accept-invitation.rst
${PYSITELIB}/awscli/examples/securityhub/batch-disable-standards.rst
${PYSITELIB}/awscli/examples/securityhub/batch-enable-standards.rst
${PYSITELIB}/awscli/examples/securityhub/batch-import-findings.rst
${PYSITELIB}/awscli/examples/securityhub/batch-update-findings.rst
${PYSITELIB}/awscli/examples/securityhub/create-action-target.rst
${PYSITELIB}/awscli/examples/securityhub/create-finding-aggregator.rst
${PYSITELIB}/awscli/examples/securityhub/create-insight.rst
${PYSITELIB}/awscli/examples/securityhub/create-members.rst
${PYSITELIB}/awscli/examples/securityhub/decline-invitations.rst
${PYSITELIB}/awscli/examples/securityhub/delete-action-target.rst
${PYSITELIB}/awscli/examples/securityhub/delete-finding-aggregator.rst
${PYSITELIB}/awscli/examples/securityhub/delete-insight.rst
${PYSITELIB}/awscli/examples/securityhub/delete-invitations.rst
${PYSITELIB}/awscli/examples/securityhub/delete-members.rst
${PYSITELIB}/awscli/examples/securityhub/describe-action-targets.rst
${PYSITELIB}/awscli/examples/securityhub/describe-hub.rst
${PYSITELIB}/awscli/examples/securityhub/describe-organization-configuration.rst
${PYSITELIB}/awscli/examples/securityhub/describe-products.rst
${PYSITELIB}/awscli/examples/securityhub/describe-standards-controls.rst
${PYSITELIB}/awscli/examples/securityhub/describe-standards.rst
${PYSITELIB}/awscli/examples/securityhub/disable-import-findings-for-product.rst
${PYSITELIB}/awscli/examples/securityhub/disable-organization-admin-account.rst
${PYSITELIB}/awscli/examples/securityhub/disable-security-hub.rst
${PYSITELIB}/awscli/examples/securityhub/disassociate-from-administrator-account.rst
${PYSITELIB}/awscli/examples/securityhub/disassociate-from-master-account.rst
${PYSITELIB}/awscli/examples/securityhub/disassociate-members.rst
${PYSITELIB}/awscli/examples/securityhub/enable-import-findings-for-product.rst
${PYSITELIB}/awscli/examples/securityhub/enable-organization-admin-account.rst
${PYSITELIB}/awscli/examples/securityhub/enable-security-hub.rst
${PYSITELIB}/awscli/examples/securityhub/get-administrator-account.rst
${PYSITELIB}/awscli/examples/securityhub/get-enabled-standards.rst
${PYSITELIB}/awscli/examples/securityhub/get-finding-aggregator.rst
${PYSITELIB}/awscli/examples/securityhub/get-findings.rst
${PYSITELIB}/awscli/examples/securityhub/get-insight-results.rst
${PYSITELIB}/awscli/examples/securityhub/get-insights.rst
${PYSITELIB}/awscli/examples/securityhub/get-invitations-count.rst
${PYSITELIB}/awscli/examples/securityhub/get-master-account.rst
${PYSITELIB}/awscli/examples/securityhub/get-members.rst
${PYSITELIB}/awscli/examples/securityhub/invite-members.rst
${PYSITELIB}/awscli/examples/securityhub/list-enabled-products-for-import.rst
${PYSITELIB}/awscli/examples/securityhub/list-finding-aggregators.rst
${PYSITELIB}/awscli/examples/securityhub/list-invitations.rst
${PYSITELIB}/awscli/examples/securityhub/list-members.rst
${PYSITELIB}/awscli/examples/securityhub/list-organization-admin-accounts.rst
${PYSITELIB}/awscli/examples/securityhub/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/securityhub/tag-resource.rst
${PYSITELIB}/awscli/examples/securityhub/untag-resource.rst
${PYSITELIB}/awscli/examples/securityhub/update-action-target.rst
${PYSITELIB}/awscli/examples/securityhub/update-finding-aggregator.rst
${PYSITELIB}/awscli/examples/securityhub/update-insight.rst
${PYSITELIB}/awscli/examples/securityhub/update-organization-configuration.rst
${PYSITELIB}/awscli/examples/securityhub/update-security-hub-configuration.rst
${PYSITELIB}/awscli/examples/securityhub/update-standards-control.rst
${PYSITELIB}/awscli/examples/serverlessrepo/put-application-policy.rst
${PYSITELIB}/awscli/examples/service-quotas/get-aws-default-service-quota.rst
${PYSITELIB}/awscli/examples/service-quotas/get-requested-service-quota-change.rst
${PYSITELIB}/awscli/examples/service-quotas/get-service-quota.rst
${PYSITELIB}/awscli/examples/service-quotas/list-aws-default-service-quotas.rst
${PYSITELIB}/awscli/examples/service-quotas/list-requested-service-quota-change-history-by-quota.rst
${PYSITELIB}/awscli/examples/service-quotas/list-requested-service-quota-change-history.rst
${PYSITELIB}/awscli/examples/service-quotas/list-service-quotas.rst
${PYSITELIB}/awscli/examples/service-quotas/list-services.rst
${PYSITELIB}/awscli/examples/service-quotas/request-service-quota-increase.rst
${PYSITELIB}/awscli/examples/servicecatalog/accept-portfolio-share.rst
${PYSITELIB}/awscli/examples/servicecatalog/associate-principal-with-portfolio.rst
${PYSITELIB}/awscli/examples/servicecatalog/associate-product-with-portfolio.rst
${PYSITELIB}/awscli/examples/servicecatalog/associate-tag-option-with-resource.rst
${PYSITELIB}/awscli/examples/servicecatalog/copy-product.rst
${PYSITELIB}/awscli/examples/servicecatalog/create-portfolio-share.rst
${PYSITELIB}/awscli/examples/servicecatalog/create-portfolio.rst
${PYSITELIB}/awscli/examples/servicecatalog/create-product.rst
${PYSITELIB}/awscli/examples/servicecatalog/create-provisioning-artifact.rst
${PYSITELIB}/awscli/examples/servicecatalog/create-tag-option.rst
${PYSITELIB}/awscli/examples/servicecatalog/delete-portfolio-share.rst
${PYSITELIB}/awscli/examples/servicecatalog/delete-portfolio.rst
${PYSITELIB}/awscli/examples/servicecatalog/delete-product.rst
${PYSITELIB}/awscli/examples/servicecatalog/delete-provisioning-artifact.rst
${PYSITELIB}/awscli/examples/servicecatalog/delete-tag-option.rst
${PYSITELIB}/awscli/examples/servicecatalog/describe-copy-product-status.rst
${PYSITELIB}/awscli/examples/servicecatalog/describe-portfolio.rst
${PYSITELIB}/awscli/examples/servicecatalog/describe-product-as-admin.rst
${PYSITELIB}/awscli/examples/servicecatalog/describe-provisioned-product.rst
${PYSITELIB}/awscli/examples/servicecatalog/describe-provisioning-artifact.rst
${PYSITELIB}/awscli/examples/servicecatalog/describe-tag-option.rst
${PYSITELIB}/awscli/examples/servicecatalog/disassociate-principal-from-portfolio.rst
${PYSITELIB}/awscli/examples/servicecatalog/disassociate-product-from-portfolio.rst
${PYSITELIB}/awscli/examples/servicecatalog/disassociate-tag-option-from-resource.rst
${PYSITELIB}/awscli/examples/servicecatalog/list-accepted-portfolio-shares.rst
${PYSITELIB}/awscli/examples/servicecatalog/list-portfolio-access.rst
${PYSITELIB}/awscli/examples/servicecatalog/list-portfolios-for-product.rst
${PYSITELIB}/awscli/examples/servicecatalog/list-portfolios.rst
${PYSITELIB}/awscli/examples/servicecatalog/list-principals-for-portfolio.rst
${PYSITELIB}/awscli/examples/servicecatalog/list-provisioning-artifacts.rst
${PYSITELIB}/awscli/examples/servicecatalog/list-resources-for-tag-option.rst
${PYSITELIB}/awscli/examples/servicecatalog/list-tag-options.rst
${PYSITELIB}/awscli/examples/servicecatalog/provision-product.rst
${PYSITELIB}/awscli/examples/servicecatalog/reject-portfolio-share.rst
${PYSITELIB}/awscli/examples/servicecatalog/scan-provisioned-products.rst
${PYSITELIB}/awscli/examples/servicecatalog/search-products-as-admin.rst
${PYSITELIB}/awscli/examples/servicecatalog/search-provisioned-products.rst
${PYSITELIB}/awscli/examples/servicecatalog/update-portfolio.rst
${PYSITELIB}/awscli/examples/servicecatalog/update-product.rst
${PYSITELIB}/awscli/examples/servicecatalog/update-provisioning-artifact.rst
${PYSITELIB}/awscli/examples/servicecatalog/update-tag-option.rst
${PYSITELIB}/awscli/examples/servicediscovery/create-private-dns-namespace.rst
${PYSITELIB}/awscli/examples/servicediscovery/create-service.rst
${PYSITELIB}/awscli/examples/servicediscovery/delete-namespace.rst
${PYSITELIB}/awscli/examples/servicediscovery/delete-service.rst
${PYSITELIB}/awscli/examples/servicediscovery/deregister-instance.rst
${PYSITELIB}/awscli/examples/servicediscovery/discover-instances.rst
${PYSITELIB}/awscli/examples/servicediscovery/get-operation.rst
${PYSITELIB}/awscli/examples/servicediscovery/list-instances.rst
${PYSITELIB}/awscli/examples/servicediscovery/list-namespaces.rst
${PYSITELIB}/awscli/examples/servicediscovery/list-services.rst
${PYSITELIB}/awscli/examples/servicediscovery/register-instance.rst
${PYSITELIB}/awscli/examples/ses/delete-identity.rst
${PYSITELIB}/awscli/examples/ses/get-identity-dkim-attributes.rst
${PYSITELIB}/awscli/examples/ses/get-identity-notification-attributes.rst
${PYSITELIB}/awscli/examples/ses/get-identity-verification-attributes.rst
${PYSITELIB}/awscli/examples/ses/get-send-quota.rst
${PYSITELIB}/awscli/examples/ses/get-send-statistics.rst
${PYSITELIB}/awscli/examples/ses/list-identities.rst
${PYSITELIB}/awscli/examples/ses/send-email.rst
${PYSITELIB}/awscli/examples/ses/send-raw-email.rst
${PYSITELIB}/awscli/examples/ses/set-identity-dkim-enabled.rst
${PYSITELIB}/awscli/examples/ses/set-identity-feedback-forwarding-enabled.rst
${PYSITELIB}/awscli/examples/ses/set-identity-notification-topic.rst
${PYSITELIB}/awscli/examples/ses/verify-domain-dkim.rst
${PYSITELIB}/awscli/examples/ses/verify-domain-identity.rst
${PYSITELIB}/awscli/examples/ses/verify-email-identity.rst
${PYSITELIB}/awscli/examples/shield/associate-drt-log-bucket.rst
${PYSITELIB}/awscli/examples/shield/associate-drt-role.rst
${PYSITELIB}/awscli/examples/shield/create-protection.rst
${PYSITELIB}/awscli/examples/shield/create-subscription.rst
${PYSITELIB}/awscli/examples/shield/delete-protection.rst
${PYSITELIB}/awscli/examples/shield/describe-attack.rst
${PYSITELIB}/awscli/examples/shield/describe-drt-access.rst
${PYSITELIB}/awscli/examples/shield/describe-emergency-contact-settings.rst
${PYSITELIB}/awscli/examples/shield/describe-protection.rst
${PYSITELIB}/awscli/examples/shield/describe-subscription.rst
${PYSITELIB}/awscli/examples/shield/disassociate-drt-log-bucket.rst
${PYSITELIB}/awscli/examples/shield/disassociate-drt-role.rst
${PYSITELIB}/awscli/examples/shield/get-subscription-state.rst
${PYSITELIB}/awscli/examples/shield/list-attacks.rst
${PYSITELIB}/awscli/examples/shield/list-protections.rst
${PYSITELIB}/awscli/examples/shield/update-emergency-contact-settings.rst
${PYSITELIB}/awscli/examples/shield/update-subscription.rst
${PYSITELIB}/awscli/examples/signer/cancel-signing-profile.rst
${PYSITELIB}/awscli/examples/signer/describe-signing-job.rst
${PYSITELIB}/awscli/examples/signer/get-signing-platform.rst
${PYSITELIB}/awscli/examples/signer/get-signing-profile.rst
${PYSITELIB}/awscli/examples/signer/list-signing-jobs.rst
${PYSITELIB}/awscli/examples/signer/list-signing-platforms.rst
${PYSITELIB}/awscli/examples/signer/list-signing-profiles.rst
${PYSITELIB}/awscli/examples/signer/put-signing-profile.rst
${PYSITELIB}/awscli/examples/signer/start-signing-job.rst
${PYSITELIB}/awscli/examples/snowball/get-snowball-usage.rst
${PYSITELIB}/awscli/examples/snowball/list-jobs.rst
${PYSITELIB}/awscli/examples/sns/add-permission.rst
${PYSITELIB}/awscli/examples/sns/check-if-phone-number-is-opted-out.rst
${PYSITELIB}/awscli/examples/sns/confirm-subscription.rst
${PYSITELIB}/awscli/examples/sns/create-platform-application.rst
${PYSITELIB}/awscli/examples/sns/create-platform-endpoint.rst
${PYSITELIB}/awscli/examples/sns/create-topic.rst
${PYSITELIB}/awscli/examples/sns/delete-endpoint.rst
${PYSITELIB}/awscli/examples/sns/delete-platform-application.rst
${PYSITELIB}/awscli/examples/sns/delete-topic.rst
${PYSITELIB}/awscli/examples/sns/get-endpoint-attributes.rst
${PYSITELIB}/awscli/examples/sns/get-platform-application-attributes.rst
${PYSITELIB}/awscli/examples/sns/get-sms-attributes.rst
${PYSITELIB}/awscli/examples/sns/get-subscription-attributes.rst
${PYSITELIB}/awscli/examples/sns/get-topic-attributes.rst
${PYSITELIB}/awscli/examples/sns/list-endpoints-by-platform-application.rst
${PYSITELIB}/awscli/examples/sns/list-phone-numbers-opted-out.rst
${PYSITELIB}/awscli/examples/sns/list-platform-applications.rst
${PYSITELIB}/awscli/examples/sns/list-subscriptions-by-topic.rst
${PYSITELIB}/awscli/examples/sns/list-subscriptions.rst
${PYSITELIB}/awscli/examples/sns/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/sns/list-topics.rst
${PYSITELIB}/awscli/examples/sns/opt-in-phone-number.rst
${PYSITELIB}/awscli/examples/sns/publish.rst
${PYSITELIB}/awscli/examples/sns/remove-permission.rst
${PYSITELIB}/awscli/examples/sns/set-endpoint-attributes.rst
${PYSITELIB}/awscli/examples/sns/set-platform-application-attributes.rst
${PYSITELIB}/awscli/examples/sns/set-sms-attributes.rst
${PYSITELIB}/awscli/examples/sns/set-subscription-attributes.rst
${PYSITELIB}/awscli/examples/sns/set-topic-attributes.rst
${PYSITELIB}/awscli/examples/sns/subscribe.rst
${PYSITELIB}/awscli/examples/sns/tag-resource.rst
${PYSITELIB}/awscli/examples/sns/unsubscribe.rst
${PYSITELIB}/awscli/examples/sns/untag-resource.rst
${PYSITELIB}/awscli/examples/sqs/add-permission.rst
${PYSITELIB}/awscli/examples/sqs/change-message-visibility-batch.rst
${PYSITELIB}/awscli/examples/sqs/change-message-visibility.rst
${PYSITELIB}/awscli/examples/sqs/create-queue.rst
${PYSITELIB}/awscli/examples/sqs/delete-message-batch.rst
${PYSITELIB}/awscli/examples/sqs/delete-message.rst
${PYSITELIB}/awscli/examples/sqs/delete-queue.rst
${PYSITELIB}/awscli/examples/sqs/get-queue-attributes.rst
${PYSITELIB}/awscli/examples/sqs/get-queue-url.rst
${PYSITELIB}/awscli/examples/sqs/list-dead-letter-source-queues.rst
${PYSITELIB}/awscli/examples/sqs/list-queue-tags.rst
${PYSITELIB}/awscli/examples/sqs/list-queues.rst
${PYSITELIB}/awscli/examples/sqs/purge-queue.rst
${PYSITELIB}/awscli/examples/sqs/receive-message.rst
${PYSITELIB}/awscli/examples/sqs/remove-permission.rst
${PYSITELIB}/awscli/examples/sqs/send-message-batch.rst
${PYSITELIB}/awscli/examples/sqs/send-message.rst
${PYSITELIB}/awscli/examples/sqs/set-queue-attributes.rst
${PYSITELIB}/awscli/examples/sqs/tag-queue.rst
${PYSITELIB}/awscli/examples/sqs/untag-queue.rst
${PYSITELIB}/awscli/examples/ssm-contacts/accept-page.rst
${PYSITELIB}/awscli/examples/ssm-contacts/activate-contact-channel.rst
${PYSITELIB}/awscli/examples/ssm-contacts/command-name.rst
${PYSITELIB}/awscli/examples/ssm-contacts/create-contact-channel.rst
${PYSITELIB}/awscli/examples/ssm-contacts/create-contact.rst
${PYSITELIB}/awscli/examples/ssm-contacts/deactivate-contact-channel.rst
${PYSITELIB}/awscli/examples/ssm-contacts/delete-contact-channel.rst
${PYSITELIB}/awscli/examples/ssm-contacts/delete-contact.rst
${PYSITELIB}/awscli/examples/ssm-contacts/describe-engagement.rst
${PYSITELIB}/awscli/examples/ssm-contacts/describe-page.rst
${PYSITELIB}/awscli/examples/ssm-contacts/get-contact-channel.rst
${PYSITELIB}/awscli/examples/ssm-contacts/get-contact-policy.rst
${PYSITELIB}/awscli/examples/ssm-contacts/get-contact.rst
${PYSITELIB}/awscli/examples/ssm-contacts/list-contact-channels.rst
${PYSITELIB}/awscli/examples/ssm-contacts/list-contacts.rst
${PYSITELIB}/awscli/examples/ssm-contacts/list-engagements.rst
${PYSITELIB}/awscli/examples/ssm-contacts/list-page-receipts.rst
${PYSITELIB}/awscli/examples/ssm-contacts/list-pages-by-contact.rst
${PYSITELIB}/awscli/examples/ssm-contacts/list-pages-by-engagement.rst
${PYSITELIB}/awscli/examples/ssm-contacts/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/ssm-contacts/put-contact-policy.rst
${PYSITELIB}/awscli/examples/ssm-contacts/send-activation-code.rst
${PYSITELIB}/awscli/examples/ssm-contacts/start-engagement.rst
${PYSITELIB}/awscli/examples/ssm-contacts/stop-engagement.rst
${PYSITELIB}/awscli/examples/ssm-contacts/tag-resource.rst
${PYSITELIB}/awscli/examples/ssm-contacts/untag-resource.rst
${PYSITELIB}/awscli/examples/ssm-contacts/update-contact-channel.rst
${PYSITELIB}/awscli/examples/ssm-contacts/update-contact.rst
${PYSITELIB}/awscli/examples/ssm-incidents/create-replication-set.rst
${PYSITELIB}/awscli/examples/ssm-incidents/create-response-plan.rst
${PYSITELIB}/awscli/examples/ssm-incidents/create-timeline-event.rst
${PYSITELIB}/awscli/examples/ssm-incidents/delete-incident-record.rst
${PYSITELIB}/awscli/examples/ssm-incidents/delete-replication-set.rst
${PYSITELIB}/awscli/examples/ssm-incidents/delete-resource-policy.rst
${PYSITELIB}/awscli/examples/ssm-incidents/delete-response-plan.rst
${PYSITELIB}/awscli/examples/ssm-incidents/delete-timeline-event.rst
${PYSITELIB}/awscli/examples/ssm-incidents/get-incident-record.rst
${PYSITELIB}/awscli/examples/ssm-incidents/get-replication-set.rst
${PYSITELIB}/awscli/examples/ssm-incidents/get-resource-policies.rst
${PYSITELIB}/awscli/examples/ssm-incidents/get-response-plan.rst
${PYSITELIB}/awscli/examples/ssm-incidents/get-timeline-event.rst
${PYSITELIB}/awscli/examples/ssm-incidents/list-incident-records.rst
${PYSITELIB}/awscli/examples/ssm-incidents/list-related-items.rst
${PYSITELIB}/awscli/examples/ssm-incidents/list-replication-sets.rst
${PYSITELIB}/awscli/examples/ssm-incidents/list-response-plans.rst
${PYSITELIB}/awscli/examples/ssm-incidents/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/ssm-incidents/list-timeline-events.rst
${PYSITELIB}/awscli/examples/ssm-incidents/put-resource-policy.rst
${PYSITELIB}/awscli/examples/ssm-incidents/start-incident.rst
${PYSITELIB}/awscli/examples/ssm-incidents/tag-resource.rst
${PYSITELIB}/awscli/examples/ssm-incidents/untag-resource.rst
${PYSITELIB}/awscli/examples/ssm-incidents/update-deletion-protection.rst
${PYSITELIB}/awscli/examples/ssm-incidents/update-incident-record.rst
${PYSITELIB}/awscli/examples/ssm-incidents/update-related-items.rst
${PYSITELIB}/awscli/examples/ssm-incidents/update-replication-set.rst
${PYSITELIB}/awscli/examples/ssm-incidents/update-response-plan.rst
${PYSITELIB}/awscli/examples/ssm-incidents/update-timeline-event.rst
${PYSITELIB}/awscli/examples/ssm/add-tags-to-resource.rst
${PYSITELIB}/awscli/examples/ssm/associate-ops-item-related-item.rst
${PYSITELIB}/awscli/examples/ssm/cancel-command.rst
${PYSITELIB}/awscli/examples/ssm/cancel-maintenance-window-execution.rst
${PYSITELIB}/awscli/examples/ssm/create-activation.rst
${PYSITELIB}/awscli/examples/ssm/create-association-batch.rst
${PYSITELIB}/awscli/examples/ssm/create-association.rst
${PYSITELIB}/awscli/examples/ssm/create-document.rst
${PYSITELIB}/awscli/examples/ssm/create-maintenance-window.rst
${PYSITELIB}/awscli/examples/ssm/create-ops-item.rst
${PYSITELIB}/awscli/examples/ssm/create-patch-baseline.rst
${PYSITELIB}/awscli/examples/ssm/create-resource-data-sync.rst
${PYSITELIB}/awscli/examples/ssm/delete-activation.rst
${PYSITELIB}/awscli/examples/ssm/delete-association.rst
${PYSITELIB}/awscli/examples/ssm/delete-document.rst
${PYSITELIB}/awscli/examples/ssm/delete-inventory.rst
${PYSITELIB}/awscli/examples/ssm/delete-maintenance-window.rst
${PYSITELIB}/awscli/examples/ssm/delete-parameter.rst
${PYSITELIB}/awscli/examples/ssm/delete-parameters.rst
${PYSITELIB}/awscli/examples/ssm/delete-patch-baseline.rst
${PYSITELIB}/awscli/examples/ssm/delete-resource-data-sync.rst
${PYSITELIB}/awscli/examples/ssm/deregister-managed-instance.rst
${PYSITELIB}/awscli/examples/ssm/deregister-patch-baseline-for-patch-group.rst
${PYSITELIB}/awscli/examples/ssm/deregister-target-from-maintenance-window.rst
${PYSITELIB}/awscli/examples/ssm/deregister-task-from-maintenance-window.rst
${PYSITELIB}/awscli/examples/ssm/describe-activations.rst
${PYSITELIB}/awscli/examples/ssm/describe-association-execution-targets.rst
${PYSITELIB}/awscli/examples/ssm/describe-association-executions.rst
${PYSITELIB}/awscli/examples/ssm/describe-association.rst
${PYSITELIB}/awscli/examples/ssm/describe-automation-executions.rst
${PYSITELIB}/awscli/examples/ssm/describe-automation-step-executions.rst
${PYSITELIB}/awscli/examples/ssm/describe-available-patches.rst
${PYSITELIB}/awscli/examples/ssm/describe-document-permission.rst
${PYSITELIB}/awscli/examples/ssm/describe-document.rst
${PYSITELIB}/awscli/examples/ssm/describe-effective-instance-associations.rst
${PYSITELIB}/awscli/examples/ssm/describe-effective-patches-for-patch-baseline.rst
${PYSITELIB}/awscli/examples/ssm/describe-instance-associations-status.rst
${PYSITELIB}/awscli/examples/ssm/describe-instance-information.rst
${PYSITELIB}/awscli/examples/ssm/describe-instance-patch-states-for-patch-group.rst
${PYSITELIB}/awscli/examples/ssm/describe-instance-patch-states.rst
${PYSITELIB}/awscli/examples/ssm/describe-instance-patches.rst
${PYSITELIB}/awscli/examples/ssm/describe-inventory-deletions.rst
${PYSITELIB}/awscli/examples/ssm/describe-maintenance-window-execution-task-invocations.rst
${PYSITELIB}/awscli/examples/ssm/describe-maintenance-window-execution-tasks.rst
${PYSITELIB}/awscli/examples/ssm/describe-maintenance-window-executions.rst
${PYSITELIB}/awscli/examples/ssm/describe-maintenance-window-schedule.rst
${PYSITELIB}/awscli/examples/ssm/describe-maintenance-window-targets.rst
${PYSITELIB}/awscli/examples/ssm/describe-maintenance-window-tasks.rst
${PYSITELIB}/awscli/examples/ssm/describe-maintenance-windows-for-target.rst
${PYSITELIB}/awscli/examples/ssm/describe-maintenance-windows.rst
${PYSITELIB}/awscli/examples/ssm/describe-ops-items.rst
${PYSITELIB}/awscli/examples/ssm/describe-parameters.rst
${PYSITELIB}/awscli/examples/ssm/describe-patch-baselines.rst
${PYSITELIB}/awscli/examples/ssm/describe-patch-group-state.rst
${PYSITELIB}/awscli/examples/ssm/describe-patch-groups.rst
${PYSITELIB}/awscli/examples/ssm/describe-patch-properties.rst
${PYSITELIB}/awscli/examples/ssm/describe-sessions.rst
${PYSITELIB}/awscli/examples/ssm/disassociate-ops-item-related-item.rst
${PYSITELIB}/awscli/examples/ssm/get-automation-execution.rst
${PYSITELIB}/awscli/examples/ssm/get-calendar-state.rst
${PYSITELIB}/awscli/examples/ssm/get-command-invocation.rst
${PYSITELIB}/awscli/examples/ssm/get-connection-status.rst
${PYSITELIB}/awscli/examples/ssm/get-default-patch-baseline.rst
${PYSITELIB}/awscli/examples/ssm/get-deployable-patch-snapshot-for-instance.rst
${PYSITELIB}/awscli/examples/ssm/get-document.rst
${PYSITELIB}/awscli/examples/ssm/get-inventory-schema.rst
${PYSITELIB}/awscli/examples/ssm/get-inventory.rst
${PYSITELIB}/awscli/examples/ssm/get-maintenance-window-execution-task-invocation.rst
${PYSITELIB}/awscli/examples/ssm/get-maintenance-window-execution-task.rst
${PYSITELIB}/awscli/examples/ssm/get-maintenance-window-execution.rst
${PYSITELIB}/awscli/examples/ssm/get-maintenance-window-task.rst
${PYSITELIB}/awscli/examples/ssm/get-maintenance-window.rst
${PYSITELIB}/awscli/examples/ssm/get-ops-item.rst
${PYSITELIB}/awscli/examples/ssm/get-ops-summary.rst
${PYSITELIB}/awscli/examples/ssm/get-parameter-history.rst
${PYSITELIB}/awscli/examples/ssm/get-parameter.rst
${PYSITELIB}/awscli/examples/ssm/get-parameters-by-path.rst
${PYSITELIB}/awscli/examples/ssm/get-parameters.rst
${PYSITELIB}/awscli/examples/ssm/get-patch-baseline-for-patch-group.rst
${PYSITELIB}/awscli/examples/ssm/get-patch-baseline.rst
${PYSITELIB}/awscli/examples/ssm/get-service-setting.rst
${PYSITELIB}/awscli/examples/ssm/label-parameter-version.rst
${PYSITELIB}/awscli/examples/ssm/list-association-versions.rst
${PYSITELIB}/awscli/examples/ssm/list-associations.rst
${PYSITELIB}/awscli/examples/ssm/list-command-invocations.rst
${PYSITELIB}/awscli/examples/ssm/list-commands.rst
${PYSITELIB}/awscli/examples/ssm/list-compliance-items.rst
${PYSITELIB}/awscli/examples/ssm/list-compliance-summaries.rst
${PYSITELIB}/awscli/examples/ssm/list-document-metadata-history.rst
${PYSITELIB}/awscli/examples/ssm/list-document-versions.rst
${PYSITELIB}/awscli/examples/ssm/list-documents.rst
${PYSITELIB}/awscli/examples/ssm/list-inventory-entries.rst
${PYSITELIB}/awscli/examples/ssm/list-ops-item-related-items.rst
${PYSITELIB}/awscli/examples/ssm/list-resource-compliance-summaries.rst
${PYSITELIB}/awscli/examples/ssm/list-resource-data-sync.rst
${PYSITELIB}/awscli/examples/ssm/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/ssm/modify-document-permission.rst
${PYSITELIB}/awscli/examples/ssm/put-compliance-items.rst
${PYSITELIB}/awscli/examples/ssm/put-inventory.rst
${PYSITELIB}/awscli/examples/ssm/put-parameter.rst
${PYSITELIB}/awscli/examples/ssm/register-default-patch-baseline.rst
${PYSITELIB}/awscli/examples/ssm/register-patch-baseline-for-patch-group.rst
${PYSITELIB}/awscli/examples/ssm/register-target-with-maintenance-window.rst
${PYSITELIB}/awscli/examples/ssm/register-task-with-maintenance-window.rst
${PYSITELIB}/awscli/examples/ssm/remove-tags-from-resource.rst
${PYSITELIB}/awscli/examples/ssm/reset-service-setting.rst
${PYSITELIB}/awscli/examples/ssm/resume-session.rst
${PYSITELIB}/awscli/examples/ssm/send-automation-signal.rst
${PYSITELIB}/awscli/examples/ssm/send-command.rst
${PYSITELIB}/awscli/examples/ssm/start-associations-once.rst
${PYSITELIB}/awscli/examples/ssm/start-automation-execution.rst
${PYSITELIB}/awscli/examples/ssm/start-change-request-execution.rst
${PYSITELIB}/awscli/examples/ssm/start-session.rst
${PYSITELIB}/awscli/examples/ssm/stop-automation-execution.rst
${PYSITELIB}/awscli/examples/ssm/terminate-session.rst
${PYSITELIB}/awscli/examples/ssm/unlabel-parameter-version.rst
${PYSITELIB}/awscli/examples/ssm/update-association-status.rst
${PYSITELIB}/awscli/examples/ssm/update-association.rst
${PYSITELIB}/awscli/examples/ssm/update-document-default-version.rst
${PYSITELIB}/awscli/examples/ssm/update-document-metadata.rst
${PYSITELIB}/awscli/examples/ssm/update-document.rst
${PYSITELIB}/awscli/examples/ssm/update-maintenance-window-target.rst
${PYSITELIB}/awscli/examples/ssm/update-maintenance-window-task.rst
${PYSITELIB}/awscli/examples/ssm/update-maintenance-window.rst
${PYSITELIB}/awscli/examples/ssm/update-managed-instance-role.rst
${PYSITELIB}/awscli/examples/ssm/update-ops-item.rst
${PYSITELIB}/awscli/examples/ssm/update-patch-baseline.rst
${PYSITELIB}/awscli/examples/ssm/update-resource-data-sync.rst
${PYSITELIB}/awscli/examples/ssm/update-service-setting.rst
${PYSITELIB}/awscli/examples/storagegateway/describe-gateway-information.rst
${PYSITELIB}/awscli/examples/storagegateway/list-file-shares.rst
${PYSITELIB}/awscli/examples/storagegateway/list-gateways.rst
${PYSITELIB}/awscli/examples/storagegateway/list-volumes.rst
${PYSITELIB}/awscli/examples/storagegateway/refresh-cache.rst
${PYSITELIB}/awscli/examples/sts/assume-role-with-saml.rst
${PYSITELIB}/awscli/examples/sts/assume-role-with-web-identity.rst
${PYSITELIB}/awscli/examples/sts/assume-role.rst
${PYSITELIB}/awscli/examples/sts/get-caller-identity.rst
${PYSITELIB}/awscli/examples/sts/get-session-token.rst
${PYSITELIB}/awscli/examples/support/add-attachments-to-set.rst
${PYSITELIB}/awscli/examples/support/add-communication-to-case.rst
${PYSITELIB}/awscli/examples/support/create-case.rst
${PYSITELIB}/awscli/examples/support/describe-attachment.rst
${PYSITELIB}/awscli/examples/support/describe-cases.rst
${PYSITELIB}/awscli/examples/support/describe-communications.rst
${PYSITELIB}/awscli/examples/support/describe-services.rst
${PYSITELIB}/awscli/examples/support/describe-severity-levels.rst
${PYSITELIB}/awscli/examples/support/describe-trusted-advisor-check-refresh-statuses.rst
${PYSITELIB}/awscli/examples/support/describe-trusted-advisor-check-result.rst
${PYSITELIB}/awscli/examples/support/describe-trusted-advisor-check-summaries.rst
${PYSITELIB}/awscli/examples/support/describe-trusted-advisor-checks.rst
${PYSITELIB}/awscli/examples/support/refresh-trusted-advisor-check.rst
${PYSITELIB}/awscli/examples/support/resolve-case.rst
${PYSITELIB}/awscli/examples/swf/count-closed-workflow-executions.rst
${PYSITELIB}/awscli/examples/swf/count-open-workflow-executions.rst
${PYSITELIB}/awscli/examples/swf/deprecate-domain.rst
${PYSITELIB}/awscli/examples/swf/describe-domain.rst
${PYSITELIB}/awscli/examples/swf/list-activity-types.rst
${PYSITELIB}/awscli/examples/swf/list-domains.rst
${PYSITELIB}/awscli/examples/swf/list-workflow-types.rst
${PYSITELIB}/awscli/examples/swf/register-domain.rst
${PYSITELIB}/awscli/examples/swf/register-workflow-type.rst
${PYSITELIB}/awscli/examples/textract/analyze-document.rst
${PYSITELIB}/awscli/examples/textract/detect-document-text.rst
${PYSITELIB}/awscli/examples/textract/get-document-analysis.rst
${PYSITELIB}/awscli/examples/textract/get-document-text-detection.rst
${PYSITELIB}/awscli/examples/textract/start-document-analysis.rst
${PYSITELIB}/awscli/examples/textract/start-document-text-detection.rst
${PYSITELIB}/awscli/examples/transcribe/create-language-model.rst
${PYSITELIB}/awscli/examples/transcribe/create-medical-vocabulary.rst
${PYSITELIB}/awscli/examples/transcribe/create-vocabulary-filter.rst
${PYSITELIB}/awscli/examples/transcribe/create-vocabulary.rst
${PYSITELIB}/awscli/examples/transcribe/delete-language-model.rst
${PYSITELIB}/awscli/examples/transcribe/delete-medical-transcription-job.rst
${PYSITELIB}/awscli/examples/transcribe/delete-medical-vocabulary.rst
${PYSITELIB}/awscli/examples/transcribe/delete-transcription-job.rst
${PYSITELIB}/awscli/examples/transcribe/delete-vocabulary-filter.rst
${PYSITELIB}/awscli/examples/transcribe/delete-vocabulary.rst
${PYSITELIB}/awscli/examples/transcribe/describe-language-model.rst
${PYSITELIB}/awscli/examples/transcribe/get-medical-transcription-job.rst
${PYSITELIB}/awscli/examples/transcribe/get-medical-vocabulary.rst
${PYSITELIB}/awscli/examples/transcribe/get-transcription-job.rst
${PYSITELIB}/awscli/examples/transcribe/get-vocabulary-filter.rst
${PYSITELIB}/awscli/examples/transcribe/get-vocabulary.rst
${PYSITELIB}/awscli/examples/transcribe/list-language-models.rst
${PYSITELIB}/awscli/examples/transcribe/list-medical-transcription-jobs.rst
${PYSITELIB}/awscli/examples/transcribe/list-medical-vocabularies.rst
${PYSITELIB}/awscli/examples/transcribe/list-transcription-jobs.rst
${PYSITELIB}/awscli/examples/transcribe/list-vocabularies.rst
${PYSITELIB}/awscli/examples/transcribe/list-vocabulary-filters.rst
${PYSITELIB}/awscli/examples/transcribe/start-medical-transcription-job.rst
${PYSITELIB}/awscli/examples/transcribe/start-transcription-job.rst
${PYSITELIB}/awscli/examples/transcribe/update-medical-vocabulary.rst
${PYSITELIB}/awscli/examples/transcribe/update-vocabulary-filter.rst
${PYSITELIB}/awscli/examples/transcribe/update-vocabulary.rst
${PYSITELIB}/awscli/examples/translate/import-terminology.rst
${PYSITELIB}/awscli/examples/waf-regional/associate-web-acl.rst
${PYSITELIB}/awscli/examples/waf-regional/put-logging-configuration.rst
${PYSITELIB}/awscli/examples/waf-regional/update-byte-match-set.rst
${PYSITELIB}/awscli/examples/waf-regional/update-ip-set.rst
${PYSITELIB}/awscli/examples/waf-regional/update-rule.rst
${PYSITELIB}/awscli/examples/waf-regional/update-size-constraint-set.rst
${PYSITELIB}/awscli/examples/waf-regional/update-sql-injection-match-set.rst
${PYSITELIB}/awscli/examples/waf-regional/update-web-acl.rst
${PYSITELIB}/awscli/examples/waf-regional/update-xss-match-set.rst
${PYSITELIB}/awscli/examples/waf/put-logging-configuration.rst
${PYSITELIB}/awscli/examples/waf/update-byte-match-set.rst
${PYSITELIB}/awscli/examples/waf/update-ip-set.rst
${PYSITELIB}/awscli/examples/waf/update-rule.rst
${PYSITELIB}/awscli/examples/waf/update-size-constraint-set.rst
${PYSITELIB}/awscli/examples/waf/update-sql-injection-match-set.rst
${PYSITELIB}/awscli/examples/waf/update-web-acl.rst
${PYSITELIB}/awscli/examples/waf/update-xss-match-set.rst
${PYSITELIB}/awscli/examples/wafv2/associate-web-acl.rst
${PYSITELIB}/awscli/examples/wafv2/check-capacity.rst
${PYSITELIB}/awscli/examples/wafv2/create-ip-set.rst
${PYSITELIB}/awscli/examples/wafv2/create-regex-pattern-set.rst
${PYSITELIB}/awscli/examples/wafv2/create-rule-group.rst
${PYSITELIB}/awscli/examples/wafv2/create-web-acl.rst
${PYSITELIB}/awscli/examples/wafv2/delete-ip-set.rst
${PYSITELIB}/awscli/examples/wafv2/delete-logging-configuration.rst
${PYSITELIB}/awscli/examples/wafv2/delete-regex-pattern-set.rst
${PYSITELIB}/awscli/examples/wafv2/delete-rule-group.rst
${PYSITELIB}/awscli/examples/wafv2/delete-web-acl.rst
${PYSITELIB}/awscli/examples/wafv2/describe-managed-rule-group.rst
${PYSITELIB}/awscli/examples/wafv2/disassociate-web-acl.rst
${PYSITELIB}/awscli/examples/wafv2/get-ip-set.rst
${PYSITELIB}/awscli/examples/wafv2/get-logging-configuration.rst
${PYSITELIB}/awscli/examples/wafv2/get-rate-based-statement-managed-keys.rst
${PYSITELIB}/awscli/examples/wafv2/get-regex-pattern-set.rst
${PYSITELIB}/awscli/examples/wafv2/get-rule-group.rst
${PYSITELIB}/awscli/examples/wafv2/get-sampled-requests.rst
${PYSITELIB}/awscli/examples/wafv2/get-web-acl-for-resource.rst
${PYSITELIB}/awscli/examples/wafv2/get-web-acl.rst
${PYSITELIB}/awscli/examples/wafv2/list-available-managed-rule-groups.rst
${PYSITELIB}/awscli/examples/wafv2/list-ip-sets.rst
${PYSITELIB}/awscli/examples/wafv2/list-logging-configurations.rst
${PYSITELIB}/awscli/examples/wafv2/list-regex-pattern-sets.rst
${PYSITELIB}/awscli/examples/wafv2/list-resources-for-web-acl.rst
${PYSITELIB}/awscli/examples/wafv2/list-rule-groups.rst
${PYSITELIB}/awscli/examples/wafv2/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/wafv2/list-web-acls.rst
${PYSITELIB}/awscli/examples/wafv2/put-logging-configuration.rst
${PYSITELIB}/awscli/examples/wafv2/tag-resource.rst
${PYSITELIB}/awscli/examples/wafv2/untag-resource.rst
${PYSITELIB}/awscli/examples/wafv2/update-ip-set.rst
${PYSITELIB}/awscli/examples/wafv2/update-regex-pattern-set.rst
${PYSITELIB}/awscli/examples/wafv2/update-rule-group.rst
${PYSITELIB}/awscli/examples/wafv2/update-web-acl.rst
${PYSITELIB}/awscli/examples/workdocs/abort-document-version-upload.rst
${PYSITELIB}/awscli/examples/workdocs/activate-user.rst
${PYSITELIB}/awscli/examples/workdocs/add-resource-permissions.rst
${PYSITELIB}/awscli/examples/workdocs/create-comment.rst
${PYSITELIB}/awscli/examples/workdocs/create-custom-metadata.rst
${PYSITELIB}/awscli/examples/workdocs/create-folder.rst
${PYSITELIB}/awscli/examples/workdocs/create-labels.rst
${PYSITELIB}/awscli/examples/workdocs/create-notification-subscription.rst
${PYSITELIB}/awscli/examples/workdocs/create-user.rst
${PYSITELIB}/awscli/examples/workdocs/deactivate-user.rst
${PYSITELIB}/awscli/examples/workdocs/delete-comment.rst
${PYSITELIB}/awscli/examples/workdocs/delete-custom-metadata.rst
${PYSITELIB}/awscli/examples/workdocs/delete-document.rst
${PYSITELIB}/awscli/examples/workdocs/delete-folder-contents.rst
${PYSITELIB}/awscli/examples/workdocs/delete-folder.rst
${PYSITELIB}/awscli/examples/workdocs/delete-labels.rst
${PYSITELIB}/awscli/examples/workdocs/delete-notification-subscription.rst
${PYSITELIB}/awscli/examples/workdocs/delete-user.rst
${PYSITELIB}/awscli/examples/workdocs/describe-activities.rst
${PYSITELIB}/awscli/examples/workdocs/describe-comments.rst
${PYSITELIB}/awscli/examples/workdocs/describe-document-versions.rst
${PYSITELIB}/awscli/examples/workdocs/describe-folder-contents.rst
${PYSITELIB}/awscli/examples/workdocs/describe-groups.rst
${PYSITELIB}/awscli/examples/workdocs/describe-notification-subscriptions.rst
${PYSITELIB}/awscli/examples/workdocs/describe-resource-permissions.rst
${PYSITELIB}/awscli/examples/workdocs/describe-users.rst
${PYSITELIB}/awscli/examples/workdocs/get-document-path.rst
${PYSITELIB}/awscli/examples/workdocs/get-document-version.rst
${PYSITELIB}/awscli/examples/workdocs/get-document.rst
${PYSITELIB}/awscli/examples/workdocs/get-folder-path.rst
${PYSITELIB}/awscli/examples/workdocs/get-folder.rst
${PYSITELIB}/awscli/examples/workdocs/get-resources.rst
${PYSITELIB}/awscli/examples/workdocs/initiate-document-version-upload.rst
${PYSITELIB}/awscli/examples/workdocs/remove-all-resource-permissions.rst
${PYSITELIB}/awscli/examples/workdocs/remove-resource-permission.rst
${PYSITELIB}/awscli/examples/workdocs/update-document-version.rst
${PYSITELIB}/awscli/examples/workdocs/update-document.rst
${PYSITELIB}/awscli/examples/workdocs/update-folder.rst
${PYSITELIB}/awscli/examples/workdocs/update-user.rst
${PYSITELIB}/awscli/examples/workmail/associate-delegate-to-resource.rst
${PYSITELIB}/awscli/examples/workmail/associate-member-to-group.rst
${PYSITELIB}/awscli/examples/workmail/create-alias.rst
${PYSITELIB}/awscli/examples/workmail/create-group.rst
${PYSITELIB}/awscli/examples/workmail/create-resource.rst
${PYSITELIB}/awscli/examples/workmail/create-user.rst
${PYSITELIB}/awscli/examples/workmail/delete-access-control-rule.rst
${PYSITELIB}/awscli/examples/workmail/delete-alias.rst
${PYSITELIB}/awscli/examples/workmail/delete-group.rst
${PYSITELIB}/awscli/examples/workmail/delete-mailbox-permissions.rst
${PYSITELIB}/awscli/examples/workmail/delete-resource.rst
${PYSITELIB}/awscli/examples/workmail/delete-user.rst
${PYSITELIB}/awscli/examples/workmail/deregister-from-work-mail.rst
${PYSITELIB}/awscli/examples/workmail/describe-group.rst
${PYSITELIB}/awscli/examples/workmail/describe-organization.rst
${PYSITELIB}/awscli/examples/workmail/describe-resource.rst
${PYSITELIB}/awscli/examples/workmail/describe-user.rst
${PYSITELIB}/awscli/examples/workmail/disassociate-delegate-from-resource.rst
${PYSITELIB}/awscli/examples/workmail/disassociate-member-from-group.rst
${PYSITELIB}/awscli/examples/workmail/get-access-control-effect.rst
${PYSITELIB}/awscli/examples/workmail/get-mailbox-details.rst
${PYSITELIB}/awscli/examples/workmail/list-access-control-rules.rst
${PYSITELIB}/awscli/examples/workmail/list-aliases.rst
${PYSITELIB}/awscli/examples/workmail/list-group-members.rst
${PYSITELIB}/awscli/examples/workmail/list-groups.rst
${PYSITELIB}/awscli/examples/workmail/list-mailbox-permissions.rst
${PYSITELIB}/awscli/examples/workmail/list-organizations.rst
${PYSITELIB}/awscli/examples/workmail/list-resource-delegates.rst
${PYSITELIB}/awscli/examples/workmail/list-resources.rst
${PYSITELIB}/awscli/examples/workmail/list-tags-for-resource.rst
${PYSITELIB}/awscli/examples/workmail/list-users.rst
${PYSITELIB}/awscli/examples/workmail/put-access-control-rule.rst
${PYSITELIB}/awscli/examples/workmail/put-mailbox-permissions.rst
${PYSITELIB}/awscli/examples/workmail/register-to-work-mail.rst
${PYSITELIB}/awscli/examples/workmail/reset-password.rst
${PYSITELIB}/awscli/examples/workmail/tag-resource.rst
${PYSITELIB}/awscli/examples/workmail/untag-resource.rst
${PYSITELIB}/awscli/examples/workmail/update-mailbox-quota.rst
${PYSITELIB}/awscli/examples/workmail/update-primary-email-address.rst
${PYSITELIB}/awscli/examples/workmail/update-resource.rst
${PYSITELIB}/awscli/examples/workmailmessageflow/get-raw-message-content.rst
${PYSITELIB}/awscli/examples/workspaces/create-tags.rst
${PYSITELIB}/awscli/examples/workspaces/create-workspaces.rst
${PYSITELIB}/awscli/examples/workspaces/delete-tags.rst
${PYSITELIB}/awscli/examples/workspaces/deregister-workspace-directory.rst
${PYSITELIB}/awscli/examples/workspaces/describe-tags.rst
${PYSITELIB}/awscli/examples/workspaces/describe-workspace-bundles.rst
${PYSITELIB}/awscli/examples/workspaces/describe-workspace-directories.rst
${PYSITELIB}/awscli/examples/workspaces/describe-workspaces-connection-status.rst
${PYSITELIB}/awscli/examples/workspaces/describe-workspaces.rst
${PYSITELIB}/awscli/examples/workspaces/migrate-workspace.rst
${PYSITELIB}/awscli/examples/workspaces/modify-workspace-creation-properties.rst
${PYSITELIB}/awscli/examples/workspaces/modify-workspace-properties.rst
${PYSITELIB}/awscli/examples/workspaces/modify-workspace-state.rst
${PYSITELIB}/awscli/examples/workspaces/reboot-workspaces.rst
${PYSITELIB}/awscli/examples/workspaces/rebuild-workspaces.rst
${PYSITELIB}/awscli/examples/workspaces/register-workspace-directory.rst
${PYSITELIB}/awscli/examples/workspaces/restore-workspace.rst
${PYSITELIB}/awscli/examples/workspaces/start-workspaces.rst
${PYSITELIB}/awscli/examples/workspaces/stop-workspaces.rst
${PYSITELIB}/awscli/examples/workspaces/terminate-workspaces.rst
${PYSITELIB}/awscli/examples/xray/batch-traces-get.rst
${PYSITELIB}/awscli/examples/xray/create-group.rst
${PYSITELIB}/awscli/examples/xray/create-sampling-rule.rst
${PYSITELIB}/awscli/examples/xray/delete-group.rst
${PYSITELIB}/awscli/examples/xray/delete-sampling-rule.rst
${PYSITELIB}/awscli/examples/xray/get-encryption-config.rst
${PYSITELIB}/awscli/examples/xray/get-group.rst
${PYSITELIB}/awscli/examples/xray/get-groups.rst
${PYSITELIB}/awscli/examples/xray/get-sampling-rules.rst
${PYSITELIB}/awscli/examples/xray/get-sampling-targets.rst
${PYSITELIB}/awscli/examples/xray/get-service-graph.rst
${PYSITELIB}/awscli/examples/xray/get-trace-summaries.rst
${PYSITELIB}/awscli/examples/xray/put-encryption-config.rst
${PYSITELIB}/awscli/examples/xray/put-trace-segments.rst
${PYSITELIB}/awscli/examples/xray/update-group.rst
${PYSITELIB}/awscli/examples/xray/update-sampling-rule.rst
${PYSITELIB}/awscli/formatter.py
${PYSITELIB}/awscli/formatter.pyc
${PYSITELIB}/awscli/formatter.pyo
${PYSITELIB}/awscli/handlers.py
${PYSITELIB}/awscli/handlers.pyc
${PYSITELIB}/awscli/handlers.pyo
${PYSITELIB}/awscli/help.py
${PYSITELIB}/awscli/help.pyc
${PYSITELIB}/awscli/help.pyo
${PYSITELIB}/awscli/paramfile.py
${PYSITELIB}/awscli/paramfile.pyc
${PYSITELIB}/awscli/paramfile.pyo
${PYSITELIB}/awscli/plugin.py
${PYSITELIB}/awscli/plugin.pyc
${PYSITELIB}/awscli/plugin.pyo
${PYSITELIB}/awscli/schema.py
${PYSITELIB}/awscli/schema.pyc
${PYSITELIB}/awscli/schema.pyo
${PYSITELIB}/awscli/shorthand.py
${PYSITELIB}/awscli/shorthand.pyc
${PYSITELIB}/awscli/shorthand.pyo
${PYSITELIB}/awscli/table.py
${PYSITELIB}/awscli/table.pyc
${PYSITELIB}/awscli/table.pyo
${PYSITELIB}/awscli/testutils.py
${PYSITELIB}/awscli/testutils.pyc
${PYSITELIB}/awscli/testutils.pyo
${PYSITELIB}/awscli/text.py
${PYSITELIB}/awscli/text.pyc
${PYSITELIB}/awscli/text.pyo
${PYSITELIB}/awscli/topics/config-vars.rst
${PYSITELIB}/awscli/topics/return-codes.rst
${PYSITELIB}/awscli/topics/s3-config.rst
${PYSITELIB}/awscli/topics/s3-faq.rst
${PYSITELIB}/awscli/topics/topic-tags.json
${PYSITELIB}/awscli/topictags.py
${PYSITELIB}/awscli/topictags.pyc
${PYSITELIB}/awscli/topictags.pyo
${PYSITELIB}/awscli/utils.py
${PYSITELIB}/awscli/utils.pyc
${PYSITELIB}/awscli/utils.pyo