Source file cli.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
(* generated by: awso-codegen generate-all --botocore-data vendor/botocore/botocore/data -o aws --runtime-dir lib/runtime/awso --cli-dir awso-cli *)
open Core
open Async
let json_arg = Command.Arg_type.create Yojson.Safe.from_string
let call ?endpoint_url ?profile ?region f m result_to_json error_to_json =
  let region =
    match region with
    | Some region -> Some (Awso.Region.of_string region)
    | None -> None in
  (Awso_async.Cfg.get_exn ?profile ?region ()) >>=
    (fun cfg ->
       (f ?endpoint_url ?cfg:(Some cfg) m) >>=
         (fun result ->
            match result with
            | Error err ->
                (match error_to_json with
                 | None ->
                     failwithf
                       "endpoint error, but no error values defined in boto"
                       ()
                 | Some to_json ->
                     let s = (err |> to_json) |> Yojson.Safe.to_string in
                     failwithf "AWS error: %s" s ())
            | Ok result ->
                ((match result_to_json with
                  | None -> print_endline "ok response from endpoint"
                  | Some to_json ->
                      ((result |> to_json) |> Yojson.Safe.to_string) |>
                        print_endline);
                 return ())))
let add_instance_fleet =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING XmlStringMaxLen256"
       and instanceFleet =
         flag "instance-fleet" (required json_arg)
           ~doc:"JSON InstanceFleetConfig" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.add_instance_fleet
           (Values.AddInstanceFleetInput.make ~clusterId
              ~instanceFleet:(Values.InstanceFleetConfig.of_json
                                instanceFleet) ())
           (Some Values.AddInstanceFleetOutput.to_json)
           (Some Values.AddInstanceFleetOutput.error_to_json)])
let add_instance_groups =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and instanceGroups =
         flag "instance-groups" (required json_arg)
           ~doc:"JSON InstanceGroupConfigList"
       and jobFlowId =
         flag "job-flow-id" (required string)
           ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.add_instance_groups
           (Values.AddInstanceGroupsInput.make
              ~instanceGroups:(Values.InstanceGroupConfigList.of_json
                                 instanceGroups) ~jobFlowId ())
           (Some Values.AddInstanceGroupsOutput.to_json)
           (Some Values.AddInstanceGroupsOutput.error_to_json)])
let add_job_flow_steps =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and executionRoleArn =
         flag "execution-role-arn" (optional string) ~doc:"STRING ArnType"
       and jobFlowId =
         flag "job-flow-id" (required string)
           ~doc:"STRING XmlStringMaxLen256"
       and steps =
         flag "steps" (required json_arg) ~doc:"JSON StepConfigList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.add_job_flow_steps
           (Values.AddJobFlowStepsInput.make ?executionRoleArn ~jobFlowId
              ~steps:(Values.StepConfigList.of_json steps) ())
           (Some Values.AddJobFlowStepsOutput.to_json)
           (Some Values.AddJobFlowStepsOutput.error_to_json)])
let add_tags =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and resourceId =
         flag "resource-id" (required string) ~doc:"STRING ResourceId"
       and tags = flag "tags" (required json_arg) ~doc:"JSON TagList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.add_tags
           (Values.AddTagsInput.make ~resourceId
              ~tags:(Values.TagList.of_json tags) ())
           (Some Values.AddTagsOutput.to_json)
           (Some Values.AddTagsOutput.error_to_json)])
let cancel_steps =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and stepCancellationOption =
         flag "step-cancellation-option" (optional json_arg)
           ~doc:"JSON StepCancellationOption"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING XmlStringMaxLen256"
       and stepIds =
         flag "step-ids" (required json_arg) ~doc:"JSON StepIdsList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.cancel_steps
           (Values.CancelStepsInput.make
              ?stepCancellationOption:(Option.map
                                         ~f:Values.StepCancellationOption.of_json
                                         stepCancellationOption) ~clusterId
              ~stepIds:(Values.StepIdsList.of_json stepIds) ())
           (Some Values.CancelStepsOutput.to_json)
           (Some Values.CancelStepsOutput.error_to_json)])
let create_persistent_app_u_i =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and eMRContainersConfig =
         flag "e-m-r-containers-config" (optional json_arg)
           ~doc:"JSON EMRContainersConfig"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and xReferer = flag "x-referer" (optional string) ~doc:"STRING String"
       and profilerType =
         flag "profiler-type" (optional json_arg) ~doc:"JSON ProfilerType"
       and targetResourceArn =
         flag "target-resource-arn" (required string) ~doc:"STRING ArnType" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_persistent_app_u_i
           (Values.CreatePersistentAppUIInput.make
              ?eMRContainersConfig:(Option.map
                                      ~f:Values.EMRContainersConfig.of_json
                                      eMRContainersConfig)
              ?tags:(Option.map ~f:Values.TagList.of_json tags) ?xReferer
              ?profilerType:(Option.map ~f:Values.ProfilerType.of_json
                               profilerType) ~targetResourceArn ())
           (Some Values.CreatePersistentAppUIOutput.to_json)
           (Some Values.CreatePersistentAppUIOutput.error_to_json)])
let create_security_configuration =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and name = flag "name" (required string) ~doc:"STRING XmlString"
       and securityConfiguration =
         flag "security-configuration" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_security_configuration
           (Values.CreateSecurityConfigurationInput.make ~name
              ~securityConfiguration ())
           (Some Values.CreateSecurityConfigurationOutput.to_json)
           (Some Values.CreateSecurityConfigurationOutput.error_to_json)])
let create_studio =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and description =
         flag "description" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and userRole =
         flag "user-role" (optional string) ~doc:"STRING XmlString"
       and idpAuthUrl =
         flag "idp-auth-url" (optional string) ~doc:"STRING XmlString"
       and idpRelayStateParameterName =
         flag "idp-relay-state-parameter-name" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and trustedIdentityPropagationEnabled =
         flag "trusted-identity-propagation-enabled" (optional bool)
           ~doc:"BOOL BooleanObject"
       and idcUserAssignment =
         flag "idc-user-assignment" (optional json_arg)
           ~doc:"JSON IdcUserAssignment"
       and idcInstanceArn =
         flag "idc-instance-arn" (optional string) ~doc:"STRING ArnType"
       and encryptionKeyArn =
         flag "encryption-key-arn" (optional string) ~doc:"STRING XmlString"
       and name =
         flag "name" (required string) ~doc:"STRING XmlStringMaxLen256"
       and authMode =
         flag "auth-mode" (required json_arg) ~doc:"JSON AuthMode"
       and vpcId =
         flag "vpc-id" (required string) ~doc:"STRING XmlStringMaxLen256"
       and subnetIds =
         flag "subnet-ids" (required json_arg) ~doc:"JSON SubnetIdList"
       and serviceRole =
         flag "service-role" (required string) ~doc:"STRING XmlString"
       and workspaceSecurityGroupId =
         flag "workspace-security-group-id" (required string)
           ~doc:"STRING XmlStringMaxLen256"
       and engineSecurityGroupId =
         flag "engine-security-group-id" (required string)
           ~doc:"STRING XmlStringMaxLen256"
       and defaultS3Location =
         flag "default-s3-location" (required string) ~doc:"STRING XmlString" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_studio
           (Values.CreateStudioInput.make ?description ?userRole ?idpAuthUrl
              ?idpRelayStateParameterName
              ?tags:(Option.map ~f:Values.TagList.of_json tags)
              ?trustedIdentityPropagationEnabled
              ?idcUserAssignment:(Option.map
                                    ~f:Values.IdcUserAssignment.of_json
                                    idcUserAssignment) ?idcInstanceArn
              ?encryptionKeyArn ~name
              ~authMode:(Values.AuthMode.of_json authMode) ~vpcId
              ~subnetIds:(Values.SubnetIdList.of_json subnetIds) ~serviceRole
              ~workspaceSecurityGroupId ~engineSecurityGroupId
              ~defaultS3Location ()) (Some Values.CreateStudioOutput.to_json)
           (Some Values.CreateStudioOutput.error_to_json)])
let create_studio_session_mapping =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and identityId =
         flag "identity-id" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and identityName =
         flag "identity-name" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and studioId =
         flag "studio-id" (required string) ~doc:"STRING XmlStringMaxLen256"
       and identityType =
         flag "identity-type" (required json_arg) ~doc:"JSON IdentityType"
       and sessionPolicyArn =
         flag "session-policy-arn" (required string)
           ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_studio_session_mapping
           (Values.CreateStudioSessionMappingInput.make ?identityId
              ?identityName ~studioId
              ~identityType:(Values.IdentityType.of_json identityType)
              ~sessionPolicyArn ()) None None])
let delete_security_configuration =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and name = flag "name" (required string) ~doc:"STRING XmlString" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.delete_security_configuration
           (Values.DeleteSecurityConfigurationInput.make ~name ())
           (Some Values.DeleteSecurityConfigurationOutput.to_json)
           (Some Values.DeleteSecurityConfigurationOutput.error_to_json)])
let delete_studio =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and studioId =
         flag "studio-id" (required string) ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.delete_studio (Values.DeleteStudioInput.make ~studioId ()) None
           None])
let delete_studio_session_mapping =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and identityId =
         flag "identity-id" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and identityName =
         flag "identity-name" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and studioId =
         flag "studio-id" (required string) ~doc:"STRING XmlStringMaxLen256"
       and identityType =
         flag "identity-type" (required json_arg) ~doc:"JSON IdentityType" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.delete_studio_session_mapping
           (Values.DeleteStudioSessionMappingInput.make ?identityId
              ?identityName ~studioId
              ~identityType:(Values.IdentityType.of_json identityType) ())
           None None])
let describe_cluster =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_cluster
           (Values.DescribeClusterInput.make ~clusterId ())
           (Some Values.DescribeClusterOutput.to_json)
           (Some Values.DescribeClusterOutput.error_to_json)])
let describe_job_flows =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and createdAfter =
         flag "created-after" (optional json_arg) ~doc:"JSON Date"
       and createdBefore =
         flag "created-before" (optional json_arg) ~doc:"JSON Date"
       and jobFlowIds =
         flag "job-flow-ids" (optional json_arg) ~doc:"JSON XmlStringList"
       and jobFlowStates =
         flag "job-flow-states" (optional json_arg)
           ~doc:"JSON JobFlowExecutionStateList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_job_flows
           (Values.DescribeJobFlowsInput.make
              ?createdAfter:(Option.map ~f:Values.Date.of_json createdAfter)
              ?createdBefore:(Option.map ~f:Values.Date.of_json createdBefore)
              ?jobFlowIds:(Option.map ~f:Values.XmlStringList.of_json
                             jobFlowIds)
              ?jobFlowStates:(Option.map
                                ~f:Values.JobFlowExecutionStateList.of_json
                                jobFlowStates) ())
           (Some Values.DescribeJobFlowsOutput.to_json)
           (Some Values.DescribeJobFlowsOutput.error_to_json)])
let describe_notebook_execution =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and notebookExecutionId =
         flag "notebook-execution-id" (required string)
           ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_notebook_execution
           (Values.DescribeNotebookExecutionInput.make ~notebookExecutionId
              ()) (Some Values.DescribeNotebookExecutionOutput.to_json)
           (Some Values.DescribeNotebookExecutionOutput.error_to_json)])
let describe_persistent_app_u_i =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and persistentAppUIId =
         flag "persistent-app-u-i-id" (required string)
           ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_persistent_app_u_i
           (Values.DescribePersistentAppUIInput.make ~persistentAppUIId ())
           (Some Values.DescribePersistentAppUIOutput.to_json)
           (Some Values.DescribePersistentAppUIOutput.error_to_json)])
