package smaws-clients

  1. Overview
  2. Docs
Amazon Web Services SDK clients using EIO

Install

Dune Dependency

Authors

Maintainers

Sources

0.1.preview1.tar.gz
md5=18fb70dbc45e8d81a341b9bed6871bab
sha512=7607dc98acaeed5803b44c9ca32d90c88e7813d4b3e3ae4ec661a0bad16c88dc1476bc780877527ea4cd5a4b7398453c1bb600ce0db14d39afa05dc4762b5ba5

doc/src/smaws-clients.dax/types.ml.html

Source file types.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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
open Smaws_Lib
let service =
  Service.{
    namespace = "dax";
    endpointPrefix = "dax";
    version = "2017-04-19";
    protocol = AwsJson_1_1
  };
type subnet = {
  subnet_availability_zone: string option;
  subnet_identifier: string option
}

type subnet_group = {
  subnets: subnet list option;
  vpc_id: string option;
  description: string option;
  subnet_group_name: string option
}

type update_subnet_group_response = {
  subnet_group: subnet_group option
}

type update_subnet_group_request = {
  subnet_ids: string list option;
  description: string option;
  subnet_group_name: string
}

type subnet_quota_exceeded_fault = {
  message: string option
}

type subnet_in_use = {
  message: string option
}

type subnet_group_not_found_fault = {
  message: string option
}

type service_linked_role_not_found_fault = {
  message: string option
}

type invalid_subnet = {
  message: string option
}

type parameter_group = {
  description: string option;
  parameter_group_name: string option
}

type update_parameter_group_response = {
  parameter_group: parameter_group option
}

type parameter_name_value = {
  parameter_value: string option;
  parameter_name: string option
}

type update_parameter_group_request = {
  parameter_name_values: parameter_name_value list;
  parameter_group_name: string
}

type parameter_group_not_found_fault = {
  message: string option
}

type invalid_parameter_value_exception = {
  message: string option
}

type invalid_parameter_group_state_fault = {
  message: string option
}

type invalid_parameter_combination_exception = {
  message: string option
}

type endpoint = {
  ur_l: string option;
  port: int option;
  address: string option
}

type node = {
  parameter_group_status: string option;
  node_status: string option;
  availability_zone: string option;
  node_create_time: float option;
  endpoint: endpoint option;
  node_id: string option
}

type notification_configuration = {
  topic_status: string option;
  topic_arn: string option
}

type security_group_membership = {
  status: string option;
  security_group_identifier: string option
}

type parameter_group_status = {
  node_ids_to_reboot: string list option;
  parameter_apply_status: string option;
  parameter_group_name: string option
}

type sse_status = | DISABLED
  | DISABLING
  | ENABLED
  | ENABLING

type sse_description = {
  status: sse_status option
}

type cluster_endpoint_encryption_type = | TLS
  | NONE

type cluster = {
  cluster_endpoint_encryption_type: cluster_endpoint_encryption_type option;
  sse_description: sse_description option;
  parameter_group: parameter_group_status option;
  iam_role_arn: string option;
  security_groups: security_group_membership list option;
  subnet_group: string option;
  notification_configuration: notification_configuration option;
  preferred_maintenance_window: string option;
  nodes: node list option;
  node_ids_to_remove: string list option;
  cluster_discovery_endpoint: endpoint option;
  status: string option;
  node_type: string option;
  active_nodes: int option;
  total_nodes: int option;
  cluster_arn: string option;
  description: string option;
  cluster_name: string option
}

type update_cluster_response = {
  cluster: cluster option
}

type update_cluster_request = {
  security_group_ids: string list option;
  parameter_group_name: string option;
  notification_topic_status: string option;
  notification_topic_arn: string option;
  preferred_maintenance_window: string option;
  description: string option;
  cluster_name: string
}

type invalid_cluster_state_fault = {
  message: string option
}

type cluster_not_found_fault = {
  message: string option
}

type tag = {
  value: string option;
  key: string option
}

type untag_resource_response = {
  tags: tag list option
}

type untag_resource_request = {
  tag_keys: string list;
  resource_name: string
}

type tag_not_found_fault = {
  message: string option
}

type invalid_arn_fault = {
  message: string option
}

type tag_resource_response = {
  tags: tag list option
}

type tag_resource_request = {
  tags: tag list;
  resource_name: string
}

type tag_quota_per_resource_exceeded = {
  message: string option
}

type subnet_group_quota_exceeded_fault = {
  message: string option
}

type subnet_group_in_use_fault = {
  message: string option
}

type subnet_group_already_exists_fault = {
  message: string option
}

type source_type = | SUBNET_GROUP
  | PARAMETER_GROUP
  | CLUSTER

type service_quota_exceeded_exception = unit

