summaryrefslogtreecommitdiff
path: root/net/py-awscli/PLIST
blob: 047f6f6805240fa3d78cdb1c428efafc0c6aacde (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
@comment $NetBSD: PLIST,v 1.15 2019/08/23 09:54:14 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/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/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/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/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/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/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/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/s3endpoint.py
${PYSITELIB}/awscli/customizations/s3endpoint.pyc
${PYSITELIB}/awscli/customizations/s3endpoint.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/get-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/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/apigatewayv2/create-api.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-integration.rst
${PYSITELIB}/awscli/examples/apigatewayv2/create-route.rst
${PYSITELIB}/awscli/examples/application-autoscaling/delete-scaling-policy.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/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-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/autoscaling-plans/create-scaling-plan.rst
${PYSITELIB}/awscli/examples/autoscaling-plans/delete-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/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/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-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/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/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/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/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/batch-suspend-user.rst
${PYSITELIB}/awscli/examples/chime/batch-unsuspend-user.rst
${PYSITELIB}/awscli/examples/chime/batch-update-user.rst
${PYSITELIB}/awscli/examples/chime/create-account.rst
${PYSITELIB}/awscli/examples/chime/delete-account.rst
${PYSITELIB}/awscli/examples/chime/get-account-settings.rst
${PYSITELIB}/awscli/examples/chime/get-account.rst
${PYSITELIB}/awscli/examples/chime/get-user.rst
${PYSITELIB}/awscli/examples/chime/invite-users.rst
${PYSITELIB}/awscli/examples/chime/list-accounts.rst
${PYSITELIB}/awscli/examples/chime/list-users.rst
${PYSITELIB}/awscli/examples/chime/logout-user.rst
${PYSITELIB}/awscli/examples/chime/reset-personal-pin.rst
${PYSITELIB}/awscli/examples/chime/update-account-settings.rst
${PYSITELIB}/awscli/examples/chime/update-account.rst
${PYSITELIB}/awscli/examples/chime/update-user.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/cloudformation/_deploy_description.rst
${PYSITELIB}/awscli/examples/cloudformation/_package_description.rst
${PYSITELIB}/awscli/examples/cloudformation/cancel-update-stack.rst
${PYSITELIB}/awscli/examples/cloudformation/create-stack.rst
${PYSITELIB}/awscli/examples/cloudformation/deploy.rst
${PYSITELIB}/awscli/examples/cloudformation/describe-stacks.rst
${PYSITELIB}/awscli/examples/cloudformation/get-template.rst
${PYSITELIB}/awscli/examples/cloudformation/list-stacks.rst
${PYSITELIB}/awscli/examples/cloudformation/package.rst
${PYSITELIB}/awscli/examples/cloudformation/update-stack.rst
${PYSITELIB}/awscli/examples/cloudformation/validate-template.rst
${PYSITELIB}/awscli/examples/cloudfront/create-distribution.rst
${PYSITELIB}/awscli/examples/cloudfront/create-invalidation.rst
${PYSITELIB}/awscli/examples/cloudfront/delete-distribution.rst
${PYSITELIB}/awscli/examples/cloudfront/get-distribution-config.rst
${PYSITELIB}/awscli/examples/cloudfront/get-distribution.rst
${PYSITELIB}/awscli/examples/cloudfront/get-invalidation.rst
${PYSITELIB}/awscli/examples/cloudfront/list-distributions.rst
${PYSITELIB}/awscli/examples/cloudfront/list-invalidations.rst
${PYSITELIB}/awscli/examples/cloudfront/update-distribution.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/codebuild/batch-delete-builds.rst
${PYSITELIB}/awscli/examples/codebuild/batch-get-builds.rst
${PYSITELIB}/awscli/examples/codebuild/batch-get-projects.rst
${PYSITELIB}/awscli/examples/codebuild/create-project.rst
${PYSITELIB}/awscli/examples/codebuild/create-webhook.rst
${PYSITELIB}/awscli/examples/codebuild/delete-project.rst
${PYSITELIB}/awscli/examples/codebuild/delete-source-credentials.rst
${PYSITELIB}/awscli/examples/codebuild/delete-webhook.rst
${PYSITELIB}/awscli/examples/codebuild/import-source-credentials.rst
${PYSITELIB}/awscli/examples/codebuild/invalidate-project-cache.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-source-credentials.rst
${PYSITELIB}/awscli/examples/codebuild/start-build.rst
${PYSITELIB}/awscli/examples/codebuild/stop-build.rst
${PYSITELIB}/awscli/examples/codebuild/update-project.rst
${PYSITELIB}/awscli/examples/codebuild/update-webhook.rst
${PYSITELIB}/awscli/examples/codecommit/batch-get-repositories.rst
${PYSITELIB}/awscli/examples/codecommit/create-branch.rst
${PYSITELIB}/awscli/examples/codecommit/create-commit.rst
${PYSITELIB}/awscli/examples/codecommit/create-pull-request.rst
${PYSITELIB}/awscli/examples/codecommit/create-repository.rst
${PYSITELIB}/awscli/examples/codecommit/credential-helper.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-repository.rst
${PYSITELIB}/awscli/examples/codecommit/describe-pull-request-events.rst
${PYSITELIB}/awscli/examples/codecommit/get-blob.rst
${PYSITELIB}/awscli/examples/codecommit/get-branch.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-conflicts.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-branches.rst
${PYSITELIB}/awscli/examples/codecommit/list-pull-requests.rst
${PYSITELIB}/awscli/examples/codecommit/list-repositories.rst
${PYSITELIB}/awscli/examples/codecommit/merge-pull-request-by-fast-forward.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-file.rst
${PYSITELIB}/awscli/examples/codecommit/put-repository-triggers.rst
${PYSITELIB}/awscli/examples/codecommit/test-repository-triggers.rst
${PYSITELIB}/awscli/examples/codecommit/update-comment.rst
${PYSITELIB}/awscli/examples/codecommit/update-default-branch.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/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/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-types.rst
${PYSITELIB}/awscli/examples/codepipeline/list-pipelines.rst
${PYSITELIB}/awscli/examples/codepipeline/poll-for-jobs.rst
${PYSITELIB}/awscli/examples/codepipeline/start-pipeline-execution.rst
${PYSITELIB}/awscli/examples/codepipeline/update-pipeline.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/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/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/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/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/uninstall.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/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/create-endpoint.rst
${PYSITELIB}/awscli/examples/dms/create-replication-instance.rst
${PYSITELIB}/awscli/examples/dms/create-replication-task.rst
${PYSITELIB}/awscli/examples/dms/describe-connections.rst
${PYSITELIB}/awscli/examples/dms/describe-endpoints.rst
${PYSITELIB}/awscli/examples/dynamodb/batch-get-item.rst
${PYSITELIB}/awscli/examples/dynamodb/batch-write-item.rst
${PYSITELIB}/awscli/examples/dynamodb/create-table.rst
${PYSITELIB}/awscli/examples/dynamodb/delete-item.rst
${PYSITELIB}/awscli/examples/dynamodb/delete-table.rst
${PYSITELIB}/awscli/examples/dynamodb/describe-table.rst
${PYSITELIB}/awscli/examples/dynamodb/get-item.rst
${PYSITELIB}/awscli/examples/dynamodb/list-tables.rst
${PYSITELIB}/awscli/examples/dynamodb/put-item.rst
${PYSITELIB}/awscli/examples/dynamodb/query.rst
${PYSITELIB}/awscli/examples/dynamodb/scan.rst
${PYSITELIB}/awscli/examples/dynamodb/update-item.rst
${PYSITELIB}/awscli/examples/dynamodb/update-table.rst
${PYSITELIB}/awscli/examples/ec2/accept-reserved-instances-exchange-quote.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/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-route-table.rst
${PYSITELIB}/awscli/examples/ec2/associate-subnet-cidr-block.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-conversion-task.rst
${PYSITELIB}/awscli/examples/ec2/cancel-export-task.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-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-export-task.rst
${PYSITELIB}/awscli/examples/ec2/create-internet-gateway.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-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-interface-permission.rst
${PYSITELIB}/awscli/examples/ec2/create-network-interface.rst
${PYSITELIB}/awscli/examples/ec2/create-placement-group.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-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-route-table.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-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-flow-logs.rst
${PYSITELIB}/awscli/examples/ec2/delete-fpga-image.rst
${PYSITELIB}/awscli/examples/ec2/delete-internet-gateway.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-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-interface-permission.rst
${PYSITELIB}/awscli/examples/ec2/delete-network-interface.rst
${PYSITELIB}/awscli/examples/ec2/delete-placement-group.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.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-vpc-attachment.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/deregister-image.rst
${PYSITELIB}/awscli/examples/ec2/describe-account-attributes.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-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-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-tasks.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-instance-attribute.rst
${PYSITELIB}/awscli/examples/ec2/describe-instance-credit-specifications.rst
${PYSITELIB}/awscli/examples/ec2/describe-instance-status.rst
${PYSITELIB}/awscli/examples/ec2/describe-instances.rst
${PYSITELIB}/awscli/examples/ec2/describe-internet-gateways.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-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-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-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-groups.rst
${PYSITELIB}/awscli/examples/ec2/describe-snapshot-attribute.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-subnets.rst
${PYSITELIB}/awscli/examples/ec2/describe-tags.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-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-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-route-table.rst
${PYSITELIB}/awscli/examples/ec2/disassociate-subnet-cidr-block.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-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/get-console-output.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-host-reservation-purchase-preview.rst
${PYSITELIB}/awscli/examples/ec2/get-launch-template-data.rst
${PYSITELIB}/awscli/examples/ec2/get-password-data.rst
${PYSITELIB}/awscli/examples/ec2/get-reserved-instances-exchange-quote.rst
${PYSITELIB}/awscli/examples/ec2/get-transit-gateway-route-table-associations.rst
${PYSITELIB}/awscli/examples/ec2/import-client-vpn-client-certificate-revocation-list.rst
${PYSITELIB}/awscli/examples/ec2/import-key-pair.rst
${PYSITELIB}/awscli/examples/ec2/modify-client-vpn-endpoint.rst
${PYSITELIB}/awscli/examples/ec2/modify-ebs-default-kms-key-id.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-credit-specification.rst
${PYSITELIB}/awscli/examples/ec2/modify-instance-event-start-time.rst
${PYSITELIB}/awscli/examples/ec2/modify-instance-placement.rst
${PYSITELIB}/awscli/examples/ec2/modify-launch-template.rst
${PYSITELIB}/awscli/examples/ec2/modify-network-interface-attribute.rst
${PYSITELIB}/awscli/examples/ec2/modify-reserved-instances.rst
${PYSITELIB}/awscli/examples/ec2/modify-snapshot-attribute.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-session.rst
${PYSITELIB}/awscli/examples/ec2/modify-transit-gateway-vpc-attachment.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/monitor-instances.rst
${PYSITELIB}/awscli/examples/ec2/move-address-to-vpc.rst
${PYSITELIB}/awscli/examples/ec2/provision-byoip-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/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.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-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-snapshot-attribute.rst
${PYSITELIB}/awscli/examples/ec2/restore-address-to-classic.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-transit-gateway-routes.rst
${PYSITELIB}/awscli/examples/ec2/start-instances.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/customer-gateway-available.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/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/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-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.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-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-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-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-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-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/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-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/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/create-replication-group.rst
${PYSITELIB}/awscli/examples/elasticache/modify-cache-parameter-group.rst
${PYSITELIB}/awscli/examples/elasticache/modify-replication-group.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/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/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/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-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-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-tags-for-vault.rst
${PYSITELIB}/awscli/examples/glacier/list-vaults.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-notifications.rst
${PYSITELIB}/awscli/examples/glacier/upload-archive.rst
${PYSITELIB}/awscli/examples/glacier/upload-multipart-part.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.rst
${PYSITELIB}/awscli/examples/greengrass/create-deployment.rst
${PYSITELIB}/awscli/examples/greengrass/create-function-definition-version.rst
${PYSITELIB}/awscli/examples/greengrass/create-function-definition.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-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-function-definition.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-service-role-from-account.rst
${PYSITELIB}/awscli/examples/greengrass/get-bulk-deployment-status.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-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/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-function-definitions-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-logger-definition.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/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-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-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/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-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-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-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-policy.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/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/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/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-task.rst
${PYSITELIB}/awscli/examples/iot/cancel-job-execution.rst
${PYSITELIB}/awscli/examples/iot/cancel-job.rst
${PYSITELIB}/awscli/examples/iot/create-billing-group.rst
${PYSITELIB}/awscli/examples/iot/create-certificate-from-csr.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-policy-version.rst
${PYSITELIB}/awscli/examples/iot/create-policy.rst
${PYSITELIB}/awscli/examples/iot/create-scheduled-audit.rst
${PYSITELIB}/awscli/examples/iot/create-security-profile.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.rst
${PYSITELIB}/awscli/examples/iot/delete-account-audit-configuration.rst
${PYSITELIB}/awscli/examples/iot/delete-billing-group.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-policy-version.rst
${PYSITELIB}/awscli/examples/iot/delete-policy.rst
${PYSITELIB}/awscli/examples/iot/delete-scheduled-audit.rst
${PYSITELIB}/awscli/examples/iot/delete-security-profile.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.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-task.rst
${PYSITELIB}/awscli/examples/iot/describe-billing-group.rst
${PYSITELIB}/awscli/examples/iot/describe-certificate.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-scheduled-audit.rst
${PYSITELIB}/awscli/examples/iot/describe-security-profile.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-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-policy-version.rst
${PYSITELIB}/awscli/examples/iot/get-policy.rst
${PYSITELIB}/awscli/examples/iot/get-statistics.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-tasks.rst
${PYSITELIB}/awscli/examples/iot/list-billing-groups.rst
${PYSITELIB}/awscli/examples/iot/list-certificates.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-policies.rst
${PYSITELIB}/awscli/examples/iot/list-policy-versions.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-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-rules.rst
${PYSITELIB}/awscli/examples/iot/list-v2-logging-levels.rst
${PYSITELIB}/awscli/examples/iot/list-violation-events.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-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-on-demand-audit-task.rst
${PYSITELIB}/awscli/examples/iot/tag-resource.rst
${PYSITELIB}/awscli/examples/iot/untag-resource.rst
${PYSITELIB}/awscli/examples/iot/update-account-audit-configuration.rst
${PYSITELIB}/awscli/examples/iot/update-billing-group.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-scheduled-audit.rst
${PYSITELIB}/awscli/examples/iot/update-security-profile.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/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/initiate-device-claim.rst
${PYSITELIB}/awscli/examples/iot1click-devices/list-devices.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/describe-placement.rst
${PYSITELIB}/awscli/examples/iot1click-projects/describe-project.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/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/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/kms/create-alias.rst
${PYSITELIB}/awscli/examples/kms/decrypt.rst
${PYSITELIB}/awscli/examples/kms/encrypt.rst
${PYSITELIB}/awscli/examples/kms/get-key-policy.rst
${PYSITELIB}/awscli/examples/lightsail/get-instance-metric-data.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/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/describe-endpoints.rst
${PYSITELIB}/awscli/examples/mediaconvert/get-job.rst
${PYSITELIB}/awscli/examples/mediaconvert/list-jobs.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/create-container.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/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/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-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-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/pi/describe-dimension-keys.rst
${PYSITELIB}/awscli/examples/pi/get-resource-metrics.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/rds/add-option-to-option-group.rst
${PYSITELIB}/awscli/examples/rds/add-source-identifier-to-subscription.rst
${PYSITELIB}/awscli/examples/rds/add-tags-to-resource.rst
${PYSITELIB}/awscli/examples/rds/backtrack-db-cluster.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-event-subscription.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-instance.rst
${PYSITELIB}/awscli/examples/rds/delete-db-parameter-group.rst
${PYSITELIB}/awscli/examples/rds/delete-db-snapshot.rst
${PYSITELIB}/awscli/examples/rds/delete-event-subscription.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-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-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-orderable-db-instance-options.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/modify-db-cluster-endpoint.rst
${PYSITELIB}/awscli/examples/rds/modify-db-cluster-snapshot-attribute.rst
${PYSITELIB}/awscli/examples/rds/modify-db-instance.rst
${PYSITELIB}/awscli/examples/rds/modify-event-subscription.rst
${PYSITELIB}/awscli/examples/rds/promote-read-replica.rst
${PYSITELIB}/awscli/examples/rds/purchase-reserved-db-instance.rst
${PYSITELIB}/awscli/examples/rds/reboot-db-instance.rst
${PYSITELIB}/awscli/examples/rds/remove-source-identifier-from-subscription.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-db-instance.rst
${PYSITELIB}/awscli/examples/rds/stop-db-instance.rst
${PYSITELIB}/awscli/examples/redshift/authorize-cluster-security-group-ingress.rst
${PYSITELIB}/awscli/examples/redshift/authorize-snapshot-access.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/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/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-versions.rst
${PYSITELIB}/awscli/examples/redshift/describe-clusters.rst
${PYSITELIB}/awscli/examples/redshift/describe-default-cluster-parameters.rst
${PYSITELIB}/awscli/examples/redshift/describe-events.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/modify-cluster-parameter-group.rst
${PYSITELIB}/awscli/examples/redshift/modify-cluster-subnet-group.rst
${PYSITELIB}/awscli/examples/redshift/modify-cluster.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/restore-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/resource-groups/create-group.rst
${PYSITELIB}/awscli/examples/resource-groups/update-group-query.rst
${PYSITELIB}/awscli/examples/resource-groups/update-group.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-resource-record-sets.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-cors.rst
${PYSITELIB}/awscli/examples/s3api/delete-bucket-lifecycle.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.rst
${PYSITELIB}/awscli/examples/s3api/delete-objects.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-acl.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-cors.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-notification-configuration.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-notification.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-policy.rst
${PYSITELIB}/awscli/examples/s3api/get-bucket-replication.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-torrent.rst
${PYSITELIB}/awscli/examples/s3api/get-object.rst
${PYSITELIB}/awscli/examples/s3api/head-bucket.rst
${PYSITELIB}/awscli/examples/s3api/head-object.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.rst
${PYSITELIB}/awscli/examples/s3api/list-parts.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-acl.rst
${PYSITELIB}/awscli/examples/s3api/put-bucket-cors.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-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-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.rst
${PYSITELIB}/awscli/examples/s3api/upload-part.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/restore-secret.rst
${PYSITELIB}/awscli/examples/secretsmanager/rotate-secret.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/serverlessrepo/put-application-policy.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/sns/confirm-subscription.rst
${PYSITELIB}/awscli/examples/sns/create-topic.rst
${PYSITELIB}/awscli/examples/sns/delete-topic.rst
${PYSITELIB}/awscli/examples/sns/get-subscription-attributes.rst
${PYSITELIB}/awscli/examples/sns/get-topic-attributes.rst
${PYSITELIB}/awscli/examples/sns/list-subscriptions-by-topic.rst
${PYSITELIB}/awscli/examples/sns/list-subscriptions.rst
${PYSITELIB}/awscli/examples/sns/list-topics.rst
${PYSITELIB}/awscli/examples/sns/publish.rst
${PYSITELIB}/awscli/examples/sns/set-subscription-attributes.rst
${PYSITELIB}/awscli/examples/sns/subscribe.rst
${PYSITELIB}/awscli/examples/sns/unsubscribe.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-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/ssm/add-tags-to-resource.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-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-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-sessions.rst
${PYSITELIB}/awscli/examples/ssm/get-automation-execution.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-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-versions.rst
${PYSITELIB}/awscli/examples/ssm/list-documents.rst
${PYSITELIB}/awscli/examples/ssm/list-inventory-entries.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-session.rst
${PYSITELIB}/awscli/examples/ssm/stop-automation-execution.rst
${PYSITELIB}/awscli/examples/ssm/terminate-session.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.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-patch-baseline.rst
${PYSITELIB}/awscli/examples/ssm/update-service-setting.rst
${PYSITELIB}/awscli/examples/storagegateway/describe-gateway-information.rst
${PYSITELIB}/awscli/examples/storagegateway/list-gateways.rst
${PYSITELIB}/awscli/examples/storagegateway/list-volumes.rst
${PYSITELIB}/awscli/examples/sts/assume-role.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/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/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-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-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-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/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-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-mailbox-details.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-users.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/update-mailbox-quota.rst
${PYSITELIB}/awscli/examples/workmail/update-primary-email-address.rst
${PYSITELIB}/awscli/examples/workmail/update-resource.rst
${PYSITELIB}/awscli/examples/workspaces/create-workspaces.rst
${PYSITELIB}/awscli/examples/workspaces/describe-workspace-bundles.rst
${PYSITELIB}/awscli/examples/workspaces/describe-workspace-directories.rst
${PYSITELIB}/awscli/examples/workspaces/describe-workspaces.rst
${PYSITELIB}/awscli/examples/workspaces/terminate-workspaces.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