blob: 0776fe6a6c214b3b3736711a5140bdb3ef0645de (
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
|
@comment $NetBSD: PLIST,v 1.10 2018/08/21 14:42:40 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/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/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/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/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/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/register-scalable-target.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/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/codecommit/batch-get-repositories.rst
${PYSITELIB}/awscli/examples/codecommit/create-branch.rst
${PYSITELIB}/awscli/examples/codecommit/create-pull-request.rst
${PYSITELIB}/awscli/examples/codecommit/create-repository.rst
${PYSITELIB}/awscli/examples/codecommit/delete-branch.rst
${PYSITELIB}/awscli/examples/codecommit/delete-comment-content.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-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/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/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-applications.rst
${PYSITELIB}/awscli/examples/deploy/batch-get-deployments.rst
${PYSITELIB}/awscli/examples/deploy/batch-get-on-premises-instances.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/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.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-deployments.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/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/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/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/create-bgp-peer.rst
${PYSITELIB}/awscli/examples/directconnect/create-connection.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/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-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-lag.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/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/allocate-address.rst
${PYSITELIB}/awscli/examples/ec2/allocate-hosts.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-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-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-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-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-spot-datafeed-subscription.rst
${PYSITELIB}/awscli/examples/ec2/create-subnet.rst
${PYSITELIB}/awscli/examples/ec2/create-tags.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-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-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/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-classic-link-instances.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-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-volume-attribute.rst
${PYSITELIB}/awscli/examples/ec2/describe-volume-status.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-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-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-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/get-console-output.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/import-key-pair.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-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-volume-attribute.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/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/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-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-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/start-instances.rst
${PYSITELIB}/awscli/examples/ec2/stop-instances.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/ecr/batch-delete-image.rst
${PYSITELIB}/awscli/examples/ecr/batch-get-image.rst
${PYSITELIB}/awscli/examples/ecr/create-repository.rst
${PYSITELIB}/awscli/examples/ecr/delete-repository.rst
${PYSITELIB}/awscli/examples/ecr/describe-repositories.rst
${PYSITELIB}/awscli/examples/ecr/get-authorization-token.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/put-lifecycle-policy.rst
${PYSITELIB}/awscli/examples/ecr/start-lifecycle-policy-preview.rst
${PYSITELIB}/awscli/examples/ecs/create-cluster.rst
${PYSITELIB}/awscli/examples/ecs/create-service.rst
${PYSITELIB}/awscli/examples/ecs/delete-cluster.rst
${PYSITELIB}/awscli/examples/ecs/delete-service.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-tasks.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-task-definition-families.rst
${PYSITELIB}/awscli/examples/ecs/list-task-definitions.rst
${PYSITELIB}/awscli/examples/ecs/list-tasks.rst
${PYSITELIB}/awscli/examples/ecs/register-task-definition.rst
${PYSITELIB}/awscli/examples/ecs/run-task.rst
${PYSITELIB}/awscli/examples/ecs/update-container-agent.rst
${PYSITELIB}/awscli/examples/ecs/update-service.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/list-clusters.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/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-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/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/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.rst
${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/add-tags-to-vault.rst
${PYSITELIB}/awscli/examples/glacier/complete-multipart-upload.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-notifications.rst
${PYSITELIB}/awscli/examples/glacier/initiate-job.rst
${PYSITELIB}/awscli/examples/glacier/initiate-multipart-upload.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/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-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-signing-certificate.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-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-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.rst
${PYSITELIB}/awscli/examples/iam/list-policy-versions.rst
${PYSITELIB}/awscli/examples/iam/list-role-policies.rst
${PYSITELIB}/awscli/examples/iam/list-roles.rst
${PYSITELIB}/awscli/examples/iam/list-saml-providers.rst
${PYSITELIB}/awscli/examples/iam/list-signing-certificates.rst
${PYSITELIB}/awscli/examples/iam/list-user-policies.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/resync-mfa-device.rst
${PYSITELIB}/awscli/examples/iam/set-default-policy-version.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-saml-provider.rst
${PYSITELIB}/awscli/examples/iam/update-signing-certificate.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/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/create-certificate-from-csr.rst
${PYSITELIB}/awscli/examples/kms/create-alias.rst
${PYSITELIB}/awscli/examples/kms/decrypt.rst
${PYSITELIB}/awscli/examples/kms/encrypt.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/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/rds/add-tag-to-resource.rst
${PYSITELIB}/awscli/examples/rds/create-db-instance.rst
${PYSITELIB}/awscli/examples/rds/create-db-security-group.rst
${PYSITELIB}/awscli/examples/rds/create-option-group.rst
${PYSITELIB}/awscli/examples/rds/describe-db-instances.rst
${PYSITELIB}/awscli/examples/rds/download-db-log-file-portion.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/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/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/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/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/delete-activation.rst
${PYSITELIB}/awscli/examples/ssm/delete-association.rst
${PYSITELIB}/awscli/examples/ssm/delete-document.rst
${PYSITELIB}/awscli/examples/ssm/delete-maintenance-window.rst
${PYSITELIB}/awscli/examples/ssm/delete-parameter.rst
${PYSITELIB}/awscli/examples/ssm/delete-patch-baseline.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.rst
${PYSITELIB}/awscli/examples/ssm/describe-automation-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-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-targets.rst
${PYSITELIB}/awscli/examples/ssm/describe-maintenance-window-tasks.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/get-automation-execution.rst
${PYSITELIB}/awscli/examples/ssm/get-command-invocation.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.rst
${PYSITELIB}/awscli/examples/ssm/get-maintenance-window-execution.rst
${PYSITELIB}/awscli/examples/ssm/get-maintenance-window.rst
${PYSITELIB}/awscli/examples/ssm/get-parameter-history.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/list-associations.rst
${PYSITELIB}/awscli/examples/ssm/list-command-invocations.rst
${PYSITELIB}/awscli/examples/ssm/list-commands.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-tags-for-resource.rst
${PYSITELIB}/awscli/examples/ssm/modify-document-permission.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/send-command.rst
${PYSITELIB}/awscli/examples/ssm/start-automation-execution.rst
${PYSITELIB}/awscli/examples/ssm/stop-automation-execution.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.rst
${PYSITELIB}/awscli/examples/ssm/update-managed-instance-role.rst
${PYSITELIB}/awscli/examples/ssm/update-patch-baseline.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/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/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
|