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
(* 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 batch_update_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 serviceUpdate =
         flag "service-update" (optional json_arg)
           ~doc:"JSON ServiceUpdateRequest"
       and clusterNames =
         flag "cluster-names" (required json_arg) ~doc:"JSON ClusterNameList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.batch_update_cluster
           (Values.BatchUpdateClusterRequest.make
              ?serviceUpdate:(Option.map
                                ~f:Values.ServiceUpdateRequest.of_json
                                serviceUpdate)
              ~clusterNames:(Values.ClusterNameList.of_json clusterNames) ())
           (Some Values.BatchUpdateClusterResponse.to_json)
           (Some Values.BatchUpdateClusterResponse.error_to_json)])
let copy_snapshot =
  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 targetBucket =
         flag "target-bucket" (optional string) ~doc:"STRING TargetBucket"
       and kmsKeyId =
         flag "kms-key-id" (optional string) ~doc:"STRING KmsKeyId"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and sourceSnapshotName =
         flag "source-snapshot-name" (required string) ~doc:"STRING String"
       and targetSnapshotName =
         flag "target-snapshot-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.copy_snapshot
           (Values.CopySnapshotRequest.make ?targetBucket ?kmsKeyId
              ?tags:(Option.map ~f:Values.TagList.of_json tags)
              ~sourceSnapshotName ~targetSnapshotName ())
           (Some Values.CopySnapshotResponse.to_json)
           (Some Values.CopySnapshotResponse.error_to_json)])
let create_a_c_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 userNames =
         flag "user-names" (optional json_arg) ~doc:"JSON UserNameListInput"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and aCLName = flag "a-c-l-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_a_c_l
           (Values.CreateACLRequest.make
              ?userNames:(Option.map ~f:Values.UserNameListInput.of_json
                            userNames)
              ?tags:(Option.map ~f:Values.TagList.of_json tags) ~aCLName ())
           (Some Values.CreateACLResponse.to_json)
           (Some Values.CreateACLResponse.error_to_json)])
let create_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 multiRegionClusterName =
         flag "multi-region-cluster-name" (optional string)
           ~doc:"STRING String"
       and parameterGroupName =
         flag "parameter-group-name" (optional string) ~doc:"STRING String"
       and description =
         flag "description" (optional string) ~doc:"STRING String"
       and numShards =
         flag "num-shards" (optional int) ~doc:"INT IntegerOptional"
       and numReplicasPerShard =
         flag "num-replicas-per-shard" (optional int)
           ~doc:"INT IntegerOptional"
       and subnetGroupName =
         flag "subnet-group-name" (optional string) ~doc:"STRING String"
       and securityGroupIds =
         flag "security-group-ids" (optional json_arg)
           ~doc:"JSON SecurityGroupIdsList"
       and maintenanceWindow =
         flag "maintenance-window" (optional string) ~doc:"STRING String"
       and port = flag "port" (optional int) ~doc:"INT IntegerOptional"
       and snsTopicArn =
         flag "sns-topic-arn" (optional string) ~doc:"STRING String"
       and tLSEnabled =
         flag "t-l-s-enabled" (optional bool) ~doc:"BOOL BooleanOptional"
       and kmsKeyId =
         flag "kms-key-id" (optional string) ~doc:"STRING String"
       and snapshotArns =
         flag "snapshot-arns" (optional json_arg)
           ~doc:"JSON SnapshotArnsList"
       and snapshotName =
         flag "snapshot-name" (optional string) ~doc:"STRING String"
       and snapshotRetentionLimit =
         flag "snapshot-retention-limit" (optional int)
           ~doc:"INT IntegerOptional"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and snapshotWindow =
         flag "snapshot-window" (optional string) ~doc:"STRING String"
       and engine = flag "engine" (optional string) ~doc:"STRING String"
       and engineVersion =
         flag "engine-version" (optional string) ~doc:"STRING String"
       and autoMinorVersionUpgrade =
         flag "auto-minor-version-upgrade" (optional bool)
           ~doc:"BOOL BooleanOptional"
       and dataTiering =
         flag "data-tiering" (optional bool) ~doc:"BOOL BooleanOptional"
       and networkType =
         flag "network-type" (optional json_arg) ~doc:"JSON NetworkType"
       and ipDiscovery =
         flag "ip-discovery" (optional json_arg) ~doc:"JSON IpDiscovery"
       and clusterName =
         flag "cluster-name" (required string) ~doc:"STRING String"
       and nodeType = flag "node-type" (required string) ~doc:"STRING String"
       and aCLName =
         flag "a-c-l-name" (required string) ~doc:"STRING ACLName" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_cluster
           (Values.CreateClusterRequest.make ?multiRegionClusterName
              ?parameterGroupName ?description ?numShards
              ?numReplicasPerShard ?subnetGroupName
              ?securityGroupIds:(Option.map
                                   ~f:Values.SecurityGroupIdsList.of_json
                                   securityGroupIds) ?maintenanceWindow ?port
              ?snsTopicArn ?tLSEnabled ?kmsKeyId
              ?snapshotArns:(Option.map ~f:Values.SnapshotArnsList.of_json
                               snapshotArns) ?snapshotName
              ?snapshotRetentionLimit
              ?tags:(Option.map ~f:Values.TagList.of_json tags)
              ?snapshotWindow ?engine ?engineVersion ?autoMinorVersionUpgrade
              ?dataTiering
              ?networkType:(Option.map ~f:Values.NetworkType.of_json
                              networkType)
              ?ipDiscovery:(Option.map ~f:Values.IpDiscovery.of_json
                              ipDiscovery) ~clusterName ~nodeType ~aCLName ())
           (Some Values.CreateClusterResponse.to_json)
           (Some Values.CreateClusterResponse.error_to_json)])
let create_multi_region_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 description =
         flag "description" (optional string) ~doc:"STRING String"
       and engine = flag "engine" (optional string) ~doc:"STRING String"
       and engineVersion =
         flag "engine-version" (optional string) ~doc:"STRING String"
       and multiRegionParameterGroupName =
         flag "multi-region-parameter-group-name" (optional string)
           ~doc:"STRING String"
       and numShards =
         flag "num-shards" (optional int) ~doc:"INT IntegerOptional"
       and tLSEnabled =
         flag "t-l-s-enabled" (optional bool) ~doc:"BOOL BooleanOptional"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and multiRegionClusterNameSuffix =
         flag "multi-region-cluster-name-suffix" (required string)
           ~doc:"STRING String"
       and nodeType = flag "node-type" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_multi_region_cluster
           (Values.CreateMultiRegionClusterRequest.make ?description ?engine
              ?engineVersion ?multiRegionParameterGroupName ?numShards
              ?tLSEnabled ?tags:(Option.map ~f:Values.TagList.of_json tags)
              ~multiRegionClusterNameSuffix ~nodeType ())
           (Some Values.CreateMultiRegionClusterResponse.to_json)
           (Some Values.CreateMultiRegionClusterResponse.error_to_json)])
let create_parameter_group =
  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 String"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and parameterGroupName =
         flag "parameter-group-name" (required string) ~doc:"STRING String"
       and family = flag "family" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_parameter_group
           (Values.CreateParameterGroupRequest.make ?description
              ?tags:(Option.map ~f:Values.TagList.of_json tags)
              ~parameterGroupName ~family ())
           (Some Values.CreateParameterGroupResponse.to_json)
           (Some Values.CreateParameterGroupResponse.error_to_json)])
let create_snapshot =
  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 kmsKeyId =
         flag "kms-key-id" (optional string) ~doc:"STRING String"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and clusterName =
         flag "cluster-name" (required string) ~doc:"STRING String"
       and snapshotName =
         flag "snapshot-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_snapshot
           (Values.CreateSnapshotRequest.make ?kmsKeyId
              ?tags:(Option.map ~f:Values.TagList.of_json tags) ~clusterName
              ~snapshotName ()) (Some Values.CreateSnapshotResponse.to_json)
           (Some Values.CreateSnapshotResponse.error_to_json)])
let create_subnet_group =
  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 String"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and subnetGroupName =
         flag "subnet-group-name" (required string) ~doc:"STRING String"
       and subnetIds =
         flag "subnet-ids" (required json_arg)
           ~doc:"JSON SubnetIdentifierList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_subnet_group
           (Values.CreateSubnetGroupRequest.make ?description
              ?tags:(Option.map ~f:Values.TagList.of_json tags)
              ~subnetGroupName
              ~subnetIds:(Values.SubnetIdentifierList.of_json subnetIds) ())
           (Some Values.CreateSubnetGroupResponse.to_json)
           (Some Values.CreateSubnetGroupResponse.error_to_json)])
let create_user =
  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 tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and userName =
         flag "user-name" (required string) ~doc:"STRING UserName"
       and authenticationMode =
         flag "authentication-mode" (required json_arg)
           ~doc:"JSON AuthenticationMode"
       and accessString =
         flag "access-string" (required string) ~doc:"STRING AccessString" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.create_user
           (Values.CreateUserRequest.make
              ?tags:(Option.map ~f:Values.TagList.of_json tags) ~userName
              ~authenticationMode:(Values.AuthenticationMode.of_json
                                     authenticationMode) ~accessString ())
           (Some Values.CreateUserResponse.to_json)
           (Some Values.CreateUserResponse.error_to_json)])
let delete_a_c_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 aCLName = flag "a-c-l-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.delete_a_c_l (Values.DeleteACLRequest.make ~aCLName ())
           (Some Values.DeleteACLResponse.to_json)
           (Some Values.DeleteACLResponse.error_to_json)])
let delete_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 multiRegionClusterName =
         flag "multi-region-cluster-name" (optional string)
           ~doc:"STRING String"
       and finalSnapshotName =
         flag "final-snapshot-name" (optional string) ~doc:"STRING String"
       and clusterName =
         flag "cluster-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.delete_cluster
           (Values.DeleteClusterRequest.make ?multiRegionClusterName
              ?finalSnapshotName ~clusterName ())
           (Some Values.DeleteClusterResponse.to_json)
           (Some Values.DeleteClusterResponse.error_to_json)])
let delete_multi_region_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 multiRegionClusterName =
         flag "multi-region-cluster-name" (required string)
           ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.delete_multi_region_cluster
           (Values.DeleteMultiRegionClusterRequest.make
              ~multiRegionClusterName ())
           (Some Values.DeleteMultiRegionClusterResponse.to_json)
           (Some Values.DeleteMultiRegionClusterResponse.error_to_json)])
let delete_parameter_group =
  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 parameterGroupName =
         flag "parameter-group-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.delete_parameter_group
           (Values.DeleteParameterGroupRequest.make ~parameterGroupName ())
           (Some Values.DeleteParameterGroupResponse.to_json)
           (Some Values.DeleteParameterGroupResponse.error_to_json)])
let delete_snapshot =
  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 snapshotName =
         flag "snapshot-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.delete_snapshot
           (Values.DeleteSnapshotRequest.make ~snapshotName ())
           (Some Values.DeleteSnapshotResponse.to_json)
           (Some Values.DeleteSnapshotResponse.error_to_json)])
let delete_subnet_group =
  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 subnetGroupName =
         flag "subnet-group-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.delete_subnet_group
           (Values.DeleteSubnetGroupRequest.make ~subnetGroupName ())
           (Some Values.DeleteSubnetGroupResponse.to_json)
           (Some Values.DeleteSubnetGroupResponse.error_to_json)])
let delete_user =
  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 userName =
         flag "user-name" (required string) ~doc:"STRING UserName" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.delete_user (Values.DeleteUserRequest.make ~userName ())
           (Some Values.DeleteUserResponse.to_json)
           (Some Values.DeleteUserResponse.error_to_json)])
let describe_a_c_ls =
  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 aCLName = flag "a-c-l-name" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_a_c_ls
           (Values.DescribeACLsRequest.make ?aCLName ?maxResults ?nextToken
              ()) (Some Values.DescribeACLsResponse.to_json)
           (Some Values.DescribeACLsResponse.error_to_json)])
let describe_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 clusterName =
         flag "cluster-name" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String"
       and showShardDetails =
         flag "show-shard-details" (optional bool)
           ~doc:"BOOL BooleanOptional" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_clusters
           (Values.DescribeClustersRequest.make ?clusterName ?maxResults
              ?nextToken ?showShardDetails ())
           (Some Values.DescribeClustersResponse.to_json)
           (Some Values.DescribeClustersResponse.error_to_json)])
let describe_engine_versions =
  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 engine = flag "engine" (optional string) ~doc:"STRING String"
       and engineVersion =
         flag "engine-version" (optional string) ~doc:"STRING String"
       and parameterGroupFamily =
         flag "parameter-group-family" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String"
       and defaultOnly =
         flag "default-only" (optional bool) ~doc:"BOOL Boolean" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_engine_versions
           (Values.DescribeEngineVersionsRequest.make ?engine ?engineVersion
              ?parameterGroupFamily ?maxResults ?nextToken ?defaultOnly ())
           (Some Values.DescribeEngineVersionsResponse.to_json)
           (Some Values.DescribeEngineVersionsResponse.error_to_json)])
let describe_events =
  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 sourceName =
         flag "source-name" (optional string) ~doc:"STRING String"
       and sourceType =
         flag "source-type" (optional json_arg) ~doc:"JSON SourceType"
       and startTime =
         flag "start-time" (optional json_arg) ~doc:"JSON TStamp"
       and endTime = flag "end-time" (optional json_arg) ~doc:"JSON TStamp"
       and duration =
         flag "duration" (optional int) ~doc:"INT IntegerOptional"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_events
           (Values.DescribeEventsRequest.make ?sourceName
              ?sourceType:(Option.map ~f:Values.SourceType.of_json sourceType)
              ?startTime:(Option.map ~f:Values.TStamp.of_json startTime)
              ?endTime:(Option.map ~f:Values.TStamp.of_json endTime)
              ?duration ?maxResults ?nextToken ())
           (Some Values.DescribeEventsResponse.to_json)
           (Some Values.DescribeEventsResponse.error_to_json)])
let describe_multi_region_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 multiRegionClusterName =
         flag "multi-region-cluster-name" (optional string)
           ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String"
       and showClusterDetails =
         flag "show-cluster-details" (optional bool)
           ~doc:"BOOL BooleanOptional" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_multi_region_clusters
           (Values.DescribeMultiRegionClustersRequest.make
              ?multiRegionClusterName ?maxResults ?nextToken
              ?showClusterDetails ())
           (Some Values.DescribeMultiRegionClustersResponse.to_json)
           (Some Values.DescribeMultiRegionClustersResponse.error_to_json)])
let describe_multi_region_parameter_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 multiRegionParameterGroupName =
         flag "multi-region-parameter-group-name" (optional string)
           ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_multi_region_parameter_groups
           (Values.DescribeMultiRegionParameterGroupsRequest.make
              ?multiRegionParameterGroupName ?maxResults ?nextToken ())
           (Some Values.DescribeMultiRegionParameterGroupsResponse.to_json)
           (Some
              Values.DescribeMultiRegionParameterGroupsResponse.error_to_json)])
let describe_multi_region_parameters =
  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 source = flag "source" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String"
       and multiRegionParameterGroupName =
         flag "multi-region-parameter-group-name" (required string)
           ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_multi_region_parameters
           (Values.DescribeMultiRegionParametersRequest.make ?source
              ?maxResults ?nextToken ~multiRegionParameterGroupName ())
           (Some Values.DescribeMultiRegionParametersResponse.to_json)
           (Some Values.DescribeMultiRegionParametersResponse.error_to_json)])
let describe_parameter_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 parameterGroupName =
         flag "parameter-group-name" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_parameter_groups
           (Values.DescribeParameterGroupsRequest.make ?parameterGroupName
              ?maxResults ?nextToken ())
           (Some Values.DescribeParameterGroupsResponse.to_json)
           (Some Values.DescribeParameterGroupsResponse.error_to_json)])
let describe_parameters =
  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 maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String"
       and parameterGroupName =
         flag "parameter-group-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_parameters
           (Values.DescribeParametersRequest.make ?maxResults ?nextToken
              ~parameterGroupName ())
           (Some Values.DescribeParametersResponse.to_json)
           (Some Values.DescribeParametersResponse.error_to_json)])
let describe_reserved_nodes =
  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 reservationId =
         flag "reservation-id" (optional string) ~doc:"STRING String"
       and reservedNodesOfferingId =
         flag "reserved-nodes-offering-id" (optional string)
           ~doc:"STRING String"
       and nodeType = flag "node-type" (optional string) ~doc:"STRING String"
       and duration = flag "duration" (optional string) ~doc:"STRING String"
       and offeringType =
         flag "offering-type" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_reserved_nodes
           (Values.DescribeReservedNodesRequest.make ?reservationId
              ?reservedNodesOfferingId ?nodeType ?duration ?offeringType
              ?maxResults ?nextToken ())
           (Some Values.DescribeReservedNodesResponse.to_json)
           (Some Values.DescribeReservedNodesResponse.error_to_json)])
let describe_reserved_nodes_offerings =
  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 reservedNodesOfferingId =
         flag "reserved-nodes-offering-id" (optional string)
           ~doc:"STRING String"
       and nodeType = flag "node-type" (optional string) ~doc:"STRING String"
       and duration = flag "duration" (optional string) ~doc:"STRING String"
       and offeringType =
         flag "offering-type" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_reserved_nodes_offerings
           (Values.DescribeReservedNodesOfferingsRequest.make
              ?reservedNodesOfferingId ?nodeType ?duration ?offeringType
              ?maxResults ?nextToken ())
           (Some Values.DescribeReservedNodesOfferingsResponse.to_json)
           (Some Values.DescribeReservedNodesOfferingsResponse.error_to_json)])
let describe_service_updates =
  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 serviceUpdateName =
         flag "service-update-name" (optional string) ~doc:"STRING String"
       and clusterNames =
         flag "cluster-names" (optional json_arg) ~doc:"JSON ClusterNameList"
       and status =
         flag "status" (optional json_arg)
           ~doc:"JSON ServiceUpdateStatusList"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_service_updates
           (Values.DescribeServiceUpdatesRequest.make ?serviceUpdateName
              ?clusterNames:(Option.map ~f:Values.ClusterNameList.of_json
                               clusterNames)
              ?status:(Option.map ~f:Values.ServiceUpdateStatusList.of_json
                         status) ?maxResults ?nextToken ())
           (Some Values.DescribeServiceUpdatesResponse.to_json)
           (Some Values.DescribeServiceUpdatesResponse.error_to_json)])
let describe_snapshots =
  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 clusterName =
         flag "cluster-name" (optional string) ~doc:"STRING String"
       and snapshotName =
         flag "snapshot-name" (optional string) ~doc:"STRING String"
       and source = flag "source" (optional string) ~doc:"STRING String"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and showDetail =
         flag "show-detail" (optional bool) ~doc:"BOOL BooleanOptional" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_snapshots
           (Values.DescribeSnapshotsRequest.make ?clusterName ?snapshotName
              ?source ?nextToken ?maxResults ?showDetail ())
           (Some Values.DescribeSnapshotsResponse.to_json)
           (Some Values.DescribeSnapshotsResponse.error_to_json)])
let describe_subnet_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 subnetGroupName =
         flag "subnet-group-name" (optional string) ~doc:"STRING String"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_subnet_groups
           (Values.DescribeSubnetGroupsRequest.make ?subnetGroupName
              ?maxResults ?nextToken ())
           (Some Values.DescribeSubnetGroupsResponse.to_json)
           (Some Values.DescribeSubnetGroupsResponse.error_to_json)])
let describe_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 userName =
         flag "user-name" (optional string) ~doc:"STRING UserName"
       and filters =
         flag "filters" (optional json_arg) ~doc:"JSON FilterList"
       and maxResults =
         flag "max-results" (optional int) ~doc:"INT IntegerOptional"
       and nextToken =
         flag "next-token" (optional string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.describe_users
           (Values.DescribeUsersRequest.make ?userName
              ?filters:(Option.map ~f:Values.FilterList.of_json filters)
              ?maxResults ?nextToken ())
           (Some Values.DescribeUsersResponse.to_json)
           (Some Values.DescribeUsersResponse.error_to_json)])
let failover_shard =
  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 clusterName =
         flag "cluster-name" (required string) ~doc:"STRING String"
       and shardName =
         flag "shard-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.failover_shard
           (Values.FailoverShardRequest.make ~clusterName ~shardName ())
           (Some Values.FailoverShardResponse.to_json)
           (Some Values.FailoverShardResponse.error_to_json)])
let list_allowed_multi_region_cluster_updates =
  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 multiRegionClusterName =
         flag "multi-region-cluster-name" (required string)
           ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_allowed_multi_region_cluster_updates
           (Values.ListAllowedMultiRegionClusterUpdatesRequest.make
              ~multiRegionClusterName ())
           (Some Values.ListAllowedMultiRegionClusterUpdatesResponse.to_json)
           (Some
              Values.ListAllowedMultiRegionClusterUpdatesResponse.error_to_json)])
let list_allowed_node_type_updates =
  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 clusterName =
         flag "cluster-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_allowed_node_type_updates
           (Values.ListAllowedNodeTypeUpdatesRequest.make ~clusterName ())
           (Some Values.ListAllowedNodeTypeUpdatesResponse.to_json)
           (Some Values.ListAllowedNodeTypeUpdatesResponse.error_to_json)])
let list_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 resourceArn =
         flag "resource-arn" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.list_tags (Values.ListTagsRequest.make ~resourceArn ())
           (Some Values.ListTagsResponse.to_json)
           (Some Values.ListTagsResponse.error_to_json)])
let purchase_reserved_nodes_offering =
  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 reservationId =
         flag "reservation-id" (optional string) ~doc:"STRING String"
       and nodeCount =
         flag "node-count" (optional int) ~doc:"INT IntegerOptional"
       and tags = flag "tags" (optional json_arg) ~doc:"JSON TagList"
       and reservedNodesOfferingId =
         flag "reserved-nodes-offering-id" (required string)
           ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.purchase_reserved_nodes_offering
           (Values.PurchaseReservedNodesOfferingRequest.make ?reservationId
              ?nodeCount ?tags:(Option.map ~f:Values.TagList.of_json tags)
              ~reservedNodesOfferingId ())
           (Some Values.PurchaseReservedNodesOfferingResponse.to_json)
           (Some Values.PurchaseReservedNodesOfferingResponse.error_to_json)])
let reset_parameter_group =
  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 allParameters =
         flag "all-parameters" (optional bool) ~doc:"BOOL Boolean"
       and parameterNames =
         flag "parameter-names" (optional json_arg)
           ~doc:"JSON ParameterNameList"
       and parameterGroupName =
         flag "parameter-group-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.reset_parameter_group
           (Values.ResetParameterGroupRequest.make ?allParameters
              ?parameterNames:(Option.map ~f:Values.ParameterNameList.of_json
                                 parameterNames) ~parameterGroupName ())
           (Some Values.ResetParameterGroupResponse.to_json)
           (Some Values.ResetParameterGroupResponse.error_to_json)])
let tag_resource =
  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 resourceArn =
         flag "resource-arn" (required string) ~doc:"STRING String"
       and tags = flag "tags" (required json_arg) ~doc:"JSON TagList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.tag_resource
           (Values.TagResourceRequest.make ~resourceArn
              ~tags:(Values.TagList.of_json tags) ())
           (Some Values.TagResourceResponse.to_json)
           (Some Values.TagResourceResponse.error_to_json)])
let untag_resource =
  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 resourceArn =
         flag "resource-arn" (required string) ~doc:"STRING String"
       and tagKeys = flag "tag-keys" (required json_arg) ~doc:"JSON KeyList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.untag_resource
           (Values.UntagResourceRequest.make ~resourceArn
              ~tagKeys:(Values.KeyList.of_json tagKeys) ())
           (Some Values.UntagResourceResponse.to_json)
           (Some Values.UntagResourceResponse.error_to_json)])
let update_a_c_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 userNamesToAdd =
         flag "user-names-to-add" (optional json_arg)
           ~doc:"JSON UserNameListInput"
       and userNamesToRemove =
         flag "user-names-to-remove" (optional json_arg)
           ~doc:"JSON UserNameListInput"
       and aCLName = flag "a-c-l-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.update_a_c_l
           (Values.UpdateACLRequest.make
              ?userNamesToAdd:(Option.map ~f:Values.UserNameListInput.of_json
                                 userNamesToAdd)
              ?userNamesToRemove:(Option.map
                                    ~f:Values.UserNameListInput.of_json
                                    userNamesToRemove) ~aCLName ())
           (Some Values.UpdateACLResponse.to_json)
           (Some Values.UpdateACLResponse.error_to_json)])
let update_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 description =
         flag "description" (optional string) ~doc:"STRING String"
       and securityGroupIds =
         flag "security-group-ids" (optional json_arg)
           ~doc:"JSON SecurityGroupIdsList"
       and maintenanceWindow =
         flag "maintenance-window" (optional string) ~doc:"STRING String"
       and snsTopicArn =
         flag "sns-topic-arn" (optional string) ~doc:"STRING String"
       and snsTopicStatus =
         flag "sns-topic-status" (optional string) ~doc:"STRING String"
       and parameterGroupName =
         flag "parameter-group-name" (optional string) ~doc:"STRING String"
       and snapshotWindow =
         flag "snapshot-window" (optional string) ~doc:"STRING String"
       and snapshotRetentionLimit =
         flag "snapshot-retention-limit" (optional int)
           ~doc:"INT IntegerOptional"
       and nodeType = flag "node-type" (optional string) ~doc:"STRING String"
       and engine = flag "engine" (optional string) ~doc:"STRING String"
       and engineVersion =
         flag "engine-version" (optional string) ~doc:"STRING String"
       and replicaConfiguration =
         flag "replica-configuration" (optional json_arg)
           ~doc:"JSON ReplicaConfigurationRequest"
       and shardConfiguration =
         flag "shard-configuration" (optional json_arg)
           ~doc:"JSON ShardConfigurationRequest"
       and aCLName =
         flag "a-c-l-name" (optional string) ~doc:"STRING ACLName"
       and ipDiscovery =
         flag "ip-discovery" (optional json_arg) ~doc:"JSON IpDiscovery"
       and clusterName =
         flag "cluster-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.update_cluster
           (Values.UpdateClusterRequest.make ?description
              ?securityGroupIds:(Option.map
                                   ~f:Values.SecurityGroupIdsList.of_json
                                   securityGroupIds) ?maintenanceWindow
              ?snsTopicArn ?snsTopicStatus ?parameterGroupName
              ?snapshotWindow ?snapshotRetentionLimit ?nodeType ?engine
              ?engineVersion
              ?replicaConfiguration:(Option.map
                                       ~f:Values.ReplicaConfigurationRequest.of_json
                                       replicaConfiguration)
              ?shardConfiguration:(Option.map
                                     ~f:Values.ShardConfigurationRequest.of_json
                                     shardConfiguration) ?aCLName
              ?ipDiscovery:(Option.map ~f:Values.IpDiscovery.of_json
                              ipDiscovery) ~clusterName ())
           (Some Values.UpdateClusterResponse.to_json)
           (Some Values.UpdateClusterResponse.error_to_json)])
let update_multi_region_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 nodeType = flag "node-type" (optional string) ~doc:"STRING String"
       and description =
         flag "description" (optional string) ~doc:"STRING String"
       and engineVersion =
         flag "engine-version" (optional string) ~doc:"STRING String"
       and shardConfiguration =
         flag "shard-configuration" (optional json_arg)
           ~doc:"JSON ShardConfigurationRequest"
       and multiRegionParameterGroupName =
         flag "multi-region-parameter-group-name" (optional string)
           ~doc:"STRING String"
       and updateStrategy =
         flag "update-strategy" (optional json_arg)
           ~doc:"JSON UpdateStrategy"
       and multiRegionClusterName =
         flag "multi-region-cluster-name" (required string)
           ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.update_multi_region_cluster
           (Values.UpdateMultiRegionClusterRequest.make ?nodeType
              ?description ?engineVersion
              ?shardConfiguration:(Option.map
                                     ~f:Values.ShardConfigurationRequest.of_json
                                     shardConfiguration)
              ?multiRegionParameterGroupName
              ?updateStrategy:(Option.map ~f:Values.UpdateStrategy.of_json
                                 updateStrategy) ~multiRegionClusterName ())
           (Some Values.UpdateMultiRegionClusterResponse.to_json)
           (Some Values.UpdateMultiRegionClusterResponse.error_to_json)])
let update_parameter_group =
  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 parameterGroupName =
         flag "parameter-group-name" (required string) ~doc:"STRING String"
       and parameterNameValues =
         flag "parameter-name-values" (required json_arg)
           ~doc:"JSON ParameterNameValueList" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.update_parameter_group
           (Values.UpdateParameterGroupRequest.make ~parameterGroupName
              ~parameterNameValues:(Values.ParameterNameValueList.of_json
                                      parameterNameValues) ())
           (Some Values.UpdateParameterGroupResponse.to_json)
           (Some Values.UpdateParameterGroupResponse.error_to_json)])
let update_subnet_group =
  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 String"
       and subnetIds =
         flag "subnet-ids" (optional json_arg)
           ~doc:"JSON SubnetIdentifierList"
       and subnetGroupName =
         flag "subnet-group-name" (required string) ~doc:"STRING String" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.update_subnet_group
           (Values.UpdateSubnetGroupRequest.make ?description
              ?subnetIds:(Option.map ~f:Values.SubnetIdentifierList.of_json
                            subnetIds) ~subnetGroupName ())
           (Some Values.UpdateSubnetGroupResponse.to_json)
           (Some Values.UpdateSubnetGroupResponse.error_to_json)])
let update_user =
  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 authenticationMode =
         flag "authentication-mode" (optional json_arg)
           ~doc:"JSON AuthenticationMode"
       and accessString =
         flag "access-string" (optional string) ~doc:"STRING AccessString"
       and userName =
         flag "user-name" (required string) ~doc:"STRING UserName" in
       fun () ->
         call ?endpoint_url ?profile:cli_profile ?region:cli_region
           Io.update_user
           (Values.UpdateUserRequest.make
              ?authenticationMode:(Option.map
                                     ~f:Values.AuthenticationMode.of_json
                                     authenticationMode) ?accessString
              ~userName ()) (Some Values.UpdateUserResponse.to_json)
           (Some Values.UpdateUserResponse.error_to_json)])
let main =
  Command.group
    ~summary:((Awso.Service.to_string Values.service) ^ " commands")
    [("batch-update-cluster", batch_update_cluster);
    ("copy-snapshot", copy_snapshot);
    ("create-a-c-l", create_a_c_l);
    ("create-cluster", create_cluster);
    ("create-multi-region-cluster", create_multi_region_cluster);
    ("create-parameter-group", create_parameter_group);
    ("create-snapshot", create_snapshot);
    ("create-subnet-group", create_subnet_group);
    ("create-user", create_user);
    ("delete-a-c-l", delete_a_c_l);
    ("delete-cluster", delete_cluster);
    ("delete-multi-region-cluster", delete_multi_region_cluster);
    ("delete-parameter-group", delete_parameter_group);
    ("delete-snapshot", delete_snapshot);
    ("delete-subnet-group", delete_subnet_group);
    ("delete-user", delete_user);
    ("describe-a-c-ls", describe_a_c_ls);
    ("describe-clusters", describe_clusters);
    ("describe-engine-versions", describe_engine_versions);
    ("describe-events", describe_events);
    ("describe-multi-region-clusters", describe_multi_region_clusters);
    ("describe-multi-region-parameter-groups",
      describe_multi_region_parameter_groups);
    ("describe-multi-region-parameters", describe_multi_region_parameters);
    ("describe-parameter-groups", describe_parameter_groups);
    ("describe-parameters", describe_parameters);
    ("describe-reserved-nodes", describe_reserved_nodes);
    ("describe-reserved-nodes-offerings", describe_reserved_nodes_offerings);
    ("describe-service-updates", describe_service_updates);
    ("describe-snapshots", describe_snapshots);
    ("describe-subnet-groups", describe_subnet_groups);
    ("describe-users", describe_users);
    ("failover-shard", failover_shard);
    ("list-allowed-multi-region-cluster-updates",
      list_allowed_multi_region_cluster_updates);
    ("list-allowed-node-type-updates", list_allowed_node_type_updates);
    ("list-tags", list_tags);
    ("purchase-reserved-nodes-offering", purchase_reserved_nodes_offering);
    ("reset-parameter-group", reset_parameter_group);
    ("tag-resource", tag_resource);
    ("untag-resource", untag_resource);
    ("update-a-c-l", update_a_c_l);
    ("update-cluster", update_cluster);
    ("update-multi-region-cluster", update_multi_region_cluster);
    ("update-parameter-group", update_parameter_group);
    ("update-subnet-group", update_subnet_group);
    ("update-user", update_user)]