let describe_release_label =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and releaseLabel =
         flag "release-label" (optional string) ~doc:"STRING String"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT MaxResultsNumber" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_release_label
           (Values.DescribeReleaseLabelInput.make ?releaseLabel ?nextToken
              ?maxResults ())
           (Some Values.DescribeReleaseLabelOutput.to_json)
           (Some Values.DescribeReleaseLabelOutput.error_to_json)])
let describe_security_configuration =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and name = flag "name" (required string) ~doc:"STRING XmlString" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_security_configuration
           (Values.DescribeSecurityConfigurationInput.make ~name ())
           (Some Values.DescribeSecurityConfigurationOutput.to_json)
           (Some Values.DescribeSecurityConfigurationOutput.error_to_json)])
let describe_step =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId"
       and stepId = flag "step-id" (required string) ~doc:"STRING StepId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_step
           (Values.DescribeStepInput.make ~clusterId ~stepId ())
           (Some Values.DescribeStepOutput.to_json)
           (Some Values.DescribeStepOutput.error_to_json)])
let describe_studio =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and studioId =
         flag "studio-id" (required string) ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_studio (Values.DescribeStudioInput.make ~studioId ())
           (Some Values.DescribeStudioOutput.to_json)
           (Some Values.DescribeStudioOutput.error_to_json)])
let get_auto_termination_policy =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.get_auto_termination_policy
           (Values.GetAutoTerminationPolicyInput.make ~clusterId ())
           (Some Values.GetAutoTerminationPolicyOutput.to_json)
           (Some Values.GetAutoTerminationPolicyOutput.error_to_json)])
let get_block_public_access_configuration =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and () = return () in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.get_block_public_access_configuration
           (Values.GetBlockPublicAccessConfigurationInput.make ())
           (Some Values.GetBlockPublicAccessConfigurationOutput.to_json)
           (Some Values.GetBlockPublicAccessConfigurationOutput.error_to_json)])
let get_cluster_session_credentials =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and executionRoleArn =
         flag "execution-role-arn" (optional string) ~doc:"STRING ArnType"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.get_cluster_session_credentials
           (Values.GetClusterSessionCredentialsInput.make ?executionRoleArn
              ~clusterId ())
           (Some Values.GetClusterSessionCredentialsOutput.to_json)
           (Some Values.GetClusterSessionCredentialsOutput.error_to_json)])
let get_managed_scaling_policy =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.get_managed_scaling_policy
           (Values.GetManagedScalingPolicyInput.make ~clusterId ())
           (Some Values.GetManagedScalingPolicyOutput.to_json)
           (Some Values.GetManagedScalingPolicyOutput.error_to_json)])
let get_on_cluster_app_u_i_presigned_u_r_l =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and onClusterAppUIType =
         flag "on-cluster-app-u-i-type" (optional json_arg)
           ~doc:"JSON OnClusterAppUIType"
       and applicationId =
         flag "application-id" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and dryRun = flag "dry-run" (optional bool) ~doc:"BOOL BooleanObject"
       and executionRoleArn =
         flag "execution-role-arn" (optional string) ~doc:"STRING ArnType"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.get_on_cluster_app_u_i_presigned_u_r_l
           (Values.GetOnClusterAppUIPresignedURLInput.make
              ?onClusterAppUIType:(Option.map
                                     ~f:Values.OnClusterAppUIType.of_json
                                     onClusterAppUIType) ?applicationId
              ?dryRun ?executionRoleArn ~clusterId ())
           (Some Values.GetOnClusterAppUIPresignedURLOutput.to_json)
           (Some Values.GetOnClusterAppUIPresignedURLOutput.error_to_json)])
let get_persistent_app_u_i_presigned_u_r_l =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and persistentAppUIType =
         flag "persistent-app-u-i-type" (optional json_arg)
           ~doc:"JSON PersistentAppUIType"
       and applicationId =
         flag "application-id" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and authProxyCall =
         flag "auth-proxy-call" (optional bool) ~doc:"BOOL BooleanObject"
       and executionRoleArn =
         flag "execution-role-arn" (optional string) ~doc:"STRING ArnType"
       and persistentAppUIId =
         flag "persistent-app-u-i-id" (required string)
           ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.get_persistent_app_u_i_presigned_u_r_l
           (Values.GetPersistentAppUIPresignedURLInput.make
              ?persistentAppUIType:(Option.map
                                      ~f:Values.PersistentAppUIType.of_json
                                      persistentAppUIType) ?applicationId
              ?authProxyCall ?executionRoleArn ~persistentAppUIId ())
           (Some Values.GetPersistentAppUIPresignedURLOutput.to_json)
           (Some Values.GetPersistentAppUIPresignedURLOutput.error_to_json)])
let get_studio_session_mapping =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and identityId =
         flag "identity-id" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and identityName =
         flag "identity-name" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and studioId =
         flag "studio-id" (required string) ~doc:"STRING XmlStringMaxLen256"
       and identityType =
         flag "identity-type" (required json_arg) ~doc:"JSON IdentityType" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.get_studio_session_mapping
           (Values.GetStudioSessionMappingInput.make ?identityId
              ?identityName ~studioId
              ~identityType:(Values.IdentityType.of_json identityType) ())
           (Some Values.GetStudioSessionMappingOutput.to_json)
           (Some Values.GetStudioSessionMappingOutput.error_to_json)])
let list_bootstrap_actions =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and marker = flag "marker" (optional string) ~doc:"STRING Marker"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_bootstrap_actions
           (Values.ListBootstrapActionsInput.make ?marker ~clusterId ())
           (Some Values.ListBootstrapActionsOutput.to_json)
           (Some Values.ListBootstrapActionsOutput.error_to_json)])
let list_clusters =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and createdAfter =
         flag "created-after" (optional json_arg) ~doc:"JSON Date"
       and createdBefore =
         flag "created-before" (optional json_arg) ~doc:"JSON Date"
       and clusterStates =
         flag "cluster-states" (optional json_arg)
           ~doc:"JSON ClusterStateList"
       and marker = flag "marker" (optional string) ~doc:"STRING Marker" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_clusters
           (Values.ListClustersInput.make
              ?createdAfter:(Option.map ~f:Values.Date.of_json createdAfter)
              ?createdBefore:(Option.map ~f:Values.Date.of_json createdBefore)
              ?clusterStates:(Option.map ~f:Values.ClusterStateList.of_json
                                clusterStates) ?marker ())
           (Some Values.ListClustersOutput.to_json)
           (Some Values.ListClustersOutput.error_to_json)])
let list_instance_fleets =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and marker = flag "marker" (optional string) ~doc:"STRING Marker"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_instance_fleets
           (Values.ListInstanceFleetsInput.make ?marker ~clusterId ())
           (Some Values.ListInstanceFleetsOutput.to_json)
           (Some Values.ListInstanceFleetsOutput.error_to_json)])
let list_instance_groups =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and marker = flag "marker" (optional string) ~doc:"STRING Marker"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_instance_groups
           (Values.ListInstanceGroupsInput.make ?marker ~clusterId ())
           (Some Values.ListInstanceGroupsOutput.to_json)
           (Some Values.ListInstanceGroupsOutput.error_to_json)])
let list_instances =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and instanceGroupId =
         flag "instance-group-id" (optional string)
           ~doc:"STRING InstanceGroupId"
       and instanceGroupTypes =
         flag "instance-group-types" (optional json_arg)
           ~doc:"JSON InstanceGroupTypeList"
       and instanceFleetId =
         flag "instance-fleet-id" (optional string)
           ~doc:"STRING InstanceFleetId"
       and instanceFleetType =
         flag "instance-fleet-type" (optional json_arg)
           ~doc:"JSON InstanceFleetType"
       and instanceStates =
         flag "instance-states" (optional json_arg)
           ~doc:"JSON InstanceStateList"
       and marker = flag "marker" (optional string) ~doc:"STRING Marker"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_instances
           (Values.ListInstancesInput.make ?instanceGroupId
              ?instanceGroupTypes:(Option.map
                                     ~f:Values.InstanceGroupTypeList.of_json
                                     instanceGroupTypes) ?instanceFleetId
              ?instanceFleetType:(Option.map
                                    ~f:Values.InstanceFleetType.of_json
                                    instanceFleetType)
              ?instanceStates:(Option.map ~f:Values.InstanceStateList.of_json
                                 instanceStates) ?marker ~clusterId ())
           (Some Values.ListInstancesOutput.to_json)
           (Some Values.ListInstancesOutput.error_to_json)])
let list_notebook_executions =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and editorId =
         flag "editor-id" (optional string) ~doc:"STRING XmlStringMaxLen256"
       and status =
         flag "status" (optional json_arg)
           ~doc:"JSON NotebookExecutionStatus"
       and from = flag "from" (optional json_arg) ~doc:"JSON Date"
       and to_ = flag "to-" (optional json_arg) ~doc:"JSON Date"
       and marker = flag "marker" (optional string) ~doc:"STRING Marker"
       and executionEngineId =
         flag "execution-engine-id" (optional string) ~doc:"STRING XmlString" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_notebook_executions
           (Values.ListNotebookExecutionsInput.make ?editorId
              ?status:(Option.map ~f:Values.NotebookExecutionStatus.of_json
                         status)
              ?from:(Option.map ~f:Values.Date.of_json from)
              ?to_:(Option.map ~f:Values.Date.of_json to_) ?marker
              ?executionEngineId ())
           (Some Values.ListNotebookExecutionsOutput.to_json)
           (Some Values.ListNotebookExecutionsOutput.error_to_json)])
let list_release_labels =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and filters =
         flag "filters" (optional json_arg) ~doc:"JSON ReleaseLabelFilter"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT MaxResultsNumber" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_release_labels
           (Values.ListReleaseLabelsInput.make
              ?filters:(Option.map ~f:Values.ReleaseLabelFilter.of_json
                          filters) ?nextToken ?maxResults ())
           (Some Values.ListReleaseLabelsOutput.to_json)
           (Some Values.ListReleaseLabelsOutput.error_to_json)])
let list_security_configurations =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and marker = flag "marker" (optional string) ~doc:"STRING Marker" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_security_configurations
           (Values.ListSecurityConfigurationsInput.make ?marker ())
           (Some Values.ListSecurityConfigurationsOutput.to_json)
           (Some Values.ListSecurityConfigurationsOutput.error_to_json)])
let list_steps =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and stepStates =
         flag "step-states" (optional json_arg) ~doc:"JSON StepStateList"
       and stepIds =
         flag "step-ids" (optional json_arg) ~doc:"JSON XmlStringList"
       and marker = flag "marker" (optional string) ~doc:"STRING Marker"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_steps
           (Values.ListStepsInput.make
              ?stepStates:(Option.map ~f:Values.StepStateList.of_json
                             stepStates)
              ?stepIds:(Option.map ~f:Values.XmlStringList.of_json stepIds)
              ?marker ~clusterId ()) (Some Values.ListStepsOutput.to_json)
           (Some Values.ListStepsOutput.error_to_json)])
