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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub use ::aws_types::request_id::RequestId;

/// Types for the `AcceptAddressTransfer` operation.
pub mod accept_address_transfer;

/// Types for the `AcceptReservedInstancesExchangeQuote` operation.
pub mod accept_reserved_instances_exchange_quote;

/// Types for the `AcceptTransitGatewayMulticastDomainAssociations` operation.
pub mod accept_transit_gateway_multicast_domain_associations;

/// Types for the `AcceptTransitGatewayPeeringAttachment` operation.
pub mod accept_transit_gateway_peering_attachment;

/// Types for the `AcceptTransitGatewayVpcAttachment` operation.
pub mod accept_transit_gateway_vpc_attachment;

/// Types for the `AcceptVpcEndpointConnections` operation.
pub mod accept_vpc_endpoint_connections;

/// Types for the `AcceptVpcPeeringConnection` operation.
pub mod accept_vpc_peering_connection;

/// Types for the `AdvertiseByoipCidr` operation.
pub mod advertise_byoip_cidr;

/// Types for the `AllocateAddress` operation.
pub mod allocate_address;

/// Types for the `AllocateHosts` operation.
pub mod allocate_hosts;

/// Types for the `AllocateIpamPoolCidr` operation.
pub mod allocate_ipam_pool_cidr;

/// Types for the `ApplySecurityGroupsToClientVpnTargetNetwork` operation.
pub mod apply_security_groups_to_client_vpn_target_network;

/// Types for the `AssignIpv6Addresses` operation.
pub mod assign_ipv6_addresses;

/// Types for the `AssignPrivateIpAddresses` operation.
pub mod assign_private_ip_addresses;

/// Types for the `AssignPrivateNatGatewayAddress` operation.
pub mod assign_private_nat_gateway_address;

/// Types for the `AssociateAddress` operation.
pub mod associate_address;

/// Types for the `AssociateClientVpnTargetNetwork` operation.
pub mod associate_client_vpn_target_network;

/// Types for the `AssociateDhcpOptions` operation.
pub mod associate_dhcp_options;

/// Types for the `AssociateEnclaveCertificateIamRole` operation.
pub mod associate_enclave_certificate_iam_role;

/// Types for the `AssociateIamInstanceProfile` operation.
pub mod associate_iam_instance_profile;

/// Types for the `AssociateInstanceEventWindow` operation.
pub mod associate_instance_event_window;

/// Types for the `AssociateIpamByoasn` operation.
pub mod associate_ipam_byoasn;

/// Types for the `AssociateIpamResourceDiscovery` operation.
pub mod associate_ipam_resource_discovery;

/// Types for the `AssociateNatGatewayAddress` operation.
pub mod associate_nat_gateway_address;

/// Types for the `AssociateRouteTable` operation.
pub mod associate_route_table;

/// Types for the `AssociateSubnetCidrBlock` operation.
pub mod associate_subnet_cidr_block;

/// Types for the `AssociateTransitGatewayMulticastDomain` operation.
pub mod associate_transit_gateway_multicast_domain;

/// Types for the `AssociateTransitGatewayPolicyTable` operation.
pub mod associate_transit_gateway_policy_table;

/// Types for the `AssociateTransitGatewayRouteTable` operation.
pub mod associate_transit_gateway_route_table;

/// Types for the `AssociateTrunkInterface` operation.
pub mod associate_trunk_interface;

/// Types for the `AssociateVpcCidrBlock` operation.
pub mod associate_vpc_cidr_block;

/// Types for the `AttachClassicLinkVpc` operation.
pub mod attach_classic_link_vpc;

/// Types for the `AttachInternetGateway` operation.
pub mod attach_internet_gateway;

/// Types for the `AttachNetworkInterface` operation.
pub mod attach_network_interface;

/// Types for the `AttachVerifiedAccessTrustProvider` operation.
pub mod attach_verified_access_trust_provider;

/// Types for the `AttachVolume` operation.
pub mod attach_volume;

/// Types for the `AttachVpnGateway` operation.
pub mod attach_vpn_gateway;

/// Types for the `AuthorizeClientVpnIngress` operation.
pub mod authorize_client_vpn_ingress;

/// Types for the `AuthorizeSecurityGroupEgress` operation.
pub mod authorize_security_group_egress;

/// Types for the `AuthorizeSecurityGroupIngress` operation.
pub mod authorize_security_group_ingress;

/// Types for the `BundleInstance` operation.
pub mod bundle_instance;

/// Types for the `CancelBundleTask` operation.
pub mod cancel_bundle_task;

/// Types for the `CancelCapacityReservation` operation.
pub mod cancel_capacity_reservation;

/// Types for the `CancelCapacityReservationFleets` operation.
pub mod cancel_capacity_reservation_fleets;

/// Types for the `CancelConversionTask` operation.
pub mod cancel_conversion_task;

/// Types for the `CancelExportTask` operation.
pub mod cancel_export_task;

/// Types for the `CancelImageLaunchPermission` operation.
pub mod cancel_image_launch_permission;

/// Types for the `CancelImportTask` operation.
pub mod cancel_import_task;

/// Types for the `CancelReservedInstancesListing` operation.
pub mod cancel_reserved_instances_listing;

/// Types for the `CancelSpotFleetRequests` operation.
pub mod cancel_spot_fleet_requests;

/// Types for the `CancelSpotInstanceRequests` operation.
pub mod cancel_spot_instance_requests;

/// Types for the `ConfirmProductInstance` operation.
pub mod confirm_product_instance;

/// Types for the `CopyFpgaImage` operation.
pub mod copy_fpga_image;

/// Types for the `CopyImage` operation.
pub mod copy_image;

/// Types for the `CopySnapshot` operation.
pub mod copy_snapshot;

/// Types for the `CreateCapacityReservation` operation.
pub mod create_capacity_reservation;

/// Types for the `CreateCapacityReservationFleet` operation.
pub mod create_capacity_reservation_fleet;

/// Types for the `CreateCarrierGateway` operation.
pub mod create_carrier_gateway;

/// Types for the `CreateClientVpnEndpoint` operation.
pub mod create_client_vpn_endpoint;

/// Types for the `CreateClientVpnRoute` operation.
pub mod create_client_vpn_route;

/// Types for the `CreateCoipCidr` operation.
pub mod create_coip_cidr;

/// Types for the `CreateCoipPool` operation.
pub mod create_coip_pool;

/// Types for the `CreateCustomerGateway` operation.
pub mod create_customer_gateway;

/// Types for the `CreateDefaultSubnet` operation.
pub mod create_default_subnet;

/// Types for the `CreateDefaultVpc` operation.
pub mod create_default_vpc;

/// Types for the `CreateDhcpOptions` operation.
pub mod create_dhcp_options;

/// Types for the `CreateEgressOnlyInternetGateway` operation.
pub mod create_egress_only_internet_gateway;

/// Types for the `CreateFleet` operation.
pub mod create_fleet;

/// Types for the `CreateFlowLogs` operation.
pub mod create_flow_logs;

/// Types for the `CreateFpgaImage` operation.
pub mod create_fpga_image;

/// Types for the `CreateImage` operation.
pub mod create_image;

/// Types for the `CreateInstanceConnectEndpoint` operation.
pub mod create_instance_connect_endpoint;

/// Types for the `CreateInstanceEventWindow` operation.
pub mod create_instance_event_window;

/// Types for the `CreateInstanceExportTask` operation.
pub mod create_instance_export_task;

/// Types for the `CreateInternetGateway` operation.
pub mod create_internet_gateway;

/// Types for the `CreateIpam` operation.
pub mod create_ipam;

/// Types for the `CreateIpamPool` operation.
pub mod create_ipam_pool;

/// Types for the `CreateIpamResourceDiscovery` operation.
pub mod create_ipam_resource_discovery;

/// Types for the `CreateIpamScope` operation.
pub mod create_ipam_scope;

/// Types for the `CreateKeyPair` operation.
pub mod create_key_pair;

/// Types for the `CreateLaunchTemplate` operation.
pub mod create_launch_template;

/// Types for the `CreateLaunchTemplateVersion` operation.
pub mod create_launch_template_version;

/// Types for the `CreateLocalGatewayRoute` operation.
pub mod create_local_gateway_route;

/// Types for the `CreateLocalGatewayRouteTable` operation.
pub mod create_local_gateway_route_table;

/// Types for the `CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation` operation.
pub mod create_local_gateway_route_table_virtual_interface_group_association;

/// Types for the `CreateLocalGatewayRouteTableVpcAssociation` operation.
pub mod create_local_gateway_route_table_vpc_association;

/// Types for the `CreateManagedPrefixList` operation.
pub mod create_managed_prefix_list;

/// Types for the `CreateNatGateway` operation.
pub mod create_nat_gateway;

/// Types for the `CreateNetworkAcl` operation.
pub mod create_network_acl;

/// Types for the `CreateNetworkAclEntry` operation.
pub mod create_network_acl_entry;

/// Types for the `CreateNetworkInsightsAccessScope` operation.
pub mod create_network_insights_access_scope;

/// Types for the `CreateNetworkInsightsPath` operation.
pub mod create_network_insights_path;

/// Types for the `CreateNetworkInterface` operation.
pub mod create_network_interface;

/// Types for the `CreateNetworkInterfacePermission` operation.
pub mod create_network_interface_permission;

/// Types for the `CreatePlacementGroup` operation.
pub mod create_placement_group;

/// Types for the `CreatePublicIpv4Pool` operation.
pub mod create_public_ipv4_pool;

/// Types for the `CreateReplaceRootVolumeTask` operation.
pub mod create_replace_root_volume_task;

/// Types for the `CreateReservedInstancesListing` operation.
pub mod create_reserved_instances_listing;

/// Types for the `CreateRestoreImageTask` operation.
pub mod create_restore_image_task;

/// Types for the `CreateRoute` operation.
pub mod create_route;

/// Types for the `CreateRouteTable` operation.
pub mod create_route_table;

/// Types for the `CreateSecurityGroup` operation.
pub mod create_security_group;

/// Types for the `CreateSnapshot` operation.
pub mod create_snapshot;

/// Types for the `CreateSnapshots` operation.
pub mod create_snapshots;

/// Types for the `CreateSpotDatafeedSubscription` operation.
pub mod create_spot_datafeed_subscription;

/// Types for the `CreateStoreImageTask` operation.
pub mod create_store_image_task;

/// Types for the `CreateSubnet` operation.
pub mod create_subnet;

/// Types for the `CreateSubnetCidrReservation` operation.
pub mod create_subnet_cidr_reservation;

/// Types for the `CreateTags` operation.
pub mod create_tags;

/// Types for the `CreateTrafficMirrorFilter` operation.
pub mod create_traffic_mirror_filter;

/// Types for the `CreateTrafficMirrorFilterRule` operation.
pub mod create_traffic_mirror_filter_rule;

/// Types for the `CreateTrafficMirrorSession` operation.
pub mod create_traffic_mirror_session;

/// Types for the `CreateTrafficMirrorTarget` operation.
pub mod create_traffic_mirror_target;

/// Types for the `CreateTransitGateway` operation.
pub mod create_transit_gateway;

/// Types for the `CreateTransitGatewayConnect` operation.
pub mod create_transit_gateway_connect;

/// Types for the `CreateTransitGatewayConnectPeer` operation.
pub mod create_transit_gateway_connect_peer;

/// Types for the `CreateTransitGatewayMulticastDomain` operation.
pub mod create_transit_gateway_multicast_domain;

/// Types for the `CreateTransitGatewayPeeringAttachment` operation.
pub mod create_transit_gateway_peering_attachment;

/// Types for the `CreateTransitGatewayPolicyTable` operation.
pub mod create_transit_gateway_policy_table;

/// Types for the `CreateTransitGatewayPrefixListReference` operation.
pub mod create_transit_gateway_prefix_list_reference;

/// Types for the `CreateTransitGatewayRoute` operation.
pub mod create_transit_gateway_route;

/// Types for the `CreateTransitGatewayRouteTable` operation.
pub mod create_transit_gateway_route_table;

/// Types for the `CreateTransitGatewayRouteTableAnnouncement` operation.
pub mod create_transit_gateway_route_table_announcement;

/// Types for the `CreateTransitGatewayVpcAttachment` operation.
pub mod create_transit_gateway_vpc_attachment;

/// Types for the `CreateVerifiedAccessEndpoint` operation.
pub mod create_verified_access_endpoint;

/// Types for the `CreateVerifiedAccessGroup` operation.
pub mod create_verified_access_group;

/// Types for the `CreateVerifiedAccessInstance` operation.
pub mod create_verified_access_instance;

/// Types for the `CreateVerifiedAccessTrustProvider` operation.
pub mod create_verified_access_trust_provider;

/// Types for the `CreateVolume` operation.
pub mod create_volume;

/// Types for the `CreateVpc` operation.
pub mod create_vpc;

/// Types for the `CreateVpcEndpoint` operation.
pub mod create_vpc_endpoint;

/// Types for the `CreateVpcEndpointConnectionNotification` operation.
pub mod create_vpc_endpoint_connection_notification;

/// Types for the `CreateVpcEndpointServiceConfiguration` operation.
pub mod create_vpc_endpoint_service_configuration;

/// Types for the `CreateVpcPeeringConnection` operation.
pub mod create_vpc_peering_connection;

/// Types for the `CreateVpnConnection` operation.
pub mod create_vpn_connection;

/// Types for the `CreateVpnConnectionRoute` operation.
pub mod create_vpn_connection_route;

/// Types for the `CreateVpnGateway` operation.
pub mod create_vpn_gateway;

/// Types for the `DeleteCarrierGateway` operation.
pub mod delete_carrier_gateway;

/// Types for the `DeleteClientVpnEndpoint` operation.
pub mod delete_client_vpn_endpoint;

/// Types for the `DeleteClientVpnRoute` operation.
pub mod delete_client_vpn_route;

/// Types for the `DeleteCoipCidr` operation.
pub mod delete_coip_cidr;

/// Types for the `DeleteCoipPool` operation.
pub mod delete_coip_pool;

/// Types for the `DeleteCustomerGateway` operation.
pub mod delete_customer_gateway;

/// Types for the `DeleteDhcpOptions` operation.
pub mod delete_dhcp_options;

/// Types for the `DeleteEgressOnlyInternetGateway` operation.
pub mod delete_egress_only_internet_gateway;

/// Types for the `DeleteFleets` operation.
pub mod delete_fleets;

/// Types for the `DeleteFlowLogs` operation.
pub mod delete_flow_logs;

/// Types for the `DeleteFpgaImage` operation.
pub mod delete_fpga_image;

/// Types for the `DeleteInstanceConnectEndpoint` operation.
pub mod delete_instance_connect_endpoint;

/// Types for the `DeleteInstanceEventWindow` operation.
pub mod delete_instance_event_window;

/// Types for the `DeleteInternetGateway` operation.
pub mod delete_internet_gateway;

/// Types for the `DeleteIpam` operation.
pub mod delete_ipam;

/// Types for the `DeleteIpamPool` operation.
pub mod delete_ipam_pool;

/// Types for the `DeleteIpamResourceDiscovery` operation.
pub mod delete_ipam_resource_discovery;

/// Types for the `DeleteIpamScope` operation.
pub mod delete_ipam_scope;

/// Types for the `DeleteKeyPair` operation.
pub mod delete_key_pair;

/// Types for the `DeleteLaunchTemplate` operation.
pub mod delete_launch_template;

/// Types for the `DeleteLaunchTemplateVersions` operation.
pub mod delete_launch_template_versions;

/// Types for the `DeleteLocalGatewayRoute` operation.
pub mod delete_local_gateway_route;

/// Types for the `DeleteLocalGatewayRouteTable` operation.
pub mod delete_local_gateway_route_table;

/// Types for the `DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation` operation.
pub mod delete_local_gateway_route_table_virtual_interface_group_association;

/// Types for the `DeleteLocalGatewayRouteTableVpcAssociation` operation.
pub mod delete_local_gateway_route_table_vpc_association;

/// Types for the `DeleteManagedPrefixList` operation.
pub mod delete_managed_prefix_list;

/// Types for the `DeleteNatGateway` operation.
pub mod delete_nat_gateway;

/// Types for the `DeleteNetworkAcl` operation.
pub mod delete_network_acl;

/// Types for the `DeleteNetworkAclEntry` operation.
pub mod delete_network_acl_entry;

/// Types for the `DeleteNetworkInsightsAccessScope` operation.
pub mod delete_network_insights_access_scope;

/// Types for the `DeleteNetworkInsightsAccessScopeAnalysis` operation.
pub mod delete_network_insights_access_scope_analysis;

/// Types for the `DeleteNetworkInsightsAnalysis` operation.
pub mod delete_network_insights_analysis;

/// Types for the `DeleteNetworkInsightsPath` operation.
pub mod delete_network_insights_path;

/// Types for the `DeleteNetworkInterface` operation.
pub mod delete_network_interface;

/// Types for the `DeleteNetworkInterfacePermission` operation.
pub mod delete_network_interface_permission;

/// Types for the `DeletePlacementGroup` operation.
pub mod delete_placement_group;

/// Types for the `DeletePublicIpv4Pool` operation.
pub mod delete_public_ipv4_pool;

/// Types for the `DeleteQueuedReservedInstances` operation.
pub mod delete_queued_reserved_instances;

/// Types for the `DeleteRoute` operation.
pub mod delete_route;

/// Types for the `DeleteRouteTable` operation.
pub mod delete_route_table;

/// Types for the `DeleteSecurityGroup` operation.
pub mod delete_security_group;

/// Types for the `DeleteSnapshot` operation.
pub mod delete_snapshot;

/// Types for the `DeleteSpotDatafeedSubscription` operation.
pub mod delete_spot_datafeed_subscription;

/// Types for the `DeleteSubnet` operation.
pub mod delete_subnet;

/// Types for the `DeleteSubnetCidrReservation` operation.
pub mod delete_subnet_cidr_reservation;

/// Types for the `DeleteTags` operation.
pub mod delete_tags;

/// Types for the `DeleteTrafficMirrorFilter` operation.
pub mod delete_traffic_mirror_filter;

/// Types for the `DeleteTrafficMirrorFilterRule` operation.
pub mod delete_traffic_mirror_filter_rule;

/// Types for the `DeleteTrafficMirrorSession` operation.
pub mod delete_traffic_mirror_session;

/// Types for the `DeleteTrafficMirrorTarget` operation.
pub mod delete_traffic_mirror_target;

/// Types for the `DeleteTransitGateway` operation.
pub mod delete_transit_gateway;

/// Types for the `DeleteTransitGatewayConnect` operation.
pub mod delete_transit_gateway_connect;

/// Types for the `DeleteTransitGatewayConnectPeer` operation.
pub mod delete_transit_gateway_connect_peer;

/// Types for the `DeleteTransitGatewayMulticastDomain` operation.
pub mod delete_transit_gateway_multicast_domain;

/// Types for the `DeleteTransitGatewayPeeringAttachment` operation.
pub mod delete_transit_gateway_peering_attachment;

/// Types for the `DeleteTransitGatewayPolicyTable` operation.
pub mod delete_transit_gateway_policy_table;

/// Types for the `DeleteTransitGatewayPrefixListReference` operation.
pub mod delete_transit_gateway_prefix_list_reference;

/// Types for the `DeleteTransitGatewayRoute` operation.
pub mod delete_transit_gateway_route;

/// Types for the `DeleteTransitGatewayRouteTable` operation.
pub mod delete_transit_gateway_route_table;

/// Types for the `DeleteTransitGatewayRouteTableAnnouncement` operation.
pub mod delete_transit_gateway_route_table_announcement;

/// Types for the `DeleteTransitGatewayVpcAttachment` operation.
pub mod delete_transit_gateway_vpc_attachment;

/// Types for the `DeleteVerifiedAccessEndpoint` operation.
pub mod delete_verified_access_endpoint;

/// Types for the `DeleteVerifiedAccessGroup` operation.
pub mod delete_verified_access_group;

/// Types for the `DeleteVerifiedAccessInstance` operation.
pub mod delete_verified_access_instance;

/// Types for the `DeleteVerifiedAccessTrustProvider` operation.
pub mod delete_verified_access_trust_provider;

/// Types for the `DeleteVolume` operation.
pub mod delete_volume;

/// Types for the `DeleteVpc` operation.
pub mod delete_vpc;

/// Types for the `DeleteVpcEndpointConnectionNotifications` operation.
pub mod delete_vpc_endpoint_connection_notifications;

/// Types for the `DeleteVpcEndpointServiceConfigurations` operation.
pub mod delete_vpc_endpoint_service_configurations;

/// Types for the `DeleteVpcEndpoints` operation.
pub mod delete_vpc_endpoints;

/// Types for the `DeleteVpcPeeringConnection` operation.
pub mod delete_vpc_peering_connection;

/// Types for the `DeleteVpnConnection` operation.
pub mod delete_vpn_connection;

/// Types for the `DeleteVpnConnectionRoute` operation.
pub mod delete_vpn_connection_route;

/// Types for the `DeleteVpnGateway` operation.
pub mod delete_vpn_gateway;

/// Types for the `DeprovisionByoipCidr` operation.
pub mod deprovision_byoip_cidr;

/// Types for the `DeprovisionIpamByoasn` operation.
pub mod deprovision_ipam_byoasn;

/// Types for the `DeprovisionIpamPoolCidr` operation.
pub mod deprovision_ipam_pool_cidr;

/// Types for the `DeprovisionPublicIpv4PoolCidr` operation.
pub mod deprovision_public_ipv4_pool_cidr;

/// Types for the `DeregisterImage` operation.
pub mod deregister_image;

/// Types for the `DeregisterInstanceEventNotificationAttributes` operation.
pub mod deregister_instance_event_notification_attributes;

/// Types for the `DeregisterTransitGatewayMulticastGroupMembers` operation.
pub mod deregister_transit_gateway_multicast_group_members;

/// Types for the `DeregisterTransitGatewayMulticastGroupSources` operation.
pub mod deregister_transit_gateway_multicast_group_sources;

/// Types for the `DescribeAccountAttributes` operation.
pub mod describe_account_attributes;

/// Types for the `DescribeAddressTransfers` operation.
pub mod describe_address_transfers;

/// Types for the `DescribeAddresses` operation.
pub mod describe_addresses;

/// Types for the `DescribeAddressesAttribute` operation.
pub mod describe_addresses_attribute;

/// Types for the `DescribeAggregateIdFormat` operation.
pub mod describe_aggregate_id_format;

/// Types for the `DescribeAvailabilityZones` operation.
pub mod describe_availability_zones;

/// Types for the `DescribeAwsNetworkPerformanceMetricSubscriptions` operation.
pub mod describe_aws_network_performance_metric_subscriptions;

/// Types for the `DescribeBundleTasks` operation.
pub mod describe_bundle_tasks;

/// Types for the `DescribeByoipCidrs` operation.
pub mod describe_byoip_cidrs;

/// Types for the `DescribeCapacityBlockOfferings` operation.
pub mod describe_capacity_block_offerings;

/// Types for the `DescribeCapacityReservationFleets` operation.
pub mod describe_capacity_reservation_fleets;

/// Types for the `DescribeCapacityReservations` operation.
pub mod describe_capacity_reservations;

/// Types for the `DescribeCarrierGateways` operation.
pub mod describe_carrier_gateways;

/// Types for the `DescribeClassicLinkInstances` operation.
pub mod describe_classic_link_instances;

/// Types for the `DescribeClientVpnAuthorizationRules` operation.
pub mod describe_client_vpn_authorization_rules;

/// Types for the `DescribeClientVpnConnections` operation.
pub mod describe_client_vpn_connections;

/// Types for the `DescribeClientVpnEndpoints` operation.
pub mod describe_client_vpn_endpoints;

/// Types for the `DescribeClientVpnRoutes` operation.
pub mod describe_client_vpn_routes;

/// Types for the `DescribeClientVpnTargetNetworks` operation.
pub mod describe_client_vpn_target_networks;

/// Types for the `DescribeCoipPools` operation.
pub mod describe_coip_pools;

/// Types for the `DescribeConversionTasks` operation.
pub mod describe_conversion_tasks;

/// Types for the `DescribeCustomerGateways` operation.
pub mod describe_customer_gateways;

/// Types for the `DescribeDhcpOptions` operation.
pub mod describe_dhcp_options;

/// Types for the `DescribeEgressOnlyInternetGateways` operation.
pub mod describe_egress_only_internet_gateways;

/// Types for the `DescribeElasticGpus` operation.
pub mod describe_elastic_gpus;

/// Types for the `DescribeExportImageTasks` operation.
pub mod describe_export_image_tasks;

/// Types for the `DescribeExportTasks` operation.
pub mod describe_export_tasks;

/// Types for the `DescribeFastLaunchImages` operation.
pub mod describe_fast_launch_images;

/// Types for the `DescribeFastSnapshotRestores` operation.
pub mod describe_fast_snapshot_restores;

/// Types for the `DescribeFleetHistory` operation.
pub mod describe_fleet_history;

/// Types for the `DescribeFleetInstances` operation.
pub mod describe_fleet_instances;

/// Types for the `DescribeFleets` operation.
pub mod describe_fleets;

/// Types for the `DescribeFlowLogs` operation.
pub mod describe_flow_logs;

/// Types for the `DescribeFpgaImageAttribute` operation.
pub mod describe_fpga_image_attribute;

/// Types for the `DescribeFpgaImages` operation.
pub mod describe_fpga_images;

/// Types for the `DescribeHostReservationOfferings` operation.
pub mod describe_host_reservation_offerings;

/// Types for the `DescribeHostReservations` operation.
pub mod describe_host_reservations;

/// Types for the `DescribeHosts` operation.
pub mod describe_hosts;

/// Types for the `DescribeIamInstanceProfileAssociations` operation.
pub mod describe_iam_instance_profile_associations;

/// Types for the `DescribeIdFormat` operation.
pub mod describe_id_format;

/// Types for the `DescribeIdentityIdFormat` operation.
pub mod describe_identity_id_format;

/// Types for the `DescribeImageAttribute` operation.
pub mod describe_image_attribute;

/// Types for the `DescribeImages` operation.
pub mod describe_images;

/// Types for the `DescribeImportImageTasks` operation.
pub mod describe_import_image_tasks;

/// Types for the `DescribeImportSnapshotTasks` operation.
pub mod describe_import_snapshot_tasks;

/// Types for the `DescribeInstanceAttribute` operation.
pub mod describe_instance_attribute;

/// Types for the `DescribeInstanceConnectEndpoints` operation.
pub mod describe_instance_connect_endpoints;

/// Types for the `DescribeInstanceCreditSpecifications` operation.
pub mod describe_instance_credit_specifications;

/// Types for the `DescribeInstanceEventNotificationAttributes` operation.
pub mod describe_instance_event_notification_attributes;

/// Types for the `DescribeInstanceEventWindows` operation.
pub mod describe_instance_event_windows;

/// Types for the `DescribeInstanceStatus` operation.
pub mod describe_instance_status;

/// Types for the `DescribeInstanceTopology` operation.
pub mod describe_instance_topology;

/// Types for the `DescribeInstanceTypeOfferings` operation.
pub mod describe_instance_type_offerings;

/// Types for the `DescribeInstanceTypes` operation.
pub mod describe_instance_types;

/// Types for the `DescribeInstances` operation.
pub mod describe_instances;

/// Types for the `DescribeInternetGateways` operation.
pub mod describe_internet_gateways;

/// Types for the `DescribeIpamByoasn` operation.
pub mod describe_ipam_byoasn;

/// Types for the `DescribeIpamPools` operation.
pub mod describe_ipam_pools;

/// Types for the `DescribeIpamResourceDiscoveries` operation.
pub mod describe_ipam_resource_discoveries;

/// Types for the `DescribeIpamResourceDiscoveryAssociations` operation.
pub mod describe_ipam_resource_discovery_associations;

/// Types for the `DescribeIpamScopes` operation.
pub mod describe_ipam_scopes;

/// Types for the `DescribeIpams` operation.
pub mod describe_ipams;

/// Types for the `DescribeIpv6Pools` operation.
pub mod describe_ipv6_pools;

/// Types for the `DescribeKeyPairs` operation.
pub mod describe_key_pairs;

/// Types for the `DescribeLaunchTemplateVersions` operation.
pub mod describe_launch_template_versions;

/// Types for the `DescribeLaunchTemplates` operation.
pub mod describe_launch_templates;

/// Types for the `DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations` operation.
pub mod describe_local_gateway_route_table_virtual_interface_group_associations;

/// Types for the `DescribeLocalGatewayRouteTableVpcAssociations` operation.
pub mod describe_local_gateway_route_table_vpc_associations;

/// Types for the `DescribeLocalGatewayRouteTables` operation.
pub mod describe_local_gateway_route_tables;

/// Types for the `DescribeLocalGatewayVirtualInterfaceGroups` operation.
pub mod describe_local_gateway_virtual_interface_groups;

/// Types for the `DescribeLocalGatewayVirtualInterfaces` operation.
pub mod describe_local_gateway_virtual_interfaces;

/// Types for the `DescribeLocalGateways` operation.
pub mod describe_local_gateways;

/// Types for the `DescribeLockedSnapshots` operation.
pub mod describe_locked_snapshots;

/// Types for the `DescribeManagedPrefixLists` operation.
pub mod describe_managed_prefix_lists;

/// Types for the `DescribeMovingAddresses` operation.
pub mod describe_moving_addresses;

/// Types for the `DescribeNatGateways` operation.
pub mod describe_nat_gateways;

/// Types for the `DescribeNetworkAcls` operation.
pub mod describe_network_acls;

/// Types for the `DescribeNetworkInsightsAccessScopeAnalyses` operation.
pub mod describe_network_insights_access_scope_analyses;

/// Types for the `DescribeNetworkInsightsAccessScopes` operation.
pub mod describe_network_insights_access_scopes;

/// Types for the `DescribeNetworkInsightsAnalyses` operation.
pub mod describe_network_insights_analyses;

/// Types for the `DescribeNetworkInsightsPaths` operation.
pub mod describe_network_insights_paths;

/// Types for the `DescribeNetworkInterfaceAttribute` operation.
pub mod describe_network_interface_attribute;

/// Types for the `DescribeNetworkInterfacePermissions` operation.
pub mod describe_network_interface_permissions;

/// Types for the `DescribeNetworkInterfaces` operation.
pub mod describe_network_interfaces;

/// Types for the `DescribePlacementGroups` operation.
pub mod describe_placement_groups;

/// Types for the `DescribePrefixLists` operation.
pub mod describe_prefix_lists;

/// Types for the `DescribePrincipalIdFormat` operation.
pub mod describe_principal_id_format;

/// Types for the `DescribePublicIpv4Pools` operation.
pub mod describe_public_ipv4_pools;

/// Types for the `DescribeRegions` operation.
pub mod describe_regions;

/// Types for the `DescribeReplaceRootVolumeTasks` operation.
pub mod describe_replace_root_volume_tasks;

/// Types for the `DescribeReservedInstances` operation.
pub mod describe_reserved_instances;

/// Types for the `DescribeReservedInstancesListings` operation.
pub mod describe_reserved_instances_listings;

/// Types for the `DescribeReservedInstancesModifications` operation.
pub mod describe_reserved_instances_modifications;

/// Types for the `DescribeReservedInstancesOfferings` operation.
pub mod describe_reserved_instances_offerings;

/// Types for the `DescribeRouteTables` operation.
pub mod describe_route_tables;

/// Types for the `DescribeScheduledInstanceAvailability` operation.
pub mod describe_scheduled_instance_availability;

/// Types for the `DescribeScheduledInstances` operation.
pub mod describe_scheduled_instances;

/// Types for the `DescribeSecurityGroupReferences` operation.
pub mod describe_security_group_references;

/// Types for the `DescribeSecurityGroupRules` operation.
pub mod describe_security_group_rules;

/// Types for the `DescribeSecurityGroups` operation.
pub mod describe_security_groups;

/// Types for the `DescribeSnapshotAttribute` operation.
pub mod describe_snapshot_attribute;

/// Types for the `DescribeSnapshotTierStatus` operation.
pub mod describe_snapshot_tier_status;

/// Types for the `DescribeSnapshots` operation.
pub mod describe_snapshots;

/// Types for the `DescribeSpotDatafeedSubscription` operation.
pub mod describe_spot_datafeed_subscription;

/// Types for the `DescribeSpotFleetInstances` operation.
pub mod describe_spot_fleet_instances;

/// Types for the `DescribeSpotFleetRequestHistory` operation.
pub mod describe_spot_fleet_request_history;

/// Types for the `DescribeSpotFleetRequests` operation.
pub mod describe_spot_fleet_requests;

/// Types for the `DescribeSpotInstanceRequests` operation.
pub mod describe_spot_instance_requests;

/// Types for the `DescribeSpotPriceHistory` operation.
pub mod describe_spot_price_history;

/// Types for the `DescribeStaleSecurityGroups` operation.
pub mod describe_stale_security_groups;

/// Types for the `DescribeStoreImageTasks` operation.
pub mod describe_store_image_tasks;

/// Types for the `DescribeSubnets` operation.
pub mod describe_subnets;

/// Types for the `DescribeTags` operation.
pub mod describe_tags;

/// Types for the `DescribeTrafficMirrorFilters` operation.
pub mod describe_traffic_mirror_filters;

/// Types for the `DescribeTrafficMirrorSessions` operation.
pub mod describe_traffic_mirror_sessions;

/// Types for the `DescribeTrafficMirrorTargets` operation.
pub mod describe_traffic_mirror_targets;

/// Types for the `DescribeTransitGatewayAttachments` operation.
pub mod describe_transit_gateway_attachments;

/// Types for the `DescribeTransitGatewayConnectPeers` operation.
pub mod describe_transit_gateway_connect_peers;

/// Types for the `DescribeTransitGatewayConnects` operation.
pub mod describe_transit_gateway_connects;

/// Types for the `DescribeTransitGatewayMulticastDomains` operation.
pub mod describe_transit_gateway_multicast_domains;

/// Types for the `DescribeTransitGatewayPeeringAttachments` operation.
pub mod describe_transit_gateway_peering_attachments;

/// Types for the `DescribeTransitGatewayPolicyTables` operation.
pub mod describe_transit_gateway_policy_tables;

/// Types for the `DescribeTransitGatewayRouteTableAnnouncements` operation.
pub mod describe_transit_gateway_route_table_announcements;

/// Types for the `DescribeTransitGatewayRouteTables` operation.
pub mod describe_transit_gateway_route_tables;

/// Types for the `DescribeTransitGatewayVpcAttachments` operation.
pub mod describe_transit_gateway_vpc_attachments;

/// Types for the `DescribeTransitGateways` operation.
pub mod describe_transit_gateways;

/// Types for the `DescribeTrunkInterfaceAssociations` operation.
pub mod describe_trunk_interface_associations;

/// Types for the `DescribeVerifiedAccessEndpoints` operation.
pub mod describe_verified_access_endpoints;

/// Types for the `DescribeVerifiedAccessGroups` operation.
pub mod describe_verified_access_groups;

/// Types for the `DescribeVerifiedAccessInstanceLoggingConfigurations` operation.
pub mod describe_verified_access_instance_logging_configurations;

/// Types for the `DescribeVerifiedAccessInstances` operation.
pub mod describe_verified_access_instances;

/// Types for the `DescribeVerifiedAccessTrustProviders` operation.
pub mod describe_verified_access_trust_providers;

/// Types for the `DescribeVolumeAttribute` operation.
pub mod describe_volume_attribute;

/// Types for the `DescribeVolumeStatus` operation.
pub mod describe_volume_status;

/// Types for the `DescribeVolumes` operation.
pub mod describe_volumes;

/// Types for the `DescribeVolumesModifications` operation.
pub mod describe_volumes_modifications;

/// Types for the `DescribeVpcAttribute` operation.
pub mod describe_vpc_attribute;

/// Types for the `DescribeVpcClassicLink` operation.
pub mod describe_vpc_classic_link;

/// Types for the `DescribeVpcClassicLinkDnsSupport` operation.
pub mod describe_vpc_classic_link_dns_support;

/// Types for the `DescribeVpcEndpointConnectionNotifications` operation.
pub mod describe_vpc_endpoint_connection_notifications;

/// Types for the `DescribeVpcEndpointConnections` operation.
pub mod describe_vpc_endpoint_connections;

/// Types for the `DescribeVpcEndpointServiceConfigurations` operation.
pub mod describe_vpc_endpoint_service_configurations;

/// Types for the `DescribeVpcEndpointServicePermissions` operation.
pub mod describe_vpc_endpoint_service_permissions;

/// Types for the `DescribeVpcEndpointServices` operation.
pub mod describe_vpc_endpoint_services;

/// Types for the `DescribeVpcEndpoints` operation.
pub mod describe_vpc_endpoints;

/// Types for the `DescribeVpcPeeringConnections` operation.
pub mod describe_vpc_peering_connections;

/// Types for the `DescribeVpcs` operation.
pub mod describe_vpcs;

/// Types for the `DescribeVpnConnections` operation.
pub mod describe_vpn_connections;

/// Types for the `DescribeVpnGateways` operation.
pub mod describe_vpn_gateways;

/// Types for the `DetachClassicLinkVpc` operation.
pub mod detach_classic_link_vpc;

/// Types for the `DetachInternetGateway` operation.
pub mod detach_internet_gateway;

/// Types for the `DetachNetworkInterface` operation.
pub mod detach_network_interface;

/// Types for the `DetachVerifiedAccessTrustProvider` operation.
pub mod detach_verified_access_trust_provider;

/// Types for the `DetachVolume` operation.
pub mod detach_volume;

/// Types for the `DetachVpnGateway` operation.
pub mod detach_vpn_gateway;

/// Types for the `DisableAddressTransfer` operation.
pub mod disable_address_transfer;

/// Types for the `DisableAwsNetworkPerformanceMetricSubscription` operation.
pub mod disable_aws_network_performance_metric_subscription;

/// Types for the `DisableEbsEncryptionByDefault` operation.
pub mod disable_ebs_encryption_by_default;

/// Types for the `DisableFastLaunch` operation.
pub mod disable_fast_launch;

/// Types for the `DisableFastSnapshotRestores` operation.
pub mod disable_fast_snapshot_restores;

/// Types for the `DisableImage` operation.
pub mod disable_image;

/// Types for the `DisableImageBlockPublicAccess` operation.
pub mod disable_image_block_public_access;

/// Types for the `DisableImageDeprecation` operation.
pub mod disable_image_deprecation;

/// Types for the `DisableIpamOrganizationAdminAccount` operation.
pub mod disable_ipam_organization_admin_account;

/// Types for the `DisableSerialConsoleAccess` operation.
pub mod disable_serial_console_access;

/// Types for the `DisableSnapshotBlockPublicAccess` operation.
pub mod disable_snapshot_block_public_access;

/// Types for the `DisableTransitGatewayRouteTablePropagation` operation.
pub mod disable_transit_gateway_route_table_propagation;

/// Types for the `DisableVgwRoutePropagation` operation.
pub mod disable_vgw_route_propagation;

/// Types for the `DisableVpcClassicLink` operation.
pub mod disable_vpc_classic_link;

/// Types for the `DisableVpcClassicLinkDnsSupport` operation.
pub mod disable_vpc_classic_link_dns_support;

/// Types for the `DisassociateAddress` operation.
pub mod disassociate_address;

/// Types for the `DisassociateClientVpnTargetNetwork` operation.
pub mod disassociate_client_vpn_target_network;

/// Types for the `DisassociateEnclaveCertificateIamRole` operation.
pub mod disassociate_enclave_certificate_iam_role;

/// Types for the `DisassociateIamInstanceProfile` operation.
pub mod disassociate_iam_instance_profile;

/// Types for the `DisassociateInstanceEventWindow` operation.
pub mod disassociate_instance_event_window;

/// Types for the `DisassociateIpamByoasn` operation.
pub mod disassociate_ipam_byoasn;

/// Types for the `DisassociateIpamResourceDiscovery` operation.
pub mod disassociate_ipam_resource_discovery;

/// Types for the `DisassociateNatGatewayAddress` operation.
pub mod disassociate_nat_gateway_address;

/// Types for the `DisassociateRouteTable` operation.
pub mod disassociate_route_table;

/// Types for the `DisassociateSubnetCidrBlock` operation.
pub mod disassociate_subnet_cidr_block;

/// Types for the `DisassociateTransitGatewayMulticastDomain` operation.
pub mod disassociate_transit_gateway_multicast_domain;

/// Types for the `DisassociateTransitGatewayPolicyTable` operation.
pub mod disassociate_transit_gateway_policy_table;

/// Types for the `DisassociateTransitGatewayRouteTable` operation.
pub mod disassociate_transit_gateway_route_table;

/// Types for the `DisassociateTrunkInterface` operation.
pub mod disassociate_trunk_interface;

/// Types for the `DisassociateVpcCidrBlock` operation.
pub mod disassociate_vpc_cidr_block;

/// Types for the `EnableAddressTransfer` operation.
pub mod enable_address_transfer;

/// Types for the `EnableAwsNetworkPerformanceMetricSubscription` operation.
pub mod enable_aws_network_performance_metric_subscription;

/// Types for the `EnableEbsEncryptionByDefault` operation.
pub mod enable_ebs_encryption_by_default;

/// Types for the `EnableFastLaunch` operation.
pub mod enable_fast_launch;

/// Types for the `EnableFastSnapshotRestores` operation.
pub mod enable_fast_snapshot_restores;

/// Types for the `EnableImage` operation.
pub mod enable_image;

/// Types for the `EnableImageBlockPublicAccess` operation.
pub mod enable_image_block_public_access;

/// Types for the `EnableImageDeprecation` operation.
pub mod enable_image_deprecation;

/// Types for the `EnableIpamOrganizationAdminAccount` operation.
pub mod enable_ipam_organization_admin_account;

/// Types for the `EnableReachabilityAnalyzerOrganizationSharing` operation.
pub mod enable_reachability_analyzer_organization_sharing;

/// Types for the `EnableSerialConsoleAccess` operation.
pub mod enable_serial_console_access;

/// Types for the `EnableSnapshotBlockPublicAccess` operation.
pub mod enable_snapshot_block_public_access;

/// Types for the `EnableTransitGatewayRouteTablePropagation` operation.
pub mod enable_transit_gateway_route_table_propagation;

/// Types for the `EnableVgwRoutePropagation` operation.
pub mod enable_vgw_route_propagation;

/// Types for the `EnableVolumeIO` operation.
pub mod enable_volume_io;

/// Types for the `EnableVpcClassicLink` operation.
pub mod enable_vpc_classic_link;

/// Types for the `EnableVpcClassicLinkDnsSupport` operation.
pub mod enable_vpc_classic_link_dns_support;

/// Types for the `ExportClientVpnClientCertificateRevocationList` operation.
pub mod export_client_vpn_client_certificate_revocation_list;

/// Types for the `ExportClientVpnClientConfiguration` operation.
pub mod export_client_vpn_client_configuration;

/// Types for the `ExportImage` operation.
pub mod export_image;

/// Types for the `ExportTransitGatewayRoutes` operation.
pub mod export_transit_gateway_routes;

/// Types for the `GetAssociatedEnclaveCertificateIamRoles` operation.
pub mod get_associated_enclave_certificate_iam_roles;

/// Types for the `GetAssociatedIpv6PoolCidrs` operation.
pub mod get_associated_ipv6_pool_cidrs;

/// Types for the `GetAwsNetworkPerformanceData` operation.
pub mod get_aws_network_performance_data;

/// Types for the `GetCapacityReservationUsage` operation.
pub mod get_capacity_reservation_usage;

/// Types for the `GetCoipPoolUsage` operation.
pub mod get_coip_pool_usage;

/// Types for the `GetConsoleOutput` operation.
pub mod get_console_output;

/// Types for the `GetConsoleScreenshot` operation.
pub mod get_console_screenshot;

/// Types for the `GetDefaultCreditSpecification` operation.
pub mod get_default_credit_specification;

/// Types for the `GetEbsDefaultKmsKeyId` operation.
pub mod get_ebs_default_kms_key_id;

/// Types for the `GetEbsEncryptionByDefault` operation.
pub mod get_ebs_encryption_by_default;

/// Types for the `GetFlowLogsIntegrationTemplate` operation.
pub mod get_flow_logs_integration_template;

/// Types for the `GetGroupsForCapacityReservation` operation.
pub mod get_groups_for_capacity_reservation;

/// Types for the `GetHostReservationPurchasePreview` operation.
pub mod get_host_reservation_purchase_preview;

/// Types for the `GetImageBlockPublicAccessState` operation.
pub mod get_image_block_public_access_state;

/// Types for the `GetInstanceTypesFromInstanceRequirements` operation.
pub mod get_instance_types_from_instance_requirements;

/// Types for the `GetInstanceUefiData` operation.
pub mod get_instance_uefi_data;

/// Types for the `GetIpamAddressHistory` operation.
pub mod get_ipam_address_history;

/// Types for the `GetIpamDiscoveredAccounts` operation.
pub mod get_ipam_discovered_accounts;

/// Types for the `GetIpamDiscoveredPublicAddresses` operation.
pub mod get_ipam_discovered_public_addresses;

/// Types for the `GetIpamDiscoveredResourceCidrs` operation.
pub mod get_ipam_discovered_resource_cidrs;

/// Types for the `GetIpamPoolAllocations` operation.
pub mod get_ipam_pool_allocations;

/// Types for the `GetIpamPoolCidrs` operation.
pub mod get_ipam_pool_cidrs;

/// Types for the `GetIpamResourceCidrs` operation.
pub mod get_ipam_resource_cidrs;

/// Types for the `GetLaunchTemplateData` operation.
pub mod get_launch_template_data;

/// Types for the `GetManagedPrefixListAssociations` operation.
pub mod get_managed_prefix_list_associations;

/// Types for the `GetManagedPrefixListEntries` operation.
pub mod get_managed_prefix_list_entries;

/// Types for the `GetNetworkInsightsAccessScopeAnalysisFindings` operation.
pub mod get_network_insights_access_scope_analysis_findings;

/// Types for the `GetNetworkInsightsAccessScopeContent` operation.
pub mod get_network_insights_access_scope_content;

/// Types for the `GetPasswordData` operation.
pub mod get_password_data;

/// Types for the `GetReservedInstancesExchangeQuote` operation.
pub mod get_reserved_instances_exchange_quote;

/// Types for the `GetSecurityGroupsForVpc` operation.
pub mod get_security_groups_for_vpc;

/// Types for the `GetSerialConsoleAccessStatus` operation.
pub mod get_serial_console_access_status;

/// Types for the `GetSnapshotBlockPublicAccessState` operation.
pub mod get_snapshot_block_public_access_state;

/// Types for the `GetSpotPlacementScores` operation.
pub mod get_spot_placement_scores;

/// Types for the `GetSubnetCidrReservations` operation.
pub mod get_subnet_cidr_reservations;

/// Types for the `GetTransitGatewayAttachmentPropagations` operation.
pub mod get_transit_gateway_attachment_propagations;

/// Types for the `GetTransitGatewayMulticastDomainAssociations` operation.
pub mod get_transit_gateway_multicast_domain_associations;

/// Types for the `GetTransitGatewayPolicyTableAssociations` operation.
pub mod get_transit_gateway_policy_table_associations;

/// Types for the `GetTransitGatewayPolicyTableEntries` operation.
pub mod get_transit_gateway_policy_table_entries;

/// Types for the `GetTransitGatewayPrefixListReferences` operation.
pub mod get_transit_gateway_prefix_list_references;

/// Types for the `GetTransitGatewayRouteTableAssociations` operation.
pub mod get_transit_gateway_route_table_associations;

/// Types for the `GetTransitGatewayRouteTablePropagations` operation.
pub mod get_transit_gateway_route_table_propagations;

/// Types for the `GetVerifiedAccessEndpointPolicy` operation.
pub mod get_verified_access_endpoint_policy;

/// Types for the `GetVerifiedAccessGroupPolicy` operation.
pub mod get_verified_access_group_policy;

/// Types for the `GetVpnConnectionDeviceSampleConfiguration` operation.
pub mod get_vpn_connection_device_sample_configuration;

/// Types for the `GetVpnConnectionDeviceTypes` operation.
pub mod get_vpn_connection_device_types;

/// Types for the `GetVpnTunnelReplacementStatus` operation.
pub mod get_vpn_tunnel_replacement_status;

/// Types for the `ImportClientVpnClientCertificateRevocationList` operation.
pub mod import_client_vpn_client_certificate_revocation_list;

/// Types for the `ImportImage` operation.
pub mod import_image;

/// Types for the `ImportInstance` operation.
pub mod import_instance;

/// Types for the `ImportKeyPair` operation.
pub mod import_key_pair;

/// Types for the `ImportSnapshot` operation.
pub mod import_snapshot;

/// Types for the `ImportVolume` operation.
pub mod import_volume;

/// Types for the `ListImagesInRecycleBin` operation.
pub mod list_images_in_recycle_bin;

/// Types for the `ListSnapshotsInRecycleBin` operation.
pub mod list_snapshots_in_recycle_bin;

/// Types for the `LockSnapshot` operation.
pub mod lock_snapshot;

/// Types for the `ModifyAddressAttribute` operation.
pub mod modify_address_attribute;

/// Types for the `ModifyAvailabilityZoneGroup` operation.
pub mod modify_availability_zone_group;

/// Types for the `ModifyCapacityReservation` operation.
pub mod modify_capacity_reservation;

/// Types for the `ModifyCapacityReservationFleet` operation.
pub mod modify_capacity_reservation_fleet;

/// Types for the `ModifyClientVpnEndpoint` operation.
pub mod modify_client_vpn_endpoint;

/// Types for the `ModifyDefaultCreditSpecification` operation.
pub mod modify_default_credit_specification;

/// Types for the `ModifyEbsDefaultKmsKeyId` operation.
pub mod modify_ebs_default_kms_key_id;

/// Types for the `ModifyFleet` operation.
pub mod modify_fleet;

/// Types for the `ModifyFpgaImageAttribute` operation.
pub mod modify_fpga_image_attribute;

/// Types for the `ModifyHosts` operation.
pub mod modify_hosts;

/// Types for the `ModifyIdFormat` operation.
pub mod modify_id_format;

/// Types for the `ModifyIdentityIdFormat` operation.
pub mod modify_identity_id_format;

/// Types for the `ModifyImageAttribute` operation.
pub mod modify_image_attribute;

/// Types for the `ModifyInstanceAttribute` operation.
pub mod modify_instance_attribute;

/// Types for the `ModifyInstanceCapacityReservationAttributes` operation.
pub mod modify_instance_capacity_reservation_attributes;

/// Types for the `ModifyInstanceCreditSpecification` operation.
pub mod modify_instance_credit_specification;

/// Types for the `ModifyInstanceEventStartTime` operation.
pub mod modify_instance_event_start_time;

/// Types for the `ModifyInstanceEventWindow` operation.
pub mod modify_instance_event_window;

/// Types for the `ModifyInstanceMaintenanceOptions` operation.
pub mod modify_instance_maintenance_options;

/// Types for the `ModifyInstanceMetadataOptions` operation.
pub mod modify_instance_metadata_options;

/// Types for the `ModifyInstancePlacement` operation.
pub mod modify_instance_placement;

/// Types for the `ModifyIpam` operation.
pub mod modify_ipam;

/// Types for the `ModifyIpamPool` operation.
pub mod modify_ipam_pool;

/// Types for the `ModifyIpamResourceCidr` operation.
pub mod modify_ipam_resource_cidr;

/// Types for the `ModifyIpamResourceDiscovery` operation.
pub mod modify_ipam_resource_discovery;

/// Types for the `ModifyIpamScope` operation.
pub mod modify_ipam_scope;

/// Types for the `ModifyLaunchTemplate` operation.
pub mod modify_launch_template;

/// Types for the `ModifyLocalGatewayRoute` operation.
pub mod modify_local_gateway_route;

/// Types for the `ModifyManagedPrefixList` operation.
pub mod modify_managed_prefix_list;

/// Types for the `ModifyNetworkInterfaceAttribute` operation.
pub mod modify_network_interface_attribute;

/// Types for the `ModifyPrivateDnsNameOptions` operation.
pub mod modify_private_dns_name_options;

/// Types for the `ModifyReservedInstances` operation.
pub mod modify_reserved_instances;

/// Types for the `ModifySecurityGroupRules` operation.
pub mod modify_security_group_rules;

/// Types for the `ModifySnapshotAttribute` operation.
pub mod modify_snapshot_attribute;

/// Types for the `ModifySnapshotTier` operation.
pub mod modify_snapshot_tier;

/// Types for the `ModifySpotFleetRequest` operation.
pub mod modify_spot_fleet_request;

/// Types for the `ModifySubnetAttribute` operation.
pub mod modify_subnet_attribute;

/// Types for the `ModifyTrafficMirrorFilterNetworkServices` operation.
pub mod modify_traffic_mirror_filter_network_services;

/// Types for the `ModifyTrafficMirrorFilterRule` operation.
pub mod modify_traffic_mirror_filter_rule;

/// Types for the `ModifyTrafficMirrorSession` operation.
pub mod modify_traffic_mirror_session;

/// Types for the `ModifyTransitGateway` operation.
pub mod modify_transit_gateway;

/// Types for the `ModifyTransitGatewayPrefixListReference` operation.
pub mod modify_transit_gateway_prefix_list_reference;

/// Types for the `ModifyTransitGatewayVpcAttachment` operation.
pub mod modify_transit_gateway_vpc_attachment;

/// Types for the `ModifyVerifiedAccessEndpoint` operation.
pub mod modify_verified_access_endpoint;

/// Types for the `ModifyVerifiedAccessEndpointPolicy` operation.
pub mod modify_verified_access_endpoint_policy;

/// Types for the `ModifyVerifiedAccessGroup` operation.
pub mod modify_verified_access_group;

/// Types for the `ModifyVerifiedAccessGroupPolicy` operation.
pub mod modify_verified_access_group_policy;

/// Types for the `ModifyVerifiedAccessInstance` operation.
pub mod modify_verified_access_instance;

/// Types for the `ModifyVerifiedAccessInstanceLoggingConfiguration` operation.
pub mod modify_verified_access_instance_logging_configuration;

/// Types for the `ModifyVerifiedAccessTrustProvider` operation.
pub mod modify_verified_access_trust_provider;

/// Types for the `ModifyVolume` operation.
pub mod modify_volume;

/// Types for the `ModifyVolumeAttribute` operation.
pub mod modify_volume_attribute;

/// Types for the `ModifyVpcAttribute` operation.
pub mod modify_vpc_attribute;

/// Types for the `ModifyVpcEndpoint` operation.
pub mod modify_vpc_endpoint;

/// Types for the `ModifyVpcEndpointConnectionNotification` operation.
pub mod modify_vpc_endpoint_connection_notification;

/// Types for the `ModifyVpcEndpointServiceConfiguration` operation.
pub mod modify_vpc_endpoint_service_configuration;

/// Types for the `ModifyVpcEndpointServicePayerResponsibility` operation.
pub mod modify_vpc_endpoint_service_payer_responsibility;

/// Types for the `ModifyVpcEndpointServicePermissions` operation.
pub mod modify_vpc_endpoint_service_permissions;

/// Types for the `ModifyVpcPeeringConnectionOptions` operation.
pub mod modify_vpc_peering_connection_options;

/// Types for the `ModifyVpcTenancy` operation.
pub mod modify_vpc_tenancy;

/// Types for the `ModifyVpnConnection` operation.
pub mod modify_vpn_connection;

/// Types for the `ModifyVpnConnectionOptions` operation.
pub mod modify_vpn_connection_options;

/// Types for the `ModifyVpnTunnelCertificate` operation.
pub mod modify_vpn_tunnel_certificate;

/// Types for the `ModifyVpnTunnelOptions` operation.
pub mod modify_vpn_tunnel_options;

/// Types for the `MonitorInstances` operation.
pub mod monitor_instances;

/// Types for the `MoveAddressToVpc` operation.
pub mod move_address_to_vpc;

/// Types for the `MoveByoipCidrToIpam` operation.
pub mod move_byoip_cidr_to_ipam;

/// Types for the `ProvisionByoipCidr` operation.
pub mod provision_byoip_cidr;

/// Types for the `ProvisionIpamByoasn` operation.
pub mod provision_ipam_byoasn;

/// Types for the `ProvisionIpamPoolCidr` operation.
pub mod provision_ipam_pool_cidr;

/// Types for the `ProvisionPublicIpv4PoolCidr` operation.
pub mod provision_public_ipv4_pool_cidr;

/// Types for the `PurchaseCapacityBlock` operation.
pub mod purchase_capacity_block;

/// Types for the `PurchaseHostReservation` operation.
pub mod purchase_host_reservation;

/// Types for the `PurchaseReservedInstancesOffering` operation.
pub mod purchase_reserved_instances_offering;

/// Types for the `PurchaseScheduledInstances` operation.
pub mod purchase_scheduled_instances;

/// Types for the `RebootInstances` operation.
pub mod reboot_instances;

/// Types for the `RegisterImage` operation.
pub mod register_image;

/// Types for the `RegisterInstanceEventNotificationAttributes` operation.
pub mod register_instance_event_notification_attributes;

/// Types for the `RegisterTransitGatewayMulticastGroupMembers` operation.
pub mod register_transit_gateway_multicast_group_members;

/// Types for the `RegisterTransitGatewayMulticastGroupSources` operation.
pub mod register_transit_gateway_multicast_group_sources;

/// Types for the `RejectTransitGatewayMulticastDomainAssociations` operation.
pub mod reject_transit_gateway_multicast_domain_associations;

/// Types for the `RejectTransitGatewayPeeringAttachment` operation.
pub mod reject_transit_gateway_peering_attachment;

/// Types for the `RejectTransitGatewayVpcAttachment` operation.
pub mod reject_transit_gateway_vpc_attachment;

/// Types for the `RejectVpcEndpointConnections` operation.
pub mod reject_vpc_endpoint_connections;

/// Types for the `RejectVpcPeeringConnection` operation.
pub mod reject_vpc_peering_connection;

/// Types for the `ReleaseAddress` operation.
pub mod release_address;

/// Types for the `ReleaseHosts` operation.
pub mod release_hosts;

/// Types for the `ReleaseIpamPoolAllocation` operation.
pub mod release_ipam_pool_allocation;

/// Types for the `ReplaceIamInstanceProfileAssociation` operation.
pub mod replace_iam_instance_profile_association;

/// Types for the `ReplaceNetworkAclAssociation` operation.
pub mod replace_network_acl_association;

/// Types for the `ReplaceNetworkAclEntry` operation.
pub mod replace_network_acl_entry;

/// Types for the `ReplaceRoute` operation.
pub mod replace_route;

/// Types for the `ReplaceRouteTableAssociation` operation.
pub mod replace_route_table_association;

/// Types for the `ReplaceTransitGatewayRoute` operation.
pub mod replace_transit_gateway_route;

/// Types for the `ReplaceVpnTunnel` operation.
pub mod replace_vpn_tunnel;

/// Types for the `ReportInstanceStatus` operation.
pub mod report_instance_status;

/// Types for the `RequestSpotFleet` operation.
pub mod request_spot_fleet;

/// Types for the `RequestSpotInstances` operation.
pub mod request_spot_instances;

/// Types for the `ResetAddressAttribute` operation.
pub mod reset_address_attribute;

/// Types for the `ResetEbsDefaultKmsKeyId` operation.
pub mod reset_ebs_default_kms_key_id;

/// Types for the `ResetFpgaImageAttribute` operation.
pub mod reset_fpga_image_attribute;

/// Types for the `ResetImageAttribute` operation.
pub mod reset_image_attribute;

/// Types for the `ResetInstanceAttribute` operation.
pub mod reset_instance_attribute;

/// Types for the `ResetNetworkInterfaceAttribute` operation.
pub mod reset_network_interface_attribute;

/// Types for the `ResetSnapshotAttribute` operation.
pub mod reset_snapshot_attribute;

/// Types for the `RestoreAddressToClassic` operation.
pub mod restore_address_to_classic;

/// Types for the `RestoreImageFromRecycleBin` operation.
pub mod restore_image_from_recycle_bin;

/// Types for the `RestoreManagedPrefixListVersion` operation.
pub mod restore_managed_prefix_list_version;

/// Types for the `RestoreSnapshotFromRecycleBin` operation.
pub mod restore_snapshot_from_recycle_bin;

/// Types for the `RestoreSnapshotTier` operation.
pub mod restore_snapshot_tier;

/// Types for the `RevokeClientVpnIngress` operation.
pub mod revoke_client_vpn_ingress;

/// Types for the `RevokeSecurityGroupEgress` operation.
pub mod revoke_security_group_egress;

/// Types for the `RevokeSecurityGroupIngress` operation.
pub mod revoke_security_group_ingress;

/// Types for the `RunInstances` operation.
pub mod run_instances;

/// Types for the `RunScheduledInstances` operation.
pub mod run_scheduled_instances;

/// Types for the `SearchLocalGatewayRoutes` operation.
pub mod search_local_gateway_routes;

/// Types for the `SearchTransitGatewayMulticastGroups` operation.
pub mod search_transit_gateway_multicast_groups;

/// Types for the `SearchTransitGatewayRoutes` operation.
pub mod search_transit_gateway_routes;

/// Types for the `SendDiagnosticInterrupt` operation.
pub mod send_diagnostic_interrupt;

/// Types for the `StartInstances` operation.
pub mod start_instances;

/// Types for the `StartNetworkInsightsAccessScopeAnalysis` operation.
pub mod start_network_insights_access_scope_analysis;

/// Types for the `StartNetworkInsightsAnalysis` operation.
pub mod start_network_insights_analysis;

/// Types for the `StartVpcEndpointServicePrivateDnsVerification` operation.
pub mod start_vpc_endpoint_service_private_dns_verification;

/// Types for the `StopInstances` operation.
pub mod stop_instances;

/// Types for the `TerminateClientVpnConnections` operation.
pub mod terminate_client_vpn_connections;

/// Types for the `TerminateInstances` operation.
pub mod terminate_instances;

/// Types for the `UnassignIpv6Addresses` operation.
pub mod unassign_ipv6_addresses;

/// Types for the `UnassignPrivateIpAddresses` operation.
pub mod unassign_private_ip_addresses;

/// Types for the `UnassignPrivateNatGatewayAddress` operation.
pub mod unassign_private_nat_gateway_address;

/// Types for the `UnlockSnapshot` operation.
pub mod unlock_snapshot;

/// Types for the `UnmonitorInstances` operation.
pub mod unmonitor_instances;

/// Types for the `UpdateSecurityGroupRuleDescriptionsEgress` operation.
pub mod update_security_group_rule_descriptions_egress;

/// Types for the `UpdateSecurityGroupRuleDescriptionsIngress` operation.
pub mod update_security_group_rule_descriptions_ingress;

/// Types for the `WithdrawByoipCidr` operation.
pub mod withdraw_byoip_cidr;