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
open Awso_kinesisanalyticsv2
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 add_application_cloud_watch_logging_option ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AddApplicationCloudWatchLoggingOption
input
let add_application_input ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AddApplicationInput input
let add_application_input_processing_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg
Endpoints.AddApplicationInputProcessingConfiguration input
let add_application_output ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AddApplicationOutput input
let add_application_reference_data_source ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AddApplicationReferenceDataSource input
let add_application_vpc_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AddApplicationVpcConfiguration input
let create_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateApplication input
let create_application_presigned_url ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateApplicationPresignedUrl input
let create_application_snapshot ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateApplicationSnapshot input
let delete_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteApplication input
let delete_application_cloud_watch_logging_option ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteApplicationCloudWatchLoggingOption
input
let delete_application_input_processing_configuration ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.DeleteApplicationInputProcessingConfiguration input
let delete_application_output ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteApplicationOutput input
let delete_application_reference_data_source ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteApplicationReferenceDataSource
input
let delete_application_snapshot ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteApplicationSnapshot input
let delete_application_vpc_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteApplicationVpcConfiguration input
let describe_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeApplication input
let describe_application_operation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeApplicationOperation input
let describe_application_snapshot ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeApplicationSnapshot input
let describe_application_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeApplicationVersion input
let discover_input_schema ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DiscoverInputSchema input
let list_application_operations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListApplicationOperations input
let list_application_snapshots ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListApplicationSnapshots input
let list_application_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListApplicationVersions input
let list_applications ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListApplications input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let rollback_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RollbackApplication input
let start_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartApplication input
let stop_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopApplication 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_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateApplication input
let update_application_maintenance_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateApplicationMaintenanceConfiguration
input