@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.
Files changed (54) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/MachineLearning.d.ts +508 -145
  3. package/dist-types/ts3.4/MachineLearningClient.d.ts +298 -101
  4. package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/PredictCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +37 -17
  30. package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +34 -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 +8 -6
  36. package/dist-types/ts3.4/models/index.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +1200 -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 +68 -38
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  49. package/dist-types/ts3.4/waiters/index.d.ts +4 -4
  50. package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +13 -7
  51. package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +13 -7
  52. package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +13 -7
  53. package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +13 -7
  54. 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
- 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
+
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;