Source file io.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
(* 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_chime_sdk_media_pipelines
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 create_media_capture_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMediaCapturePipeline input
let create_media_concatenation_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMediaConcatenationPipeline input
let create_media_insights_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMediaInsightsPipeline input
let create_media_insights_pipeline_configuration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMediaInsightsPipelineConfiguration
    input
let create_media_live_connector_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMediaLiveConnectorPipeline input
let create_media_pipeline_kinesis_video_stream_pool ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg Endpoints.CreateMediaPipelineKinesisVideoStreamPool
    input
let create_media_stream_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMediaStreamPipeline input
let delete_media_capture_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteMediaCapturePipeline input
let delete_media_insights_pipeline_configuration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteMediaInsightsPipelineConfiguration
    input
let delete_media_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteMediaPipeline input
let delete_media_pipeline_kinesis_video_stream_pool ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg Endpoints.DeleteMediaPipelineKinesisVideoStreamPool
    input
let get_media_capture_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMediaCapturePipeline input
let get_media_insights_pipeline_configuration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMediaInsightsPipelineConfiguration
    input
let get_media_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMediaPipeline input
let get_media_pipeline_kinesis_video_stream_pool ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMediaPipelineKinesisVideoStreamPool
    input
let get_speaker_search_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSpeakerSearchTask input
let get_voice_tone_analysis_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetVoiceToneAnalysisTask input
let list_media_capture_pipelines ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMediaCapturePipelines input
let list_media_insights_pipeline_configurations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMediaInsightsPipelineConfigurations
    input
let list_media_pipeline_kinesis_video_stream_pools ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMediaPipelineKinesisVideoStreamPools
    input
let list_media_pipelines ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMediaPipelines input
let list_tags_for_resource ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let start_speaker_search_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartSpeakerSearchTask input
let start_voice_tone_analysis_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartVoiceToneAnalysisTask input
let stop_speaker_search_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopSpeakerSearchTask input
let stop_voice_tone_analysis_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopVoiceToneAnalysisTask 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_media_insights_pipeline_configuration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateMediaInsightsPipelineConfiguration
    input
let update_media_insights_pipeline_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateMediaInsightsPipelineStatus input
let update_media_pipeline_kinesis_video_stream_pool ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg Endpoints.UpdateMediaPipelineKinesisVideoStreamPool
    input