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
open Awso_transcribe
open Awso_async
module Io = Http.Io
let eval ?endpoint_url ?cfg endpoint input =
Io.bind (Io.resolve_cfg cfg)
(fun cfg ->
let meth = Endpoints.method_of_endpoint endpoint in
let uri = Endpoints.uri_of_endpoint endpoint input in
Io.map
(Io.call ?endpoint_url ~cfg ~service:Values.service meth
(Endpoints.to_request endpoint input) uri)
(fun resp_result -> Endpoints.of_response endpoint resp_result))
let create_call_analytics_category ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCallAnalyticsCategory input
let create_language_model ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateLanguageModel input
let create_medical_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateMedicalVocabulary input
let create_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateVocabulary input
let create_vocabulary_filter ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateVocabularyFilter input
let delete_call_analytics_category ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCallAnalyticsCategory input
let delete_call_analytics_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCallAnalyticsJob input
let delete_language_model ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteLanguageModel input
let delete_medical_scribe_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteMedicalScribeJob input
let delete_medical_transcription_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteMedicalTranscriptionJob input
let delete_medical_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteMedicalVocabulary input
let delete_transcription_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTranscriptionJob input
let delete_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteVocabulary input
let delete_vocabulary_filter ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteVocabularyFilter input
let describe_language_model ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeLanguageModel input
let get_call_analytics_category ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCallAnalyticsCategory input
let get_call_analytics_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCallAnalyticsJob input
let get_medical_scribe_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMedicalScribeJob input
let get_medical_transcription_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMedicalTranscriptionJob input
let get_medical_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMedicalVocabulary input
let get_transcription_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTranscriptionJob input
let get_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetVocabulary input
let get_vocabulary_filter ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetVocabularyFilter input
let list_call_analytics_categories ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCallAnalyticsCategories input
let list_call_analytics_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCallAnalyticsJobs input
let list_language_models ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListLanguageModels input
let list_medical_scribe_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListMedicalScribeJobs input
let list_medical_transcription_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListMedicalTranscriptionJobs input
let list_medical_vocabularies ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListMedicalVocabularies input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let list_transcription_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTranscriptionJobs input
let list_vocabularies ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListVocabularies input
let list_vocabulary_filters ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListVocabularyFilters input
let start_call_analytics_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartCallAnalyticsJob input
let start_medical_scribe_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartMedicalScribeJob input
let start_medical_transcription_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartMedicalTranscriptionJob input
let start_transcription_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartTranscriptionJob input
let tag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TagResource input
let untag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UntagResource input
let update_call_analytics_category ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateCallAnalyticsCategory input
let update_medical_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateMedicalVocabulary input
let update_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateVocabulary input
let update_vocabulary_filter ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateVocabularyFilter input