@aws-sdk/client-machine-learning 3.168.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/MachineLearning.d.ts +508 -145
- package/dist-types/ts3.4/MachineLearningClient.d.ts +298 -101
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PredictCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +28 -28
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/MachineLearningServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1200 -1129
- package/dist-types/ts3.4/pagination/DescribeBatchPredictionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeDataSourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeEvaluationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeMLModelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +341 -86
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/dist-types/ts3.4/waiters/index.d.ts +4 -4
- package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +13 -7
- package/package.json +36 -36
|
@@ -1,1129 +1,1200 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
|
|
3
|
-
export declare enum TaggableResourceType {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export interface Tag {
|
|
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
|
-
export interface S3DataSpec {
|
|
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
|
-
export
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
export
|
|
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
|
-
export interface
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
}
|
|
312
|
-
export interface
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
}
|
|
321
|
-
export interface
|
|
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
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
export interface
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
export
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
export
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
export
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
export
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
|
|
3
|
+
export declare enum TaggableResourceType {
|
|
4
|
+
BATCH_PREDICTION = "BatchPrediction",
|
|
5
|
+
DATASOURCE = "DataSource",
|
|
6
|
+
EVALUATION = "Evaluation",
|
|
7
|
+
ML_MODEL = "MLModel",
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface Tag {
|
|
11
|
+
Key?: string;
|
|
12
|
+
|
|
13
|
+
Value?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface AddTagsInput {
|
|
16
|
+
Tags: Tag[] | undefined;
|
|
17
|
+
|
|
18
|
+
ResourceId: string | undefined;
|
|
19
|
+
|
|
20
|
+
ResourceType: TaggableResourceType | string | undefined;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface AddTagsOutput {
|
|
24
|
+
ResourceId?: string;
|
|
25
|
+
|
|
26
|
+
ResourceType?: TaggableResourceType | string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export declare class InternalServerException extends __BaseException {
|
|
30
|
+
readonly name: "InternalServerException";
|
|
31
|
+
readonly $fault: "server";
|
|
32
|
+
code?: number;
|
|
33
|
+
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export declare class InvalidInputException extends __BaseException {
|
|
40
|
+
readonly name: "InvalidInputException";
|
|
41
|
+
readonly $fault: "client";
|
|
42
|
+
code?: number;
|
|
43
|
+
|
|
44
|
+
constructor(
|
|
45
|
+
opts: __ExceptionOptionType<InvalidInputException, __BaseException>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
export declare class InvalidTagException extends __BaseException {
|
|
49
|
+
readonly name: "InvalidTagException";
|
|
50
|
+
readonly $fault: "client";
|
|
51
|
+
|
|
52
|
+
constructor(
|
|
53
|
+
opts: __ExceptionOptionType<InvalidTagException, __BaseException>
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
58
|
+
readonly name: "ResourceNotFoundException";
|
|
59
|
+
readonly $fault: "client";
|
|
60
|
+
code?: number;
|
|
61
|
+
|
|
62
|
+
constructor(
|
|
63
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
64
|
+
);
|
|
65
|
+
}
|
|
66
|
+
export declare class TagLimitExceededException extends __BaseException {
|
|
67
|
+
readonly name: "TagLimitExceededException";
|
|
68
|
+
readonly $fault: "client";
|
|
69
|
+
|
|
70
|
+
constructor(
|
|
71
|
+
opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
export declare enum Algorithm {
|
|
75
|
+
SGD = "sgd",
|
|
76
|
+
}
|
|
77
|
+
export interface CreateBatchPredictionInput {
|
|
78
|
+
BatchPredictionId: string | undefined;
|
|
79
|
+
|
|
80
|
+
BatchPredictionName?: string;
|
|
81
|
+
|
|
82
|
+
MLModelId: string | undefined;
|
|
83
|
+
|
|
84
|
+
BatchPredictionDataSourceId: string | undefined;
|
|
85
|
+
|
|
86
|
+
OutputUri: string | undefined;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export interface CreateBatchPredictionOutput {
|
|
90
|
+
BatchPredictionId?: string;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
94
|
+
readonly name: "IdempotentParameterMismatchException";
|
|
95
|
+
readonly $fault: "client";
|
|
96
|
+
code?: number;
|
|
97
|
+
|
|
98
|
+
constructor(
|
|
99
|
+
opts: __ExceptionOptionType<
|
|
100
|
+
IdempotentParameterMismatchException,
|
|
101
|
+
__BaseException
|
|
102
|
+
>
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export interface RDSDatabaseCredentials {
|
|
107
|
+
Username: string | undefined;
|
|
108
|
+
|
|
109
|
+
Password: string | undefined;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export interface RDSDatabase {
|
|
113
|
+
InstanceIdentifier: string | undefined;
|
|
114
|
+
|
|
115
|
+
DatabaseName: string | undefined;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export interface RDSDataSpec {
|
|
119
|
+
DatabaseInformation: RDSDatabase | undefined;
|
|
120
|
+
|
|
121
|
+
SelectSqlQuery: string | undefined;
|
|
122
|
+
|
|
123
|
+
DatabaseCredentials: RDSDatabaseCredentials | undefined;
|
|
124
|
+
|
|
125
|
+
S3StagingLocation: string | undefined;
|
|
126
|
+
|
|
127
|
+
DataRearrangement?: string;
|
|
128
|
+
|
|
129
|
+
DataSchema?: string;
|
|
130
|
+
|
|
131
|
+
DataSchemaUri?: string;
|
|
132
|
+
|
|
133
|
+
ResourceRole: string | undefined;
|
|
134
|
+
|
|
135
|
+
ServiceRole: string | undefined;
|
|
136
|
+
|
|
137
|
+
SubnetId: string | undefined;
|
|
138
|
+
|
|
139
|
+
SecurityGroupIds: string[] | undefined;
|
|
140
|
+
}
|
|
141
|
+
export interface CreateDataSourceFromRDSInput {
|
|
142
|
+
DataSourceId: string | undefined;
|
|
143
|
+
|
|
144
|
+
DataSourceName?: string;
|
|
145
|
+
|
|
146
|
+
RDSData: RDSDataSpec | undefined;
|
|
147
|
+
|
|
148
|
+
RoleARN: string | undefined;
|
|
149
|
+
|
|
150
|
+
ComputeStatistics?: boolean;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export interface CreateDataSourceFromRDSOutput {
|
|
154
|
+
DataSourceId?: string;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export interface RedshiftDatabaseCredentials {
|
|
158
|
+
Username: string | undefined;
|
|
159
|
+
|
|
160
|
+
Password: string | undefined;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export interface RedshiftDatabase {
|
|
164
|
+
DatabaseName: string | undefined;
|
|
165
|
+
|
|
166
|
+
ClusterIdentifier: string | undefined;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export interface RedshiftDataSpec {
|
|
170
|
+
DatabaseInformation: RedshiftDatabase | undefined;
|
|
171
|
+
|
|
172
|
+
SelectSqlQuery: string | undefined;
|
|
173
|
+
|
|
174
|
+
DatabaseCredentials: RedshiftDatabaseCredentials | undefined;
|
|
175
|
+
|
|
176
|
+
S3StagingLocation: string | undefined;
|
|
177
|
+
|
|
178
|
+
DataRearrangement?: string;
|
|
179
|
+
|
|
180
|
+
DataSchema?: string;
|
|
181
|
+
|
|
182
|
+
DataSchemaUri?: string;
|
|
183
|
+
}
|
|
184
|
+
export interface CreateDataSourceFromRedshiftInput {
|
|
185
|
+
DataSourceId: string | undefined;
|
|
186
|
+
|
|
187
|
+
DataSourceName?: string;
|
|
188
|
+
|
|
189
|
+
DataSpec: RedshiftDataSpec | undefined;
|
|
190
|
+
|
|
191
|
+
RoleARN: string | undefined;
|
|
192
|
+
|
|
193
|
+
ComputeStatistics?: boolean;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
export interface CreateDataSourceFromRedshiftOutput {
|
|
197
|
+
DataSourceId?: string;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
export interface S3DataSpec {
|
|
201
|
+
DataLocationS3: string | undefined;
|
|
202
|
+
|
|
203
|
+
DataRearrangement?: string;
|
|
204
|
+
|
|
205
|
+
DataSchema?: string;
|
|
206
|
+
|
|
207
|
+
DataSchemaLocationS3?: string;
|
|
208
|
+
}
|
|
209
|
+
export interface CreateDataSourceFromS3Input {
|
|
210
|
+
DataSourceId: string | undefined;
|
|
211
|
+
|
|
212
|
+
DataSourceName?: string;
|
|
213
|
+
|
|
214
|
+
DataSpec: S3DataSpec | undefined;
|
|
215
|
+
|
|
216
|
+
ComputeStatistics?: boolean;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
export interface CreateDataSourceFromS3Output {
|
|
220
|
+
DataSourceId?: string;
|
|
221
|
+
}
|
|
222
|
+
export interface CreateEvaluationInput {
|
|
223
|
+
EvaluationId: string | undefined;
|
|
224
|
+
|
|
225
|
+
EvaluationName?: string;
|
|
226
|
+
|
|
227
|
+
MLModelId: string | undefined;
|
|
228
|
+
|
|
229
|
+
EvaluationDataSourceId: string | undefined;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
export interface CreateEvaluationOutput {
|
|
233
|
+
EvaluationId?: string;
|
|
234
|
+
}
|
|
235
|
+
export declare enum MLModelType {
|
|
236
|
+
BINARY = "BINARY",
|
|
237
|
+
MULTICLASS = "MULTICLASS",
|
|
238
|
+
REGRESSION = "REGRESSION",
|
|
239
|
+
}
|
|
240
|
+
export interface CreateMLModelInput {
|
|
241
|
+
MLModelId: string | undefined;
|
|
242
|
+
|
|
243
|
+
MLModelName?: string;
|
|
244
|
+
|
|
245
|
+
MLModelType: MLModelType | string | undefined;
|
|
246
|
+
|
|
247
|
+
Parameters?: Record<string, string>;
|
|
248
|
+
|
|
249
|
+
TrainingDataSourceId: string | undefined;
|
|
250
|
+
|
|
251
|
+
Recipe?: string;
|
|
252
|
+
|
|
253
|
+
RecipeUri?: string;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
export interface CreateMLModelOutput {
|
|
257
|
+
MLModelId?: string;
|
|
258
|
+
}
|
|
259
|
+
export interface CreateRealtimeEndpointInput {
|
|
260
|
+
MLModelId: string | undefined;
|
|
261
|
+
}
|
|
262
|
+
export declare enum RealtimeEndpointStatus {
|
|
263
|
+
FAILED = "FAILED",
|
|
264
|
+
NONE = "NONE",
|
|
265
|
+
READY = "READY",
|
|
266
|
+
UPDATING = "UPDATING",
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
export interface RealtimeEndpointInfo {
|
|
270
|
+
PeakRequestsPerSecond?: number;
|
|
271
|
+
|
|
272
|
+
CreatedAt?: Date;
|
|
273
|
+
|
|
274
|
+
EndpointUrl?: string;
|
|
275
|
+
|
|
276
|
+
EndpointStatus?: RealtimeEndpointStatus | string;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
export interface CreateRealtimeEndpointOutput {
|
|
280
|
+
MLModelId?: string;
|
|
281
|
+
|
|
282
|
+
RealtimeEndpointInfo?: RealtimeEndpointInfo;
|
|
283
|
+
}
|
|
284
|
+
export interface DeleteBatchPredictionInput {
|
|
285
|
+
BatchPredictionId: string | undefined;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
export interface DeleteBatchPredictionOutput {
|
|
289
|
+
BatchPredictionId?: string;
|
|
290
|
+
}
|
|
291
|
+
export interface DeleteDataSourceInput {
|
|
292
|
+
DataSourceId: string | undefined;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
export interface DeleteDataSourceOutput {
|
|
296
|
+
DataSourceId?: string;
|
|
297
|
+
}
|
|
298
|
+
export interface DeleteEvaluationInput {
|
|
299
|
+
EvaluationId: string | undefined;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
export interface DeleteEvaluationOutput {
|
|
303
|
+
EvaluationId?: string;
|
|
304
|
+
}
|
|
305
|
+
export interface DeleteMLModelInput {
|
|
306
|
+
MLModelId: string | undefined;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
export interface DeleteMLModelOutput {
|
|
310
|
+
MLModelId?: string;
|
|
311
|
+
}
|
|
312
|
+
export interface DeleteRealtimeEndpointInput {
|
|
313
|
+
MLModelId: string | undefined;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export interface DeleteRealtimeEndpointOutput {
|
|
317
|
+
MLModelId?: string;
|
|
318
|
+
|
|
319
|
+
RealtimeEndpointInfo?: RealtimeEndpointInfo;
|
|
320
|
+
}
|
|
321
|
+
export interface DeleteTagsInput {
|
|
322
|
+
TagKeys: string[] | undefined;
|
|
323
|
+
|
|
324
|
+
ResourceId: string | undefined;
|
|
325
|
+
|
|
326
|
+
ResourceType: TaggableResourceType | string | undefined;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
export interface DeleteTagsOutput {
|
|
330
|
+
ResourceId?: string;
|
|
331
|
+
|
|
332
|
+
ResourceType?: TaggableResourceType | string;
|
|
333
|
+
}
|
|
334
|
+
export declare enum BatchPredictionFilterVariable {
|
|
335
|
+
CREATED_AT = "CreatedAt",
|
|
336
|
+
DATASOURCE_ID = "DataSourceId",
|
|
337
|
+
DATA_URI = "DataURI",
|
|
338
|
+
IAM_USER = "IAMUser",
|
|
339
|
+
LAST_UPDATED_AT = "LastUpdatedAt",
|
|
340
|
+
ML_MODEL_ID = "MLModelId",
|
|
341
|
+
NAME = "Name",
|
|
342
|
+
STATUS = "Status",
|
|
343
|
+
}
|
|
344
|
+
export declare enum SortOrder {
|
|
345
|
+
ASC = "asc",
|
|
346
|
+
DSC = "dsc",
|
|
347
|
+
}
|
|
348
|
+
export interface DescribeBatchPredictionsInput {
|
|
349
|
+
FilterVariable?: BatchPredictionFilterVariable | string;
|
|
350
|
+
|
|
351
|
+
EQ?: string;
|
|
352
|
+
|
|
353
|
+
GT?: string;
|
|
354
|
+
|
|
355
|
+
LT?: string;
|
|
356
|
+
|
|
357
|
+
GE?: string;
|
|
358
|
+
|
|
359
|
+
LE?: string;
|
|
360
|
+
|
|
361
|
+
NE?: string;
|
|
362
|
+
|
|
363
|
+
Prefix?: string;
|
|
364
|
+
|
|
365
|
+
SortOrder?: SortOrder | string;
|
|
366
|
+
|
|
367
|
+
NextToken?: string;
|
|
368
|
+
|
|
369
|
+
Limit?: number;
|
|
370
|
+
}
|
|
371
|
+
export declare enum EntityStatus {
|
|
372
|
+
COMPLETED = "COMPLETED",
|
|
373
|
+
DELETED = "DELETED",
|
|
374
|
+
FAILED = "FAILED",
|
|
375
|
+
INPROGRESS = "INPROGRESS",
|
|
376
|
+
PENDING = "PENDING",
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
export interface BatchPrediction {
|
|
380
|
+
BatchPredictionId?: string;
|
|
381
|
+
|
|
382
|
+
MLModelId?: string;
|
|
383
|
+
|
|
384
|
+
BatchPredictionDataSourceId?: string;
|
|
385
|
+
|
|
386
|
+
InputDataLocationS3?: string;
|
|
387
|
+
|
|
388
|
+
CreatedByIamUser?: string;
|
|
389
|
+
|
|
390
|
+
CreatedAt?: Date;
|
|
391
|
+
|
|
392
|
+
LastUpdatedAt?: Date;
|
|
393
|
+
|
|
394
|
+
Name?: string;
|
|
395
|
+
|
|
396
|
+
Status?: EntityStatus | string;
|
|
397
|
+
|
|
398
|
+
OutputUri?: string;
|
|
399
|
+
|
|
400
|
+
Message?: string;
|
|
401
|
+
|
|
402
|
+
ComputeTime?: number;
|
|
403
|
+
|
|
404
|
+
FinishedAt?: Date;
|
|
405
|
+
|
|
406
|
+
StartedAt?: Date;
|
|
407
|
+
|
|
408
|
+
TotalRecordCount?: number;
|
|
409
|
+
|
|
410
|
+
InvalidRecordCount?: number;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
export interface DescribeBatchPredictionsOutput {
|
|
414
|
+
Results?: BatchPrediction[];
|
|
415
|
+
|
|
416
|
+
NextToken?: string;
|
|
417
|
+
}
|
|
418
|
+
export declare enum DataSourceFilterVariable {
|
|
419
|
+
CREATED_AT = "CreatedAt",
|
|
420
|
+
DATA_URI = "DataLocationS3",
|
|
421
|
+
IAM_USER = "IAMUser",
|
|
422
|
+
LAST_UPDATED_AT = "LastUpdatedAt",
|
|
423
|
+
NAME = "Name",
|
|
424
|
+
STATUS = "Status",
|
|
425
|
+
}
|
|
426
|
+
export interface DescribeDataSourcesInput {
|
|
427
|
+
FilterVariable?: DataSourceFilterVariable | string;
|
|
428
|
+
|
|
429
|
+
EQ?: string;
|
|
430
|
+
|
|
431
|
+
GT?: string;
|
|
432
|
+
|
|
433
|
+
LT?: string;
|
|
434
|
+
|
|
435
|
+
GE?: string;
|
|
436
|
+
|
|
437
|
+
LE?: string;
|
|
438
|
+
|
|
439
|
+
NE?: string;
|
|
440
|
+
|
|
441
|
+
Prefix?: string;
|
|
442
|
+
|
|
443
|
+
SortOrder?: SortOrder | string;
|
|
444
|
+
|
|
445
|
+
NextToken?: string;
|
|
446
|
+
|
|
447
|
+
Limit?: number;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
export interface RDSMetadata {
|
|
451
|
+
Database?: RDSDatabase;
|
|
452
|
+
|
|
453
|
+
DatabaseUserName?: string;
|
|
454
|
+
|
|
455
|
+
SelectSqlQuery?: string;
|
|
456
|
+
|
|
457
|
+
ResourceRole?: string;
|
|
458
|
+
|
|
459
|
+
ServiceRole?: string;
|
|
460
|
+
|
|
461
|
+
DataPipelineId?: string;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
export interface RedshiftMetadata {
|
|
465
|
+
RedshiftDatabase?: RedshiftDatabase;
|
|
466
|
+
|
|
467
|
+
DatabaseUserName?: string;
|
|
468
|
+
|
|
469
|
+
SelectSqlQuery?: string;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
export interface DataSource {
|
|
473
|
+
DataSourceId?: string;
|
|
474
|
+
|
|
475
|
+
DataLocationS3?: string;
|
|
476
|
+
|
|
477
|
+
DataRearrangement?: string;
|
|
478
|
+
|
|
479
|
+
CreatedByIamUser?: string;
|
|
480
|
+
|
|
481
|
+
CreatedAt?: Date;
|
|
482
|
+
|
|
483
|
+
LastUpdatedAt?: Date;
|
|
484
|
+
|
|
485
|
+
DataSizeInBytes?: number;
|
|
486
|
+
|
|
487
|
+
NumberOfFiles?: number;
|
|
488
|
+
|
|
489
|
+
Name?: string;
|
|
490
|
+
|
|
491
|
+
Status?: EntityStatus | string;
|
|
492
|
+
|
|
493
|
+
Message?: string;
|
|
494
|
+
|
|
495
|
+
RedshiftMetadata?: RedshiftMetadata;
|
|
496
|
+
|
|
497
|
+
RDSMetadata?: RDSMetadata;
|
|
498
|
+
|
|
499
|
+
RoleARN?: string;
|
|
500
|
+
|
|
501
|
+
ComputeStatistics?: boolean;
|
|
502
|
+
|
|
503
|
+
ComputeTime?: number;
|
|
504
|
+
|
|
505
|
+
FinishedAt?: Date;
|
|
506
|
+
|
|
507
|
+
StartedAt?: Date;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
export interface DescribeDataSourcesOutput {
|
|
511
|
+
Results?: DataSource[];
|
|
512
|
+
|
|
513
|
+
NextToken?: string;
|
|
514
|
+
}
|
|
515
|
+
export declare enum EvaluationFilterVariable {
|
|
516
|
+
CREATED_AT = "CreatedAt",
|
|
517
|
+
DATASOURCE_ID = "DataSourceId",
|
|
518
|
+
DATA_URI = "DataURI",
|
|
519
|
+
IAM_USER = "IAMUser",
|
|
520
|
+
LAST_UPDATED_AT = "LastUpdatedAt",
|
|
521
|
+
ML_MODEL_ID = "MLModelId",
|
|
522
|
+
NAME = "Name",
|
|
523
|
+
STATUS = "Status",
|
|
524
|
+
}
|
|
525
|
+
export interface DescribeEvaluationsInput {
|
|
526
|
+
FilterVariable?: EvaluationFilterVariable | string;
|
|
527
|
+
|
|
528
|
+
EQ?: string;
|
|
529
|
+
|
|
530
|
+
GT?: string;
|
|
531
|
+
|
|
532
|
+
LT?: string;
|
|
533
|
+
|
|
534
|
+
GE?: string;
|
|
535
|
+
|
|
536
|
+
LE?: string;
|
|
537
|
+
|
|
538
|
+
NE?: string;
|
|
539
|
+
|
|
540
|
+
Prefix?: string;
|
|
541
|
+
|
|
542
|
+
SortOrder?: SortOrder | string;
|
|
543
|
+
|
|
544
|
+
NextToken?: string;
|
|
545
|
+
|
|
546
|
+
Limit?: number;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
export interface PerformanceMetrics {
|
|
550
|
+
Properties?: Record<string, string>;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
export interface Evaluation {
|
|
554
|
+
EvaluationId?: string;
|
|
555
|
+
|
|
556
|
+
MLModelId?: string;
|
|
557
|
+
|
|
558
|
+
EvaluationDataSourceId?: string;
|
|
559
|
+
|
|
560
|
+
InputDataLocationS3?: string;
|
|
561
|
+
|
|
562
|
+
CreatedByIamUser?: string;
|
|
563
|
+
|
|
564
|
+
CreatedAt?: Date;
|
|
565
|
+
|
|
566
|
+
LastUpdatedAt?: Date;
|
|
567
|
+
|
|
568
|
+
Name?: string;
|
|
569
|
+
|
|
570
|
+
Status?: EntityStatus | string;
|
|
571
|
+
|
|
572
|
+
PerformanceMetrics?: PerformanceMetrics;
|
|
573
|
+
|
|
574
|
+
Message?: string;
|
|
575
|
+
|
|
576
|
+
ComputeTime?: number;
|
|
577
|
+
|
|
578
|
+
FinishedAt?: Date;
|
|
579
|
+
|
|
580
|
+
StartedAt?: Date;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
export interface DescribeEvaluationsOutput {
|
|
584
|
+
Results?: Evaluation[];
|
|
585
|
+
|
|
586
|
+
NextToken?: string;
|
|
587
|
+
}
|
|
588
|
+
export declare enum MLModelFilterVariable {
|
|
589
|
+
ALGORITHM = "Algorithm",
|
|
590
|
+
CREATED_AT = "CreatedAt",
|
|
591
|
+
IAM_USER = "IAMUser",
|
|
592
|
+
LAST_UPDATED_AT = "LastUpdatedAt",
|
|
593
|
+
ML_MODEL_TYPE = "MLModelType",
|
|
594
|
+
NAME = "Name",
|
|
595
|
+
REAL_TIME_ENDPOINT_STATUS = "RealtimeEndpointStatus",
|
|
596
|
+
STATUS = "Status",
|
|
597
|
+
TRAINING_DATASOURCE_ID = "TrainingDataSourceId",
|
|
598
|
+
TRAINING_DATA_URI = "TrainingDataURI",
|
|
599
|
+
}
|
|
600
|
+
export interface DescribeMLModelsInput {
|
|
601
|
+
FilterVariable?: MLModelFilterVariable | string;
|
|
602
|
+
|
|
603
|
+
EQ?: string;
|
|
604
|
+
|
|
605
|
+
GT?: string;
|
|
606
|
+
|
|
607
|
+
LT?: string;
|
|
608
|
+
|
|
609
|
+
GE?: string;
|
|
610
|
+
|
|
611
|
+
LE?: string;
|
|
612
|
+
|
|
613
|
+
NE?: string;
|
|
614
|
+
|
|
615
|
+
Prefix?: string;
|
|
616
|
+
|
|
617
|
+
SortOrder?: SortOrder | string;
|
|
618
|
+
|
|
619
|
+
NextToken?: string;
|
|
620
|
+
|
|
621
|
+
Limit?: number;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
export interface MLModel {
|
|
625
|
+
MLModelId?: string;
|
|
626
|
+
|
|
627
|
+
TrainingDataSourceId?: string;
|
|
628
|
+
|
|
629
|
+
CreatedByIamUser?: string;
|
|
630
|
+
|
|
631
|
+
CreatedAt?: Date;
|
|
632
|
+
|
|
633
|
+
LastUpdatedAt?: Date;
|
|
634
|
+
|
|
635
|
+
Name?: string;
|
|
636
|
+
|
|
637
|
+
Status?: EntityStatus | string;
|
|
638
|
+
|
|
639
|
+
SizeInBytes?: number;
|
|
640
|
+
|
|
641
|
+
EndpointInfo?: RealtimeEndpointInfo;
|
|
642
|
+
|
|
643
|
+
TrainingParameters?: Record<string, string>;
|
|
644
|
+
|
|
645
|
+
InputDataLocationS3?: string;
|
|
646
|
+
|
|
647
|
+
Algorithm?: Algorithm | string;
|
|
648
|
+
|
|
649
|
+
MLModelType?: MLModelType | string;
|
|
650
|
+
ScoreThreshold?: number;
|
|
651
|
+
|
|
652
|
+
ScoreThresholdLastUpdatedAt?: Date;
|
|
653
|
+
|
|
654
|
+
Message?: string;
|
|
655
|
+
|
|
656
|
+
ComputeTime?: number;
|
|
657
|
+
|
|
658
|
+
FinishedAt?: Date;
|
|
659
|
+
|
|
660
|
+
StartedAt?: Date;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
export interface DescribeMLModelsOutput {
|
|
664
|
+
Results?: MLModel[];
|
|
665
|
+
|
|
666
|
+
NextToken?: string;
|
|
667
|
+
}
|
|
668
|
+
export interface DescribeTagsInput {
|
|
669
|
+
ResourceId: string | undefined;
|
|
670
|
+
|
|
671
|
+
ResourceType: TaggableResourceType | string | undefined;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
export interface DescribeTagsOutput {
|
|
675
|
+
ResourceId?: string;
|
|
676
|
+
|
|
677
|
+
ResourceType?: TaggableResourceType | string;
|
|
678
|
+
|
|
679
|
+
Tags?: Tag[];
|
|
680
|
+
}
|
|
681
|
+
export interface GetBatchPredictionInput {
|
|
682
|
+
BatchPredictionId: string | undefined;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
export interface GetBatchPredictionOutput {
|
|
686
|
+
BatchPredictionId?: string;
|
|
687
|
+
|
|
688
|
+
MLModelId?: string;
|
|
689
|
+
|
|
690
|
+
BatchPredictionDataSourceId?: string;
|
|
691
|
+
|
|
692
|
+
InputDataLocationS3?: string;
|
|
693
|
+
|
|
694
|
+
CreatedByIamUser?: string;
|
|
695
|
+
|
|
696
|
+
CreatedAt?: Date;
|
|
697
|
+
|
|
698
|
+
LastUpdatedAt?: Date;
|
|
699
|
+
|
|
700
|
+
Name?: string;
|
|
701
|
+
|
|
702
|
+
Status?: EntityStatus | string;
|
|
703
|
+
|
|
704
|
+
OutputUri?: string;
|
|
705
|
+
|
|
706
|
+
LogUri?: string;
|
|
707
|
+
|
|
708
|
+
Message?: string;
|
|
709
|
+
|
|
710
|
+
ComputeTime?: number;
|
|
711
|
+
|
|
712
|
+
FinishedAt?: Date;
|
|
713
|
+
|
|
714
|
+
StartedAt?: Date;
|
|
715
|
+
|
|
716
|
+
TotalRecordCount?: number;
|
|
717
|
+
|
|
718
|
+
InvalidRecordCount?: number;
|
|
719
|
+
}
|
|
720
|
+
export interface GetDataSourceInput {
|
|
721
|
+
DataSourceId: string | undefined;
|
|
722
|
+
|
|
723
|
+
Verbose?: boolean;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
export interface GetDataSourceOutput {
|
|
727
|
+
DataSourceId?: string;
|
|
728
|
+
|
|
729
|
+
DataLocationS3?: string;
|
|
730
|
+
|
|
731
|
+
DataRearrangement?: string;
|
|
732
|
+
|
|
733
|
+
CreatedByIamUser?: string;
|
|
734
|
+
|
|
735
|
+
CreatedAt?: Date;
|
|
736
|
+
|
|
737
|
+
LastUpdatedAt?: Date;
|
|
738
|
+
|
|
739
|
+
DataSizeInBytes?: number;
|
|
740
|
+
|
|
741
|
+
NumberOfFiles?: number;
|
|
742
|
+
|
|
743
|
+
Name?: string;
|
|
744
|
+
|
|
745
|
+
Status?: EntityStatus | string;
|
|
746
|
+
|
|
747
|
+
LogUri?: string;
|
|
748
|
+
|
|
749
|
+
Message?: string;
|
|
750
|
+
|
|
751
|
+
RedshiftMetadata?: RedshiftMetadata;
|
|
752
|
+
|
|
753
|
+
RDSMetadata?: RDSMetadata;
|
|
754
|
+
|
|
755
|
+
RoleARN?: string;
|
|
756
|
+
|
|
757
|
+
ComputeStatistics?: boolean;
|
|
758
|
+
|
|
759
|
+
ComputeTime?: number;
|
|
760
|
+
|
|
761
|
+
FinishedAt?: Date;
|
|
762
|
+
|
|
763
|
+
StartedAt?: Date;
|
|
764
|
+
|
|
765
|
+
DataSourceSchema?: string;
|
|
766
|
+
}
|
|
767
|
+
export interface GetEvaluationInput {
|
|
768
|
+
EvaluationId: string | undefined;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
export interface GetEvaluationOutput {
|
|
772
|
+
EvaluationId?: string;
|
|
773
|
+
|
|
774
|
+
MLModelId?: string;
|
|
775
|
+
|
|
776
|
+
EvaluationDataSourceId?: string;
|
|
777
|
+
|
|
778
|
+
InputDataLocationS3?: string;
|
|
779
|
+
|
|
780
|
+
CreatedByIamUser?: string;
|
|
781
|
+
|
|
782
|
+
CreatedAt?: Date;
|
|
783
|
+
|
|
784
|
+
LastUpdatedAt?: Date;
|
|
785
|
+
|
|
786
|
+
Name?: string;
|
|
787
|
+
|
|
788
|
+
Status?: EntityStatus | string;
|
|
789
|
+
|
|
790
|
+
PerformanceMetrics?: PerformanceMetrics;
|
|
791
|
+
|
|
792
|
+
LogUri?: string;
|
|
793
|
+
|
|
794
|
+
Message?: string;
|
|
795
|
+
|
|
796
|
+
ComputeTime?: number;
|
|
797
|
+
|
|
798
|
+
FinishedAt?: Date;
|
|
799
|
+
|
|
800
|
+
StartedAt?: Date;
|
|
801
|
+
}
|
|
802
|
+
export interface GetMLModelInput {
|
|
803
|
+
MLModelId: string | undefined;
|
|
804
|
+
|
|
805
|
+
Verbose?: boolean;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
export interface GetMLModelOutput {
|
|
809
|
+
MLModelId?: string;
|
|
810
|
+
|
|
811
|
+
TrainingDataSourceId?: string;
|
|
812
|
+
|
|
813
|
+
CreatedByIamUser?: string;
|
|
814
|
+
|
|
815
|
+
CreatedAt?: Date;
|
|
816
|
+
|
|
817
|
+
LastUpdatedAt?: Date;
|
|
818
|
+
|
|
819
|
+
Name?: string;
|
|
820
|
+
|
|
821
|
+
Status?: EntityStatus | string;
|
|
822
|
+
|
|
823
|
+
SizeInBytes?: number;
|
|
824
|
+
|
|
825
|
+
EndpointInfo?: RealtimeEndpointInfo;
|
|
826
|
+
|
|
827
|
+
TrainingParameters?: Record<string, string>;
|
|
828
|
+
|
|
829
|
+
InputDataLocationS3?: string;
|
|
830
|
+
|
|
831
|
+
MLModelType?: MLModelType | string;
|
|
832
|
+
|
|
833
|
+
ScoreThreshold?: number;
|
|
834
|
+
|
|
835
|
+
ScoreThresholdLastUpdatedAt?: Date;
|
|
836
|
+
|
|
837
|
+
LogUri?: string;
|
|
838
|
+
|
|
839
|
+
Message?: string;
|
|
840
|
+
|
|
841
|
+
ComputeTime?: number;
|
|
842
|
+
|
|
843
|
+
FinishedAt?: Date;
|
|
844
|
+
|
|
845
|
+
StartedAt?: Date;
|
|
846
|
+
|
|
847
|
+
Recipe?: string;
|
|
848
|
+
|
|
849
|
+
Schema?: string;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
export declare class LimitExceededException extends __BaseException {
|
|
853
|
+
readonly name: "LimitExceededException";
|
|
854
|
+
readonly $fault: "client";
|
|
855
|
+
code?: number;
|
|
856
|
+
|
|
857
|
+
constructor(
|
|
858
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
859
|
+
);
|
|
860
|
+
}
|
|
861
|
+
export interface PredictInput {
|
|
862
|
+
MLModelId: string | undefined;
|
|
863
|
+
|
|
864
|
+
Record: Record<string, string> | undefined;
|
|
865
|
+
PredictEndpoint: string | undefined;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
export declare class PredictorNotMountedException extends __BaseException {
|
|
869
|
+
readonly name: "PredictorNotMountedException";
|
|
870
|
+
readonly $fault: "client";
|
|
871
|
+
|
|
872
|
+
constructor(
|
|
873
|
+
opts: __ExceptionOptionType<PredictorNotMountedException, __BaseException>
|
|
874
|
+
);
|
|
875
|
+
}
|
|
876
|
+
export declare enum DetailsAttributes {
|
|
877
|
+
ALGORITHM = "Algorithm",
|
|
878
|
+
PREDICTIVE_MODEL_TYPE = "PredictiveModelType",
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
export interface Prediction {
|
|
882
|
+
predictedLabel?: string;
|
|
883
|
+
|
|
884
|
+
predictedValue?: number;
|
|
885
|
+
|
|
886
|
+
predictedScores?: Record<string, number>;
|
|
887
|
+
|
|
888
|
+
details?: Record<string, string>;
|
|
889
|
+
}
|
|
890
|
+
export interface PredictOutput {
|
|
891
|
+
Prediction?: Prediction;
|
|
892
|
+
}
|
|
893
|
+
export interface UpdateBatchPredictionInput {
|
|
894
|
+
BatchPredictionId: string | undefined;
|
|
895
|
+
|
|
896
|
+
BatchPredictionName: string | undefined;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
export interface UpdateBatchPredictionOutput {
|
|
900
|
+
BatchPredictionId?: string;
|
|
901
|
+
}
|
|
902
|
+
export interface UpdateDataSourceInput {
|
|
903
|
+
DataSourceId: string | undefined;
|
|
904
|
+
|
|
905
|
+
DataSourceName: string | undefined;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
export interface UpdateDataSourceOutput {
|
|
909
|
+
DataSourceId?: string;
|
|
910
|
+
}
|
|
911
|
+
export interface UpdateEvaluationInput {
|
|
912
|
+
EvaluationId: string | undefined;
|
|
913
|
+
|
|
914
|
+
EvaluationName: string | undefined;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
export interface UpdateEvaluationOutput {
|
|
918
|
+
EvaluationId?: string;
|
|
919
|
+
}
|
|
920
|
+
export interface UpdateMLModelInput {
|
|
921
|
+
MLModelId: string | undefined;
|
|
922
|
+
|
|
923
|
+
MLModelName?: string;
|
|
924
|
+
|
|
925
|
+
ScoreThreshold?: number;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
export interface UpdateMLModelOutput {
|
|
929
|
+
MLModelId?: string;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
933
|
+
|
|
934
|
+
export declare const AddTagsInputFilterSensitiveLog: (obj: AddTagsInput) => any;
|
|
935
|
+
|
|
936
|
+
export declare const AddTagsOutputFilterSensitiveLog: (
|
|
937
|
+
obj: AddTagsOutput
|
|
938
|
+
) => any;
|
|
939
|
+
|
|
940
|
+
export declare const CreateBatchPredictionInputFilterSensitiveLog: (
|
|
941
|
+
obj: CreateBatchPredictionInput
|
|
942
|
+
) => any;
|
|
943
|
+
|
|
944
|
+
export declare const CreateBatchPredictionOutputFilterSensitiveLog: (
|
|
945
|
+
obj: CreateBatchPredictionOutput
|
|
946
|
+
) => any;
|
|
947
|
+
|
|
948
|
+
export declare const RDSDatabaseCredentialsFilterSensitiveLog: (
|
|
949
|
+
obj: RDSDatabaseCredentials
|
|
950
|
+
) => any;
|
|
951
|
+
|
|
952
|
+
export declare const RDSDatabaseFilterSensitiveLog: (obj: RDSDatabase) => any;
|
|
953
|
+
|
|
954
|
+
export declare const RDSDataSpecFilterSensitiveLog: (obj: RDSDataSpec) => any;
|
|
955
|
+
|
|
956
|
+
export declare const CreateDataSourceFromRDSInputFilterSensitiveLog: (
|
|
957
|
+
obj: CreateDataSourceFromRDSInput
|
|
958
|
+
) => any;
|
|
959
|
+
|
|
960
|
+
export declare const CreateDataSourceFromRDSOutputFilterSensitiveLog: (
|
|
961
|
+
obj: CreateDataSourceFromRDSOutput
|
|
962
|
+
) => any;
|
|
963
|
+
|
|
964
|
+
export declare const RedshiftDatabaseCredentialsFilterSensitiveLog: (
|
|
965
|
+
obj: RedshiftDatabaseCredentials
|
|
966
|
+
) => any;
|
|
967
|
+
|
|
968
|
+
export declare const RedshiftDatabaseFilterSensitiveLog: (
|
|
969
|
+
obj: RedshiftDatabase
|
|
970
|
+
) => any;
|
|
971
|
+
|
|
972
|
+
export declare const RedshiftDataSpecFilterSensitiveLog: (
|
|
973
|
+
obj: RedshiftDataSpec
|
|
974
|
+
) => any;
|
|
975
|
+
|
|
976
|
+
export declare const CreateDataSourceFromRedshiftInputFilterSensitiveLog: (
|
|
977
|
+
obj: CreateDataSourceFromRedshiftInput
|
|
978
|
+
) => any;
|
|
979
|
+
|
|
980
|
+
export declare const CreateDataSourceFromRedshiftOutputFilterSensitiveLog: (
|
|
981
|
+
obj: CreateDataSourceFromRedshiftOutput
|
|
982
|
+
) => any;
|
|
983
|
+
|
|
984
|
+
export declare const S3DataSpecFilterSensitiveLog: (obj: S3DataSpec) => any;
|
|
985
|
+
|
|
986
|
+
export declare const CreateDataSourceFromS3InputFilterSensitiveLog: (
|
|
987
|
+
obj: CreateDataSourceFromS3Input
|
|
988
|
+
) => any;
|
|
989
|
+
|
|
990
|
+
export declare const CreateDataSourceFromS3OutputFilterSensitiveLog: (
|
|
991
|
+
obj: CreateDataSourceFromS3Output
|
|
992
|
+
) => any;
|
|
993
|
+
|
|
994
|
+
export declare const CreateEvaluationInputFilterSensitiveLog: (
|
|
995
|
+
obj: CreateEvaluationInput
|
|
996
|
+
) => any;
|
|
997
|
+
|
|
998
|
+
export declare const CreateEvaluationOutputFilterSensitiveLog: (
|
|
999
|
+
obj: CreateEvaluationOutput
|
|
1000
|
+
) => any;
|
|
1001
|
+
|
|
1002
|
+
export declare const CreateMLModelInputFilterSensitiveLog: (
|
|
1003
|
+
obj: CreateMLModelInput
|
|
1004
|
+
) => any;
|
|
1005
|
+
|
|
1006
|
+
export declare const CreateMLModelOutputFilterSensitiveLog: (
|
|
1007
|
+
obj: CreateMLModelOutput
|
|
1008
|
+
) => any;
|
|
1009
|
+
|
|
1010
|
+
export declare const CreateRealtimeEndpointInputFilterSensitiveLog: (
|
|
1011
|
+
obj: CreateRealtimeEndpointInput
|
|
1012
|
+
) => any;
|
|
1013
|
+
|
|
1014
|
+
export declare const RealtimeEndpointInfoFilterSensitiveLog: (
|
|
1015
|
+
obj: RealtimeEndpointInfo
|
|
1016
|
+
) => any;
|
|
1017
|
+
|
|
1018
|
+
export declare const CreateRealtimeEndpointOutputFilterSensitiveLog: (
|
|
1019
|
+
obj: CreateRealtimeEndpointOutput
|
|
1020
|
+
) => any;
|
|
1021
|
+
|
|
1022
|
+
export declare const DeleteBatchPredictionInputFilterSensitiveLog: (
|
|
1023
|
+
obj: DeleteBatchPredictionInput
|
|
1024
|
+
) => any;
|
|
1025
|
+
|
|
1026
|
+
export declare const DeleteBatchPredictionOutputFilterSensitiveLog: (
|
|
1027
|
+
obj: DeleteBatchPredictionOutput
|
|
1028
|
+
) => any;
|
|
1029
|
+
|
|
1030
|
+
export declare const DeleteDataSourceInputFilterSensitiveLog: (
|
|
1031
|
+
obj: DeleteDataSourceInput
|
|
1032
|
+
) => any;
|
|
1033
|
+
|
|
1034
|
+
export declare const DeleteDataSourceOutputFilterSensitiveLog: (
|
|
1035
|
+
obj: DeleteDataSourceOutput
|
|
1036
|
+
) => any;
|
|
1037
|
+
|
|
1038
|
+
export declare const DeleteEvaluationInputFilterSensitiveLog: (
|
|
1039
|
+
obj: DeleteEvaluationInput
|
|
1040
|
+
) => any;
|
|
1041
|
+
|
|
1042
|
+
export declare const DeleteEvaluationOutputFilterSensitiveLog: (
|
|
1043
|
+
obj: DeleteEvaluationOutput
|
|
1044
|
+
) => any;
|
|
1045
|
+
|
|
1046
|
+
export declare const DeleteMLModelInputFilterSensitiveLog: (
|
|
1047
|
+
obj: DeleteMLModelInput
|
|
1048
|
+
) => any;
|
|
1049
|
+
|
|
1050
|
+
export declare const DeleteMLModelOutputFilterSensitiveLog: (
|
|
1051
|
+
obj: DeleteMLModelOutput
|
|
1052
|
+
) => any;
|
|
1053
|
+
|
|
1054
|
+
export declare const DeleteRealtimeEndpointInputFilterSensitiveLog: (
|
|
1055
|
+
obj: DeleteRealtimeEndpointInput
|
|
1056
|
+
) => any;
|
|
1057
|
+
|
|
1058
|
+
export declare const DeleteRealtimeEndpointOutputFilterSensitiveLog: (
|
|
1059
|
+
obj: DeleteRealtimeEndpointOutput
|
|
1060
|
+
) => any;
|
|
1061
|
+
|
|
1062
|
+
export declare const DeleteTagsInputFilterSensitiveLog: (
|
|
1063
|
+
obj: DeleteTagsInput
|
|
1064
|
+
) => any;
|
|
1065
|
+
|
|
1066
|
+
export declare const DeleteTagsOutputFilterSensitiveLog: (
|
|
1067
|
+
obj: DeleteTagsOutput
|
|
1068
|
+
) => any;
|
|
1069
|
+
|
|
1070
|
+
export declare const DescribeBatchPredictionsInputFilterSensitiveLog: (
|
|
1071
|
+
obj: DescribeBatchPredictionsInput
|
|
1072
|
+
) => any;
|
|
1073
|
+
|
|
1074
|
+
export declare const BatchPredictionFilterSensitiveLog: (
|
|
1075
|
+
obj: BatchPrediction
|
|
1076
|
+
) => any;
|
|
1077
|
+
|
|
1078
|
+
export declare const DescribeBatchPredictionsOutputFilterSensitiveLog: (
|
|
1079
|
+
obj: DescribeBatchPredictionsOutput
|
|
1080
|
+
) => any;
|
|
1081
|
+
|
|
1082
|
+
export declare const DescribeDataSourcesInputFilterSensitiveLog: (
|
|
1083
|
+
obj: DescribeDataSourcesInput
|
|
1084
|
+
) => any;
|
|
1085
|
+
|
|
1086
|
+
export declare const RDSMetadataFilterSensitiveLog: (obj: RDSMetadata) => any;
|
|
1087
|
+
|
|
1088
|
+
export declare const RedshiftMetadataFilterSensitiveLog: (
|
|
1089
|
+
obj: RedshiftMetadata
|
|
1090
|
+
) => any;
|
|
1091
|
+
|
|
1092
|
+
export declare const DataSourceFilterSensitiveLog: (obj: DataSource) => any;
|
|
1093
|
+
|
|
1094
|
+
export declare const DescribeDataSourcesOutputFilterSensitiveLog: (
|
|
1095
|
+
obj: DescribeDataSourcesOutput
|
|
1096
|
+
) => any;
|
|
1097
|
+
|
|
1098
|
+
export declare const DescribeEvaluationsInputFilterSensitiveLog: (
|
|
1099
|
+
obj: DescribeEvaluationsInput
|
|
1100
|
+
) => any;
|
|
1101
|
+
|
|
1102
|
+
export declare const PerformanceMetricsFilterSensitiveLog: (
|
|
1103
|
+
obj: PerformanceMetrics
|
|
1104
|
+
) => any;
|
|
1105
|
+
|
|
1106
|
+
export declare const EvaluationFilterSensitiveLog: (obj: Evaluation) => any;
|
|
1107
|
+
|
|
1108
|
+
export declare const DescribeEvaluationsOutputFilterSensitiveLog: (
|
|
1109
|
+
obj: DescribeEvaluationsOutput
|
|
1110
|
+
) => any;
|
|
1111
|
+
|
|
1112
|
+
export declare const DescribeMLModelsInputFilterSensitiveLog: (
|
|
1113
|
+
obj: DescribeMLModelsInput
|
|
1114
|
+
) => any;
|
|
1115
|
+
|
|
1116
|
+
export declare const MLModelFilterSensitiveLog: (obj: MLModel) => any;
|
|
1117
|
+
|
|
1118
|
+
export declare const DescribeMLModelsOutputFilterSensitiveLog: (
|
|
1119
|
+
obj: DescribeMLModelsOutput
|
|
1120
|
+
) => any;
|
|
1121
|
+
|
|
1122
|
+
export declare const DescribeTagsInputFilterSensitiveLog: (
|
|
1123
|
+
obj: DescribeTagsInput
|
|
1124
|
+
) => any;
|
|
1125
|
+
|
|
1126
|
+
export declare const DescribeTagsOutputFilterSensitiveLog: (
|
|
1127
|
+
obj: DescribeTagsOutput
|
|
1128
|
+
) => any;
|
|
1129
|
+
|
|
1130
|
+
export declare const GetBatchPredictionInputFilterSensitiveLog: (
|
|
1131
|
+
obj: GetBatchPredictionInput
|
|
1132
|
+
) => any;
|
|
1133
|
+
|
|
1134
|
+
export declare const GetBatchPredictionOutputFilterSensitiveLog: (
|
|
1135
|
+
obj: GetBatchPredictionOutput
|
|
1136
|
+
) => any;
|
|
1137
|
+
|
|
1138
|
+
export declare const GetDataSourceInputFilterSensitiveLog: (
|
|
1139
|
+
obj: GetDataSourceInput
|
|
1140
|
+
) => any;
|
|
1141
|
+
|
|
1142
|
+
export declare const GetDataSourceOutputFilterSensitiveLog: (
|
|
1143
|
+
obj: GetDataSourceOutput
|
|
1144
|
+
) => any;
|
|
1145
|
+
|
|
1146
|
+
export declare const GetEvaluationInputFilterSensitiveLog: (
|
|
1147
|
+
obj: GetEvaluationInput
|
|
1148
|
+
) => any;
|
|
1149
|
+
|
|
1150
|
+
export declare const GetEvaluationOutputFilterSensitiveLog: (
|
|
1151
|
+
obj: GetEvaluationOutput
|
|
1152
|
+
) => any;
|
|
1153
|
+
|
|
1154
|
+
export declare const GetMLModelInputFilterSensitiveLog: (
|
|
1155
|
+
obj: GetMLModelInput
|
|
1156
|
+
) => any;
|
|
1157
|
+
|
|
1158
|
+
export declare const GetMLModelOutputFilterSensitiveLog: (
|
|
1159
|
+
obj: GetMLModelOutput
|
|
1160
|
+
) => any;
|
|
1161
|
+
|
|
1162
|
+
export declare const PredictInputFilterSensitiveLog: (obj: PredictInput) => any;
|
|
1163
|
+
|
|
1164
|
+
export declare const PredictionFilterSensitiveLog: (obj: Prediction) => any;
|
|
1165
|
+
|
|
1166
|
+
export declare const PredictOutputFilterSensitiveLog: (
|
|
1167
|
+
obj: PredictOutput
|
|
1168
|
+
) => any;
|
|
1169
|
+
|
|
1170
|
+
export declare const UpdateBatchPredictionInputFilterSensitiveLog: (
|
|
1171
|
+
obj: UpdateBatchPredictionInput
|
|
1172
|
+
) => any;
|
|
1173
|
+
|
|
1174
|
+
export declare const UpdateBatchPredictionOutputFilterSensitiveLog: (
|
|
1175
|
+
obj: UpdateBatchPredictionOutput
|
|
1176
|
+
) => any;
|
|
1177
|
+
|
|
1178
|
+
export declare const UpdateDataSourceInputFilterSensitiveLog: (
|
|
1179
|
+
obj: UpdateDataSourceInput
|
|
1180
|
+
) => any;
|
|
1181
|
+
|
|
1182
|
+
export declare const UpdateDataSourceOutputFilterSensitiveLog: (
|
|
1183
|
+
obj: UpdateDataSourceOutput
|
|
1184
|
+
) => any;
|
|
1185
|
+
|
|
1186
|
+
export declare const UpdateEvaluationInputFilterSensitiveLog: (
|
|
1187
|
+
obj: UpdateEvaluationInput
|
|
1188
|
+
) => any;
|
|
1189
|
+
|
|
1190
|
+
export declare const UpdateEvaluationOutputFilterSensitiveLog: (
|
|
1191
|
+
obj: UpdateEvaluationOutput
|
|
1192
|
+
) => any;
|
|
1193
|
+
|
|
1194
|
+
export declare const UpdateMLModelInputFilterSensitiveLog: (
|
|
1195
|
+
obj: UpdateMLModelInput
|
|
1196
|
+
) => any;
|
|
1197
|
+
|
|
1198
|
+
export declare const UpdateMLModelOutputFilterSensitiveLog: (
|
|
1199
|
+
obj: UpdateMLModelOutput
|
|
1200
|
+
) => any;
|