let list_studio_session_mappings =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and studioId =
         flag "studio-id" (optional string) ~doc:"STRING XmlStringMaxLen256"
       and identityType =
         flag "identity-type" (optional json_arg) ~doc:"JSON IdentityType"
       and marker = flag "marker" (optional string) ~doc:"STRING Marker" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_studio_session_mappings
           (Values.ListStudioSessionMappingsInput.make ?studioId
              ?identityType:(Option.map ~f:Values.IdentityType.of_json
                               identityType) ?marker ())
           (Some Values.ListStudioSessionMappingsOutput.to_json)
           (Some Values.ListStudioSessionMappingsOutput.error_to_json)])
let list_studios =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and marker = flag "marker" (optional string) ~doc:"STRING Marker" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_studios (Values.ListStudiosInput.make ?marker ())
           (Some Values.ListStudiosOutput.to_json)
           (Some Values.ListStudiosOutput.error_to_json)])
let list_supported_instance_types =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and marker = flag "marker" (optional string) ~doc:"STRING String"
       and releaseLabel =
         flag "release-label" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_supported_instance_types
           (Values.ListSupportedInstanceTypesInput.make ?marker ~releaseLabel
              ()) (Some Values.ListSupportedInstanceTypesOutput.to_json)
           (Some Values.ListSupportedInstanceTypesOutput.error_to_json)])
let modify_cluster =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and stepConcurrencyLevel =
         flag "step-concurrency-level" (optional int) ~doc:"INT Integer"
       and extendedSupport =
         flag "extended-support" (optional bool) ~doc:"BOOL BooleanObject"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.modify_cluster
           (Values.ModifyClusterInput.make ?stepConcurrencyLevel
              ?extendedSupport ~clusterId ())
           (Some Values.ModifyClusterOutput.to_json)
           (Some Values.ModifyClusterOutput.error_to_json)])
let modify_instance_fleet =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId"
       and instanceFleet =
         flag "instance-fleet" (required json_arg)
           ~doc:"JSON InstanceFleetModifyConfig" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.modify_instance_fleet
           (Values.ModifyInstanceFleetInput.make ~clusterId
              ~instanceFleet:(Values.InstanceFleetModifyConfig.of_json
                                instanceFleet) ()) None None])
let modify_instance_groups =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (optional string) ~doc:"STRING ClusterId"
       and instanceGroups =
         flag "instance-groups" (optional json_arg)
           ~doc:"JSON InstanceGroupModifyConfigList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.modify_instance_groups
           (Values.ModifyInstanceGroupsInput.make ?clusterId
              ?instanceGroups:(Option.map
                                 ~f:Values.InstanceGroupModifyConfigList.of_json
                                 instanceGroups) ()) None None])
let put_auto_scaling_policy =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId"
       and instanceGroupId =
         flag "instance-group-id" (required string)
           ~doc:"STRING InstanceGroupId"
       and autoScalingPolicy =
         flag "auto-scaling-policy" (required json_arg)
           ~doc:"JSON AutoScalingPolicy" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.put_auto_scaling_policy
           (Values.PutAutoScalingPolicyInput.make ~clusterId ~instanceGroupId
              ~autoScalingPolicy:(Values.AutoScalingPolicy.of_json
                                    autoScalingPolicy) ())
           (Some Values.PutAutoScalingPolicyOutput.to_json)
           (Some Values.PutAutoScalingPolicyOutput.error_to_json)])
let put_auto_termination_policy =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and autoTerminationPolicy =
         flag "auto-termination-policy" (optional json_arg)
           ~doc:"JSON AutoTerminationPolicy"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.put_auto_termination_policy
           (Values.PutAutoTerminationPolicyInput.make
              ?autoTerminationPolicy:(Option.map
                                        ~f:Values.AutoTerminationPolicy.of_json
                                        autoTerminationPolicy) ~clusterId ())
           (Some Values.PutAutoTerminationPolicyOutput.to_json)
           (Some Values.PutAutoTerminationPolicyOutput.error_to_json)])
let put_block_public_access_configuration =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and blockPublicAccessConfiguration =
         flag "block-public-access-configuration" (required json_arg)
           ~doc:"JSON BlockPublicAccessConfiguration" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.put_block_public_access_configuration
           (Values.PutBlockPublicAccessConfigurationInput.make
              ~blockPublicAccessConfiguration:(Values.BlockPublicAccessConfiguration.of_json
                                                 blockPublicAccessConfiguration)
              ())
           (Some Values.PutBlockPublicAccessConfigurationOutput.to_json)
           (Some Values.PutBlockPublicAccessConfigurationOutput.error_to_json)])
let put_managed_scaling_policy =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId"
       and managedScalingPolicy =
         flag "managed-scaling-policy" (required json_arg)
           ~doc:"JSON ManagedScalingPolicy" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.put_managed_scaling_policy
           (Values.PutManagedScalingPolicyInput.make ~clusterId
              ~managedScalingPolicy:(Values.ManagedScalingPolicy.of_json
                                       managedScalingPolicy) ())
           (Some Values.PutManagedScalingPolicyOutput.to_json)
           (Some Values.PutManagedScalingPolicyOutput.error_to_json)])
let remove_auto_scaling_policy =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId"
       and instanceGroupId =
         flag "instance-group-id" (required string)
           ~doc:"STRING InstanceGroupId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.remove_auto_scaling_policy
           (Values.RemoveAutoScalingPolicyInput.make ~clusterId
              ~instanceGroupId ())
           (Some Values.RemoveAutoScalingPolicyOutput.to_json)
           (Some Values.RemoveAutoScalingPolicyOutput.error_to_json)])
let remove_auto_termination_policy =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.remove_auto_termination_policy
           (Values.RemoveAutoTerminationPolicyInput.make ~clusterId ())
           (Some Values.RemoveAutoTerminationPolicyOutput.to_json)
           (Some Values.RemoveAutoTerminationPolicyOutput.error_to_json)])
let remove_managed_scaling_policy =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and clusterId =
         flag "cluster-id" (required string) ~doc:"STRING ClusterId" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.remove_managed_scaling_policy
           (Values.RemoveManagedScalingPolicyInput.make ~clusterId ())
           (Some Values.RemoveManagedScalingPolicyOutput.to_json)
           (Some Values.RemoveManagedScalingPolicyOutput.error_to_json)])
