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
open Awso_kinesisvideo
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_signaling_channel ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateSignalingChannel input
let create_stream ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateStream input
let delete_edge_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteEdgeConfiguration input
let delete_signaling_channel ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteSignalingChannel input
let delete_stream ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteStream input
let describe_edge_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeEdgeConfiguration input
let describe_image_generation_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeImageGenerationConfiguration
input
let describe_mapped_resource_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeMappedResourceConfiguration input
let describe_media_storage_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeMediaStorageConfiguration input
let describe_notification_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeNotificationConfiguration input
let describe_signaling_channel ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeSignalingChannel input
let describe_stream ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeStream input
let describe_stream_storage_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeStreamStorageConfiguration input
let get_data_endpoint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataEndpoint input
let get_signaling_channel_endpoint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSignalingChannelEndpoint input
let list_edge_agent_configurations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEdgeAgentConfigurations input
let list_signaling_channels ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSignalingChannels input
let list_streams ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListStreams input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let list_tags_for_stream ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForStream input
let start_edge_configuration_update ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartEdgeConfigurationUpdate input
let tag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TagResource input
let tag_stream ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TagStream input
let untag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UntagResource input
let untag_stream ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UntagStream input
let update_data_retention ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDataRetention input
let update_image_generation_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateImageGenerationConfiguration input
let update_media_storage_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateMediaStorageConfiguration input
let update_notification_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateNotificationConfiguration input
let update_signaling_channel ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSignalingChannel input
let update_stream ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateStream input
let update_stream_storage_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateStreamStorageConfiguration input