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