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