let remove_tags =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and resourceId =
         flag "resource-id" (required string) ~doc:"STRING ResourceId"
       and tagKeys =
         flag "tag-keys" (required json_arg) ~doc:"JSON StringList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.remove_tags
           (Values.RemoveTagsInput.make ~resourceId
              ~tagKeys:(Values.StringList.of_json tagKeys) ())
           (Some Values.RemoveTagsOutput.to_json)
           (Some Values.RemoveTagsOutput.error_to_json)])
let run_job_flow =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and logUri = flag "log-uri" (optional string) ~doc:"STRING XmlString"
       and logEncryptionKmsKeyId =
         flag "log-encryption-kms-key-id" (optional string)
           ~doc:"STRING XmlString"
       and additionalInfo =
         flag "additional-info" (optional string) ~doc:"STRING XmlString"
       and amiVersion =
         flag "ami-version" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and releaseLabel =
         flag "release-label" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and steps =
         flag "steps" (optional json_arg) ~doc:"JSON StepConfigList"
       and stepExecutionRoleArn =
         flag "step-execution-role-arn" (optional string)
           ~doc:"STRING ArnType"
       and bootstrapActions =
         flag "bootstrap-actions" (optional json_arg)
           ~doc:"JSON BootstrapActionConfigList"
       and supportedProducts =
         flag "supported-products" (optional json_arg)
           ~doc:"JSON SupportedProductsList"
       and newSupportedProducts =
         flag "new-supported-products" (optional json_arg)
           ~doc:"JSON NewSupportedProductsList"
       and applications =
         flag "applications" (optional json_arg) ~doc:"JSON ApplicationList"
       and configurations =
         flag "configurations" (optional json_arg)
           ~doc:"JSON ConfigurationList"
       and visibleToAllUsers =
         flag "visible-to-all-users" (optional bool) ~doc:"BOOL Boolean"
       and jobFlowRole =
         flag "job-flow-role" (optional string) ~doc:"STRING XmlString"
       and serviceRole =
         flag "service-role" (optional string) ~doc:"STRING XmlString"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and securityConfiguration =
         flag "security-configuration" (optional string)
           ~doc:"STRING XmlString"
       and autoScalingRole =
         flag "auto-scaling-role" (optional string) ~doc:"STRING XmlString"
       and scaleDownBehavior =
         flag "scale-down-behavior" (optional json_arg)
           ~doc:"JSON ScaleDownBehavior"
       and customAmiId =
         flag "custom-ami-id" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and ebsRootVolumeSize =
         flag "ebs-root-volume-size" (optional int) ~doc:"INT Integer"
       and repoUpgradeOnBoot =
         flag "repo-upgrade-on-boot" (optional json_arg)
           ~doc:"JSON RepoUpgradeOnBoot"
       and kerberosAttributes =
         flag "kerberos-attributes" (optional json_arg)
           ~doc:"JSON KerberosAttributes"
       and stepConcurrencyLevel =
         flag "step-concurrency-level" (optional int) ~doc:"INT Integer"
       and managedScalingPolicy =
         flag "managed-scaling-policy" (optional json_arg)
           ~doc:"JSON ManagedScalingPolicy"
       and placementGroupConfigs =
         flag "placement-group-configs" (optional json_arg)
           ~doc:"JSON PlacementGroupConfigList"
       and autoTerminationPolicy =
         flag "auto-termination-policy" (optional json_arg)
           ~doc:"JSON AutoTerminationPolicy"
       and oSReleaseLabel =
         flag "o-s-release-label" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and ebsRootVolumeIops =
         flag "ebs-root-volume-iops" (optional int) ~doc:"INT Integer"
       and ebsRootVolumeThroughput =
         flag "ebs-root-volume-throughput" (optional int) ~doc:"INT Integer"
       and extendedSupport =
         flag "extended-support" (optional bool) ~doc:"BOOL BooleanObject"
       and monitoringConfiguration =
         flag "monitoring-configuration" (optional json_arg)
           ~doc:"JSON MonitoringConfiguration"
       and name =
         flag "name" (required string) ~doc:"STRING XmlStringMaxLen256"
       and instances =
         flag "instances" (required json_arg)
           ~doc:"JSON JobFlowInstancesConfig" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.run_job_flow
           (Values.RunJobFlowInput.make ?logUri ?logEncryptionKmsKeyId
              ?additionalInfo ?amiVersion ?releaseLabel
              ?steps:(Option.map ~f:Values.StepConfigList.of_json steps)
              ?stepExecutionRoleArn
              ?bootstrapActions:(Option.map
                                   ~f:Values.BootstrapActionConfigList.of_json
                                   bootstrapActions)
              ?supportedProducts:(Option.map
                                    ~f:Values.SupportedProductsList.of_json
                                    supportedProducts)
              ?newSupportedProducts:(Option.map
                                       ~f:Values.NewSupportedProductsList.of_json
                                       newSupportedProducts)
              ?applications:(Option.map ~f:Values.ApplicationList.of_json
                               applications)
              ?configurations:(Option.map ~f:Values.ConfigurationList.of_json
                                 configurations) ?visibleToAllUsers
              ?jobFlowRole ?serviceRole
              ?tags:(Option.map ~f:Values.TagList.of_json tags)
              ?securityConfiguration ?autoScalingRole
              ?scaleDownBehavior:(Option.map
                                    ~f:Values.ScaleDownBehavior.of_json
                                    scaleDownBehavior) ?customAmiId
              ?ebsRootVolumeSize
              ?repoUpgradeOnBoot:(Option.map
                                    ~f:Values.RepoUpgradeOnBoot.of_json
                                    repoUpgradeOnBoot)
              ?kerberosAttributes:(Option.map
                                     ~f:Values.KerberosAttributes.of_json
                                     kerberosAttributes)
              ?stepConcurrencyLevel
              ?managedScalingPolicy:(Option.map
                                       ~f:Values.ManagedScalingPolicy.of_json
                                       managedScalingPolicy)
              ?placementGroupConfigs:(Option.map
                                        ~f:Values.PlacementGroupConfigList.of_json
                                        placementGroupConfigs)
              ?autoTerminationPolicy:(Option.map
                                        ~f:Values.AutoTerminationPolicy.of_json
                                        autoTerminationPolicy)
              ?oSReleaseLabel ?ebsRootVolumeIops ?ebsRootVolumeThroughput
              ?extendedSupport
              ?monitoringConfiguration:(Option.map
                                          ~f:Values.MonitoringConfiguration.of_json
                                          monitoringConfiguration) ~name
              ~instances:(Values.JobFlowInstancesConfig.of_json instances) ())
           (Some Values.RunJobFlowOutput.to_json)
           (Some Values.RunJobFlowOutput.error_to_json)])
let set_keep_job_flow_alive_when_no_steps =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and jobFlowIds =
         flag "job-flow-ids" (required json_arg) ~doc:"JSON XmlStringList"
       and keepJobFlowAliveWhenNoSteps =
         flag "keep-job-flow-alive-when-no-steps" (required bool)
           ~doc:"BOOL Boolean" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.set_keep_job_flow_alive_when_no_steps
           (Values.SetKeepJobFlowAliveWhenNoStepsInput.make
              ~jobFlowIds:(Values.XmlStringList.of_json jobFlowIds)
              ~keepJobFlowAliveWhenNoSteps ()) None None])
let set_termination_protection =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and jobFlowIds =
         flag "job-flow-ids" (required json_arg) ~doc:"JSON XmlStringList"
       and terminationProtected =
         flag "termination-protected" (required bool) ~doc:"BOOL Boolean" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.set_termination_protection
           (Values.SetTerminationProtectionInput.make
              ~jobFlowIds:(Values.XmlStringList.of_json jobFlowIds)
              ~terminationProtected ()) None None])
let set_unhealthy_node_replacement =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and jobFlowIds =
         flag "job-flow-ids" (required json_arg) ~doc:"JSON XmlStringList"
       and unhealthyNodeReplacement =
         flag "unhealthy-node-replacement" (required bool)
           ~doc:"BOOL BooleanObject" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.set_unhealthy_node_replacement
           (Values.SetUnhealthyNodeReplacementInput.make
              ~jobFlowIds:(Values.XmlStringList.of_json jobFlowIds)
              ~unhealthyNodeReplacement ()) None None])
let set_visible_to_all_users =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and jobFlowIds =
         flag "job-flow-ids" (required json_arg) ~doc:"JSON XmlStringList"
       and visibleToAllUsers =
         flag "visible-to-all-users" (required bool) ~doc:"BOOL Boolean" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.set_visible_to_all_users
           (Values.SetVisibleToAllUsersInput.make
              ~jobFlowIds:(Values.XmlStringList.of_json jobFlowIds)
              ~visibleToAllUsers ()) None None])
let start_notebook_execution =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and editorId =
         flag "editor-id" (optional string) ~doc:"STRING XmlStringMaxLen256"
       and relativePath =
         flag "relative-path" (optional string) ~doc:"STRING XmlString"
       and notebookExecutionName =
         flag "notebook-execution-name" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and notebookParams =
         flag "notebook-params" (optional string) ~doc:"STRING XmlString"
       and notebookInstanceSecurityGroupId =
         flag "notebook-instance-security-group-id" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and notebookS3Location =
         flag "notebook-s3-location" (optional json_arg)
           ~doc:"JSON NotebookS3LocationFromInput"
       and outputNotebookS3Location =
         flag "output-notebook-s3-location" (optional json_arg)
           ~doc:"JSON OutputNotebookS3LocationFromInput"
       and outputNotebookFormat =
         flag "output-notebook-format" (optional json_arg)
           ~doc:"JSON OutputNotebookFormat"
       and environmentVariables =
         flag "environment-variables" (optional json_arg)
           ~doc:"JSON EnvironmentVariablesMap"
       and executionEngine =
         flag "execution-engine" (required json_arg)
           ~doc:"JSON ExecutionEngineConfig"
       and serviceRole =
         flag "service-role" (required string) ~doc:"STRING XmlString" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.start_notebook_execution
           (Values.StartNotebookExecutionInput.make ?editorId ?relativePath
              ?notebookExecutionName ?notebookParams
              ?notebookInstanceSecurityGroupId
              ?tags:(Option.map ~f:Values.TagList.of_json tags)
              ?notebookS3Location:(Option.map
                                     ~f:Values.NotebookS3LocationFromInput.of_json
                                     notebookS3Location)
              ?outputNotebookS3Location:(Option.map
                                           ~f:Values.OutputNotebookS3LocationFromInput.of_json
                                           outputNotebookS3Location)
              ?outputNotebookFormat:(Option.map
                                       ~f:Values.OutputNotebookFormat.of_json
                                       outputNotebookFormat)
              ?environmentVariables:(Option.map
                                       ~f:Values.EnvironmentVariablesMap.of_json
                                       environmentVariables)
              ~executionEngine:(Values.ExecutionEngineConfig.of_json
                                  executionEngine) ~serviceRole ())
           (Some Values.StartNotebookExecutionOutput.to_json)
           (Some Values.StartNotebookExecutionOutput.error_to_json)])
let stop_notebook_execution =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and notebookExecutionId =
         flag "notebook-execution-id" (required string)
           ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.stop_notebook_execution
           (Values.StopNotebookExecutionInput.make ~notebookExecutionId ())
           None None])
let terminate_job_flows =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and jobFlowIds =
         flag "job-flow-ids" (required json_arg) ~doc:"JSON XmlStringList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.terminate_job_flows
           (Values.TerminateJobFlowsInput.make
              ~jobFlowIds:(Values.XmlStringList.of_json jobFlowIds) ()) None
           None])
let update_studio =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and name =
         flag "name" (optional string) ~doc:"STRING XmlStringMaxLen256"
       and description =
         flag "description" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and subnetIds =
         flag "subnet-ids" (optional json_arg) ~doc:"JSON SubnetIdList"
       and defaultS3Location =
         flag "default-s3-location" (optional string) ~doc:"STRING XmlString"
       and encryptionKeyArn =
         flag "encryption-key-arn" (optional string) ~doc:"STRING XmlString"
       and studioId =
         flag "studio-id" (required string) ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.update_studio
           (Values.UpdateStudioInput.make ?name ?description
              ?subnetIds:(Option.map ~f:Values.SubnetIdList.of_json subnetIds)
              ?defaultS3Location ?encryptionKeyArn ~studioId ()) None None])
let update_studio_session_mapping =
  Command.async ~summary:""
    ([%map_open.Command
       let cli_profile =
         flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
       and cli_region =
         flag "-cli-region" (optional string) ~doc:"REGION override region"
       and endpoint_url =
         flag "-endpoint-url" (optional string)
           ~doc:"URL override endpoint url"
       and identityId =
         flag "identity-id" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and identityName =
         flag "identity-name" (optional string)
           ~doc:"STRING XmlStringMaxLen256"
       and studioId =
         flag "studio-id" (required string) ~doc:"STRING XmlStringMaxLen256"
       and identityType =
         flag "identity-type" (required json_arg) ~doc:"JSON IdentityType"
       and sessionPolicyArn =
         flag "session-policy-arn" (required string)
           ~doc:"STRING XmlStringMaxLen256" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.update_studio_session_mapping
           (Values.UpdateStudioSessionMappingInput.make ?identityId
              ?identityName ~studioId
              ~identityType:(Values.IdentityType.of_json identityType)
              ~sessionPolicyArn ()) None None])
let main =
  Command.group
    ~summary:((Awso.Service.to_string Values.service) ^ " commands")
    [("add-instance-fleet", add_instance_fleet);
    ("add-instance-groups", add_instance_groups);
    ("add-job-flow-steps", add_job_flow_steps);
    ("add-tags", add_tags);
    ("cancel-steps", cancel_steps);
    ("create-persistent-app-u-i", create_persistent_app_u_i);
    ("create-security-configuration", create_security_configuration);
    ("create-studio", create_studio);
    ("create-studio-session-mapping", create_studio_session_mapping);
    ("delete-security-configuration", delete_security_configuration);
    ("delete-studio", delete_studio);
    ("delete-studio-session-mapping", delete_studio_session_mapping);
    ("describe-cluster", describe_cluster);
    ("describe-job-flows", describe_job_flows);
    ("describe-notebook-execution", describe_notebook_execution);
    ("describe-persistent-app-u-i", describe_persistent_app_u_i);
    ("describe-release-label", describe_release_label);
    ("describe-security-configuration", describe_security_configuration);
    ("describe-step", describe_step);
    ("describe-studio", describe_studio);
    ("get-auto-termination-policy", get_auto_termination_policy);
    ("get-block-public-access-configuration",
      get_block_public_access_configuration);
    ("get-cluster-session-credentials", get_cluster_session_credentials);
    ("get-managed-scaling-policy", get_managed_scaling_policy);
    ("get-on-cluster-app-u-i-presigned-u-r-l",
      get_on_cluster_app_u_i_presigned_u_r_l);
    ("get-persistent-app-u-i-presigned-u-r-l",
      get_persistent_app_u_i_presigned_u_r_l);
    ("get-studio-session-mapping", get_studio_session_mapping);
    ("list-bootstrap-actions", list_bootstrap_actions);
    ("list-clusters", list_clusters);
    ("list-instance-fleets", list_instance_fleets);
    ("list-instance-groups", list_instance_groups);
    ("list-instances", list_instances);
    ("list-notebook-executions", list_notebook_executions);
    ("list-release-labels", list_release_labels);
    ("list-security-configurations", list_security_configurations);
    ("list-steps", list_steps);
    ("list-studio-session-mappings", list_studio_session_mappings);
    ("list-studios", list_studios);
    ("list-supported-instance-types", list_supported_instance_types);
    ("modify-cluster", modify_cluster);
    ("modify-instance-fleet", modify_instance_fleet);
    ("modify-instance-groups", modify_instance_groups);
    ("put-auto-scaling-policy", put_auto_scaling_policy);
    ("put-auto-termination-policy", put_auto_termination_policy);
    ("put-block-public-access-configuration",
      put_block_public_access_configuration);
    ("put-managed-scaling-policy", put_managed_scaling_policy);
    ("remove-auto-scaling-policy", remove_auto_scaling_policy);
    ("remove-auto-termination-policy", remove_auto_termination_policy);
    ("remove-managed-scaling-policy", remove_managed_scaling_policy);
    ("remove-tags", remove_tags);
    ("run-job-flow", run_job_flow);
    ("set-keep-job-flow-alive-when-no-steps",
      set_keep_job_flow_alive_when_no_steps);
    ("set-termination-protection", set_termination_protection);
    ("set-unhealthy-node-replacement", set_unhealthy_node_replacement);
    ("set-visible-to-all-users", set_visible_to_all_users);
    ("start-notebook-execution", start_notebook_execution);
    ("stop-notebook-execution", stop_notebook_execution);
    ("terminate-job-flows", terminate_job_flows);
    ("update-studio", update_studio);
    ("update-studio-session-mapping", update_studio_session_mapping)]