Source file io.ml

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
(* generated by: awso-codegen generate-all --botocore-data vendor/botocore/botocore/data -o aws --runtime-dir lib/runtime/awso --cli-dir awso-cli *)
open Awso_ec2
open Awso_async
module Io = Http.Io
let eval ?endpoint_url ?cfg endpoint input =
  Io.bind (Io.resolve_cfg cfg)
    (fun cfg ->
       let meth = Endpoints.method_of_endpoint endpoint in
       let uri = Endpoints.uri_of_endpoint endpoint input in
       Io.map
         (Io.call ?endpoint_url ~cfg ~service:Values.service meth
            (Endpoints.to_request endpoint input) uri)
         (fun resp_result -> Endpoints.of_response endpoint resp_result))
let accept_address_transfer ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AcceptAddressTransfer input
let accept_capacity_reservation_billing_ownership ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AcceptCapacityReservationBillingOwnership
    input
let accept_reserved_instances_exchange_quote ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AcceptReservedInstancesExchangeQuote
    input
let accept_transit_gateway_client_vpn_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AcceptTransitGatewayClientVpnAttachment
    input
let accept_transit_gateway_multicast_domain_associations ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.AcceptTransitGatewayMulticastDomainAssociations input
let accept_transit_gateway_peering_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AcceptTransitGatewayPeeringAttachment
    input
let accept_transit_gateway_vpc_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AcceptTransitGatewayVpcAttachment input
let accept_vpc_endpoint_connections ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AcceptVpcEndpointConnections input
let accept_vpc_peering_connection ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AcceptVpcPeeringConnection input
let advertise_byoip_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AdvertiseByoipCidr input
let allocate_address ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AllocateAddress input
let allocate_hosts ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AllocateHosts input
let allocate_ipam_pool_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AllocateIpamPoolCidr input
let apply_security_groups_to_client_vpn_target_network ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.ApplySecurityGroupsToClientVpnTargetNetwork input
let assign_ipv6_addresses ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssignIpv6Addresses input
let assign_private_ip_addresses ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssignPrivateIpAddresses input
let assign_private_nat_gateway_address ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssignPrivateNatGatewayAddress input
let associate_address ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateAddress input
let associate_capacity_reservation_billing_owner ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateCapacityReservationBillingOwner
    input
let associate_client_vpn_target_network ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateClientVpnTargetNetwork input
let associate_dhcp_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateDhcpOptions input
let associate_enclave_certificate_iam_role ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateEnclaveCertificateIamRole input
let associate_iam_instance_profile ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateIamInstanceProfile input
let associate_instance_event_window ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateInstanceEventWindow input
let associate_ipam_byoasn ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateIpamByoasn input
let associate_ipam_resource_discovery ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateIpamResourceDiscovery input
let associate_nat_gateway_address ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateNatGatewayAddress input
let associate_route_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateRouteServer input
let associate_route_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateRouteTable input
let associate_security_group_vpc ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateSecurityGroupVpc input
let associate_subnet_cidr_block ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateSubnetCidrBlock input
let associate_transit_gateway_multicast_domain ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateTransitGatewayMulticastDomain
    input
let associate_transit_gateway_policy_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateTransitGatewayPolicyTable input
let associate_transit_gateway_route_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateTransitGatewayRouteTable input
let associate_trunk_interface ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateTrunkInterface input
let associate_vpc_cidr_block ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateVpcCidrBlock input
let attach_classic_link_vpc ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AttachClassicLinkVpc input
let attach_internet_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AttachInternetGateway input
let attach_network_interface ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AttachNetworkInterface input
let attach_verified_access_trust_provider ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AttachVerifiedAccessTrustProvider input
let attach_volume ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AttachVolume input
let attach_vpn_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AttachVpnGateway input
let authorize_client_vpn_ingress ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AuthorizeClientVpnIngress input
let authorize_security_group_egress ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AuthorizeSecurityGroupEgress input
let authorize_security_group_ingress ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AuthorizeSecurityGroupIngress input
let bundle_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.BundleInstance input
let cancel_bundle_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelBundleTask input
let cancel_capacity_reservation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelCapacityReservation input
let cancel_capacity_reservation_fleets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelCapacityReservationFleets input
let cancel_conversion_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelConversionTask input
let cancel_declarative_policies_report ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelDeclarativePoliciesReport input
let cancel_export_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelExportTask input
let cancel_image_launch_permission ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelImageLaunchPermission input
let cancel_import_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelImportTask input
let cancel_reserved_instances_listing ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelReservedInstancesListing input
let cancel_spot_fleet_requests ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelSpotFleetRequests input
let cancel_spot_instance_requests ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelSpotInstanceRequests input
let confirm_product_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ConfirmProductInstance input
let copy_fpga_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CopyFpgaImage input
let copy_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CopyImage input
let copy_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CopySnapshot input
let copy_volumes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CopyVolumes input
let create_capacity_manager_data_export ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCapacityManagerDataExport input
let create_capacity_reservation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCapacityReservation input
let create_capacity_reservation_by_splitting ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCapacityReservationBySplitting
    input
let create_capacity_reservation_fleet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCapacityReservationFleet input
let create_carrier_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCarrierGateway input
let create_client_vpn_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateClientVpnEndpoint input
let create_client_vpn_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateClientVpnRoute input
let create_coip_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCoipCidr input
let create_coip_pool ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCoipPool input
let create_customer_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCustomerGateway input
let create_default_subnet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDefaultSubnet input
let create_default_vpc ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDefaultVpc input
let create_delegate_mac_volume_ownership_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDelegateMacVolumeOwnershipTask
    input
let create_dhcp_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDhcpOptions input
let create_egress_only_internet_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateEgressOnlyInternetGateway input
let create_fleet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateFleet input
let create_flow_logs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateFlowLogs input
let create_fpga_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateFpgaImage input
let create_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateImage input
let create_image_usage_report ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateImageUsageReport input
let create_instance_connect_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateInstanceConnectEndpoint input
let create_instance_event_window ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateInstanceEventWindow input
let create_instance_export_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateInstanceExportTask input
let create_internet_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateInternetGateway input
let create_interruptible_capacity_reservation_allocation ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.CreateInterruptibleCapacityReservationAllocation input
let create_ipam ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateIpam input
let create_ipam_external_resource_verification_token ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.CreateIpamExternalResourceVerificationToken input
let create_ipam_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateIpamPolicy input
let create_ipam_pool ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateIpamPool input
let create_ipam_prefix_list_resolver ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateIpamPrefixListResolver input
let create_ipam_prefix_list_resolver_target ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateIpamPrefixListResolverTarget input
let create_ipam_resource_discovery ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateIpamResourceDiscovery input
let create_ipam_scope ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateIpamScope input
let create_key_pair ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateKeyPair input
let create_launch_template ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateLaunchTemplate input
let create_launch_template_version ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateLaunchTemplateVersion input
let create_local_gateway_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateLocalGatewayRoute input
let create_local_gateway_route_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateLocalGatewayRouteTable input
let create_local_gateway_route_table_virtual_interface_group_association
  ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg
    Endpoints.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation
    input
let create_local_gateway_route_table_vpc_association ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.CreateLocalGatewayRouteTableVpcAssociation input
let create_local_gateway_virtual_interface ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateLocalGatewayVirtualInterface input
let create_local_gateway_virtual_interface_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateLocalGatewayVirtualInterfaceGroup
    input
let create_mac_system_integrity_protection_modification_task ?endpoint_url
  ?cfg input =
  eval ?endpoint_url ?cfg
    Endpoints.CreateMacSystemIntegrityProtectionModificationTask input
let create_managed_prefix_list ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateManagedPrefixList input
let create_nat_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateNatGateway input
let create_network_acl ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateNetworkAcl input
let create_network_acl_entry ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateNetworkAclEntry input
let create_network_insights_access_scope ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateNetworkInsightsAccessScope input
let create_network_insights_path ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateNetworkInsightsPath input
let create_network_interface ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateNetworkInterface input
let create_network_interface_permission ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateNetworkInterfacePermission input
let create_placement_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreatePlacementGroup input
let create_public_ipv4_pool ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreatePublicIpv4Pool input
let create_replace_root_volume_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateReplaceRootVolumeTask input
let create_reserved_instances_listing ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateReservedInstancesListing input
let create_restore_image_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateRestoreImageTask input
let create_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateRoute input
let create_route_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateRouteServer input
let create_route_server_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateRouteServerEndpoint input
let create_route_server_peer ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateRouteServerPeer input
let create_route_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateRouteTable input
let create_secondary_network ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateSecondaryNetwork input
let create_secondary_subnet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateSecondarySubnet input
let create_security_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateSecurityGroup input
let create_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateSnapshot input
let create_snapshots ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateSnapshots input
let create_spot_datafeed_subscription ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateSpotDatafeedSubscription input
let create_store_image_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateStoreImageTask input
let create_subnet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateSubnet input
let create_subnet_cidr_reservation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateSubnetCidrReservation input
let create_tags ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTags input
let create_traffic_mirror_filter ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTrafficMirrorFilter input
let create_traffic_mirror_filter_rule ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTrafficMirrorFilterRule input
let create_traffic_mirror_session ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTrafficMirrorSession input
let create_traffic_mirror_target ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTrafficMirrorTarget input
let create_transit_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGateway input
let create_transit_gateway_connect ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayConnect input
let create_transit_gateway_connect_peer ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayConnectPeer input
let create_transit_gateway_metering_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayMeteringPolicy input
let create_transit_gateway_metering_policy_entry ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayMeteringPolicyEntry
    input
let create_transit_gateway_multicast_domain ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayMulticastDomain input
let create_transit_gateway_peering_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayPeeringAttachment
    input
let create_transit_gateway_policy_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayPolicyTable input
let create_transit_gateway_prefix_list_reference ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayPrefixListReference
    input
let create_transit_gateway_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayRoute input
let create_transit_gateway_route_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayRouteTable input
let create_transit_gateway_route_table_announcement ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.CreateTransitGatewayRouteTableAnnouncement input
let create_transit_gateway_vpc_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransitGatewayVpcAttachment input
let create_verified_access_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVerifiedAccessEndpoint input
let create_verified_access_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVerifiedAccessGroup input
let create_verified_access_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVerifiedAccessInstance input
let create_verified_access_trust_provider ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVerifiedAccessTrustProvider input
let create_volume ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVolume input
let create_vpc ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpc input
let create_vpc_block_public_access_exclusion ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpcBlockPublicAccessExclusion input
let create_vpc_encryption_control ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpcEncryptionControl input
let create_vpc_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpcEndpoint input
let create_vpc_endpoint_connection_notification ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpcEndpointConnectionNotification
    input
let create_vpc_endpoint_service_configuration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpcEndpointServiceConfiguration
    input
let create_vpc_peering_connection ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpcPeeringConnection input
let create_vpn_concentrator ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpnConcentrator input
let create_vpn_connection ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpnConnection input
let create_vpn_connection_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpnConnectionRoute input
let create_vpn_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateVpnGateway input
let delete_capacity_manager_data_export ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteCapacityManagerDataExport input
let delete_carrier_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteCarrierGateway input
let delete_client_vpn_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteClientVpnEndpoint input
let delete_client_vpn_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteClientVpnRoute input
let delete_coip_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteCoipCidr input
let delete_coip_pool ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteCoipPool input
let delete_customer_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteCustomerGateway input
let delete_dhcp_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDhcpOptions input
let delete_egress_only_internet_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteEgressOnlyInternetGateway input
let delete_fleets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteFleets input
let delete_flow_logs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteFlowLogs input
let delete_fpga_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteFpgaImage input
let delete_image_usage_report ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteImageUsageReport input
let delete_instance_connect_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteInstanceConnectEndpoint input
let delete_instance_event_window ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteInstanceEventWindow input
let delete_internet_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteInternetGateway input
let delete_ipam ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteIpam input
let delete_ipam_external_resource_verification_token ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.DeleteIpamExternalResourceVerificationToken input
let delete_ipam_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteIpamPolicy input
let delete_ipam_pool ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteIpamPool input
let delete_ipam_prefix_list_resolver ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteIpamPrefixListResolver input
let delete_ipam_prefix_list_resolver_target ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteIpamPrefixListResolverTarget input
let delete_ipam_resource_discovery ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteIpamResourceDiscovery input
let delete_ipam_scope ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteIpamScope input
let delete_key_pair ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteKeyPair input
let delete_launch_template ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteLaunchTemplate input
let delete_launch_template_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteLaunchTemplateVersions input
let delete_local_gateway_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteLocalGatewayRoute input
let delete_local_gateway_route_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteLocalGatewayRouteTable input
let delete_local_gateway_route_table_virtual_interface_group_association
  ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg
    Endpoints.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation
    input
let delete_local_gateway_route_table_vpc_association ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.DeleteLocalGatewayRouteTableVpcAssociation input
let delete_local_gateway_virtual_interface ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteLocalGatewayVirtualInterface input
let delete_local_gateway_virtual_interface_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteLocalGatewayVirtualInterfaceGroup
    input
let delete_managed_prefix_list ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteManagedPrefixList input
let delete_nat_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNatGateway input
let delete_network_acl ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNetworkAcl input
let delete_network_acl_entry ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNetworkAclEntry input
let delete_network_insights_access_scope ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNetworkInsightsAccessScope input
let delete_network_insights_access_scope_analysis ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNetworkInsightsAccessScopeAnalysis
    input
let delete_network_insights_analysis ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNetworkInsightsAnalysis input
let delete_network_insights_path ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNetworkInsightsPath input
let delete_network_interface ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNetworkInterface input
let delete_network_interface_permission ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNetworkInterfacePermission input
let delete_placement_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeletePlacementGroup input
let delete_public_ipv4_pool ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeletePublicIpv4Pool input
let delete_queued_reserved_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteQueuedReservedInstances input
let delete_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteRoute input
let delete_route_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteRouteServer input
let delete_route_server_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteRouteServerEndpoint input
let delete_route_server_peer ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteRouteServerPeer input
let delete_route_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteRouteTable input
let delete_secondary_network ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteSecondaryNetwork input
let delete_secondary_subnet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteSecondarySubnet input
let delete_security_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteSecurityGroup input
let delete_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteSnapshot input
let delete_spot_datafeed_subscription ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteSpotDatafeedSubscription input
let delete_subnet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteSubnet input
let delete_subnet_cidr_reservation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteSubnetCidrReservation input
let delete_tags ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTags input
let delete_traffic_mirror_filter ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTrafficMirrorFilter input
let delete_traffic_mirror_filter_rule ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTrafficMirrorFilterRule input
let delete_traffic_mirror_session ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTrafficMirrorSession input
let delete_traffic_mirror_target ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTrafficMirrorTarget input
let delete_transit_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGateway input
let delete_transit_gateway_client_vpn_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayClientVpnAttachment
    input
let delete_transit_gateway_connect ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayConnect input
let delete_transit_gateway_connect_peer ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayConnectPeer input
let delete_transit_gateway_metering_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayMeteringPolicy input
let delete_transit_gateway_metering_policy_entry ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayMeteringPolicyEntry
    input
let delete_transit_gateway_multicast_domain ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayMulticastDomain input
let delete_transit_gateway_peering_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayPeeringAttachment
    input
let delete_transit_gateway_policy_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayPolicyTable input
let delete_transit_gateway_prefix_list_reference ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayPrefixListReference
    input
let delete_transit_gateway_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayRoute input
let delete_transit_gateway_route_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayRouteTable input
let delete_transit_gateway_route_table_announcement ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.DeleteTransitGatewayRouteTableAnnouncement input
let delete_transit_gateway_vpc_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTransitGatewayVpcAttachment input
let delete_verified_access_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVerifiedAccessEndpoint input
let delete_verified_access_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVerifiedAccessGroup input
let delete_verified_access_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVerifiedAccessInstance input
let delete_verified_access_trust_provider ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVerifiedAccessTrustProvider input
let delete_volume ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVolume input
let delete_vpc ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpc input
let delete_vpc_block_public_access_exclusion ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpcBlockPublicAccessExclusion input
let delete_vpc_encryption_control ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpcEncryptionControl input
let delete_vpc_endpoint_connection_notifications ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpcEndpointConnectionNotifications
    input
let delete_vpc_endpoint_service_configurations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpcEndpointServiceConfigurations
    input
let delete_vpc_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpcEndpoints input
let delete_vpc_peering_connection ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpcPeeringConnection input
let delete_vpn_concentrator ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpnConcentrator input
let delete_vpn_connection ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpnConnection input
let delete_vpn_connection_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpnConnectionRoute input
let delete_vpn_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteVpnGateway input
let deprovision_byoip_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeprovisionByoipCidr input
let deprovision_ipam_byoasn ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeprovisionIpamByoasn input
let deprovision_ipam_pool_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeprovisionIpamPoolCidr input
let deprovision_public_ipv4_pool_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeprovisionPublicIpv4PoolCidr input
let deregister_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeregisterImage input
let deregister_instance_event_notification_attributes ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.DeregisterInstanceEventNotificationAttributes input
let deregister_transit_gateway_multicast_group_members ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.DeregisterTransitGatewayMulticastGroupMembers input
let deregister_transit_gateway_multicast_group_sources ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.DeregisterTransitGatewayMulticastGroupSources input
let describe_account_attributes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAccountAttributes input
let describe_address_transfers ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAddressTransfers input
let describe_addresses ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAddresses input
let describe_addresses_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAddressesAttribute input
let describe_aggregate_id_format ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAggregateIdFormat input
let describe_availability_zones ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAvailabilityZones input
let describe_aws_network_performance_metric_subscriptions ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeAwsNetworkPerformanceMetricSubscriptions input
let describe_bundle_tasks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeBundleTasks input
let describe_byoip_cidrs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeByoipCidrs input
let describe_capacity_block_extension_history ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCapacityBlockExtensionHistory
    input
let describe_capacity_block_extension_offerings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCapacityBlockExtensionOfferings
    input
let describe_capacity_block_offerings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCapacityBlockOfferings input
let describe_capacity_block_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCapacityBlockStatus input
let describe_capacity_blocks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCapacityBlocks input
let describe_capacity_manager_data_exports ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCapacityManagerDataExports input
let describe_capacity_reservation_billing_requests ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeCapacityReservationBillingRequests input
let describe_capacity_reservation_fleets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCapacityReservationFleets input
let describe_capacity_reservation_topology ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCapacityReservationTopology input
let describe_capacity_reservations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCapacityReservations input
let describe_carrier_gateways ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCarrierGateways input
let describe_classic_link_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeClassicLinkInstances input
let describe_client_vpn_authorization_rules ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeClientVpnAuthorizationRules input
let describe_client_vpn_connections ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeClientVpnConnections input
let describe_client_vpn_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeClientVpnEndpoints input
let describe_client_vpn_routes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeClientVpnRoutes input
let describe_client_vpn_target_networks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeClientVpnTargetNetworks input
let describe_coip_pools ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCoipPools input
let describe_conversion_tasks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeConversionTasks input
let describe_customer_gateways ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCustomerGateways input
let describe_declarative_policies_reports ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDeclarativePoliciesReports input
let describe_dhcp_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDhcpOptions input
let describe_egress_only_internet_gateways ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEgressOnlyInternetGateways input
let describe_elastic_gpus ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeElasticGpus input
let describe_export_image_tasks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeExportImageTasks input
let describe_export_tasks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeExportTasks input
let describe_fast_launch_images ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFastLaunchImages input
let describe_fast_snapshot_restores ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFastSnapshotRestores input
let describe_fleet_history ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFleetHistory input
let describe_fleet_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFleetInstances input
let describe_fleets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFleets input
let describe_flow_logs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFlowLogs input
let describe_fpga_image_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFpgaImageAttribute input
let describe_fpga_images ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFpgaImages input
let describe_host_reservation_offerings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeHostReservationOfferings input
let describe_host_reservations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeHostReservations input
let describe_hosts ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeHosts input
let describe_iam_instance_profile_associations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIamInstanceProfileAssociations
    input
let describe_id_format ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIdFormat input
let describe_identity_id_format ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIdentityIdFormat input
let describe_image_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeImageAttribute input
let describe_image_references ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeImageReferences input
let describe_image_usage_report_entries ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeImageUsageReportEntries input
let describe_image_usage_reports ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeImageUsageReports input
let describe_images ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeImages input
let describe_import_image_tasks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeImportImageTasks input
let describe_import_snapshot_tasks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeImportSnapshotTasks input
let describe_instance_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceAttribute input
let describe_instance_connect_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceConnectEndpoints input
let describe_instance_credit_specifications ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceCreditSpecifications
    input
let describe_instance_event_notification_attributes ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeInstanceEventNotificationAttributes input
let describe_instance_event_windows ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceEventWindows input
let describe_instance_image_metadata ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceImageMetadata input
let describe_instance_sql_ha_history_states ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceSqlHaHistoryStates input
let describe_instance_sql_ha_states ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceSqlHaStates input
let describe_instance_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceStatus input
let describe_instance_topology ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceTopology input
let describe_instance_type_offerings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceTypeOfferings input
let describe_instance_types ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstanceTypes input
let describe_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInstances input
let describe_internet_gateways ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInternetGateways input
let describe_ipam_byoasn ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIpamByoasn input
let describe_ipam_external_resource_verification_tokens ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeIpamExternalResourceVerificationTokens input
let describe_ipam_policies ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIpamPolicies input
let describe_ipam_pools ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIpamPools input
let describe_ipam_prefix_list_resolver_targets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIpamPrefixListResolverTargets
    input
let describe_ipam_prefix_list_resolvers ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIpamPrefixListResolvers input
let describe_ipam_resource_discoveries ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIpamResourceDiscoveries input
let describe_ipam_resource_discovery_associations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIpamResourceDiscoveryAssociations
    input
let describe_ipam_scopes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIpamScopes input
let describe_ipams ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIpams input
let describe_ipv6_pools ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIpv6Pools input
let describe_key_pairs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeKeyPairs input
let describe_launch_template_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeLaunchTemplateVersions input
let describe_launch_templates ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeLaunchTemplates input
let describe_local_gateway_route_table_virtual_interface_group_associations
  ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations
    input
let describe_local_gateway_route_table_vpc_associations ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeLocalGatewayRouteTableVpcAssociations input
let describe_local_gateway_route_tables ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeLocalGatewayRouteTables input
let describe_local_gateway_virtual_interface_groups ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeLocalGatewayVirtualInterfaceGroups input
let describe_local_gateway_virtual_interfaces ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeLocalGatewayVirtualInterfaces
    input
let describe_local_gateways ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeLocalGateways input
let describe_locked_snapshots ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeLockedSnapshots input
let describe_mac_hosts ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeMacHosts input
let describe_mac_modification_tasks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeMacModificationTasks input
let describe_managed_prefix_lists ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeManagedPrefixLists input
let describe_moving_addresses ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeMovingAddresses input
let describe_nat_gateways ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeNatGateways input
let describe_network_acls ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeNetworkAcls input
let describe_network_insights_access_scope_analyses ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeNetworkInsightsAccessScopeAnalyses input
let describe_network_insights_access_scopes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeNetworkInsightsAccessScopes input
let describe_network_insights_analyses ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeNetworkInsightsAnalyses input
let describe_network_insights_paths ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeNetworkInsightsPaths input
let describe_network_interface_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeNetworkInterfaceAttribute input
let describe_network_interface_permissions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeNetworkInterfacePermissions input
let describe_network_interfaces ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeNetworkInterfaces input
let describe_outpost_lags ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeOutpostLags input
let describe_placement_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribePlacementGroups input
let describe_prefix_lists ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribePrefixLists input
let describe_principal_id_format ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribePrincipalIdFormat input
let describe_public_ipv4_pools ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribePublicIpv4Pools input
let describe_regions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeRegions input
let describe_replace_root_volume_tasks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeReplaceRootVolumeTasks input
let describe_reserved_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeReservedInstances input
let describe_reserved_instances_listings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeReservedInstancesListings input
let describe_reserved_instances_modifications ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeReservedInstancesModifications
    input
let describe_reserved_instances_offerings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeReservedInstancesOfferings input
let describe_route_server_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeRouteServerEndpoints input
let describe_route_server_peers ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeRouteServerPeers input
let describe_route_servers ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeRouteServers input
let describe_route_tables ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeRouteTables input
let describe_scheduled_instance_availability ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeScheduledInstanceAvailability
    input
let describe_scheduled_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeScheduledInstances input
let describe_secondary_interfaces ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSecondaryInterfaces input
let describe_secondary_networks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSecondaryNetworks input
let describe_secondary_subnets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSecondarySubnets input
let describe_security_group_references ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSecurityGroupReferences input
let describe_security_group_rules ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSecurityGroupRules input
let describe_security_group_vpc_associations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSecurityGroupVpcAssociations
    input
let describe_security_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSecurityGroups input
let describe_service_link_virtual_interfaces ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeServiceLinkVirtualInterfaces
    input
let describe_snapshot_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSnapshotAttribute input
let describe_snapshot_tier_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSnapshotTierStatus input
let describe_snapshots ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSnapshots input
let describe_spot_datafeed_subscription ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSpotDatafeedSubscription input
let describe_spot_fleet_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSpotFleetInstances input
let describe_spot_fleet_request_history ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSpotFleetRequestHistory input
let describe_spot_fleet_requests ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSpotFleetRequests input
let describe_spot_instance_requests ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSpotInstanceRequests input
let describe_spot_price_history ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSpotPriceHistory input
let describe_stale_security_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeStaleSecurityGroups input
let describe_store_image_tasks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeStoreImageTasks input
let describe_subnets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSubnets input
let describe_tags ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTags input
let describe_traffic_mirror_filter_rules ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTrafficMirrorFilterRules input
let describe_traffic_mirror_filters ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTrafficMirrorFilters input
let describe_traffic_mirror_sessions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTrafficMirrorSessions input
let describe_traffic_mirror_targets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTrafficMirrorTargets input
let describe_transit_gateway_attachments ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransitGatewayAttachments input
let describe_transit_gateway_connect_peers ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransitGatewayConnectPeers input
let describe_transit_gateway_connects ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransitGatewayConnects input
let describe_transit_gateway_metering_policies ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransitGatewayMeteringPolicies
    input
let describe_transit_gateway_multicast_domains ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransitGatewayMulticastDomains
    input
let describe_transit_gateway_peering_attachments ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransitGatewayPeeringAttachments
    input
let describe_transit_gateway_policy_tables ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransitGatewayPolicyTables input
let describe_transit_gateway_route_table_announcements ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeTransitGatewayRouteTableAnnouncements input
let describe_transit_gateway_route_tables ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransitGatewayRouteTables input
let describe_transit_gateway_vpc_attachments ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransitGatewayVpcAttachments
    input
let describe_transit_gateways ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransitGateways input
let describe_trunk_interface_associations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTrunkInterfaceAssociations input
let describe_verified_access_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVerifiedAccessEndpoints input
let describe_verified_access_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVerifiedAccessGroups input
let describe_verified_access_instance_logging_configurations ?endpoint_url
  ?cfg input =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeVerifiedAccessInstanceLoggingConfigurations input
let describe_verified_access_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVerifiedAccessInstances input
let describe_verified_access_trust_providers ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVerifiedAccessTrustProviders
    input
let describe_volume_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVolumeAttribute input
let describe_volume_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVolumeStatus input
let describe_volumes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVolumes input
let describe_volumes_modifications ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVolumesModifications input
let describe_vpc_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcAttribute input
let describe_vpc_block_public_access_exclusions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcBlockPublicAccessExclusions
    input
let describe_vpc_block_public_access_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcBlockPublicAccessOptions input
let describe_vpc_classic_link ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcClassicLink input
let describe_vpc_classic_link_dns_support ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcClassicLinkDnsSupport input
let describe_vpc_encryption_controls ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcEncryptionControls input
let describe_vpc_endpoint_associations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcEndpointAssociations input
let describe_vpc_endpoint_connection_notifications ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg
    Endpoints.DescribeVpcEndpointConnectionNotifications input
let describe_vpc_endpoint_connections ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcEndpointConnections input
let describe_vpc_endpoint_service_configurations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcEndpointServiceConfigurations
    input
let describe_vpc_endpoint_service_permissions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcEndpointServicePermissions
    input
let describe_vpc_endpoint_services ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcEndpointServices input
let describe_vpc_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcEndpoints input
let describe_vpc_peering_connections ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcPeeringConnections input
let describe_vpcs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpcs input
let describe_vpn_concentrators ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpnConcentrators input
let describe_vpn_connections ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpnConnections input
let describe_vpn_gateways ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeVpnGateways input
let detach_classic_link_vpc ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DetachClassicLinkVpc input
let detach_internet_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DetachInternetGateway input
let detach_network_interface ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DetachNetworkInterface input
let detach_verified_access_trust_provider ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DetachVerifiedAccessTrustProvider input
let detach_volume ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DetachVolume input
let detach_vpn_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DetachVpnGateway input
let disable_address_transfer ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableAddressTransfer input
let disable_allowed_images_settings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableAllowedImagesSettings input
let disable_aws_network_performance_metric_subscription ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.DisableAwsNetworkPerformanceMetricSubscription input
let disable_capacity_manager ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableCapacityManager input
let disable_ebs_encryption_by_default ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableEbsEncryptionByDefault input
let disable_fast_launch ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableFastLaunch input
let disable_fast_snapshot_restores ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableFastSnapshotRestores input
let disable_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableImage input
let disable_image_block_public_access ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableImageBlockPublicAccess input
let disable_image_deprecation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableImageDeprecation input
let disable_image_deregistration_protection ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableImageDeregistrationProtection
    input
let disable_instance_sql_ha_standby_detections ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableInstanceSqlHaStandbyDetections
    input
let disable_ipam_organization_admin_account ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableIpamOrganizationAdminAccount input
let disable_ipam_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableIpamPolicy input
let disable_route_server_propagation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableRouteServerPropagation input
let disable_serial_console_access ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableSerialConsoleAccess input
let disable_snapshot_block_public_access ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableSnapshotBlockPublicAccess input
let disable_transit_gateway_route_table_propagation ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.DisableTransitGatewayRouteTablePropagation input
let disable_vgw_route_propagation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableVgwRoutePropagation input
let disable_vpc_classic_link ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableVpcClassicLink input
let disable_vpc_classic_link_dns_support ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableVpcClassicLinkDnsSupport input
let disassociate_address ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateAddress input
let disassociate_capacity_reservation_billing_owner ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.DisassociateCapacityReservationBillingOwner input
let disassociate_client_vpn_target_network ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateClientVpnTargetNetwork input
let disassociate_enclave_certificate_iam_role ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateEnclaveCertificateIamRole
    input
let disassociate_iam_instance_profile ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateIamInstanceProfile input
let disassociate_instance_event_window ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateInstanceEventWindow input
let disassociate_ipam_byoasn ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateIpamByoasn input
let disassociate_ipam_resource_discovery ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateIpamResourceDiscovery input
let disassociate_nat_gateway_address ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateNatGatewayAddress input
let disassociate_route_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateRouteServer input
let disassociate_route_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateRouteTable input
let disassociate_security_group_vpc ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateSecurityGroupVpc input
let disassociate_subnet_cidr_block ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateSubnetCidrBlock input
let disassociate_transit_gateway_multicast_domain ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateTransitGatewayMulticastDomain
    input
let disassociate_transit_gateway_policy_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateTransitGatewayPolicyTable
    input
let disassociate_transit_gateway_route_table ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateTransitGatewayRouteTable
    input
let disassociate_trunk_interface ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateTrunkInterface input
let disassociate_vpc_cidr_block ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateVpcCidrBlock input
let enable_address_transfer ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableAddressTransfer input
let enable_allowed_images_settings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableAllowedImagesSettings input
let enable_aws_network_performance_metric_subscription ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.EnableAwsNetworkPerformanceMetricSubscription input
let enable_capacity_manager ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableCapacityManager input
let enable_ebs_encryption_by_default ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableEbsEncryptionByDefault input
let enable_fast_launch ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableFastLaunch input
let enable_fast_snapshot_restores ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableFastSnapshotRestores input
let enable_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableImage input
let enable_image_block_public_access ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableImageBlockPublicAccess input
let enable_image_deprecation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableImageDeprecation input
let enable_image_deregistration_protection ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableImageDeregistrationProtection input
let enable_instance_sql_ha_standby_detections ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableInstanceSqlHaStandbyDetections
    input
let enable_ipam_organization_admin_account ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableIpamOrganizationAdminAccount input
let enable_ipam_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableIpamPolicy input
let enable_reachability_analyzer_organization_sharing ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.EnableReachabilityAnalyzerOrganizationSharing input
let enable_route_server_propagation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableRouteServerPropagation input
let enable_serial_console_access ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableSerialConsoleAccess input
let enable_snapshot_block_public_access ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableSnapshotBlockPublicAccess input
let enable_transit_gateway_route_table_propagation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableTransitGatewayRouteTablePropagation
    input
let enable_vgw_route_propagation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableVgwRoutePropagation input
let enable_volume_i_o ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableVolumeIO input
let enable_vpc_classic_link ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableVpcClassicLink input
let enable_vpc_classic_link_dns_support ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableVpcClassicLinkDnsSupport input
let export_client_vpn_client_certificate_revocation_list ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.ExportClientVpnClientCertificateRevocationList input
let export_client_vpn_client_configuration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ExportClientVpnClientConfiguration input
let export_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ExportImage input
let export_transit_gateway_routes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ExportTransitGatewayRoutes input
let export_verified_access_instance_client_configuration ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.ExportVerifiedAccessInstanceClientConfiguration input
let get_active_vpn_tunnel_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetActiveVpnTunnelStatus input
let get_allowed_images_settings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetAllowedImagesSettings input
let get_associated_enclave_certificate_iam_roles ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetAssociatedEnclaveCertificateIamRoles
    input
let get_associated_ipv6_pool_cidrs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetAssociatedIpv6PoolCidrs input
let get_aws_network_performance_data ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetAwsNetworkPerformanceData input
let get_capacity_manager_attributes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetCapacityManagerAttributes input
let get_capacity_manager_metric_data ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetCapacityManagerMetricData input
let get_capacity_manager_metric_dimensions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetCapacityManagerMetricDimensions input
let get_capacity_manager_monitored_tag_keys ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetCapacityManagerMonitoredTagKeys input
let get_capacity_reservation_usage ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetCapacityReservationUsage input
let get_coip_pool_usage ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetCoipPoolUsage input
let get_console_output ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetConsoleOutput input
let get_console_screenshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetConsoleScreenshot input
let get_declarative_policies_report_summary ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetDeclarativePoliciesReportSummary input
let get_default_credit_specification ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetDefaultCreditSpecification input
let get_ebs_default_kms_key_id ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetEbsDefaultKmsKeyId input
let get_ebs_encryption_by_default ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetEbsEncryptionByDefault input
let get_enabled_ipam_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetEnabledIpamPolicy input
let get_flow_logs_integration_template ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetFlowLogsIntegrationTemplate input
let get_groups_for_capacity_reservation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetGroupsForCapacityReservation input
let get_host_reservation_purchase_preview ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetHostReservationPurchasePreview input
let get_image_ancestry ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetImageAncestry input
let get_image_block_public_access_state ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetImageBlockPublicAccessState input
let get_instance_metadata_defaults ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetInstanceMetadataDefaults input
let get_instance_tpm_ek_pub ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetInstanceTpmEkPub input
let get_instance_types_from_instance_requirements ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetInstanceTypesFromInstanceRequirements
    input
let get_instance_uefi_data ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetInstanceUefiData input
let get_ipam_address_history ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamAddressHistory input
let get_ipam_discovered_accounts ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamDiscoveredAccounts input
let get_ipam_discovered_public_addresses ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamDiscoveredPublicAddresses input
let get_ipam_discovered_resource_cidrs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamDiscoveredResourceCidrs input
let get_ipam_policy_allocation_rules ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamPolicyAllocationRules input
let get_ipam_policy_organization_targets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamPolicyOrganizationTargets input
let get_ipam_pool_allocations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamPoolAllocations input
let get_ipam_pool_cidrs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamPoolCidrs input
let get_ipam_prefix_list_resolver_rules ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamPrefixListResolverRules input
let get_ipam_prefix_list_resolver_version_entries ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamPrefixListResolverVersionEntries
    input
let get_ipam_prefix_list_resolver_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamPrefixListResolverVersions input
let get_ipam_resource_cidrs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIpamResourceCidrs input
let get_launch_template_data ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetLaunchTemplateData input
let get_managed_prefix_list_associations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetManagedPrefixListAssociations input
let get_managed_prefix_list_entries ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetManagedPrefixListEntries input
let get_managed_resource_visibility ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetManagedResourceVisibility input
let get_network_insights_access_scope_analysis_findings ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.GetNetworkInsightsAccessScopeAnalysisFindings input
let get_network_insights_access_scope_content ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetNetworkInsightsAccessScopeContent
    input
let get_password_data ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetPasswordData input
let get_reserved_instances_exchange_quote ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetReservedInstancesExchangeQuote input
let get_route_server_associations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetRouteServerAssociations input
let get_route_server_propagations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetRouteServerPropagations input
let get_route_server_routing_database ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetRouteServerRoutingDatabase input
let get_security_groups_for_vpc ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSecurityGroupsForVpc input
let get_serial_console_access_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSerialConsoleAccessStatus input
let get_snapshot_block_public_access_state ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSnapshotBlockPublicAccessState input
let get_spot_placement_scores ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSpotPlacementScores input
let get_subnet_cidr_reservations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSubnetCidrReservations input
let get_transit_gateway_attachment_propagations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetTransitGatewayAttachmentPropagations
    input
let get_transit_gateway_metering_policy_entries ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetTransitGatewayMeteringPolicyEntries
    input
let get_transit_gateway_multicast_domain_associations ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.GetTransitGatewayMulticastDomainAssociations input
let get_transit_gateway_policy_table_associations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetTransitGatewayPolicyTableAssociations
    input
let get_transit_gateway_policy_table_entries ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetTransitGatewayPolicyTableEntries input
let get_transit_gateway_prefix_list_references ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetTransitGatewayPrefixListReferences
    input
let get_transit_gateway_route_table_associations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetTransitGatewayRouteTableAssociations
    input
let get_transit_gateway_route_table_propagations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetTransitGatewayRouteTablePropagations
    input
let get_verified_access_endpoint_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetVerifiedAccessEndpointPolicy input
let get_verified_access_endpoint_targets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetVerifiedAccessEndpointTargets input
let get_verified_access_group_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetVerifiedAccessGroupPolicy input
let get_vpc_resources_blocking_encryption_enforcement ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.GetVpcResourcesBlockingEncryptionEnforcement input
let get_vpn_connection_device_sample_configuration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetVpnConnectionDeviceSampleConfiguration
    input
let get_vpn_connection_device_types ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetVpnConnectionDeviceTypes input
let get_vpn_tunnel_replacement_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetVpnTunnelReplacementStatus input
let import_client_vpn_client_certificate_revocation_list ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.ImportClientVpnClientCertificateRevocationList input
let import_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ImportImage input
let import_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ImportInstance input
let import_key_pair ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ImportKeyPair input
let import_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ImportSnapshot input
let import_volume ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ImportVolume input
let list_images_in_recycle_bin ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListImagesInRecycleBin input
let list_snapshots_in_recycle_bin ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListSnapshotsInRecycleBin input
let list_volumes_in_recycle_bin ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListVolumesInRecycleBin input
let lock_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.LockSnapshot input
let modify_address_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyAddressAttribute input
let modify_availability_zone_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyAvailabilityZoneGroup input
let modify_capacity_reservation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyCapacityReservation input
let modify_capacity_reservation_fleet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyCapacityReservationFleet input
let modify_client_vpn_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyClientVpnEndpoint input
let modify_default_credit_specification ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDefaultCreditSpecification input
let modify_ebs_default_kms_key_id ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyEbsDefaultKmsKeyId input
let modify_fleet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyFleet input
let modify_fpga_image_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyFpgaImageAttribute input
let modify_hosts ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyHosts input
let modify_id_format ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIdFormat input
let modify_identity_id_format ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIdentityIdFormat input
let modify_image_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyImageAttribute input
let modify_instance_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstanceAttribute input
let modify_instance_capacity_reservation_attributes ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.ModifyInstanceCapacityReservationAttributes input
let modify_instance_connect_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstanceConnectEndpoint input
let modify_instance_cpu_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstanceCpuOptions input
let modify_instance_credit_specification ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstanceCreditSpecification input
let modify_instance_event_start_time ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstanceEventStartTime input
let modify_instance_event_window ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstanceEventWindow input
let modify_instance_maintenance_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstanceMaintenanceOptions input
let modify_instance_metadata_defaults ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstanceMetadataDefaults input
let modify_instance_metadata_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstanceMetadataOptions input
let modify_instance_network_performance_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstanceNetworkPerformanceOptions
    input
let modify_instance_placement ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyInstancePlacement input
let modify_ipam ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIpam input
let modify_ipam_policy_allocation_rules ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIpamPolicyAllocationRules input
let modify_ipam_pool ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIpamPool input
let modify_ipam_prefix_list_resolver ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIpamPrefixListResolver input
let modify_ipam_prefix_list_resolver_target ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIpamPrefixListResolverTarget input
let modify_ipam_resource_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIpamResourceCidr input
let modify_ipam_resource_discovery ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIpamResourceDiscovery input
let modify_ipam_scope ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIpamScope input
let modify_launch_template ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyLaunchTemplate input
let modify_local_gateway_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyLocalGatewayRoute input
let modify_managed_prefix_list ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyManagedPrefixList input
let modify_managed_resource_visibility ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyManagedResourceVisibility input
let modify_network_interface_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyNetworkInterfaceAttribute input
let modify_private_dns_name_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyPrivateDnsNameOptions input
let modify_public_ip_dns_name_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyPublicIpDnsNameOptions input
let modify_reserved_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyReservedInstances input
let modify_route_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyRouteServer input
let modify_security_group_rules ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifySecurityGroupRules input
let modify_snapshot_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifySnapshotAttribute input
let modify_snapshot_tier ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifySnapshotTier input
let modify_spot_fleet_request ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifySpotFleetRequest input
let modify_subnet_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifySubnetAttribute input
let modify_traffic_mirror_filter_network_services ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyTrafficMirrorFilterNetworkServices
    input
let modify_traffic_mirror_filter_rule ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyTrafficMirrorFilterRule input
let modify_traffic_mirror_session ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyTrafficMirrorSession input
let modify_transit_gateway ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyTransitGateway input
let modify_transit_gateway_metering_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyTransitGatewayMeteringPolicy input
let modify_transit_gateway_prefix_list_reference ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyTransitGatewayPrefixListReference
    input
let modify_transit_gateway_vpc_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyTransitGatewayVpcAttachment input
let modify_verified_access_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVerifiedAccessEndpoint input
let modify_verified_access_endpoint_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVerifiedAccessEndpointPolicy input
let modify_verified_access_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVerifiedAccessGroup input
let modify_verified_access_group_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVerifiedAccessGroupPolicy input
let modify_verified_access_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVerifiedAccessInstance input
let modify_verified_access_instance_logging_configuration ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.ModifyVerifiedAccessInstanceLoggingConfiguration input
let modify_verified_access_trust_provider ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVerifiedAccessTrustProvider input
let modify_volume ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVolume input
let modify_volume_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVolumeAttribute input
let modify_vpc_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpcAttribute input
let modify_vpc_block_public_access_exclusion ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpcBlockPublicAccessExclusion input
let modify_vpc_block_public_access_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpcBlockPublicAccessOptions input
let modify_vpc_encryption_control ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpcEncryptionControl input
let modify_vpc_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpcEndpoint input
let modify_vpc_endpoint_connection_notification ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpcEndpointConnectionNotification
    input
let modify_vpc_endpoint_service_configuration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpcEndpointServiceConfiguration
    input
let modify_vpc_endpoint_service_payer_responsibility ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.ModifyVpcEndpointServicePayerResponsibility input
let modify_vpc_endpoint_service_permissions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpcEndpointServicePermissions input
let modify_vpc_peering_connection_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpcPeeringConnectionOptions input
let modify_vpc_tenancy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpcTenancy input
let modify_vpn_connection ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpnConnection input
let modify_vpn_connection_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpnConnectionOptions input
let modify_vpn_tunnel_certificate ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpnTunnelCertificate input
let modify_vpn_tunnel_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyVpnTunnelOptions input
let monitor_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.MonitorInstances input
let move_address_to_vpc ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.MoveAddressToVpc input
let move_byoip_cidr_to_ipam ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.MoveByoipCidrToIpam input
let move_capacity_reservation_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.MoveCapacityReservationInstances input
let provision_byoip_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ProvisionByoipCidr input
let provision_ipam_byoasn ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ProvisionIpamByoasn input
let provision_ipam_pool_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ProvisionIpamPoolCidr input
let provision_public_ipv4_pool_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ProvisionPublicIpv4PoolCidr input
let purchase_capacity_block ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PurchaseCapacityBlock input
let purchase_capacity_block_extension ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PurchaseCapacityBlockExtension input
let purchase_host_reservation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PurchaseHostReservation input
let purchase_reserved_instances_offering ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PurchaseReservedInstancesOffering input
let purchase_scheduled_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PurchaseScheduledInstances input
let reboot_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RebootInstances input
let register_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RegisterImage input
let register_instance_event_notification_attributes ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.RegisterInstanceEventNotificationAttributes input
let register_transit_gateway_multicast_group_members ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.RegisterTransitGatewayMulticastGroupMembers input
let register_transit_gateway_multicast_group_sources ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.RegisterTransitGatewayMulticastGroupSources input
let reject_capacity_reservation_billing_ownership ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RejectCapacityReservationBillingOwnership
    input
let reject_transit_gateway_client_vpn_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RejectTransitGatewayClientVpnAttachment
    input
let reject_transit_gateway_multicast_domain_associations ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.RejectTransitGatewayMulticastDomainAssociations input
let reject_transit_gateway_peering_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RejectTransitGatewayPeeringAttachment
    input
let reject_transit_gateway_vpc_attachment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RejectTransitGatewayVpcAttachment input
let reject_vpc_endpoint_connections ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RejectVpcEndpointConnections input
let reject_vpc_peering_connection ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RejectVpcPeeringConnection input
let release_address ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReleaseAddress input
let release_hosts ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReleaseHosts input
let release_ipam_pool_allocation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReleaseIpamPoolAllocation input
let replace_iam_instance_profile_association ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReplaceIamInstanceProfileAssociation
    input
let replace_image_criteria_in_allowed_images_settings ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.ReplaceImageCriteriaInAllowedImagesSettings input
let replace_network_acl_association ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReplaceNetworkAclAssociation input
let replace_network_acl_entry ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReplaceNetworkAclEntry input
let replace_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReplaceRoute input
let replace_route_table_association ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReplaceRouteTableAssociation input
let replace_transit_gateway_route ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReplaceTransitGatewayRoute input
let replace_vpn_tunnel ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReplaceVpnTunnel input
let report_instance_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ReportInstanceStatus input
let request_spot_fleet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RequestSpotFleet input
let request_spot_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RequestSpotInstances input
let reset_address_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ResetAddressAttribute input
let reset_ebs_default_kms_key_id ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ResetEbsDefaultKmsKeyId input
let reset_fpga_image_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ResetFpgaImageAttribute input
let reset_image_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ResetImageAttribute input
let reset_instance_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ResetInstanceAttribute input
let reset_network_interface_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ResetNetworkInterfaceAttribute input
let reset_snapshot_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ResetSnapshotAttribute input
let restore_address_to_classic ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreAddressToClassic input
let restore_image_from_recycle_bin ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreImageFromRecycleBin input
let restore_managed_prefix_list_version ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreManagedPrefixListVersion input
let restore_snapshot_from_recycle_bin ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreSnapshotFromRecycleBin input
let restore_snapshot_tier ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreSnapshotTier input
let restore_volume_from_recycle_bin ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreVolumeFromRecycleBin input
let revoke_client_vpn_ingress ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RevokeClientVpnIngress input
let revoke_security_group_egress ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RevokeSecurityGroupEgress input
let revoke_security_group_ingress ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RevokeSecurityGroupIngress input
let run_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RunInstances input
let run_scheduled_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RunScheduledInstances input
let search_local_gateway_routes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SearchLocalGatewayRoutes input
let search_transit_gateway_multicast_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SearchTransitGatewayMulticastGroups input
let search_transit_gateway_routes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SearchTransitGatewayRoutes input
let send_diagnostic_interrupt ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SendDiagnosticInterrupt input
let start_declarative_policies_report ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartDeclarativePoliciesReport input
let start_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartInstances input
let start_network_insights_access_scope_analysis ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartNetworkInsightsAccessScopeAnalysis
    input
let start_network_insights_analysis ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartNetworkInsightsAnalysis input
let start_vpc_endpoint_service_private_dns_verification ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.StartVpcEndpointServicePrivateDnsVerification input
let stop_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopInstances input
let terminate_client_vpn_connections ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.TerminateClientVpnConnections input
let terminate_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.TerminateInstances input
let unassign_ipv6_addresses ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UnassignIpv6Addresses input
let unassign_private_ip_addresses ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UnassignPrivateIpAddresses input
let unassign_private_nat_gateway_address ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UnassignPrivateNatGatewayAddress input
let unlock_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UnlockSnapshot input
let unmonitor_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UnmonitorInstances input
let update_capacity_manager_monitored_tag_keys ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateCapacityManagerMonitoredTagKeys
    input
let update_capacity_manager_organizations_access ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateCapacityManagerOrganizationsAccess
    input
let update_interruptible_capacity_reservation_allocation ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.UpdateInterruptibleCapacityReservationAllocation input
let update_security_group_rule_descriptions_egress ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateSecurityGroupRuleDescriptionsEgress
    input
let update_security_group_rule_descriptions_ingress ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.UpdateSecurityGroupRuleDescriptionsIngress input
let withdraw_byoip_cidr ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.WithdrawByoipCidr input