@aws-sdk/client-machine-learning 3.131.0 → 3.142.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AddTagsCommand.js +2 -2
- package/dist-cjs/commands/CreateBatchPredictionCommand.js +2 -2
- package/dist-cjs/commands/CreateDataSourceFromRDSCommand.js +2 -2
- package/dist-cjs/commands/CreateDataSourceFromRedshiftCommand.js +2 -2
- package/dist-cjs/commands/CreateDataSourceFromS3Command.js +2 -2
- package/dist-cjs/commands/CreateEvaluationCommand.js +2 -2
- package/dist-cjs/commands/CreateMLModelCommand.js +2 -2
- package/dist-cjs/commands/CreateRealtimeEndpointCommand.js +2 -2
- package/dist-cjs/commands/DeleteBatchPredictionCommand.js +2 -2
- package/dist-cjs/commands/DeleteDataSourceCommand.js +2 -2
- package/dist-cjs/commands/DeleteEvaluationCommand.js +2 -2
- package/dist-cjs/commands/DeleteMLModelCommand.js +2 -2
- package/dist-cjs/commands/DeleteRealtimeEndpointCommand.js +2 -2
- package/dist-cjs/commands/DeleteTagsCommand.js +2 -2
- package/dist-cjs/commands/DescribeBatchPredictionsCommand.js +2 -2
- package/dist-cjs/commands/DescribeDataSourcesCommand.js +2 -2
- package/dist-cjs/commands/DescribeEvaluationsCommand.js +2 -2
- package/dist-cjs/commands/DescribeMLModelsCommand.js +2 -2
- package/dist-cjs/commands/DescribeTagsCommand.js +2 -2
- package/dist-cjs/commands/GetBatchPredictionCommand.js +2 -2
- package/dist-cjs/commands/GetDataSourceCommand.js +2 -2
- package/dist-cjs/commands/GetEvaluationCommand.js +2 -2
- package/dist-cjs/commands/GetMLModelCommand.js +2 -2
- package/dist-cjs/commands/PredictCommand.js +2 -2
- package/dist-cjs/commands/UpdateBatchPredictionCommand.js +2 -2
- package/dist-cjs/commands/UpdateDataSourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateEvaluationCommand.js +2 -2
- package/dist-cjs/commands/UpdateMLModelCommand.js +2 -2
- package/dist-cjs/models/models_0.js +294 -440
- package/dist-cjs/protocols/Aws_json1_1.js +140 -233
- package/dist-es/commands/AddTagsCommand.js +3 -3
- package/dist-es/commands/CreateBatchPredictionCommand.js +3 -3
- package/dist-es/commands/CreateDataSourceFromRDSCommand.js +3 -3
- package/dist-es/commands/CreateDataSourceFromRedshiftCommand.js +3 -3
- package/dist-es/commands/CreateDataSourceFromS3Command.js +3 -3
- package/dist-es/commands/CreateEvaluationCommand.js +3 -3
- package/dist-es/commands/CreateMLModelCommand.js +3 -3
- package/dist-es/commands/CreateRealtimeEndpointCommand.js +3 -3
- package/dist-es/commands/DeleteBatchPredictionCommand.js +3 -3
- package/dist-es/commands/DeleteDataSourceCommand.js +3 -3
- package/dist-es/commands/DeleteEvaluationCommand.js +3 -3
- package/dist-es/commands/DeleteMLModelCommand.js +3 -3
- package/dist-es/commands/DeleteRealtimeEndpointCommand.js +3 -3
- package/dist-es/commands/DeleteTagsCommand.js +3 -3
- package/dist-es/commands/DescribeBatchPredictionsCommand.js +3 -3
- package/dist-es/commands/DescribeDataSourcesCommand.js +3 -3
- package/dist-es/commands/DescribeEvaluationsCommand.js +3 -3
- package/dist-es/commands/DescribeMLModelsCommand.js +3 -3
- package/dist-es/commands/DescribeTagsCommand.js +3 -3
- package/dist-es/commands/GetBatchPredictionCommand.js +3 -3
- package/dist-es/commands/GetDataSourceCommand.js +3 -3
- package/dist-es/commands/GetEvaluationCommand.js +3 -3
- package/dist-es/commands/GetMLModelCommand.js +3 -3
- package/dist-es/commands/PredictCommand.js +3 -3
- package/dist-es/commands/UpdateBatchPredictionCommand.js +3 -3
- package/dist-es/commands/UpdateDataSourceCommand.js +3 -3
- package/dist-es/commands/UpdateEvaluationCommand.js +3 -3
- package/dist-es/commands/UpdateMLModelCommand.js +3 -3
- package/dist-es/models/models_0.js +73 -292
- package/dist-es/protocols/Aws_json1_1.js +225 -234
- package/dist-types/models/models_0.d.ts +292 -438
- package/dist-types/ts3.4/models/models_0.d.ts +146 -292
- package/package.json +6 -6
|
@@ -13,10 +13,6 @@ export interface Tag {
|
|
|
13
13
|
|
|
14
14
|
Value?: string;
|
|
15
15
|
}
|
|
16
|
-
export declare namespace Tag {
|
|
17
|
-
|
|
18
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
19
|
-
}
|
|
20
16
|
export interface AddTagsInput {
|
|
21
17
|
|
|
22
18
|
Tags: Tag[] | undefined;
|
|
@@ -25,10 +21,6 @@ export interface AddTagsInput {
|
|
|
25
21
|
|
|
26
22
|
ResourceType: TaggableResourceType | string | undefined;
|
|
27
23
|
}
|
|
28
|
-
export declare namespace AddTagsInput {
|
|
29
|
-
|
|
30
|
-
const filterSensitiveLog: (obj: AddTagsInput) => any;
|
|
31
|
-
}
|
|
32
24
|
|
|
33
25
|
export interface AddTagsOutput {
|
|
34
26
|
|
|
@@ -36,10 +28,6 @@ export interface AddTagsOutput {
|
|
|
36
28
|
|
|
37
29
|
ResourceType?: TaggableResourceType | string;
|
|
38
30
|
}
|
|
39
|
-
export declare namespace AddTagsOutput {
|
|
40
|
-
|
|
41
|
-
const filterSensitiveLog: (obj: AddTagsOutput) => any;
|
|
42
|
-
}
|
|
43
31
|
|
|
44
32
|
export declare class InternalServerException extends __BaseException {
|
|
45
33
|
readonly name: "InternalServerException";
|
|
@@ -91,19 +79,11 @@ export interface CreateBatchPredictionInput {
|
|
|
91
79
|
|
|
92
80
|
OutputUri: string | undefined;
|
|
93
81
|
}
|
|
94
|
-
export declare namespace CreateBatchPredictionInput {
|
|
95
|
-
|
|
96
|
-
const filterSensitiveLog: (obj: CreateBatchPredictionInput) => any;
|
|
97
|
-
}
|
|
98
82
|
|
|
99
83
|
export interface CreateBatchPredictionOutput {
|
|
100
84
|
|
|
101
85
|
BatchPredictionId?: string;
|
|
102
86
|
}
|
|
103
|
-
export declare namespace CreateBatchPredictionOutput {
|
|
104
|
-
|
|
105
|
-
const filterSensitiveLog: (obj: CreateBatchPredictionOutput) => any;
|
|
106
|
-
}
|
|
107
87
|
|
|
108
88
|
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
109
89
|
readonly name: "IdempotentParameterMismatchException";
|
|
@@ -119,10 +99,6 @@ export interface RDSDatabaseCredentials {
|
|
|
119
99
|
|
|
120
100
|
Password: string | undefined;
|
|
121
101
|
}
|
|
122
|
-
export declare namespace RDSDatabaseCredentials {
|
|
123
|
-
|
|
124
|
-
const filterSensitiveLog: (obj: RDSDatabaseCredentials) => any;
|
|
125
|
-
}
|
|
126
102
|
|
|
127
103
|
export interface RDSDatabase {
|
|
128
104
|
|
|
@@ -130,10 +106,6 @@ export interface RDSDatabase {
|
|
|
130
106
|
|
|
131
107
|
DatabaseName: string | undefined;
|
|
132
108
|
}
|
|
133
|
-
export declare namespace RDSDatabase {
|
|
134
|
-
|
|
135
|
-
const filterSensitiveLog: (obj: RDSDatabase) => any;
|
|
136
|
-
}
|
|
137
109
|
|
|
138
110
|
export interface RDSDataSpec {
|
|
139
111
|
|
|
@@ -159,10 +131,6 @@ export interface RDSDataSpec {
|
|
|
159
131
|
|
|
160
132
|
SecurityGroupIds: string[] | undefined;
|
|
161
133
|
}
|
|
162
|
-
export declare namespace RDSDataSpec {
|
|
163
|
-
|
|
164
|
-
const filterSensitiveLog: (obj: RDSDataSpec) => any;
|
|
165
|
-
}
|
|
166
134
|
export interface CreateDataSourceFromRDSInput {
|
|
167
135
|
|
|
168
136
|
DataSourceId: string | undefined;
|
|
@@ -175,19 +143,11 @@ export interface CreateDataSourceFromRDSInput {
|
|
|
175
143
|
|
|
176
144
|
ComputeStatistics?: boolean;
|
|
177
145
|
}
|
|
178
|
-
export declare namespace CreateDataSourceFromRDSInput {
|
|
179
|
-
|
|
180
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromRDSInput) => any;
|
|
181
|
-
}
|
|
182
146
|
|
|
183
147
|
export interface CreateDataSourceFromRDSOutput {
|
|
184
148
|
|
|
185
149
|
DataSourceId?: string;
|
|
186
150
|
}
|
|
187
|
-
export declare namespace CreateDataSourceFromRDSOutput {
|
|
188
|
-
|
|
189
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromRDSOutput) => any;
|
|
190
|
-
}
|
|
191
151
|
|
|
192
152
|
export interface RedshiftDatabaseCredentials {
|
|
193
153
|
|
|
@@ -195,10 +155,6 @@ export interface RedshiftDatabaseCredentials {
|
|
|
195
155
|
|
|
196
156
|
Password: string | undefined;
|
|
197
157
|
}
|
|
198
|
-
export declare namespace RedshiftDatabaseCredentials {
|
|
199
|
-
|
|
200
|
-
const filterSensitiveLog: (obj: RedshiftDatabaseCredentials) => any;
|
|
201
|
-
}
|
|
202
158
|
|
|
203
159
|
export interface RedshiftDatabase {
|
|
204
160
|
|
|
@@ -206,10 +162,6 @@ export interface RedshiftDatabase {
|
|
|
206
162
|
|
|
207
163
|
ClusterIdentifier: string | undefined;
|
|
208
164
|
}
|
|
209
|
-
export declare namespace RedshiftDatabase {
|
|
210
|
-
|
|
211
|
-
const filterSensitiveLog: (obj: RedshiftDatabase) => any;
|
|
212
|
-
}
|
|
213
165
|
|
|
214
166
|
export interface RedshiftDataSpec {
|
|
215
167
|
|
|
@@ -227,10 +179,6 @@ export interface RedshiftDataSpec {
|
|
|
227
179
|
|
|
228
180
|
DataSchemaUri?: string;
|
|
229
181
|
}
|
|
230
|
-
export declare namespace RedshiftDataSpec {
|
|
231
|
-
|
|
232
|
-
const filterSensitiveLog: (obj: RedshiftDataSpec) => any;
|
|
233
|
-
}
|
|
234
182
|
export interface CreateDataSourceFromRedshiftInput {
|
|
235
183
|
|
|
236
184
|
DataSourceId: string | undefined;
|
|
@@ -243,19 +191,11 @@ export interface CreateDataSourceFromRedshiftInput {
|
|
|
243
191
|
|
|
244
192
|
ComputeStatistics?: boolean;
|
|
245
193
|
}
|
|
246
|
-
export declare namespace CreateDataSourceFromRedshiftInput {
|
|
247
|
-
|
|
248
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromRedshiftInput) => any;
|
|
249
|
-
}
|
|
250
194
|
|
|
251
195
|
export interface CreateDataSourceFromRedshiftOutput {
|
|
252
196
|
|
|
253
197
|
DataSourceId?: string;
|
|
254
198
|
}
|
|
255
|
-
export declare namespace CreateDataSourceFromRedshiftOutput {
|
|
256
|
-
|
|
257
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromRedshiftOutput) => any;
|
|
258
|
-
}
|
|
259
199
|
|
|
260
200
|
export interface S3DataSpec {
|
|
261
201
|
|
|
@@ -267,10 +207,6 @@ export interface S3DataSpec {
|
|
|
267
207
|
|
|
268
208
|
DataSchemaLocationS3?: string;
|
|
269
209
|
}
|
|
270
|
-
export declare namespace S3DataSpec {
|
|
271
|
-
|
|
272
|
-
const filterSensitiveLog: (obj: S3DataSpec) => any;
|
|
273
|
-
}
|
|
274
210
|
export interface CreateDataSourceFromS3Input {
|
|
275
211
|
|
|
276
212
|
DataSourceId: string | undefined;
|
|
@@ -281,19 +217,11 @@ export interface CreateDataSourceFromS3Input {
|
|
|
281
217
|
|
|
282
218
|
ComputeStatistics?: boolean;
|
|
283
219
|
}
|
|
284
|
-
export declare namespace CreateDataSourceFromS3Input {
|
|
285
|
-
|
|
286
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromS3Input) => any;
|
|
287
|
-
}
|
|
288
220
|
|
|
289
221
|
export interface CreateDataSourceFromS3Output {
|
|
290
222
|
|
|
291
223
|
DataSourceId?: string;
|
|
292
224
|
}
|
|
293
|
-
export declare namespace CreateDataSourceFromS3Output {
|
|
294
|
-
|
|
295
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromS3Output) => any;
|
|
296
|
-
}
|
|
297
225
|
export interface CreateEvaluationInput {
|
|
298
226
|
|
|
299
227
|
EvaluationId: string | undefined;
|
|
@@ -304,19 +232,11 @@ export interface CreateEvaluationInput {
|
|
|
304
232
|
|
|
305
233
|
EvaluationDataSourceId: string | undefined;
|
|
306
234
|
}
|
|
307
|
-
export declare namespace CreateEvaluationInput {
|
|
308
|
-
|
|
309
|
-
const filterSensitiveLog: (obj: CreateEvaluationInput) => any;
|
|
310
|
-
}
|
|
311
235
|
|
|
312
236
|
export interface CreateEvaluationOutput {
|
|
313
237
|
|
|
314
238
|
EvaluationId?: string;
|
|
315
239
|
}
|
|
316
|
-
export declare namespace CreateEvaluationOutput {
|
|
317
|
-
|
|
318
|
-
const filterSensitiveLog: (obj: CreateEvaluationOutput) => any;
|
|
319
|
-
}
|
|
320
240
|
export declare enum MLModelType {
|
|
321
241
|
BINARY = "BINARY",
|
|
322
242
|
MULTICLASS = "MULTICLASS",
|
|
@@ -338,27 +258,15 @@ export interface CreateMLModelInput {
|
|
|
338
258
|
|
|
339
259
|
RecipeUri?: string;
|
|
340
260
|
}
|
|
341
|
-
export declare namespace CreateMLModelInput {
|
|
342
|
-
|
|
343
|
-
const filterSensitiveLog: (obj: CreateMLModelInput) => any;
|
|
344
|
-
}
|
|
345
261
|
|
|
346
262
|
export interface CreateMLModelOutput {
|
|
347
263
|
|
|
348
264
|
MLModelId?: string;
|
|
349
265
|
}
|
|
350
|
-
export declare namespace CreateMLModelOutput {
|
|
351
|
-
|
|
352
|
-
const filterSensitiveLog: (obj: CreateMLModelOutput) => any;
|
|
353
|
-
}
|
|
354
266
|
export interface CreateRealtimeEndpointInput {
|
|
355
267
|
|
|
356
268
|
MLModelId: string | undefined;
|
|
357
269
|
}
|
|
358
|
-
export declare namespace CreateRealtimeEndpointInput {
|
|
359
|
-
|
|
360
|
-
const filterSensitiveLog: (obj: CreateRealtimeEndpointInput) => any;
|
|
361
|
-
}
|
|
362
270
|
export declare enum RealtimeEndpointStatus {
|
|
363
271
|
FAILED = "FAILED",
|
|
364
272
|
NONE = "NONE",
|
|
@@ -376,10 +284,6 @@ export interface RealtimeEndpointInfo {
|
|
|
376
284
|
|
|
377
285
|
EndpointStatus?: RealtimeEndpointStatus | string;
|
|
378
286
|
}
|
|
379
|
-
export declare namespace RealtimeEndpointInfo {
|
|
380
|
-
|
|
381
|
-
const filterSensitiveLog: (obj: RealtimeEndpointInfo) => any;
|
|
382
|
-
}
|
|
383
287
|
|
|
384
288
|
export interface CreateRealtimeEndpointOutput {
|
|
385
289
|
|
|
@@ -387,86 +291,46 @@ export interface CreateRealtimeEndpointOutput {
|
|
|
387
291
|
|
|
388
292
|
RealtimeEndpointInfo?: RealtimeEndpointInfo;
|
|
389
293
|
}
|
|
390
|
-
export declare namespace CreateRealtimeEndpointOutput {
|
|
391
|
-
|
|
392
|
-
const filterSensitiveLog: (obj: CreateRealtimeEndpointOutput) => any;
|
|
393
|
-
}
|
|
394
294
|
export interface DeleteBatchPredictionInput {
|
|
395
295
|
|
|
396
296
|
BatchPredictionId: string | undefined;
|
|
397
297
|
}
|
|
398
|
-
export declare namespace DeleteBatchPredictionInput {
|
|
399
|
-
|
|
400
|
-
const filterSensitiveLog: (obj: DeleteBatchPredictionInput) => any;
|
|
401
|
-
}
|
|
402
298
|
|
|
403
299
|
export interface DeleteBatchPredictionOutput {
|
|
404
300
|
|
|
405
301
|
BatchPredictionId?: string;
|
|
406
302
|
}
|
|
407
|
-
export declare namespace DeleteBatchPredictionOutput {
|
|
408
|
-
|
|
409
|
-
const filterSensitiveLog: (obj: DeleteBatchPredictionOutput) => any;
|
|
410
|
-
}
|
|
411
303
|
export interface DeleteDataSourceInput {
|
|
412
304
|
|
|
413
305
|
DataSourceId: string | undefined;
|
|
414
306
|
}
|
|
415
|
-
export declare namespace DeleteDataSourceInput {
|
|
416
|
-
|
|
417
|
-
const filterSensitiveLog: (obj: DeleteDataSourceInput) => any;
|
|
418
|
-
}
|
|
419
307
|
|
|
420
308
|
export interface DeleteDataSourceOutput {
|
|
421
309
|
|
|
422
310
|
DataSourceId?: string;
|
|
423
311
|
}
|
|
424
|
-
export declare namespace DeleteDataSourceOutput {
|
|
425
|
-
|
|
426
|
-
const filterSensitiveLog: (obj: DeleteDataSourceOutput) => any;
|
|
427
|
-
}
|
|
428
312
|
export interface DeleteEvaluationInput {
|
|
429
313
|
|
|
430
314
|
EvaluationId: string | undefined;
|
|
431
315
|
}
|
|
432
|
-
export declare namespace DeleteEvaluationInput {
|
|
433
|
-
|
|
434
|
-
const filterSensitiveLog: (obj: DeleteEvaluationInput) => any;
|
|
435
|
-
}
|
|
436
316
|
|
|
437
317
|
export interface DeleteEvaluationOutput {
|
|
438
318
|
|
|
439
319
|
EvaluationId?: string;
|
|
440
320
|
}
|
|
441
|
-
export declare namespace DeleteEvaluationOutput {
|
|
442
|
-
|
|
443
|
-
const filterSensitiveLog: (obj: DeleteEvaluationOutput) => any;
|
|
444
|
-
}
|
|
445
321
|
export interface DeleteMLModelInput {
|
|
446
322
|
|
|
447
323
|
MLModelId: string | undefined;
|
|
448
324
|
}
|
|
449
|
-
export declare namespace DeleteMLModelInput {
|
|
450
|
-
|
|
451
|
-
const filterSensitiveLog: (obj: DeleteMLModelInput) => any;
|
|
452
|
-
}
|
|
453
325
|
|
|
454
326
|
export interface DeleteMLModelOutput {
|
|
455
327
|
|
|
456
328
|
MLModelId?: string;
|
|
457
329
|
}
|
|
458
|
-
export declare namespace DeleteMLModelOutput {
|
|
459
|
-
|
|
460
|
-
const filterSensitiveLog: (obj: DeleteMLModelOutput) => any;
|
|
461
|
-
}
|
|
462
330
|
export interface DeleteRealtimeEndpointInput {
|
|
463
331
|
|
|
464
332
|
MLModelId: string | undefined;
|
|
465
333
|
}
|
|
466
|
-
export declare namespace DeleteRealtimeEndpointInput {
|
|
467
|
-
|
|
468
|
-
const filterSensitiveLog: (obj: DeleteRealtimeEndpointInput) => any;
|
|
469
|
-
}
|
|
470
334
|
|
|
471
335
|
export interface DeleteRealtimeEndpointOutput {
|
|
472
336
|
|
|
@@ -474,10 +338,6 @@ export interface DeleteRealtimeEndpointOutput {
|
|
|
474
338
|
|
|
475
339
|
RealtimeEndpointInfo?: RealtimeEndpointInfo;
|
|
476
340
|
}
|
|
477
|
-
export declare namespace DeleteRealtimeEndpointOutput {
|
|
478
|
-
|
|
479
|
-
const filterSensitiveLog: (obj: DeleteRealtimeEndpointOutput) => any;
|
|
480
|
-
}
|
|
481
341
|
export interface DeleteTagsInput {
|
|
482
342
|
|
|
483
343
|
TagKeys: string[] | undefined;
|
|
@@ -486,10 +346,6 @@ export interface DeleteTagsInput {
|
|
|
486
346
|
|
|
487
347
|
ResourceType: TaggableResourceType | string | undefined;
|
|
488
348
|
}
|
|
489
|
-
export declare namespace DeleteTagsInput {
|
|
490
|
-
|
|
491
|
-
const filterSensitiveLog: (obj: DeleteTagsInput) => any;
|
|
492
|
-
}
|
|
493
349
|
|
|
494
350
|
export interface DeleteTagsOutput {
|
|
495
351
|
|
|
@@ -497,10 +353,6 @@ export interface DeleteTagsOutput {
|
|
|
497
353
|
|
|
498
354
|
ResourceType?: TaggableResourceType | string;
|
|
499
355
|
}
|
|
500
|
-
export declare namespace DeleteTagsOutput {
|
|
501
|
-
|
|
502
|
-
const filterSensitiveLog: (obj: DeleteTagsOutput) => any;
|
|
503
|
-
}
|
|
504
356
|
export declare enum BatchPredictionFilterVariable {
|
|
505
357
|
CREATED_AT = "CreatedAt",
|
|
506
358
|
DATASOURCE_ID = "DataSourceId",
|
|
@@ -539,10 +391,6 @@ export interface DescribeBatchPredictionsInput {
|
|
|
539
391
|
|
|
540
392
|
Limit?: number;
|
|
541
393
|
}
|
|
542
|
-
export declare namespace DescribeBatchPredictionsInput {
|
|
543
|
-
|
|
544
|
-
const filterSensitiveLog: (obj: DescribeBatchPredictionsInput) => any;
|
|
545
|
-
}
|
|
546
394
|
export declare enum EntityStatus {
|
|
547
395
|
COMPLETED = "COMPLETED",
|
|
548
396
|
DELETED = "DELETED",
|
|
@@ -585,10 +433,6 @@ export interface BatchPrediction {
|
|
|
585
433
|
|
|
586
434
|
InvalidRecordCount?: number;
|
|
587
435
|
}
|
|
588
|
-
export declare namespace BatchPrediction {
|
|
589
|
-
|
|
590
|
-
const filterSensitiveLog: (obj: BatchPrediction) => any;
|
|
591
|
-
}
|
|
592
436
|
|
|
593
437
|
export interface DescribeBatchPredictionsOutput {
|
|
594
438
|
|
|
@@ -596,10 +440,6 @@ export interface DescribeBatchPredictionsOutput {
|
|
|
596
440
|
|
|
597
441
|
NextToken?: string;
|
|
598
442
|
}
|
|
599
|
-
export declare namespace DescribeBatchPredictionsOutput {
|
|
600
|
-
|
|
601
|
-
const filterSensitiveLog: (obj: DescribeBatchPredictionsOutput) => any;
|
|
602
|
-
}
|
|
603
443
|
export declare enum DataSourceFilterVariable {
|
|
604
444
|
CREATED_AT = "CreatedAt",
|
|
605
445
|
DATA_URI = "DataLocationS3",
|
|
@@ -632,10 +472,6 @@ export interface DescribeDataSourcesInput {
|
|
|
632
472
|
|
|
633
473
|
Limit?: number;
|
|
634
474
|
}
|
|
635
|
-
export declare namespace DescribeDataSourcesInput {
|
|
636
|
-
|
|
637
|
-
const filterSensitiveLog: (obj: DescribeDataSourcesInput) => any;
|
|
638
|
-
}
|
|
639
475
|
|
|
640
476
|
export interface RDSMetadata {
|
|
641
477
|
|
|
@@ -651,10 +487,6 @@ export interface RDSMetadata {
|
|
|
651
487
|
|
|
652
488
|
DataPipelineId?: string;
|
|
653
489
|
}
|
|
654
|
-
export declare namespace RDSMetadata {
|
|
655
|
-
|
|
656
|
-
const filterSensitiveLog: (obj: RDSMetadata) => any;
|
|
657
|
-
}
|
|
658
490
|
|
|
659
491
|
export interface RedshiftMetadata {
|
|
660
492
|
|
|
@@ -664,10 +496,6 @@ export interface RedshiftMetadata {
|
|
|
664
496
|
|
|
665
497
|
SelectSqlQuery?: string;
|
|
666
498
|
}
|
|
667
|
-
export declare namespace RedshiftMetadata {
|
|
668
|
-
|
|
669
|
-
const filterSensitiveLog: (obj: RedshiftMetadata) => any;
|
|
670
|
-
}
|
|
671
499
|
|
|
672
500
|
export interface DataSource {
|
|
673
501
|
|
|
@@ -707,10 +535,6 @@ export interface DataSource {
|
|
|
707
535
|
|
|
708
536
|
StartedAt?: Date;
|
|
709
537
|
}
|
|
710
|
-
export declare namespace DataSource {
|
|
711
|
-
|
|
712
|
-
const filterSensitiveLog: (obj: DataSource) => any;
|
|
713
|
-
}
|
|
714
538
|
|
|
715
539
|
export interface DescribeDataSourcesOutput {
|
|
716
540
|
|
|
@@ -718,10 +542,6 @@ export interface DescribeDataSourcesOutput {
|
|
|
718
542
|
|
|
719
543
|
NextToken?: string;
|
|
720
544
|
}
|
|
721
|
-
export declare namespace DescribeDataSourcesOutput {
|
|
722
|
-
|
|
723
|
-
const filterSensitiveLog: (obj: DescribeDataSourcesOutput) => any;
|
|
724
|
-
}
|
|
725
545
|
export declare enum EvaluationFilterVariable {
|
|
726
546
|
CREATED_AT = "CreatedAt",
|
|
727
547
|
DATASOURCE_ID = "DataSourceId",
|
|
@@ -756,18 +576,10 @@ export interface DescribeEvaluationsInput {
|
|
|
756
576
|
|
|
757
577
|
Limit?: number;
|
|
758
578
|
}
|
|
759
|
-
export declare namespace DescribeEvaluationsInput {
|
|
760
|
-
|
|
761
|
-
const filterSensitiveLog: (obj: DescribeEvaluationsInput) => any;
|
|
762
|
-
}
|
|
763
579
|
|
|
764
580
|
export interface PerformanceMetrics {
|
|
765
581
|
Properties?: Record<string, string>;
|
|
766
582
|
}
|
|
767
|
-
export declare namespace PerformanceMetrics {
|
|
768
|
-
|
|
769
|
-
const filterSensitiveLog: (obj: PerformanceMetrics) => any;
|
|
770
|
-
}
|
|
771
583
|
|
|
772
584
|
export interface Evaluation {
|
|
773
585
|
|
|
@@ -799,10 +611,6 @@ export interface Evaluation {
|
|
|
799
611
|
|
|
800
612
|
StartedAt?: Date;
|
|
801
613
|
}
|
|
802
|
-
export declare namespace Evaluation {
|
|
803
|
-
|
|
804
|
-
const filterSensitiveLog: (obj: Evaluation) => any;
|
|
805
|
-
}
|
|
806
614
|
|
|
807
615
|
export interface DescribeEvaluationsOutput {
|
|
808
616
|
|
|
@@ -810,10 +618,6 @@ export interface DescribeEvaluationsOutput {
|
|
|
810
618
|
|
|
811
619
|
NextToken?: string;
|
|
812
620
|
}
|
|
813
|
-
export declare namespace DescribeEvaluationsOutput {
|
|
814
|
-
|
|
815
|
-
const filterSensitiveLog: (obj: DescribeEvaluationsOutput) => any;
|
|
816
|
-
}
|
|
817
621
|
export declare enum MLModelFilterVariable {
|
|
818
622
|
ALGORITHM = "Algorithm",
|
|
819
623
|
CREATED_AT = "CreatedAt",
|
|
@@ -850,10 +654,6 @@ export interface DescribeMLModelsInput {
|
|
|
850
654
|
|
|
851
655
|
Limit?: number;
|
|
852
656
|
}
|
|
853
|
-
export declare namespace DescribeMLModelsInput {
|
|
854
|
-
|
|
855
|
-
const filterSensitiveLog: (obj: DescribeMLModelsInput) => any;
|
|
856
|
-
}
|
|
857
657
|
|
|
858
658
|
export interface MLModel {
|
|
859
659
|
|
|
@@ -894,10 +694,6 @@ export interface MLModel {
|
|
|
894
694
|
|
|
895
695
|
StartedAt?: Date;
|
|
896
696
|
}
|
|
897
|
-
export declare namespace MLModel {
|
|
898
|
-
|
|
899
|
-
const filterSensitiveLog: (obj: MLModel) => any;
|
|
900
|
-
}
|
|
901
697
|
|
|
902
698
|
export interface DescribeMLModelsOutput {
|
|
903
699
|
|
|
@@ -905,20 +701,12 @@ export interface DescribeMLModelsOutput {
|
|
|
905
701
|
|
|
906
702
|
NextToken?: string;
|
|
907
703
|
}
|
|
908
|
-
export declare namespace DescribeMLModelsOutput {
|
|
909
|
-
|
|
910
|
-
const filterSensitiveLog: (obj: DescribeMLModelsOutput) => any;
|
|
911
|
-
}
|
|
912
704
|
export interface DescribeTagsInput {
|
|
913
705
|
|
|
914
706
|
ResourceId: string | undefined;
|
|
915
707
|
|
|
916
708
|
ResourceType: TaggableResourceType | string | undefined;
|
|
917
709
|
}
|
|
918
|
-
export declare namespace DescribeTagsInput {
|
|
919
|
-
|
|
920
|
-
const filterSensitiveLog: (obj: DescribeTagsInput) => any;
|
|
921
|
-
}
|
|
922
710
|
|
|
923
711
|
export interface DescribeTagsOutput {
|
|
924
712
|
|
|
@@ -928,18 +716,10 @@ export interface DescribeTagsOutput {
|
|
|
928
716
|
|
|
929
717
|
Tags?: Tag[];
|
|
930
718
|
}
|
|
931
|
-
export declare namespace DescribeTagsOutput {
|
|
932
|
-
|
|
933
|
-
const filterSensitiveLog: (obj: DescribeTagsOutput) => any;
|
|
934
|
-
}
|
|
935
719
|
export interface GetBatchPredictionInput {
|
|
936
720
|
|
|
937
721
|
BatchPredictionId: string | undefined;
|
|
938
722
|
}
|
|
939
|
-
export declare namespace GetBatchPredictionInput {
|
|
940
|
-
|
|
941
|
-
const filterSensitiveLog: (obj: GetBatchPredictionInput) => any;
|
|
942
|
-
}
|
|
943
723
|
|
|
944
724
|
export interface GetBatchPredictionOutput {
|
|
945
725
|
|
|
@@ -977,20 +757,12 @@ export interface GetBatchPredictionOutput {
|
|
|
977
757
|
|
|
978
758
|
InvalidRecordCount?: number;
|
|
979
759
|
}
|
|
980
|
-
export declare namespace GetBatchPredictionOutput {
|
|
981
|
-
|
|
982
|
-
const filterSensitiveLog: (obj: GetBatchPredictionOutput) => any;
|
|
983
|
-
}
|
|
984
760
|
export interface GetDataSourceInput {
|
|
985
761
|
|
|
986
762
|
DataSourceId: string | undefined;
|
|
987
763
|
|
|
988
764
|
Verbose?: boolean;
|
|
989
765
|
}
|
|
990
|
-
export declare namespace GetDataSourceInput {
|
|
991
|
-
|
|
992
|
-
const filterSensitiveLog: (obj: GetDataSourceInput) => any;
|
|
993
|
-
}
|
|
994
766
|
|
|
995
767
|
export interface GetDataSourceOutput {
|
|
996
768
|
|
|
@@ -1034,18 +806,10 @@ export interface GetDataSourceOutput {
|
|
|
1034
806
|
|
|
1035
807
|
DataSourceSchema?: string;
|
|
1036
808
|
}
|
|
1037
|
-
export declare namespace GetDataSourceOutput {
|
|
1038
|
-
|
|
1039
|
-
const filterSensitiveLog: (obj: GetDataSourceOutput) => any;
|
|
1040
|
-
}
|
|
1041
809
|
export interface GetEvaluationInput {
|
|
1042
810
|
|
|
1043
811
|
EvaluationId: string | undefined;
|
|
1044
812
|
}
|
|
1045
|
-
export declare namespace GetEvaluationInput {
|
|
1046
|
-
|
|
1047
|
-
const filterSensitiveLog: (obj: GetEvaluationInput) => any;
|
|
1048
|
-
}
|
|
1049
813
|
|
|
1050
814
|
export interface GetEvaluationOutput {
|
|
1051
815
|
|
|
@@ -1079,20 +843,12 @@ export interface GetEvaluationOutput {
|
|
|
1079
843
|
|
|
1080
844
|
StartedAt?: Date;
|
|
1081
845
|
}
|
|
1082
|
-
export declare namespace GetEvaluationOutput {
|
|
1083
|
-
|
|
1084
|
-
const filterSensitiveLog: (obj: GetEvaluationOutput) => any;
|
|
1085
|
-
}
|
|
1086
846
|
export interface GetMLModelInput {
|
|
1087
847
|
|
|
1088
848
|
MLModelId: string | undefined;
|
|
1089
849
|
|
|
1090
850
|
Verbose?: boolean;
|
|
1091
851
|
}
|
|
1092
|
-
export declare namespace GetMLModelInput {
|
|
1093
|
-
|
|
1094
|
-
const filterSensitiveLog: (obj: GetMLModelInput) => any;
|
|
1095
|
-
}
|
|
1096
852
|
|
|
1097
853
|
export interface GetMLModelOutput {
|
|
1098
854
|
|
|
@@ -1138,10 +894,6 @@ export interface GetMLModelOutput {
|
|
|
1138
894
|
|
|
1139
895
|
Schema?: string;
|
|
1140
896
|
}
|
|
1141
|
-
export declare namespace GetMLModelOutput {
|
|
1142
|
-
|
|
1143
|
-
const filterSensitiveLog: (obj: GetMLModelOutput) => any;
|
|
1144
|
-
}
|
|
1145
897
|
|
|
1146
898
|
export declare class LimitExceededException extends __BaseException {
|
|
1147
899
|
readonly name: "LimitExceededException";
|
|
@@ -1157,10 +909,6 @@ export interface PredictInput {
|
|
|
1157
909
|
Record: Record<string, string> | undefined;
|
|
1158
910
|
PredictEndpoint: string | undefined;
|
|
1159
911
|
}
|
|
1160
|
-
export declare namespace PredictInput {
|
|
1161
|
-
|
|
1162
|
-
const filterSensitiveLog: (obj: PredictInput) => any;
|
|
1163
|
-
}
|
|
1164
912
|
|
|
1165
913
|
export declare class PredictorNotMountedException extends __BaseException {
|
|
1166
914
|
readonly name: "PredictorNotMountedException";
|
|
@@ -1183,75 +931,43 @@ export interface Prediction {
|
|
|
1183
931
|
|
|
1184
932
|
details?: Record<string, string>;
|
|
1185
933
|
}
|
|
1186
|
-
export declare namespace Prediction {
|
|
1187
|
-
|
|
1188
|
-
const filterSensitiveLog: (obj: Prediction) => any;
|
|
1189
|
-
}
|
|
1190
934
|
export interface PredictOutput {
|
|
1191
935
|
|
|
1192
936
|
Prediction?: Prediction;
|
|
1193
937
|
}
|
|
1194
|
-
export declare namespace PredictOutput {
|
|
1195
|
-
|
|
1196
|
-
const filterSensitiveLog: (obj: PredictOutput) => any;
|
|
1197
|
-
}
|
|
1198
938
|
export interface UpdateBatchPredictionInput {
|
|
1199
939
|
|
|
1200
940
|
BatchPredictionId: string | undefined;
|
|
1201
941
|
|
|
1202
942
|
BatchPredictionName: string | undefined;
|
|
1203
943
|
}
|
|
1204
|
-
export declare namespace UpdateBatchPredictionInput {
|
|
1205
|
-
|
|
1206
|
-
const filterSensitiveLog: (obj: UpdateBatchPredictionInput) => any;
|
|
1207
|
-
}
|
|
1208
944
|
|
|
1209
945
|
export interface UpdateBatchPredictionOutput {
|
|
1210
946
|
|
|
1211
947
|
BatchPredictionId?: string;
|
|
1212
948
|
}
|
|
1213
|
-
export declare namespace UpdateBatchPredictionOutput {
|
|
1214
|
-
|
|
1215
|
-
const filterSensitiveLog: (obj: UpdateBatchPredictionOutput) => any;
|
|
1216
|
-
}
|
|
1217
949
|
export interface UpdateDataSourceInput {
|
|
1218
950
|
|
|
1219
951
|
DataSourceId: string | undefined;
|
|
1220
952
|
|
|
1221
953
|
DataSourceName: string | undefined;
|
|
1222
954
|
}
|
|
1223
|
-
export declare namespace UpdateDataSourceInput {
|
|
1224
|
-
|
|
1225
|
-
const filterSensitiveLog: (obj: UpdateDataSourceInput) => any;
|
|
1226
|
-
}
|
|
1227
955
|
|
|
1228
956
|
export interface UpdateDataSourceOutput {
|
|
1229
957
|
|
|
1230
958
|
DataSourceId?: string;
|
|
1231
959
|
}
|
|
1232
|
-
export declare namespace UpdateDataSourceOutput {
|
|
1233
|
-
|
|
1234
|
-
const filterSensitiveLog: (obj: UpdateDataSourceOutput) => any;
|
|
1235
|
-
}
|
|
1236
960
|
export interface UpdateEvaluationInput {
|
|
1237
961
|
|
|
1238
962
|
EvaluationId: string | undefined;
|
|
1239
963
|
|
|
1240
964
|
EvaluationName: string | undefined;
|
|
1241
965
|
}
|
|
1242
|
-
export declare namespace UpdateEvaluationInput {
|
|
1243
|
-
|
|
1244
|
-
const filterSensitiveLog: (obj: UpdateEvaluationInput) => any;
|
|
1245
|
-
}
|
|
1246
966
|
|
|
1247
967
|
export interface UpdateEvaluationOutput {
|
|
1248
968
|
|
|
1249
969
|
EvaluationId?: string;
|
|
1250
970
|
}
|
|
1251
|
-
export declare namespace UpdateEvaluationOutput {
|
|
1252
|
-
|
|
1253
|
-
const filterSensitiveLog: (obj: UpdateEvaluationOutput) => any;
|
|
1254
|
-
}
|
|
1255
971
|
export interface UpdateMLModelInput {
|
|
1256
972
|
|
|
1257
973
|
MLModelId: string | undefined;
|
|
@@ -1260,16 +976,154 @@ export interface UpdateMLModelInput {
|
|
|
1260
976
|
|
|
1261
977
|
ScoreThreshold?: number;
|
|
1262
978
|
}
|
|
1263
|
-
export declare namespace UpdateMLModelInput {
|
|
1264
|
-
|
|
1265
|
-
const filterSensitiveLog: (obj: UpdateMLModelInput) => any;
|
|
1266
|
-
}
|
|
1267
979
|
|
|
1268
980
|
export interface UpdateMLModelOutput {
|
|
1269
981
|
|
|
1270
982
|
MLModelId?: string;
|
|
1271
983
|
}
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
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;
|