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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
(* 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_rds
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 add_role_to_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AddRoleToDBCluster input
let add_role_to_d_b_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AddRoleToDBInstance input
let add_source_identifier_to_subscription ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AddSourceIdentifierToSubscription input
let add_tags_to_resource ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AddTagsToResource input
let apply_pending_maintenance_action ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ApplyPendingMaintenanceAction input
let authorize_d_b_security_group_ingress ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AuthorizeDBSecurityGroupIngress input
let backtrack_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.BacktrackDBCluster input
let cancel_export_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelExportTask input
let copy_d_b_cluster_parameter_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CopyDBClusterParameterGroup input
let copy_d_b_cluster_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CopyDBClusterSnapshot input
let copy_d_b_parameter_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CopyDBParameterGroup input
let copy_d_b_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CopyDBSnapshot input
let copy_option_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CopyOptionGroup input
let create_blue_green_deployment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateBlueGreenDeployment input
let create_custom_d_b_engine_version ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCustomDBEngineVersion input
let create_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBCluster input
let create_d_b_cluster_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBClusterEndpoint input
let create_d_b_cluster_parameter_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBClusterParameterGroup input
let create_d_b_cluster_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBClusterSnapshot input
let create_d_b_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBInstance input
let create_d_b_instance_read_replica ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBInstanceReadReplica input
let create_d_b_parameter_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBParameterGroup input
let create_d_b_proxy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBProxy input
let create_d_b_proxy_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBProxyEndpoint input
let create_d_b_security_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBSecurityGroup input
let create_d_b_shard_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBShardGroup input
let create_d_b_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBSnapshot input
let create_d_b_subnet_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDBSubnetGroup input
let create_event_subscription ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateEventSubscription input
let create_global_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateGlobalCluster input
let create_integration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateIntegration input
let create_option_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateOptionGroup input
let create_tenant_database ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTenantDatabase input
let delete_blue_green_deployment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteBlueGreenDeployment input
let delete_custom_d_b_engine_version ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteCustomDBEngineVersion input
let delete_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBCluster input
let delete_d_b_cluster_automated_backup ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBClusterAutomatedBackup input
let delete_d_b_cluster_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBClusterEndpoint input
let delete_d_b_cluster_parameter_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBClusterParameterGroup input
let delete_d_b_cluster_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBClusterSnapshot input
let delete_d_b_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBInstance input
let delete_d_b_instance_automated_backup ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBInstanceAutomatedBackup input
let delete_d_b_parameter_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBParameterGroup input
let delete_d_b_proxy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBProxy input
let delete_d_b_proxy_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBProxyEndpoint input
let delete_d_b_security_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBSecurityGroup input
let delete_d_b_shard_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBShardGroup input
let delete_d_b_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBSnapshot input
let delete_d_b_subnet_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDBSubnetGroup input
let delete_event_subscription ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteEventSubscription input
let delete_global_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteGlobalCluster input
let delete_integration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteIntegration input
let delete_option_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteOptionGroup input
let delete_tenant_database ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTenantDatabase input
let deregister_d_b_proxy_targets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeregisterDBProxyTargets input
let describe_account_attributes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAccountAttributes input
let describe_blue_green_deployments ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeBlueGreenDeployments input
let describe_certificates ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCertificates input
let describe_d_b_cluster_automated_backups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBClusterAutomatedBackups input
let describe_d_b_cluster_backtracks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBClusterBacktracks input
let describe_d_b_cluster_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBClusterEndpoints input
let describe_d_b_cluster_parameter_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBClusterParameterGroups input
let describe_d_b_cluster_parameters ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBClusterParameters input
let describe_d_b_cluster_snapshot_attributes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBClusterSnapshotAttributes input
let describe_d_b_cluster_snapshots ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBClusterSnapshots input
let describe_d_b_clusters ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBClusters input
let describe_d_b_engine_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBEngineVersions input
let describe_d_b_instance_automated_backups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBInstanceAutomatedBackups input
let describe_d_b_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBInstances input
let describe_d_b_log_files ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBLogFiles input
let describe_d_b_major_engine_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBMajorEngineVersions input
let describe_d_b_parameter_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBParameterGroups input
let describe_d_b_parameters ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBParameters input
let describe_d_b_proxies ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBProxies input
let describe_d_b_proxy_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBProxyEndpoints input
let describe_d_b_proxy_target_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBProxyTargetGroups input
let describe_d_b_proxy_targets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBProxyTargets input
let describe_d_b_recommendations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBRecommendations input
let describe_d_b_security_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBSecurityGroups input
let describe_d_b_shard_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBShardGroups input
let describe_d_b_snapshot_attributes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBSnapshotAttributes input
let describe_d_b_snapshot_tenant_databases ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBSnapshotTenantDatabases input
let describe_d_b_snapshots ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBSnapshots input
let describe_d_b_subnet_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDBSubnetGroups input
let describe_engine_default_cluster_parameters ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEngineDefaultClusterParameters
    input
let describe_engine_default_parameters ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEngineDefaultParameters input
let describe_event_categories ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEventCategories input
let describe_event_subscriptions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEventSubscriptions input
let describe_events ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEvents input
let describe_export_tasks ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeExportTasks input
let describe_global_clusters ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeGlobalClusters input
let describe_integrations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeIntegrations input
let describe_option_group_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeOptionGroupOptions input
let describe_option_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeOptionGroups input
let describe_orderable_d_b_instance_options ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeOrderableDBInstanceOptions input
let describe_pending_maintenance_actions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribePendingMaintenanceActions input
let describe_reserved_d_b_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeReservedDBInstances input
let describe_reserved_d_b_instances_offerings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeReservedDBInstancesOfferings
    input
let describe_serverless_v2_platform_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeServerlessV2PlatformVersions
    input
let describe_source_regions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSourceRegions input
let describe_tenant_databases ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTenantDatabases input
let describe_valid_d_b_instance_modifications ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeValidDBInstanceModifications
    input
let disable_http_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableHttpEndpoint input
let download_d_b_log_file_portion ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DownloadDBLogFilePortion input
let enable_http_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableHttpEndpoint input
let failover_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.FailoverDBCluster input
let failover_global_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.FailoverGlobalCluster input
let list_tags_for_resource ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let modify_activity_stream ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyActivityStream input
let modify_certificates ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyCertificates input
let modify_current_d_b_cluster_capacity ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyCurrentDBClusterCapacity input
let modify_custom_d_b_engine_version ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyCustomDBEngineVersion input
let modify_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBCluster input
let modify_d_b_cluster_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBClusterEndpoint input
let modify_d_b_cluster_parameter_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBClusterParameterGroup input
let modify_d_b_cluster_snapshot_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBClusterSnapshotAttribute input
let modify_d_b_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBInstance input
let modify_d_b_parameter_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBParameterGroup input
let modify_d_b_proxy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBProxy input
let modify_d_b_proxy_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBProxyEndpoint input
let modify_d_b_proxy_target_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBProxyTargetGroup input
let modify_d_b_recommendation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBRecommendation input
let modify_d_b_shard_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBShardGroup input
let modify_d_b_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBSnapshot input
let modify_d_b_snapshot_attribute ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBSnapshotAttribute input
let modify_d_b_subnet_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyDBSubnetGroup input
let modify_event_subscription ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyEventSubscription input
let modify_global_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyGlobalCluster input
let modify_integration ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyIntegration input
let modify_option_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyOptionGroup input
let modify_tenant_database ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ModifyTenantDatabase input
let promote_read_replica ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PromoteReadReplica input
let promote_read_replica_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PromoteReadReplicaDBCluster input
let purchase_reserved_d_b_instances_offering ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PurchaseReservedDBInstancesOffering input
let reboot_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RebootDBCluster input
let reboot_d_b_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RebootDBInstance input
let reboot_d_b_shard_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RebootDBShardGroup input
let register_d_b_proxy_targets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RegisterDBProxyTargets input
let remove_from_global_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RemoveFromGlobalCluster input
let remove_role_from_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RemoveRoleFromDBCluster input
let remove_role_from_d_b_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RemoveRoleFromDBInstance input
let remove_source_identifier_from_subscription ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RemoveSourceIdentifierFromSubscription
    input
let remove_tags_from_resource ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RemoveTagsFromResource input
let reset_d_b_cluster_parameter_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ResetDBClusterParameterGroup input
let reset_d_b_parameter_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ResetDBParameterGroup input
let restore_d_b_cluster_from_s3 ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreDBClusterFromS3 input
let restore_d_b_cluster_from_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreDBClusterFromSnapshot input
let restore_d_b_cluster_to_point_in_time ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreDBClusterToPointInTime input
let restore_d_b_instance_from_d_b_snapshot ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreDBInstanceFromDBSnapshot input
let restore_d_b_instance_from_s3 ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreDBInstanceFromS3 input
let restore_d_b_instance_to_point_in_time ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RestoreDBInstanceToPointInTime input
let revoke_d_b_security_group_ingress ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RevokeDBSecurityGroupIngress input
let start_activity_stream ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartActivityStream input
let start_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartDBCluster input
let start_d_b_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartDBInstance input
let start_d_b_instance_automated_backups_replication ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg
    Endpoints.StartDBInstanceAutomatedBackupsReplication input
let start_export_task ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartExportTask input
let stop_activity_stream ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopActivityStream input
let stop_d_b_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopDBCluster input
let stop_d_b_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopDBInstance input
let stop_d_b_instance_automated_backups_replication ?endpoint_url ?cfg input
  =
  eval ?endpoint_url ?cfg Endpoints.StopDBInstanceAutomatedBackupsReplication
    input
let switchover_blue_green_deployment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SwitchoverBlueGreenDeployment input
let switchover_global_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SwitchoverGlobalCluster input
let switchover_read_replica ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SwitchoverReadReplica input