Source file io.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
(* generated by: awso-codegen generate-all --botocore-data vendor/botocore/botocore/data -o aws --runtime-dir lib/runtime/awso --cli-dir awso-cli *)
open Awso_comprehendmedical
open Awso_lwt
module Io = Http.Io
let eval ?endpoint_url ?cfg endpoint input =
  Io.bind (Io.resolve_cfg cfg)
    (fun cfg ->
       let meth = Endpoints.method_of_endpoint endpoint in
       let uri = Endpoints.uri_of_endpoint endpoint input in
       Io.map
         (Io.call ?endpoint_url ~cfg ~service:Values.service meth
            (Endpoints.to_request endpoint input) uri)
         (fun resp_result -> Endpoints.of_response endpoint resp_result))
let describe_entities_detection_v2_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEntitiesDetectionV2Job input
let describe_i_c_d10_c_m_inference_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeICD10CMInferenceJob input
let describe_p_h_i_detection_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribePHIDetectionJob input
let describe_rx_norm_inference_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeRxNormInferenceJob input
let describe_s_n_o_m_e_d_c_t_inference_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSNOMEDCTInferenceJob input
let detect_entities ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DetectEntities input
let detect_entities_v2 ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DetectEntitiesV2 input
let detect_p_h_i ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DetectPHI input
let infer_i_c_d10_c_m ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.InferICD10CM input
let infer_rx_norm ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.InferRxNorm input
let infer_s_n_o_m_e_d_c_t ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.InferSNOMEDCT input
let list_entities_detection_v2_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListEntitiesDetectionV2Jobs input
let list_i_c_d10_c_m_inference_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListICD10CMInferenceJobs input
let list_p_h_i_detection_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListPHIDetectionJobs input
let list_rx_norm_inference_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListRxNormInferenceJobs input
let list_s_n_o_m_e_d_c_t_inference_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListSNOMEDCTInferenceJobs input
let start_entities_detection_v2_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartEntitiesDetectionV2Job input
let start_i_c_d10_c_m_inference_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartICD10CMInferenceJob input
let start_p_h_i_detection_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartPHIDetectionJob input
let start_rx_norm_inference_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartRxNormInferenceJob input
let start_s_n_o_m_e_d_c_t_inference_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartSNOMEDCTInferenceJob input
let stop_entities_detection_v2_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopEntitiesDetectionV2Job input
let stop_i_c_d10_c_m_inference_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopICD10CMInferenceJob input
let stop_p_h_i_detection_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopPHIDetectionJob input
let stop_rx_norm_inference_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopRxNormInferenceJob input
let stop_s_n_o_m_e_d_c_t_inference_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopSNOMEDCTInferenceJob input