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