type sse_specification = {
  enabled: bool
}

type reboot_node_response = {
  cluster: cluster option
}

type reboot_node_request = {
  node_id: string;
  cluster_name: string
}

type node_not_found_fault = {
  message: string option
}

type parameter_type = | NODE_TYPE_SPECIFIC
  | DEFAULT

type node_type_specific_value = {
  value: string option;
  node_type: string option
}

type is_modifiable = | CONDITIONAL
  | FALSE
  | TRUE

type change_type = | REQUIRES_REBOOT
  | IMMEDIATE

type parameter = {
  change_type: change_type option;
  is_modifiable: is_modifiable option;
  allowed_values: string option;
  data_type: string option;
  source: string option;
  description: string option;
  node_type_specific_values: node_type_specific_value list option;
  parameter_value: string option;
  parameter_type: parameter_type option;
  parameter_name: string option
}

type parameter_group_quota_exceeded_fault = {
  message: string option
}

type parameter_group_already_exists_fault = {
  message: string option
}

type node_quota_for_customer_exceeded_fault = {
  message: string option
}

type node_quota_for_cluster_exceeded_fault = {
  message: string option
}

type list_tags_response = {
  next_token: string option;
  tags: tag list option
}

type list_tags_request = {
  next_token: string option;
  resource_name: string
}

type invalid_vpc_network_state_fault = {
  message: string option
}

type insufficient_cluster_capacity_fault = {
  message: string option
}

type increase_replication_factor_response = {
  cluster: cluster option
}

type increase_replication_factor_request = {
  availability_zones: string list option;
  new_replication_factor: int;
  cluster_name: string
}

type event = {
  date: float option;
  message: string option;
  source_type: source_type option;
  source_name: string option
}

type describe_subnet_groups_response = {
  subnet_groups: subnet_group list option;
  next_token: string option
}

type describe_subnet_groups_request = {
  next_token: string option;
  max_results: int option;
  subnet_group_names: string list option
}

type describe_parameters_response = {
  parameters: parameter list option;
  next_token: string option
}

type describe_parameters_request = {
  next_token: string option;
  max_results: int option;
  source: string option;
  parameter_group_name: string
}

type describe_parameter_groups_response = {
  parameter_groups: parameter_group list option;
  next_token: string option
}

type describe_parameter_groups_request = {
  next_token: string option;
  max_results: int option;
  parameter_group_names: string list option
}

type describe_events_response = {
  events: event list option;
  next_token: string option
}

type describe_events_request = {
  next_token: string option;
  max_results: int option;
  duration: int option;
  end_time: float option;
  start_time: float option;
  source_type: source_type option;
  source_name: string option
}

type describe_default_parameters_response = {
  parameters: parameter list option;
  next_token: string option
}

type describe_default_parameters_request = {
  next_token: string option;
  max_results: int option
}

type describe_clusters_response = {
  clusters: cluster list option;
  next_token: string option
}

type describe_clusters_request = {
  next_token: string option;
  max_results: int option;
  cluster_names: string list option
}

type delete_subnet_group_response = {
  deletion_message: string option
}

type delete_subnet_group_request = {
  subnet_group_name: string
}

type delete_parameter_group_response = {
  deletion_message: string option
}

type delete_parameter_group_request = {
  parameter_group_name: string
}

type delete_cluster_response = {
  cluster: cluster option
}

type delete_cluster_request = {
  cluster_name: string
}

type decrease_replication_factor_response = {
  cluster: cluster option
}

type decrease_replication_factor_request = {
  node_ids_to_remove: string list option;
  availability_zones: string list option;
  new_replication_factor: int;
  cluster_name: string
}

type create_subnet_group_response = {
  subnet_group: subnet_group option
}

type create_subnet_group_request = {
  subnet_ids: string list;
  description: string option;
  subnet_group_name: string
}

type create_parameter_group_response = {
  parameter_group: parameter_group option
}

type create_parameter_group_request = {
  description: string option;
  parameter_group_name: string
}

type create_cluster_response = {
  cluster: cluster option
}

type create_cluster_request = {
  cluster_endpoint_encryption_type: cluster_endpoint_encryption_type option;
  sse_specification: sse_specification option;
  tags: tag list option;
  parameter_group_name: string option;
  iam_role_arn: string;
  notification_topic_arn: string option;
  preferred_maintenance_window: string option;
  security_group_ids: string list option;
  subnet_group_name: string option;
  availability_zones: string list option;
  replication_factor: int;
  description: string option;
  node_type: string;
  cluster_name: string
}

type cluster_quota_for_customer_exceeded_fault = {
  message: string option
}

type cluster_already_exists_fault = {
  message: string option
}



type base_document = Json.t

OCaml

Innovation. Community. Security.