@aws-sdk/client-sagemaker 3.301.0 → 3.306.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/dist-cjs/models/models_0.js +876 -960
- package/dist-cjs/models/models_1.js +228 -262
- package/dist-cjs/models/models_2.js +400 -457
- package/dist-cjs/models/models_3.js +232 -283
- package/dist-cjs/models/models_4.js +5 -6
- package/dist-cjs/protocols/Aws_json1_1.js +26 -0
- package/dist-es/models/models_0.js +874 -958
- package/dist-es/models/models_1.js +228 -262
- package/dist-es/models/models_2.js +400 -457
- package/dist-es/models/models_3.js +232 -283
- package/dist-es/models/models_4.js +5 -6
- package/dist-es/protocols/Aws_json1_1.js +26 -0
- package/dist-types/SageMaker.d.ts +3 -9
- package/dist-types/commands/CreateAutoMLJobCommand.d.ts +1 -3
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +2 -6
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +5 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +1379 -966
- package/dist-types/models/models_1.d.ts +429 -245
- package/dist-types/models/models_2.d.ts +693 -464
- package/dist-types/models/models_3.d.ts +550 -248
- package/dist-types/models/models_4.d.ts +26 -9
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateAppImageConfigCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +1035 -875
- package/dist-types/ts3.4/models/models_1.d.ts +292 -230
- package/dist-types/ts3.4/models/models_2.d.ts +504 -415
- package/dist-types/ts3.4/models/models_3.d.ts +341 -238
- package/dist-types/ts3.4/models/models_4.d.ts +13 -6
- package/package.json +35 -35
|
@@ -20,15 +20,20 @@ export interface ActionSource {
|
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
22
22
|
* @public
|
|
23
|
+
* @enum
|
|
23
24
|
*/
|
|
24
|
-
export declare
|
|
25
|
-
COMPLETED
|
|
26
|
-
FAILED
|
|
27
|
-
IN_PROGRESS
|
|
28
|
-
STOPPED
|
|
29
|
-
STOPPING
|
|
30
|
-
UNKNOWN
|
|
31
|
-
}
|
|
25
|
+
export declare const ActionStatus: {
|
|
26
|
+
readonly COMPLETED: "Completed";
|
|
27
|
+
readonly FAILED: "Failed";
|
|
28
|
+
readonly IN_PROGRESS: "InProgress";
|
|
29
|
+
readonly STOPPED: "Stopped";
|
|
30
|
+
readonly STOPPING: "Stopping";
|
|
31
|
+
readonly UNKNOWN: "Unknown";
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
|
|
32
37
|
/**
|
|
33
38
|
* @public
|
|
34
39
|
* <p>Lists the properties of an <i>action</i>. An action represents an action
|
|
@@ -67,13 +72,18 @@ export interface ActionSummary {
|
|
|
67
72
|
}
|
|
68
73
|
/**
|
|
69
74
|
* @public
|
|
75
|
+
* @enum
|
|
70
76
|
*/
|
|
71
|
-
export declare
|
|
72
|
-
ASSOCIATED_WITH
|
|
73
|
-
CONTRIBUTED_TO
|
|
74
|
-
DERIVED_FROM
|
|
75
|
-
PRODUCED
|
|
76
|
-
}
|
|
77
|
+
export declare const AssociationEdgeType: {
|
|
78
|
+
readonly ASSOCIATED_WITH: "AssociatedWith";
|
|
79
|
+
readonly CONTRIBUTED_TO: "ContributedTo";
|
|
80
|
+
readonly DERIVED_FROM: "DerivedFrom";
|
|
81
|
+
readonly PRODUCED: "Produced";
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export type AssociationEdgeType = (typeof AssociationEdgeType)[keyof typeof AssociationEdgeType];
|
|
77
87
|
/**
|
|
78
88
|
* @public
|
|
79
89
|
*/
|
|
@@ -225,187 +235,197 @@ export interface ModelPackageContainerDefinition {
|
|
|
225
235
|
}
|
|
226
236
|
/**
|
|
227
237
|
* @public
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
238
|
+
* @enum
|
|
239
|
+
*/
|
|
240
|
+
export declare const ProductionVariantInstanceType: {
|
|
241
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
242
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
243
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
244
|
+
readonly ML_C4_LARGE: "ml.c4.large";
|
|
245
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
246
|
+
readonly ML_C5D_18XLARGE: "ml.c5d.18xlarge";
|
|
247
|
+
readonly ML_C5D_2XLARGE: "ml.c5d.2xlarge";
|
|
248
|
+
readonly ML_C5D_4XLARGE: "ml.c5d.4xlarge";
|
|
249
|
+
readonly ML_C5D_9XLARGE: "ml.c5d.9xlarge";
|
|
250
|
+
readonly ML_C5D_LARGE: "ml.c5d.large";
|
|
251
|
+
readonly ML_C5D_XLARGE: "ml.c5d.xlarge";
|
|
252
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
253
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
254
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
255
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
256
|
+
readonly ML_C5_LARGE: "ml.c5.large";
|
|
257
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
258
|
+
readonly ML_C6GD_12XLARGE: "ml.c6gd.12xlarge";
|
|
259
|
+
readonly ML_C6GD_16XLARGE: "ml.c6gd.16xlarge";
|
|
260
|
+
readonly ML_C6GD_2XLARGE: "ml.c6gd.2xlarge";
|
|
261
|
+
readonly ML_C6GD_4XLARGE: "ml.c6gd.4xlarge";
|
|
262
|
+
readonly ML_C6GD_8XLARGE: "ml.c6gd.8xlarge";
|
|
263
|
+
readonly ML_C6GD_LARGE: "ml.c6gd.large";
|
|
264
|
+
readonly ML_C6GD_XLARGE: "ml.c6gd.xlarge";
|
|
265
|
+
readonly ML_C6GN_12XLARGE: "ml.c6gn.12xlarge";
|
|
266
|
+
readonly ML_C6GN_16XLARGE: "ml.c6gn.16xlarge";
|
|
267
|
+
readonly ML_C6GN_2XLARGE: "ml.c6gn.2xlarge";
|
|
268
|
+
readonly ML_C6GN_4XLARGE: "ml.c6gn.4xlarge";
|
|
269
|
+
readonly ML_C6GN_8XLARGE: "ml.c6gn.8xlarge";
|
|
270
|
+
readonly ML_C6GN_LARGE: "ml.c6gn.large";
|
|
271
|
+
readonly ML_C6GN_XLARGE: "ml.c6gn.xlarge";
|
|
272
|
+
readonly ML_C6G_12XLARGE: "ml.c6g.12xlarge";
|
|
273
|
+
readonly ML_C6G_16XLARGE: "ml.c6g.16xlarge";
|
|
274
|
+
readonly ML_C6G_2XLARGE: "ml.c6g.2xlarge";
|
|
275
|
+
readonly ML_C6G_4XLARGE: "ml.c6g.4xlarge";
|
|
276
|
+
readonly ML_C6G_8XLARGE: "ml.c6g.8xlarge";
|
|
277
|
+
readonly ML_C6G_LARGE: "ml.c6g.large";
|
|
278
|
+
readonly ML_C6G_XLARGE: "ml.c6g.xlarge";
|
|
279
|
+
readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
|
|
280
|
+
readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
|
|
281
|
+
readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
|
|
282
|
+
readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
|
|
283
|
+
readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
|
|
284
|
+
readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
|
|
285
|
+
readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
|
|
286
|
+
readonly ML_C6I_LARGE: "ml.c6i.large";
|
|
287
|
+
readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
|
|
288
|
+
readonly ML_C7G_12XLARGE: "ml.c7g.12xlarge";
|
|
289
|
+
readonly ML_C7G_16XLARGE: "ml.c7g.16xlarge";
|
|
290
|
+
readonly ML_C7G_2XLARGE: "ml.c7g.2xlarge";
|
|
291
|
+
readonly ML_C7G_4XLARGE: "ml.c7g.4xlarge";
|
|
292
|
+
readonly ML_C7G_8XLARGE: "ml.c7g.8xlarge";
|
|
293
|
+
readonly ML_C7G_LARGE: "ml.c7g.large";
|
|
294
|
+
readonly ML_C7G_XLARGE: "ml.c7g.xlarge";
|
|
295
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
296
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
297
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
298
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
299
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
300
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
301
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
302
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
303
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
304
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
305
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
306
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
307
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
308
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
309
|
+
readonly ML_INF1_24XLARGE: "ml.inf1.24xlarge";
|
|
310
|
+
readonly ML_INF1_2XLARGE: "ml.inf1.2xlarge";
|
|
311
|
+
readonly ML_INF1_6XLARGE: "ml.inf1.6xlarge";
|
|
312
|
+
readonly ML_INF1_XLARGE: "ml.inf1.xlarge";
|
|
313
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
314
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
315
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
316
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
317
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
318
|
+
readonly ML_M5D_12XLARGE: "ml.m5d.12xlarge";
|
|
319
|
+
readonly ML_M5D_24XLARGE: "ml.m5d.24xlarge";
|
|
320
|
+
readonly ML_M5D_2XLARGE: "ml.m5d.2xlarge";
|
|
321
|
+
readonly ML_M5D_4XLARGE: "ml.m5d.4xlarge";
|
|
322
|
+
readonly ML_M5D_LARGE: "ml.m5d.large";
|
|
323
|
+
readonly ML_M5D_XLARGE: "ml.m5d.xlarge";
|
|
324
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
325
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
326
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
327
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
328
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
329
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
330
|
+
readonly ML_M6GD_12XLARGE: "ml.m6gd.12xlarge";
|
|
331
|
+
readonly ML_M6GD_16XLARGE: "ml.m6gd.16xlarge";
|
|
332
|
+
readonly ML_M6GD_2XLARGE: "ml.m6gd.2xlarge";
|
|
333
|
+
readonly ML_M6GD_4XLARGE: "ml.m6gd.4xlarge";
|
|
334
|
+
readonly ML_M6GD_8XLARGE: "ml.m6gd.8xlarge";
|
|
335
|
+
readonly ML_M6GD_LARGE: "ml.m6gd.large";
|
|
336
|
+
readonly ML_M6GD_XLARGE: "ml.m6gd.xlarge";
|
|
337
|
+
readonly ML_M6G_12XLARGE: "ml.m6g.12xlarge";
|
|
338
|
+
readonly ML_M6G_16XLARGE: "ml.m6g.16xlarge";
|
|
339
|
+
readonly ML_M6G_2XLARGE: "ml.m6g.2xlarge";
|
|
340
|
+
readonly ML_M6G_4XLARGE: "ml.m6g.4xlarge";
|
|
341
|
+
readonly ML_M6G_8XLARGE: "ml.m6g.8xlarge";
|
|
342
|
+
readonly ML_M6G_LARGE: "ml.m6g.large";
|
|
343
|
+
readonly ML_M6G_XLARGE: "ml.m6g.xlarge";
|
|
344
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
345
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
346
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
347
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
348
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
349
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
350
|
+
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
351
|
+
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
352
|
+
readonly ML_R5D_12XLARGE: "ml.r5d.12xlarge";
|
|
353
|
+
readonly ML_R5D_24XLARGE: "ml.r5d.24xlarge";
|
|
354
|
+
readonly ML_R5D_2XLARGE: "ml.r5d.2xlarge";
|
|
355
|
+
readonly ML_R5D_4XLARGE: "ml.r5d.4xlarge";
|
|
356
|
+
readonly ML_R5D_LARGE: "ml.r5d.large";
|
|
357
|
+
readonly ML_R5D_XLARGE: "ml.r5d.xlarge";
|
|
358
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
359
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
360
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
361
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
362
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
363
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
364
|
+
readonly ML_R6GD_12XLARGE: "ml.r6gd.12xlarge";
|
|
365
|
+
readonly ML_R6GD_16XLARGE: "ml.r6gd.16xlarge";
|
|
366
|
+
readonly ML_R6GD_2XLARGE: "ml.r6gd.2xlarge";
|
|
367
|
+
readonly ML_R6GD_4XLARGE: "ml.r6gd.4xlarge";
|
|
368
|
+
readonly ML_R6GD_8XLARGE: "ml.r6gd.8xlarge";
|
|
369
|
+
readonly ML_R6GD_LARGE: "ml.r6gd.large";
|
|
370
|
+
readonly ML_R6GD_XLARGE: "ml.r6gd.xlarge";
|
|
371
|
+
readonly ML_R6G_12XLARGE: "ml.r6g.12xlarge";
|
|
372
|
+
readonly ML_R6G_16XLARGE: "ml.r6g.16xlarge";
|
|
373
|
+
readonly ML_R6G_2XLARGE: "ml.r6g.2xlarge";
|
|
374
|
+
readonly ML_R6G_4XLARGE: "ml.r6g.4xlarge";
|
|
375
|
+
readonly ML_R6G_8XLARGE: "ml.r6g.8xlarge";
|
|
376
|
+
readonly ML_R6G_LARGE: "ml.r6g.large";
|
|
377
|
+
readonly ML_R6G_XLARGE: "ml.r6g.xlarge";
|
|
378
|
+
readonly ML_T2_2XLARGE: "ml.t2.2xlarge";
|
|
379
|
+
readonly ML_T2_LARGE: "ml.t2.large";
|
|
380
|
+
readonly ML_T2_MEDIUM: "ml.t2.medium";
|
|
381
|
+
readonly ML_T2_XLARGE: "ml.t2.xlarge";
|
|
382
|
+
};
|
|
383
|
+
/**
|
|
384
|
+
* @public
|
|
385
|
+
*/
|
|
386
|
+
export type ProductionVariantInstanceType = (typeof ProductionVariantInstanceType)[keyof typeof ProductionVariantInstanceType];
|
|
387
|
+
/**
|
|
388
|
+
* @public
|
|
389
|
+
* @enum
|
|
390
|
+
*/
|
|
391
|
+
export declare const TransformInstanceType: {
|
|
392
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
393
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
394
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
395
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
396
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
397
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
398
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
399
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
400
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
401
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
402
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
403
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
404
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
405
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
406
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
407
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
408
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
409
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
410
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
411
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
412
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
413
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
414
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
415
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
416
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
417
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
418
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
419
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
420
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
421
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
422
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
423
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
424
|
+
};
|
|
425
|
+
/**
|
|
426
|
+
* @public
|
|
427
|
+
*/
|
|
428
|
+
export type TransformInstanceType = (typeof TransformInstanceType)[keyof typeof TransformInstanceType];
|
|
409
429
|
/**
|
|
410
430
|
* @public
|
|
411
431
|
* <p>A structure of additional Inference Specification. Additional Inference Specification
|
|
@@ -518,11 +538,16 @@ export interface Alarm {
|
|
|
518
538
|
}
|
|
519
539
|
/**
|
|
520
540
|
* @public
|
|
541
|
+
* @enum
|
|
521
542
|
*/
|
|
522
|
-
export declare
|
|
523
|
-
CREATION_TIME
|
|
524
|
-
NAME
|
|
525
|
-
}
|
|
543
|
+
export declare const AlgorithmSortBy: {
|
|
544
|
+
readonly CREATION_TIME: "CreationTime";
|
|
545
|
+
readonly NAME: "Name";
|
|
546
|
+
};
|
|
547
|
+
/**
|
|
548
|
+
* @public
|
|
549
|
+
*/
|
|
550
|
+
export type AlgorithmSortBy = (typeof AlgorithmSortBy)[keyof typeof AlgorithmSortBy];
|
|
526
551
|
/**
|
|
527
552
|
* @public
|
|
528
553
|
* <p>Specifies a metric that the training algorithm writes to <code>stderr</code> or
|
|
@@ -548,11 +573,16 @@ export interface MetricDefinition {
|
|
|
548
573
|
}
|
|
549
574
|
/**
|
|
550
575
|
* @public
|
|
576
|
+
* @enum
|
|
551
577
|
*/
|
|
552
|
-
export declare
|
|
553
|
-
PLATFORM
|
|
554
|
-
VPC
|
|
555
|
-
}
|
|
578
|
+
export declare const TrainingRepositoryAccessMode: {
|
|
579
|
+
readonly PLATFORM: "Platform";
|
|
580
|
+
readonly VPC: "Vpc";
|
|
581
|
+
};
|
|
582
|
+
/**
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
585
|
+
export type TrainingRepositoryAccessMode = (typeof TrainingRepositoryAccessMode)[keyof typeof TrainingRepositoryAccessMode];
|
|
556
586
|
/**
|
|
557
587
|
* @public
|
|
558
588
|
* <p>An object containing authentication information for a private Docker registry.</p>
|
|
@@ -584,19 +614,24 @@ export interface TrainingImageConfig {
|
|
|
584
614
|
}
|
|
585
615
|
/**
|
|
586
616
|
* @public
|
|
617
|
+
* @enum
|
|
587
618
|
*/
|
|
588
|
-
export declare
|
|
589
|
-
FASTFILE
|
|
590
|
-
FILE
|
|
591
|
-
PIPE
|
|
592
|
-
}
|
|
619
|
+
export declare const TrainingInputMode: {
|
|
620
|
+
readonly FASTFILE: "FastFile";
|
|
621
|
+
readonly FILE: "File";
|
|
622
|
+
readonly PIPE: "Pipe";
|
|
623
|
+
};
|
|
624
|
+
/**
|
|
625
|
+
* @public
|
|
626
|
+
*/
|
|
627
|
+
export type TrainingInputMode = (typeof TrainingInputMode)[keyof typeof TrainingInputMode];
|
|
593
628
|
/**
|
|
594
629
|
* @public
|
|
595
630
|
* <p>Specifies the training algorithm to use in a <a>CreateTrainingJob</a>
|
|
596
631
|
* request.</p>
|
|
597
632
|
* <p>For more information about algorithms provided by SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html">Algorithms</a>. For
|
|
598
|
-
* information about using your own algorithms, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with
|
|
599
|
-
*
|
|
633
|
+
* information about using your own algorithms, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with
|
|
634
|
+
* Amazon SageMaker</a>. </p>
|
|
600
635
|
*/
|
|
601
636
|
export interface AlgorithmSpecification {
|
|
602
637
|
/**
|
|
@@ -725,23 +760,33 @@ export interface AlgorithmSpecification {
|
|
|
725
760
|
}
|
|
726
761
|
/**
|
|
727
762
|
* @public
|
|
763
|
+
* @enum
|
|
728
764
|
*/
|
|
729
|
-
export declare
|
|
730
|
-
COMPLETED
|
|
731
|
-
DELETING
|
|
732
|
-
FAILED
|
|
733
|
-
IN_PROGRESS
|
|
734
|
-
PENDING
|
|
735
|
-
}
|
|
765
|
+
export declare const AlgorithmStatus: {
|
|
766
|
+
readonly COMPLETED: "Completed";
|
|
767
|
+
readonly DELETING: "Deleting";
|
|
768
|
+
readonly FAILED: "Failed";
|
|
769
|
+
readonly IN_PROGRESS: "InProgress";
|
|
770
|
+
readonly PENDING: "Pending";
|
|
771
|
+
};
|
|
736
772
|
/**
|
|
737
773
|
* @public
|
|
738
774
|
*/
|
|
739
|
-
export
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
775
|
+
export type AlgorithmStatus = (typeof AlgorithmStatus)[keyof typeof AlgorithmStatus];
|
|
776
|
+
/**
|
|
777
|
+
* @public
|
|
778
|
+
* @enum
|
|
779
|
+
*/
|
|
780
|
+
export declare const DetailedAlgorithmStatus: {
|
|
781
|
+
readonly COMPLETED: "Completed";
|
|
782
|
+
readonly FAILED: "Failed";
|
|
783
|
+
readonly IN_PROGRESS: "InProgress";
|
|
784
|
+
readonly NOT_STARTED: "NotStarted";
|
|
785
|
+
};
|
|
786
|
+
/**
|
|
787
|
+
* @public
|
|
788
|
+
*/
|
|
789
|
+
export type DetailedAlgorithmStatus = (typeof DetailedAlgorithmStatus)[keyof typeof DetailedAlgorithmStatus];
|
|
745
790
|
/**
|
|
746
791
|
* @public
|
|
747
792
|
* <p>Represents the overall status of an algorithm.</p>
|
|
@@ -802,25 +847,40 @@ export interface AlgorithmSummary {
|
|
|
802
847
|
}
|
|
803
848
|
/**
|
|
804
849
|
* @public
|
|
850
|
+
* @enum
|
|
805
851
|
*/
|
|
806
|
-
export declare
|
|
807
|
-
GZIP
|
|
808
|
-
NONE
|
|
809
|
-
}
|
|
852
|
+
export declare const CompressionType: {
|
|
853
|
+
readonly GZIP: "Gzip";
|
|
854
|
+
readonly NONE: "None";
|
|
855
|
+
};
|
|
810
856
|
/**
|
|
811
857
|
* @public
|
|
812
858
|
*/
|
|
813
|
-
export
|
|
814
|
-
RO = "ro",
|
|
815
|
-
RW = "rw"
|
|
816
|
-
}
|
|
859
|
+
export type CompressionType = (typeof CompressionType)[keyof typeof CompressionType];
|
|
817
860
|
/**
|
|
818
861
|
* @public
|
|
862
|
+
* @enum
|
|
819
863
|
*/
|
|
820
|
-
export declare
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
}
|
|
864
|
+
export declare const FileSystemAccessMode: {
|
|
865
|
+
readonly RO: "ro";
|
|
866
|
+
readonly RW: "rw";
|
|
867
|
+
};
|
|
868
|
+
/**
|
|
869
|
+
* @public
|
|
870
|
+
*/
|
|
871
|
+
export type FileSystemAccessMode = (typeof FileSystemAccessMode)[keyof typeof FileSystemAccessMode];
|
|
872
|
+
/**
|
|
873
|
+
* @public
|
|
874
|
+
* @enum
|
|
875
|
+
*/
|
|
876
|
+
export declare const FileSystemType: {
|
|
877
|
+
readonly EFS: "EFS";
|
|
878
|
+
readonly FSXLUSTRE: "FSxLustre";
|
|
879
|
+
};
|
|
880
|
+
/**
|
|
881
|
+
* @public
|
|
882
|
+
*/
|
|
883
|
+
export type FileSystemType = (typeof FileSystemType)[keyof typeof FileSystemType];
|
|
824
884
|
/**
|
|
825
885
|
* @public
|
|
826
886
|
* <p>Specifies a file system data source for a channel.</p>
|
|
@@ -847,19 +907,29 @@ export interface FileSystemDataSource {
|
|
|
847
907
|
}
|
|
848
908
|
/**
|
|
849
909
|
* @public
|
|
910
|
+
* @enum
|
|
850
911
|
*/
|
|
851
|
-
export declare
|
|
852
|
-
FULLY_REPLICATED
|
|
853
|
-
SHARDED_BY_S3_KEY
|
|
854
|
-
}
|
|
912
|
+
export declare const S3DataDistribution: {
|
|
913
|
+
readonly FULLY_REPLICATED: "FullyReplicated";
|
|
914
|
+
readonly SHARDED_BY_S3_KEY: "ShardedByS3Key";
|
|
915
|
+
};
|
|
855
916
|
/**
|
|
856
917
|
* @public
|
|
857
918
|
*/
|
|
858
|
-
export
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
919
|
+
export type S3DataDistribution = (typeof S3DataDistribution)[keyof typeof S3DataDistribution];
|
|
920
|
+
/**
|
|
921
|
+
* @public
|
|
922
|
+
* @enum
|
|
923
|
+
*/
|
|
924
|
+
export declare const S3DataType: {
|
|
925
|
+
readonly AUGMENTED_MANIFEST_FILE: "AugmentedManifestFile";
|
|
926
|
+
readonly MANIFEST_FILE: "ManifestFile";
|
|
927
|
+
readonly S3_PREFIX: "S3Prefix";
|
|
928
|
+
};
|
|
929
|
+
/**
|
|
930
|
+
* @public
|
|
931
|
+
*/
|
|
932
|
+
export type S3DataType = (typeof S3DataType)[keyof typeof S3DataType];
|
|
863
933
|
/**
|
|
864
934
|
* @public
|
|
865
935
|
* <p>Describes the S3 data source.</p>
|
|
@@ -981,11 +1051,16 @@ export interface DataSource {
|
|
|
981
1051
|
}
|
|
982
1052
|
/**
|
|
983
1053
|
* @public
|
|
1054
|
+
* @enum
|
|
984
1055
|
*/
|
|
985
|
-
export declare
|
|
986
|
-
NONE
|
|
987
|
-
RECORDIO
|
|
988
|
-
}
|
|
1056
|
+
export declare const RecordWrapper: {
|
|
1057
|
+
readonly NONE: "None";
|
|
1058
|
+
readonly RECORDIO: "RecordIO";
|
|
1059
|
+
};
|
|
1060
|
+
/**
|
|
1061
|
+
* @public
|
|
1062
|
+
*/
|
|
1063
|
+
export type RecordWrapper = (typeof RecordWrapper)[keyof typeof RecordWrapper];
|
|
989
1064
|
/**
|
|
990
1065
|
* @public
|
|
991
1066
|
* <p>A configuration for a shuffle option for input data in a channel. If you use
|
|
@@ -1135,58 +1210,63 @@ export interface OutputDataConfig {
|
|
|
1135
1210
|
}
|
|
1136
1211
|
/**
|
|
1137
1212
|
* @public
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1213
|
+
* @enum
|
|
1214
|
+
*/
|
|
1215
|
+
export declare const TrainingInstanceType: {
|
|
1216
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
1217
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
1218
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
1219
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
1220
|
+
readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
|
|
1221
|
+
readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
|
|
1222
|
+
readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
|
|
1223
|
+
readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
|
|
1224
|
+
readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
|
|
1225
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
1226
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
1227
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
1228
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
1229
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
1230
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
1231
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
1232
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
1233
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
1234
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
1235
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
1236
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
1237
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
1238
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
1239
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
1240
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
1241
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
1242
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
1243
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
1244
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
1245
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
1246
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
1247
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
1248
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
1249
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
1250
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
1251
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
1252
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
1253
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
1254
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
1255
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
1256
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
1257
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
1258
|
+
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
1259
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
1260
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
1261
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
1262
|
+
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
1263
|
+
readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
|
|
1264
|
+
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
1265
|
+
};
|
|
1266
|
+
/**
|
|
1267
|
+
* @public
|
|
1268
|
+
*/
|
|
1269
|
+
export type TrainingInstanceType = (typeof TrainingInstanceType)[keyof typeof TrainingInstanceType];
|
|
1190
1270
|
/**
|
|
1191
1271
|
* @public
|
|
1192
1272
|
* <p>Defines an instance group for heterogeneous cluster training. When requesting a
|
|
@@ -1427,11 +1507,16 @@ export interface TrainingJobDefinition {
|
|
|
1427
1507
|
}
|
|
1428
1508
|
/**
|
|
1429
1509
|
* @public
|
|
1510
|
+
* @enum
|
|
1430
1511
|
*/
|
|
1431
|
-
export declare
|
|
1432
|
-
MULTI_RECORD
|
|
1433
|
-
SINGLE_RECORD
|
|
1434
|
-
}
|
|
1512
|
+
export declare const BatchStrategy: {
|
|
1513
|
+
readonly MULTI_RECORD: "MultiRecord";
|
|
1514
|
+
readonly SINGLE_RECORD: "SingleRecord";
|
|
1515
|
+
};
|
|
1516
|
+
/**
|
|
1517
|
+
* @public
|
|
1518
|
+
*/
|
|
1519
|
+
export type BatchStrategy = (typeof BatchStrategy)[keyof typeof BatchStrategy];
|
|
1435
1520
|
/**
|
|
1436
1521
|
* @public
|
|
1437
1522
|
* <p>Describes the S3 data source.</p>
|
|
@@ -1515,13 +1600,18 @@ export interface TransformDataSource {
|
|
|
1515
1600
|
}
|
|
1516
1601
|
/**
|
|
1517
1602
|
* @public
|
|
1603
|
+
* @enum
|
|
1518
1604
|
*/
|
|
1519
|
-
export declare
|
|
1520
|
-
LINE
|
|
1521
|
-
NONE
|
|
1522
|
-
RECORDIO
|
|
1523
|
-
TFRECORD
|
|
1524
|
-
}
|
|
1605
|
+
export declare const SplitType: {
|
|
1606
|
+
readonly LINE: "Line";
|
|
1607
|
+
readonly NONE: "None";
|
|
1608
|
+
readonly RECORDIO: "RecordIO";
|
|
1609
|
+
readonly TFRECORD: "TFRecord";
|
|
1610
|
+
};
|
|
1611
|
+
/**
|
|
1612
|
+
* @public
|
|
1613
|
+
*/
|
|
1614
|
+
export type SplitType = (typeof SplitType)[keyof typeof SplitType];
|
|
1525
1615
|
/**
|
|
1526
1616
|
* @public
|
|
1527
1617
|
* <p>Describes the input source of a transform job and the way the transform job consumes
|
|
@@ -1589,11 +1679,16 @@ export interface TransformInput {
|
|
|
1589
1679
|
}
|
|
1590
1680
|
/**
|
|
1591
1681
|
* @public
|
|
1682
|
+
* @enum
|
|
1592
1683
|
*/
|
|
1593
|
-
export declare
|
|
1594
|
-
LINE
|
|
1595
|
-
NONE
|
|
1596
|
-
}
|
|
1684
|
+
export declare const AssemblyType: {
|
|
1685
|
+
readonly LINE: "Line";
|
|
1686
|
+
readonly NONE: "None";
|
|
1687
|
+
};
|
|
1688
|
+
/**
|
|
1689
|
+
* @public
|
|
1690
|
+
*/
|
|
1691
|
+
export type AssemblyType = (typeof AssemblyType)[keyof typeof AssemblyType];
|
|
1597
1692
|
/**
|
|
1598
1693
|
* @public
|
|
1599
1694
|
* <p>Describes the results of a transform job.</p>
|
|
@@ -3291,24 +3386,34 @@ export interface AnnotationConsolidationConfig {
|
|
|
3291
3386
|
}
|
|
3292
3387
|
/**
|
|
3293
3388
|
* @public
|
|
3389
|
+
* @enum
|
|
3294
3390
|
*/
|
|
3295
|
-
export declare
|
|
3296
|
-
JupyterServer
|
|
3297
|
-
KernelGateway
|
|
3298
|
-
RSessionGateway
|
|
3299
|
-
RStudioServerPro
|
|
3300
|
-
TensorBoard
|
|
3301
|
-
}
|
|
3391
|
+
export declare const AppType: {
|
|
3392
|
+
readonly JupyterServer: "JupyterServer";
|
|
3393
|
+
readonly KernelGateway: "KernelGateway";
|
|
3394
|
+
readonly RSessionGateway: "RSessionGateway";
|
|
3395
|
+
readonly RStudioServerPro: "RStudioServerPro";
|
|
3396
|
+
readonly TensorBoard: "TensorBoard";
|
|
3397
|
+
};
|
|
3302
3398
|
/**
|
|
3303
3399
|
* @public
|
|
3304
3400
|
*/
|
|
3305
|
-
export
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3401
|
+
export type AppType = (typeof AppType)[keyof typeof AppType];
|
|
3402
|
+
/**
|
|
3403
|
+
* @public
|
|
3404
|
+
* @enum
|
|
3405
|
+
*/
|
|
3406
|
+
export declare const AppStatus: {
|
|
3407
|
+
readonly Deleted: "Deleted";
|
|
3408
|
+
readonly Deleting: "Deleting";
|
|
3409
|
+
readonly Failed: "Failed";
|
|
3410
|
+
readonly InService: "InService";
|
|
3411
|
+
readonly Pending: "Pending";
|
|
3412
|
+
};
|
|
3413
|
+
/**
|
|
3414
|
+
* @public
|
|
3415
|
+
*/
|
|
3416
|
+
export type AppStatus = (typeof AppStatus)[keyof typeof AppStatus];
|
|
3312
3417
|
/**
|
|
3313
3418
|
* @public
|
|
3314
3419
|
* <p>Details about an Amazon SageMaker app.</p>
|
|
@@ -3417,97 +3522,122 @@ export interface AppImageConfigDetails {
|
|
|
3417
3522
|
*/
|
|
3418
3523
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
3419
3524
|
}
|
|
3525
|
+
/**
|
|
3526
|
+
* @public
|
|
3527
|
+
* @enum
|
|
3528
|
+
*/
|
|
3529
|
+
export declare const AppImageConfigSortKey: {
|
|
3530
|
+
readonly CreationTime: "CreationTime";
|
|
3531
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
3532
|
+
readonly Name: "Name";
|
|
3533
|
+
};
|
|
3420
3534
|
/**
|
|
3421
3535
|
* @public
|
|
3422
3536
|
*/
|
|
3423
|
-
export
|
|
3424
|
-
CreationTime = "CreationTime",
|
|
3425
|
-
LastModifiedTime = "LastModifiedTime",
|
|
3426
|
-
Name = "Name"
|
|
3427
|
-
}
|
|
3537
|
+
export type AppImageConfigSortKey = (typeof AppImageConfigSortKey)[keyof typeof AppImageConfigSortKey];
|
|
3428
3538
|
/**
|
|
3429
3539
|
* @public
|
|
3540
|
+
* @enum
|
|
3430
3541
|
*/
|
|
3431
|
-
export declare
|
|
3432
|
-
ML_C5_12XLARGE
|
|
3433
|
-
ML_C5_18XLARGE
|
|
3434
|
-
ML_C5_24XLARGE
|
|
3435
|
-
ML_C5_2XLARGE
|
|
3436
|
-
ML_C5_4XLARGE
|
|
3437
|
-
ML_C5_9XLARGE
|
|
3438
|
-
ML_C5_LARGE
|
|
3439
|
-
ML_C5_XLARGE
|
|
3440
|
-
ML_G4DN_12XLARGE
|
|
3441
|
-
ML_G4DN_16XLARGE
|
|
3442
|
-
ML_G4DN_2XLARGE
|
|
3443
|
-
ML_G4DN_4XLARGE
|
|
3444
|
-
ML_G4DN_8XLARGE
|
|
3445
|
-
ML_G4DN_XLARGE
|
|
3446
|
-
ML_G5_12XLARGE
|
|
3447
|
-
ML_G5_16XLARGE
|
|
3448
|
-
ML_G5_24XLARGE
|
|
3449
|
-
ML_G5_2XLARGE
|
|
3450
|
-
ML_G5_48XLARGE
|
|
3451
|
-
ML_G5_4XLARGE
|
|
3452
|
-
ML_G5_8XLARGE
|
|
3453
|
-
ML_G5_XLARGE
|
|
3454
|
-
ML_GEOSPATIAL_INTERACTIVE
|
|
3455
|
-
ML_M5D_12XLARGE
|
|
3456
|
-
ML_M5D_16XLARGE
|
|
3457
|
-
ML_M5D_24XLARGE
|
|
3458
|
-
ML_M5D_2XLARGE
|
|
3459
|
-
ML_M5D_4XLARGE
|
|
3460
|
-
ML_M5D_8XLARGE
|
|
3461
|
-
ML_M5D_LARGE
|
|
3462
|
-
ML_M5D_XLARGE
|
|
3463
|
-
ML_M5_12XLARGE
|
|
3464
|
-
ML_M5_16XLARGE
|
|
3465
|
-
ML_M5_24XLARGE
|
|
3466
|
-
ML_M5_2XLARGE
|
|
3467
|
-
ML_M5_4XLARGE
|
|
3468
|
-
ML_M5_8XLARGE
|
|
3469
|
-
ML_M5_LARGE
|
|
3470
|
-
ML_M5_XLARGE
|
|
3471
|
-
ML_P3DN_24XLARGE
|
|
3472
|
-
ML_P3_16XLARGE
|
|
3473
|
-
ML_P3_2XLARGE
|
|
3474
|
-
ML_P3_8XLARGE
|
|
3475
|
-
ML_R5_12XLARGE
|
|
3476
|
-
ML_R5_16XLARGE
|
|
3477
|
-
ML_R5_24XLARGE
|
|
3478
|
-
ML_R5_2XLARGE
|
|
3479
|
-
ML_R5_4XLARGE
|
|
3480
|
-
ML_R5_8XLARGE
|
|
3481
|
-
ML_R5_LARGE
|
|
3482
|
-
ML_R5_XLARGE
|
|
3483
|
-
ML_T3_2XLARGE
|
|
3484
|
-
ML_T3_LARGE
|
|
3485
|
-
ML_T3_MEDIUM
|
|
3486
|
-
ML_T3_MICRO
|
|
3487
|
-
ML_T3_SMALL
|
|
3488
|
-
ML_T3_XLARGE
|
|
3489
|
-
SYSTEM
|
|
3490
|
-
}
|
|
3542
|
+
export declare const AppInstanceType: {
|
|
3543
|
+
readonly ML_C5_12XLARGE: "ml.c5.12xlarge";
|
|
3544
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
3545
|
+
readonly ML_C5_24XLARGE: "ml.c5.24xlarge";
|
|
3546
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
3547
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
3548
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
3549
|
+
readonly ML_C5_LARGE: "ml.c5.large";
|
|
3550
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
3551
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
3552
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
3553
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
3554
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
3555
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
3556
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
3557
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
3558
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
3559
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
3560
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
3561
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
3562
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
3563
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
3564
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
3565
|
+
readonly ML_GEOSPATIAL_INTERACTIVE: "ml.geospatial.interactive";
|
|
3566
|
+
readonly ML_M5D_12XLARGE: "ml.m5d.12xlarge";
|
|
3567
|
+
readonly ML_M5D_16XLARGE: "ml.m5d.16xlarge";
|
|
3568
|
+
readonly ML_M5D_24XLARGE: "ml.m5d.24xlarge";
|
|
3569
|
+
readonly ML_M5D_2XLARGE: "ml.m5d.2xlarge";
|
|
3570
|
+
readonly ML_M5D_4XLARGE: "ml.m5d.4xlarge";
|
|
3571
|
+
readonly ML_M5D_8XLARGE: "ml.m5d.8xlarge";
|
|
3572
|
+
readonly ML_M5D_LARGE: "ml.m5d.large";
|
|
3573
|
+
readonly ML_M5D_XLARGE: "ml.m5d.xlarge";
|
|
3574
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
3575
|
+
readonly ML_M5_16XLARGE: "ml.m5.16xlarge";
|
|
3576
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
3577
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
3578
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
3579
|
+
readonly ML_M5_8XLARGE: "ml.m5.8xlarge";
|
|
3580
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
3581
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
3582
|
+
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
3583
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
3584
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
3585
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
3586
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
3587
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
3588
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
3589
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
3590
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
3591
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
3592
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
3593
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
3594
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
3595
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
3596
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
3597
|
+
readonly ML_T3_MICRO: "ml.t3.micro";
|
|
3598
|
+
readonly ML_T3_SMALL: "ml.t3.small";
|
|
3599
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
3600
|
+
readonly SYSTEM: "system";
|
|
3601
|
+
};
|
|
3491
3602
|
/**
|
|
3492
3603
|
* @public
|
|
3493
3604
|
*/
|
|
3494
|
-
export
|
|
3495
|
-
PublicInternetOnly = "PublicInternetOnly",
|
|
3496
|
-
VpcOnly = "VpcOnly"
|
|
3497
|
-
}
|
|
3605
|
+
export type AppInstanceType = (typeof AppInstanceType)[keyof typeof AppInstanceType];
|
|
3498
3606
|
/**
|
|
3499
3607
|
* @public
|
|
3608
|
+
* @enum
|
|
3500
3609
|
*/
|
|
3501
|
-
export declare
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
}
|
|
3610
|
+
export declare const AppNetworkAccessType: {
|
|
3611
|
+
readonly PublicInternetOnly: "PublicInternetOnly";
|
|
3612
|
+
readonly VpcOnly: "VpcOnly";
|
|
3613
|
+
};
|
|
3505
3614
|
/**
|
|
3506
3615
|
* @public
|
|
3507
3616
|
*/
|
|
3508
|
-
export
|
|
3509
|
-
|
|
3510
|
-
|
|
3617
|
+
export type AppNetworkAccessType = (typeof AppNetworkAccessType)[keyof typeof AppNetworkAccessType];
|
|
3618
|
+
/**
|
|
3619
|
+
* @public
|
|
3620
|
+
* @enum
|
|
3621
|
+
*/
|
|
3622
|
+
export declare const AppSecurityGroupManagement: {
|
|
3623
|
+
readonly Customer: "Customer";
|
|
3624
|
+
readonly Service: "Service";
|
|
3625
|
+
};
|
|
3626
|
+
/**
|
|
3627
|
+
* @public
|
|
3628
|
+
*/
|
|
3629
|
+
export type AppSecurityGroupManagement = (typeof AppSecurityGroupManagement)[keyof typeof AppSecurityGroupManagement];
|
|
3630
|
+
/**
|
|
3631
|
+
* @public
|
|
3632
|
+
* @enum
|
|
3633
|
+
*/
|
|
3634
|
+
export declare const AppSortKey: {
|
|
3635
|
+
readonly CreationTime: "CreationTime";
|
|
3636
|
+
};
|
|
3637
|
+
/**
|
|
3638
|
+
* @public
|
|
3639
|
+
*/
|
|
3640
|
+
export type AppSortKey = (typeof AppSortKey)[keyof typeof AppSortKey];
|
|
3511
3641
|
/**
|
|
3512
3642
|
* @public
|
|
3513
3643
|
* <p>Configuration to run a processing job in a specified container image.</p>
|
|
@@ -3528,13 +3658,18 @@ export interface AppSpecification {
|
|
|
3528
3658
|
}
|
|
3529
3659
|
/**
|
|
3530
3660
|
* @public
|
|
3661
|
+
* @enum
|
|
3531
3662
|
*/
|
|
3532
|
-
export declare
|
|
3533
|
-
CUSTOM
|
|
3534
|
-
MD5_HASH
|
|
3535
|
-
S3_ETAG
|
|
3536
|
-
S3_VERSION
|
|
3537
|
-
}
|
|
3663
|
+
export declare const ArtifactSourceIdType: {
|
|
3664
|
+
readonly CUSTOM: "Custom";
|
|
3665
|
+
readonly MD5_HASH: "MD5Hash";
|
|
3666
|
+
readonly S3_ETAG: "S3ETag";
|
|
3667
|
+
readonly S3_VERSION: "S3Version";
|
|
3668
|
+
};
|
|
3669
|
+
/**
|
|
3670
|
+
* @public
|
|
3671
|
+
*/
|
|
3672
|
+
export type ArtifactSourceIdType = (typeof ArtifactSourceIdType)[keyof typeof ArtifactSourceIdType];
|
|
3538
3673
|
/**
|
|
3539
3674
|
* @public
|
|
3540
3675
|
* <p>The ID and ID type of an artifact source.</p>
|
|
@@ -3720,6 +3855,18 @@ export interface AsyncInferenceClientConfig {
|
|
|
3720
3855
|
*/
|
|
3721
3856
|
MaxConcurrentInvocationsPerInstance?: number;
|
|
3722
3857
|
}
|
|
3858
|
+
/**
|
|
3859
|
+
* @public
|
|
3860
|
+
* @enum
|
|
3861
|
+
*/
|
|
3862
|
+
export declare const AsyncNotificationTopicTypes: {
|
|
3863
|
+
readonly ERROR_NOTIFICATION_TOPIC: "ERROR_NOTIFICATION_TOPIC";
|
|
3864
|
+
readonly SUCCESS_NOTIFICATION_TOPIC: "SUCCESS_NOTIFICATION_TOPIC";
|
|
3865
|
+
};
|
|
3866
|
+
/**
|
|
3867
|
+
* @public
|
|
3868
|
+
*/
|
|
3869
|
+
export type AsyncNotificationTopicTypes = (typeof AsyncNotificationTopicTypes)[keyof typeof AsyncNotificationTopicTypes];
|
|
3723
3870
|
/**
|
|
3724
3871
|
* @public
|
|
3725
3872
|
* <p>Specifies the configuration for notifications of inference results for asynchronous
|
|
@@ -3736,6 +3883,10 @@ export interface AsyncInferenceNotificationConfig {
|
|
|
3736
3883
|
* no notification is sent on failure.</p>
|
|
3737
3884
|
*/
|
|
3738
3885
|
ErrorTopic?: string;
|
|
3886
|
+
/**
|
|
3887
|
+
* <p>The Amazon SNS topics where you want the inference response to be included.</p>
|
|
3888
|
+
*/
|
|
3889
|
+
IncludeInferenceResponseIn?: (AsyncNotificationTopicTypes | string)[];
|
|
3739
3890
|
}
|
|
3740
3891
|
/**
|
|
3741
3892
|
* @public
|
|
@@ -3751,12 +3902,16 @@ export interface AsyncInferenceOutputConfig {
|
|
|
3751
3902
|
/**
|
|
3752
3903
|
* <p>The Amazon S3 location to upload inference responses to.</p>
|
|
3753
3904
|
*/
|
|
3754
|
-
S3OutputPath
|
|
3905
|
+
S3OutputPath?: string;
|
|
3755
3906
|
/**
|
|
3756
3907
|
* <p>Specifies the configuration for notifications of inference results for asynchronous
|
|
3757
3908
|
* inference.</p>
|
|
3758
3909
|
*/
|
|
3759
3910
|
NotificationConfig?: AsyncInferenceNotificationConfig;
|
|
3911
|
+
/**
|
|
3912
|
+
* <p>The Amazon S3 location to upload failure inference responses to.</p>
|
|
3913
|
+
*/
|
|
3914
|
+
S3FailurePath?: string;
|
|
3760
3915
|
}
|
|
3761
3916
|
/**
|
|
3762
3917
|
* @public
|
|
@@ -3775,22 +3930,32 @@ export interface AsyncInferenceConfig {
|
|
|
3775
3930
|
}
|
|
3776
3931
|
/**
|
|
3777
3932
|
* @public
|
|
3933
|
+
* @enum
|
|
3778
3934
|
*/
|
|
3779
|
-
export declare
|
|
3780
|
-
GZIP
|
|
3781
|
-
SNAPPY
|
|
3782
|
-
ZLIB
|
|
3783
|
-
}
|
|
3935
|
+
export declare const AthenaResultCompressionType: {
|
|
3936
|
+
readonly GZIP: "GZIP";
|
|
3937
|
+
readonly SNAPPY: "SNAPPY";
|
|
3938
|
+
readonly ZLIB: "ZLIB";
|
|
3939
|
+
};
|
|
3784
3940
|
/**
|
|
3785
3941
|
* @public
|
|
3786
3942
|
*/
|
|
3787
|
-
export
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3943
|
+
export type AthenaResultCompressionType = (typeof AthenaResultCompressionType)[keyof typeof AthenaResultCompressionType];
|
|
3944
|
+
/**
|
|
3945
|
+
* @public
|
|
3946
|
+
* @enum
|
|
3947
|
+
*/
|
|
3948
|
+
export declare const AthenaResultFormat: {
|
|
3949
|
+
readonly AVRO: "AVRO";
|
|
3950
|
+
readonly JSON: "JSON";
|
|
3951
|
+
readonly ORC: "ORC";
|
|
3952
|
+
readonly PARQUET: "PARQUET";
|
|
3953
|
+
readonly TEXTFILE: "TEXTFILE";
|
|
3954
|
+
};
|
|
3955
|
+
/**
|
|
3956
|
+
* @public
|
|
3957
|
+
*/
|
|
3958
|
+
export type AthenaResultFormat = (typeof AthenaResultFormat)[keyof typeof AthenaResultFormat];
|
|
3794
3959
|
/**
|
|
3795
3960
|
* @public
|
|
3796
3961
|
* <p>Configuration for Athena Dataset Definition input.</p>
|
|
@@ -3832,25 +3997,35 @@ export interface AthenaDatasetDefinition {
|
|
|
3832
3997
|
}
|
|
3833
3998
|
/**
|
|
3834
3999
|
* @public
|
|
4000
|
+
* @enum
|
|
3835
4001
|
*/
|
|
3836
|
-
export declare
|
|
3837
|
-
IAM
|
|
3838
|
-
SSO
|
|
3839
|
-
}
|
|
4002
|
+
export declare const AuthMode: {
|
|
4003
|
+
readonly IAM: "IAM";
|
|
4004
|
+
readonly SSO: "SSO";
|
|
4005
|
+
};
|
|
3840
4006
|
/**
|
|
3841
4007
|
* @public
|
|
3842
4008
|
*/
|
|
3843
|
-
export
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
4009
|
+
export type AuthMode = (typeof AuthMode)[keyof typeof AuthMode];
|
|
4010
|
+
/**
|
|
4011
|
+
* @public
|
|
4012
|
+
* @enum
|
|
4013
|
+
*/
|
|
4014
|
+
export declare const AutoMLAlgorithm: {
|
|
4015
|
+
readonly CATBOOST: "catboost";
|
|
4016
|
+
readonly EXTRA_TREES: "extra-trees";
|
|
4017
|
+
readonly FASTAI: "fastai";
|
|
4018
|
+
readonly LIGHTGBM: "lightgbm";
|
|
4019
|
+
readonly LINEAR_LEARNER: "linear-learner";
|
|
4020
|
+
readonly MLP: "mlp";
|
|
4021
|
+
readonly NN_TORCH: "nn-torch";
|
|
4022
|
+
readonly RANDOMFOREST: "randomforest";
|
|
4023
|
+
readonly XGBOOST: "xgboost";
|
|
4024
|
+
};
|
|
4025
|
+
/**
|
|
4026
|
+
* @public
|
|
4027
|
+
*/
|
|
4028
|
+
export type AutoMLAlgorithm = (typeof AutoMLAlgorithm)[keyof typeof AutoMLAlgorithm];
|
|
3854
4029
|
/**
|
|
3855
4030
|
* @public
|
|
3856
4031
|
* <p>The collection of algorithms run on a dataset for training the model candidates of an
|
|
@@ -3862,9 +4037,7 @@ export interface AutoMLAlgorithmConfig {
|
|
|
3862
4037
|
* job. </p>
|
|
3863
4038
|
* <note>
|
|
3864
4039
|
* <p>Selected algorithms must belong to the list corresponding to the training mode set in
|
|
3865
|
-
* <code>
|
|
3866
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobConfig.html#sagemaker-Type-AutoMLJobConfig-Mode">AutoMLJobConfig.Mode</a>
|
|
3867
|
-
* </code> (<code>ENSEMBLING</code> or
|
|
4040
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobConfig.html#sagemaker-Type-AutoMLJobConfig-Mode">AutoMLJobConfig.Mode</a> (<code>ENSEMBLING</code> or
|
|
3868
4041
|
* <code>HYPERPARAMETER_TUNING</code>). Choose a minimum of 1 algorithm. </p>
|
|
3869
4042
|
* </note>
|
|
3870
4043
|
* <ul>
|
|
@@ -3932,50 +4105,65 @@ export interface CandidateArtifactLocations {
|
|
|
3932
4105
|
}
|
|
3933
4106
|
/**
|
|
3934
4107
|
* @public
|
|
4108
|
+
* @enum
|
|
3935
4109
|
*/
|
|
3936
|
-
export declare
|
|
3937
|
-
ACCURACY
|
|
3938
|
-
AUC
|
|
3939
|
-
BALANCED_ACCURACY
|
|
3940
|
-
F1
|
|
3941
|
-
F1_MACRO
|
|
3942
|
-
MAE
|
|
3943
|
-
MSE
|
|
3944
|
-
PRECISION
|
|
3945
|
-
PRECISION_MACRO
|
|
3946
|
-
R2
|
|
3947
|
-
RECALL
|
|
3948
|
-
RECALL_MACRO
|
|
3949
|
-
RMSE
|
|
3950
|
-
}
|
|
4110
|
+
export declare const AutoMLMetricEnum: {
|
|
4111
|
+
readonly ACCURACY: "Accuracy";
|
|
4112
|
+
readonly AUC: "AUC";
|
|
4113
|
+
readonly BALANCED_ACCURACY: "BalancedAccuracy";
|
|
4114
|
+
readonly F1: "F1";
|
|
4115
|
+
readonly F1_MACRO: "F1macro";
|
|
4116
|
+
readonly MAE: "MAE";
|
|
4117
|
+
readonly MSE: "MSE";
|
|
4118
|
+
readonly PRECISION: "Precision";
|
|
4119
|
+
readonly PRECISION_MACRO: "PrecisionMacro";
|
|
4120
|
+
readonly R2: "R2";
|
|
4121
|
+
readonly RECALL: "Recall";
|
|
4122
|
+
readonly RECALL_MACRO: "RecallMacro";
|
|
4123
|
+
readonly RMSE: "RMSE";
|
|
4124
|
+
};
|
|
3951
4125
|
/**
|
|
3952
4126
|
* @public
|
|
3953
4127
|
*/
|
|
3954
|
-
export
|
|
3955
|
-
TEST = "Test",
|
|
3956
|
-
TRAIN = "Train",
|
|
3957
|
-
VALIDATION = "Validation"
|
|
3958
|
-
}
|
|
4128
|
+
export type AutoMLMetricEnum = (typeof AutoMLMetricEnum)[keyof typeof AutoMLMetricEnum];
|
|
3959
4129
|
/**
|
|
3960
4130
|
* @public
|
|
4131
|
+
* @enum
|
|
3961
4132
|
*/
|
|
3962
|
-
export declare
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
4133
|
+
export declare const MetricSetSource: {
|
|
4134
|
+
readonly TEST: "Test";
|
|
4135
|
+
readonly TRAIN: "Train";
|
|
4136
|
+
readonly VALIDATION: "Validation";
|
|
4137
|
+
};
|
|
4138
|
+
/**
|
|
4139
|
+
* @public
|
|
4140
|
+
*/
|
|
4141
|
+
export type MetricSetSource = (typeof MetricSetSource)[keyof typeof MetricSetSource];
|
|
4142
|
+
/**
|
|
4143
|
+
* @public
|
|
4144
|
+
* @enum
|
|
4145
|
+
*/
|
|
4146
|
+
export declare const AutoMLMetricExtendedEnum: {
|
|
4147
|
+
readonly ACCURACY: "Accuracy";
|
|
4148
|
+
readonly AUC: "AUC";
|
|
4149
|
+
readonly BALANCED_ACCURACY: "BalancedAccuracy";
|
|
4150
|
+
readonly F1: "F1";
|
|
4151
|
+
readonly F1_MACRO: "F1macro";
|
|
4152
|
+
readonly INFERENCE_LATENCY: "InferenceLatency";
|
|
4153
|
+
readonly LogLoss: "LogLoss";
|
|
4154
|
+
readonly MAE: "MAE";
|
|
4155
|
+
readonly MSE: "MSE";
|
|
4156
|
+
readonly PRECISION: "Precision";
|
|
4157
|
+
readonly PRECISION_MACRO: "PrecisionMacro";
|
|
4158
|
+
readonly R2: "R2";
|
|
4159
|
+
readonly RECALL: "Recall";
|
|
4160
|
+
readonly RECALL_MACRO: "RecallMacro";
|
|
4161
|
+
readonly RMSE: "RMSE";
|
|
4162
|
+
};
|
|
4163
|
+
/**
|
|
4164
|
+
* @public
|
|
4165
|
+
*/
|
|
4166
|
+
export type AutoMLMetricExtendedEnum = (typeof AutoMLMetricExtendedEnum)[keyof typeof AutoMLMetricExtendedEnum];
|
|
3979
4167
|
/**
|
|
3980
4168
|
* @public
|
|
3981
4169
|
* <p>Information about the metric for a candidate produced by an AutoML job.</p>
|
|
@@ -4019,22 +4207,32 @@ export interface CandidateProperties {
|
|
|
4019
4207
|
}
|
|
4020
4208
|
/**
|
|
4021
4209
|
* @public
|
|
4210
|
+
* @enum
|
|
4022
4211
|
*/
|
|
4023
|
-
export declare
|
|
4024
|
-
COMPLETED
|
|
4025
|
-
FAILED
|
|
4026
|
-
IN_PROGRESS
|
|
4027
|
-
STOPPED
|
|
4028
|
-
STOPPING
|
|
4029
|
-
}
|
|
4212
|
+
export declare const CandidateStatus: {
|
|
4213
|
+
readonly COMPLETED: "Completed";
|
|
4214
|
+
readonly FAILED: "Failed";
|
|
4215
|
+
readonly IN_PROGRESS: "InProgress";
|
|
4216
|
+
readonly STOPPED: "Stopped";
|
|
4217
|
+
readonly STOPPING: "Stopping";
|
|
4218
|
+
};
|
|
4030
4219
|
/**
|
|
4031
4220
|
* @public
|
|
4032
4221
|
*/
|
|
4033
|
-
export
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4222
|
+
export type CandidateStatus = (typeof CandidateStatus)[keyof typeof CandidateStatus];
|
|
4223
|
+
/**
|
|
4224
|
+
* @public
|
|
4225
|
+
* @enum
|
|
4226
|
+
*/
|
|
4227
|
+
export declare const CandidateStepType: {
|
|
4228
|
+
readonly PROCESSING: "AWS::SageMaker::ProcessingJob";
|
|
4229
|
+
readonly TRAINING: "AWS::SageMaker::TrainingJob";
|
|
4230
|
+
readonly TRANSFORM: "AWS::SageMaker::TransformJob";
|
|
4231
|
+
};
|
|
4232
|
+
/**
|
|
4233
|
+
* @public
|
|
4234
|
+
*/
|
|
4235
|
+
export type CandidateStepType = (typeof CandidateStepType)[keyof typeof CandidateStepType];
|
|
4038
4236
|
/**
|
|
4039
4237
|
* @public
|
|
4040
4238
|
* <p>Information about the steps for a candidate and what step it is working on.</p>
|
|
@@ -4055,11 +4253,16 @@ export interface AutoMLCandidateStep {
|
|
|
4055
4253
|
}
|
|
4056
4254
|
/**
|
|
4057
4255
|
* @public
|
|
4256
|
+
* @enum
|
|
4058
4257
|
*/
|
|
4059
|
-
export declare
|
|
4060
|
-
MAXIMIZE
|
|
4061
|
-
MINIMIZE
|
|
4062
|
-
}
|
|
4258
|
+
export declare const AutoMLJobObjectiveType: {
|
|
4259
|
+
readonly MAXIMIZE: "Maximize";
|
|
4260
|
+
readonly MINIMIZE: "Minimize";
|
|
4261
|
+
};
|
|
4262
|
+
/**
|
|
4263
|
+
* @public
|
|
4264
|
+
*/
|
|
4265
|
+
export type AutoMLJobObjectiveType = (typeof AutoMLJobObjectiveType)[keyof typeof AutoMLJobObjectiveType];
|
|
4063
4266
|
/**
|
|
4064
4267
|
* @public
|
|
4065
4268
|
* <p>The best candidate result from an AutoML training job.</p>
|
|
@@ -4071,9 +4274,7 @@ export interface FinalAutoMLJobObjectiveMetric {
|
|
|
4071
4274
|
Type?: AutoMLJobObjectiveType | string;
|
|
4072
4275
|
/**
|
|
4073
4276
|
* <p>The name of the metric with the best result. For a description of the possible objective
|
|
4074
|
-
* metrics, see <
|
|
4075
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobObjective.html">AutoMLJobObjective$MetricName</a>
|
|
4076
|
-
* </code>.</p>
|
|
4277
|
+
* metrics, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobObjective.html">AutoMLJobObjective$MetricName</a>.</p>
|
|
4077
4278
|
*/
|
|
4078
4279
|
MetricName: AutoMLMetricEnum | string | undefined;
|
|
4079
4280
|
/**
|
|
@@ -4088,51 +4289,53 @@ export interface FinalAutoMLJobObjectiveMetric {
|
|
|
4088
4289
|
}
|
|
4089
4290
|
/**
|
|
4090
4291
|
* @public
|
|
4292
|
+
* @enum
|
|
4091
4293
|
*/
|
|
4092
|
-
export declare
|
|
4093
|
-
CPU
|
|
4094
|
-
GPU
|
|
4095
|
-
}
|
|
4294
|
+
export declare const AutoMLProcessingUnit: {
|
|
4295
|
+
readonly CPU: "CPU";
|
|
4296
|
+
readonly GPU: "GPU";
|
|
4297
|
+
};
|
|
4298
|
+
/**
|
|
4299
|
+
* @public
|
|
4300
|
+
*/
|
|
4301
|
+
export type AutoMLProcessingUnit = (typeof AutoMLProcessingUnit)[keyof typeof AutoMLProcessingUnit];
|
|
4096
4302
|
/**
|
|
4097
4303
|
* @public
|
|
4098
4304
|
* <p>A list of container definitions that describe the different containers that make up an
|
|
4099
|
-
* AutoML candidate. For more information, see <
|
|
4100
|
-
*
|
|
4101
|
-
* ContainerDefinition</a>
|
|
4102
|
-
* </code>.</p>
|
|
4305
|
+
* AutoML candidate. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ContainerDefinition.html">
|
|
4306
|
+
* ContainerDefinition</a>.</p>
|
|
4103
4307
|
*/
|
|
4104
4308
|
export interface AutoMLContainerDefinition {
|
|
4105
4309
|
/**
|
|
4106
4310
|
* <p>The Amazon Elastic Container Registry (Amazon ECR) path of the container. For more
|
|
4107
|
-
* information, see <
|
|
4108
|
-
*
|
|
4109
|
-
* ContainerDefinition</a>
|
|
4110
|
-
* </code>.</p>
|
|
4311
|
+
* information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ContainerDefinition.html">
|
|
4312
|
+
* ContainerDefinition</a>.</p>
|
|
4111
4313
|
*/
|
|
4112
4314
|
Image: string | undefined;
|
|
4113
4315
|
/**
|
|
4114
|
-
* <p>The location of the model artifacts. For more information, see <
|
|
4115
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ContainerDefinition.html"> ContainerDefinition</a>
|
|
4116
|
-
* </code>.</p>
|
|
4316
|
+
* <p>The location of the model artifacts. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ContainerDefinition.html"> ContainerDefinition</a>.</p>
|
|
4117
4317
|
*/
|
|
4118
4318
|
ModelDataUrl: string | undefined;
|
|
4119
4319
|
/**
|
|
4120
4320
|
* <p>The environment variables to set in the container. For more information, see
|
|
4121
|
-
* <code>
|
|
4122
4321
|
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ContainerDefinition.html">
|
|
4123
|
-
* ContainerDefinition</a>
|
|
4124
|
-
* </code>.</p>
|
|
4322
|
+
* ContainerDefinition</a>.</p>
|
|
4125
4323
|
*/
|
|
4126
4324
|
Environment?: Record<string, string>;
|
|
4127
4325
|
}
|
|
4128
4326
|
/**
|
|
4129
4327
|
* @public
|
|
4328
|
+
* @enum
|
|
4130
4329
|
*/
|
|
4131
|
-
export declare
|
|
4132
|
-
Failed
|
|
4133
|
-
Pending
|
|
4134
|
-
Succeeded
|
|
4135
|
-
}
|
|
4330
|
+
export declare const ObjectiveStatus: {
|
|
4331
|
+
readonly Failed: "Failed";
|
|
4332
|
+
readonly Pending: "Pending";
|
|
4333
|
+
readonly Succeeded: "Succeeded";
|
|
4334
|
+
};
|
|
4335
|
+
/**
|
|
4336
|
+
* @public
|
|
4337
|
+
*/
|
|
4338
|
+
export type ObjectiveStatus = (typeof ObjectiveStatus)[keyof typeof ObjectiveStatus];
|
|
4136
4339
|
/**
|
|
4137
4340
|
* @public
|
|
4138
4341
|
* <p>Information about a candidate produced by an AutoML training job, including its status,
|
|
@@ -4250,29 +4453,37 @@ export interface AutoMLCandidateGenerationConfig {
|
|
|
4250
4453
|
* the given training mode.</p>
|
|
4251
4454
|
* </li>
|
|
4252
4455
|
* </ul>
|
|
4253
|
-
* <p>For the list of all algorithms per training mode, see <
|
|
4254
|
-
*
|
|
4255
|
-
* AutoMLAlgorithmConfig</a>
|
|
4256
|
-
* </code>.</p>
|
|
4456
|
+
* <p>For the list of all algorithms per training mode, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLAlgorithmConfig.html">
|
|
4457
|
+
* AutoMLAlgorithmConfig</a>.</p>
|
|
4257
4458
|
* <p>For more information on each algorithm, see the <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-model-support-validation.html#autopilot-algorithm-support">Algorithm support</a> section in Autopilot developer guide.</p>
|
|
4258
4459
|
*/
|
|
4259
4460
|
AlgorithmsConfig?: AutoMLAlgorithmConfig[];
|
|
4260
4461
|
}
|
|
4261
4462
|
/**
|
|
4262
4463
|
* @public
|
|
4464
|
+
* @enum
|
|
4263
4465
|
*/
|
|
4264
|
-
export declare
|
|
4265
|
-
TRAINING
|
|
4266
|
-
VALIDATION
|
|
4267
|
-
}
|
|
4466
|
+
export declare const AutoMLChannelType: {
|
|
4467
|
+
readonly TRAINING: "training";
|
|
4468
|
+
readonly VALIDATION: "validation";
|
|
4469
|
+
};
|
|
4268
4470
|
/**
|
|
4269
4471
|
* @public
|
|
4270
4472
|
*/
|
|
4271
|
-
export
|
|
4272
|
-
|
|
4273
|
-
|
|
4274
|
-
|
|
4275
|
-
|
|
4473
|
+
export type AutoMLChannelType = (typeof AutoMLChannelType)[keyof typeof AutoMLChannelType];
|
|
4474
|
+
/**
|
|
4475
|
+
* @public
|
|
4476
|
+
* @enum
|
|
4477
|
+
*/
|
|
4478
|
+
export declare const AutoMLS3DataType: {
|
|
4479
|
+
readonly AUGMENTED_MANIFEST_FILE: "AugmentedManifestFile";
|
|
4480
|
+
readonly MANIFEST_FILE: "ManifestFile";
|
|
4481
|
+
readonly S3_PREFIX: "S3Prefix";
|
|
4482
|
+
};
|
|
4483
|
+
/**
|
|
4484
|
+
* @public
|
|
4485
|
+
*/
|
|
4486
|
+
export type AutoMLS3DataType = (typeof AutoMLS3DataType)[keyof typeof AutoMLS3DataType];
|
|
4276
4487
|
/**
|
|
4277
4488
|
* @public
|
|
4278
4489
|
* <p>Describes the Amazon S3 data source.</p>
|
|
@@ -4349,9 +4560,7 @@ export interface AutoMLDataSource {
|
|
|
4349
4560
|
* @public
|
|
4350
4561
|
* <p>A channel is a named input source that training algorithms can consume. The validation
|
|
4351
4562
|
* dataset size is limited to less than 2 GB. The training dataset size must be less than 100
|
|
4352
|
-
* GB. For more information, see <
|
|
4353
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Channel.html"> Channel</a>
|
|
4354
|
-
* </code>.</p>
|
|
4563
|
+
* GB. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Channel.html"> Channel</a>.</p>
|
|
4355
4564
|
* <note>
|
|
4356
4565
|
* <p>A validation dataset must contain the same headers as the training dataset.</p>
|
|
4357
4566
|
* </note>
|
|
@@ -4382,9 +4591,7 @@ export interface AutoMLChannel {
|
|
|
4382
4591
|
* <p>The channel type (optional) is an <code>enum</code> string. The default value is
|
|
4383
4592
|
* <code>training</code>. Channels for training and validation must share the same
|
|
4384
4593
|
* <code>ContentType</code> and <code>TargetAttributeName</code>. For information on
|
|
4385
|
-
* specifying training and validation channel types, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-datasets-problem-types.html#autopilot-data-sources-training-or-validation">
|
|
4386
|
-
* <code>How to specify training and validation datasets</code>
|
|
4387
|
-
* </a>.</p>
|
|
4594
|
+
* specifying training and validation channel types, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-datasets-problem-types.html#autopilot-data-sources-training-or-validation">How to specify training and validation datasets</a>.</p>
|
|
4388
4595
|
*/
|
|
4389
4596
|
ChannelType?: AutoMLChannelType | string;
|
|
4390
4597
|
}
|
|
@@ -4424,13 +4631,9 @@ export interface AutoMLJobArtifacts {
|
|
|
4424
4631
|
* @public
|
|
4425
4632
|
* <p>A channel is a named input source that training algorithms can consume. This channel is
|
|
4426
4633
|
* used for the non tabular training data of an AutoML job using the V2 API. For tabular
|
|
4427
|
-
* training data, see <
|
|
4428
|
-
*
|
|
4429
|
-
*
|
|
4430
|
-
* </code>. For more information, see <code>
|
|
4431
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Channel.html">
|
|
4432
|
-
* Channel</a>
|
|
4433
|
-
* </code>.</p>
|
|
4634
|
+
* training data, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLChannel.html">
|
|
4635
|
+
* AutoMLChannel</a>. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Channel.html">
|
|
4636
|
+
* Channel</a>.</p>
|
|
4434
4637
|
*/
|
|
4435
4638
|
export interface AutoMLJobChannel {
|
|
4436
4639
|
/**
|
|
@@ -4483,11 +4686,7 @@ export interface AutoMLJobCompletionCriteria {
|
|
|
4483
4686
|
/**
|
|
4484
4687
|
* <p>The maximum time, in seconds, that each training job executed inside hyperparameter
|
|
4485
4688
|
* tuning is allowed to run as part of a hyperparameter tuning job. For more information, see
|
|
4486
|
-
* the <
|
|
4487
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_StoppingCondition.html">StoppingCondition</a>
|
|
4488
|
-
* </code> used by the <code>
|
|
4489
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateHyperParameterTuningJob.html">CreateHyperParameterTuningJob</a>
|
|
4490
|
-
* </code> action.</p>
|
|
4689
|
+
* the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_StoppingCondition.html">StoppingCondition</a> used by the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateHyperParameterTuningJob.html">CreateHyperParameterTuningJob</a> action.</p>
|
|
4491
4690
|
* <p>For V2 jobs (jobs created by calling <code>CreateAutoMLJobV2</code>), this field
|
|
4492
4691
|
* controls the runtime of the job candidate.</p>
|
|
4493
4692
|
*/
|
|
@@ -4503,12 +4702,17 @@ export interface AutoMLJobCompletionCriteria {
|
|
|
4503
4702
|
}
|
|
4504
4703
|
/**
|
|
4505
4704
|
* @public
|
|
4705
|
+
* @enum
|
|
4506
4706
|
*/
|
|
4507
|
-
export declare
|
|
4508
|
-
AUTO
|
|
4509
|
-
ENSEMBLING
|
|
4510
|
-
HYPERPARAMETER_TUNING
|
|
4511
|
-
}
|
|
4707
|
+
export declare const AutoMLMode: {
|
|
4708
|
+
readonly AUTO: "AUTO";
|
|
4709
|
+
readonly ENSEMBLING: "ENSEMBLING";
|
|
4710
|
+
readonly HYPERPARAMETER_TUNING: "HYPERPARAMETER_TUNING";
|
|
4711
|
+
};
|
|
4712
|
+
/**
|
|
4713
|
+
* @public
|
|
4714
|
+
*/
|
|
4715
|
+
export type AutoMLMode = (typeof AutoMLMode)[keyof typeof AutoMLMode];
|
|
4512
4716
|
/**
|
|
4513
4717
|
* @public
|
|
4514
4718
|
* <p>Specifies a VPC that your training jobs and hosted models have access to. Control
|
|
@@ -4768,37 +4972,47 @@ export interface AutoMLJobObjective {
|
|
|
4768
4972
|
}
|
|
4769
4973
|
/**
|
|
4770
4974
|
* @public
|
|
4975
|
+
* @enum
|
|
4771
4976
|
*/
|
|
4772
|
-
export declare
|
|
4773
|
-
ANALYZING_DATA
|
|
4774
|
-
CANDIDATE_DEFINITIONS_GENERATED
|
|
4775
|
-
COMPLETED
|
|
4776
|
-
DEPLOYING_MODEL
|
|
4777
|
-
EXPLAINABILITY_ERROR
|
|
4778
|
-
FAILED
|
|
4779
|
-
FEATURE_ENGINEERING
|
|
4780
|
-
GENERATING_EXPLAINABILITY_REPORT
|
|
4781
|
-
GENERATING_MODEL_INSIGHTS_REPORT
|
|
4782
|
-
MAX_AUTO_ML_JOB_RUNTIME_REACHED
|
|
4783
|
-
MAX_CANDIDATES_REACHED
|
|
4784
|
-
MODEL_DEPLOYMENT_ERROR
|
|
4785
|
-
MODEL_INSIGHTS_ERROR
|
|
4786
|
-
MODEL_TUNING
|
|
4787
|
-
STARTING
|
|
4788
|
-
STOPPED
|
|
4789
|
-
STOPPING
|
|
4790
|
-
TRAINING_MODELS
|
|
4791
|
-
}
|
|
4977
|
+
export declare const AutoMLJobSecondaryStatus: {
|
|
4978
|
+
readonly ANALYZING_DATA: "AnalyzingData";
|
|
4979
|
+
readonly CANDIDATE_DEFINITIONS_GENERATED: "CandidateDefinitionsGenerated";
|
|
4980
|
+
readonly COMPLETED: "Completed";
|
|
4981
|
+
readonly DEPLOYING_MODEL: "DeployingModel";
|
|
4982
|
+
readonly EXPLAINABILITY_ERROR: "ExplainabilityError";
|
|
4983
|
+
readonly FAILED: "Failed";
|
|
4984
|
+
readonly FEATURE_ENGINEERING: "FeatureEngineering";
|
|
4985
|
+
readonly GENERATING_EXPLAINABILITY_REPORT: "GeneratingExplainabilityReport";
|
|
4986
|
+
readonly GENERATING_MODEL_INSIGHTS_REPORT: "GeneratingModelInsightsReport";
|
|
4987
|
+
readonly MAX_AUTO_ML_JOB_RUNTIME_REACHED: "MaxAutoMLJobRuntimeReached";
|
|
4988
|
+
readonly MAX_CANDIDATES_REACHED: "MaxCandidatesReached";
|
|
4989
|
+
readonly MODEL_DEPLOYMENT_ERROR: "ModelDeploymentError";
|
|
4990
|
+
readonly MODEL_INSIGHTS_ERROR: "ModelInsightsError";
|
|
4991
|
+
readonly MODEL_TUNING: "ModelTuning";
|
|
4992
|
+
readonly STARTING: "Starting";
|
|
4993
|
+
readonly STOPPED: "Stopped";
|
|
4994
|
+
readonly STOPPING: "Stopping";
|
|
4995
|
+
readonly TRAINING_MODELS: "TrainingModels";
|
|
4996
|
+
};
|
|
4792
4997
|
/**
|
|
4793
4998
|
* @public
|
|
4794
4999
|
*/
|
|
4795
|
-
export
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
5000
|
+
export type AutoMLJobSecondaryStatus = (typeof AutoMLJobSecondaryStatus)[keyof typeof AutoMLJobSecondaryStatus];
|
|
5001
|
+
/**
|
|
5002
|
+
* @public
|
|
5003
|
+
* @enum
|
|
5004
|
+
*/
|
|
5005
|
+
export declare const AutoMLJobStatus: {
|
|
5006
|
+
readonly COMPLETED: "Completed";
|
|
5007
|
+
readonly FAILED: "Failed";
|
|
5008
|
+
readonly IN_PROGRESS: "InProgress";
|
|
5009
|
+
readonly STOPPED: "Stopped";
|
|
5010
|
+
readonly STOPPING: "Stopping";
|
|
5011
|
+
};
|
|
5012
|
+
/**
|
|
5013
|
+
* @public
|
|
5014
|
+
*/
|
|
5015
|
+
export type AutoMLJobStatus = (typeof AutoMLJobStatus)[keyof typeof AutoMLJobStatus];
|
|
4802
5016
|
/**
|
|
4803
5017
|
* @public
|
|
4804
5018
|
* <p>Metadata for an AutoML job step.</p>
|
|
@@ -4951,19 +5165,29 @@ export declare namespace AutoMLProblemTypeConfig {
|
|
|
4951
5165
|
}
|
|
4952
5166
|
/**
|
|
4953
5167
|
* @public
|
|
5168
|
+
* @enum
|
|
4954
5169
|
*/
|
|
4955
|
-
export declare
|
|
4956
|
-
CREATION_TIME
|
|
4957
|
-
NAME
|
|
4958
|
-
STATUS
|
|
4959
|
-
}
|
|
5170
|
+
export declare const AutoMLSortBy: {
|
|
5171
|
+
readonly CREATION_TIME: "CreationTime";
|
|
5172
|
+
readonly NAME: "Name";
|
|
5173
|
+
readonly STATUS: "Status";
|
|
5174
|
+
};
|
|
4960
5175
|
/**
|
|
4961
5176
|
* @public
|
|
4962
5177
|
*/
|
|
4963
|
-
export
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
5178
|
+
export type AutoMLSortBy = (typeof AutoMLSortBy)[keyof typeof AutoMLSortBy];
|
|
5179
|
+
/**
|
|
5180
|
+
* @public
|
|
5181
|
+
* @enum
|
|
5182
|
+
*/
|
|
5183
|
+
export declare const AutoMLSortOrder: {
|
|
5184
|
+
readonly ASCENDING: "Ascending";
|
|
5185
|
+
readonly DESCENDING: "Descending";
|
|
5186
|
+
};
|
|
5187
|
+
/**
|
|
5188
|
+
* @public
|
|
5189
|
+
*/
|
|
5190
|
+
export type AutoMLSortOrder = (typeof AutoMLSortOrder)[keyof typeof AutoMLSortOrder];
|
|
4967
5191
|
/**
|
|
4968
5192
|
* @public
|
|
4969
5193
|
* <p>Automatic rollback configuration for handling endpoint deployment failures and
|
|
@@ -4979,11 +5203,16 @@ export interface AutoRollbackConfig {
|
|
|
4979
5203
|
}
|
|
4980
5204
|
/**
|
|
4981
5205
|
* @public
|
|
5206
|
+
* @enum
|
|
4982
5207
|
*/
|
|
4983
|
-
export declare
|
|
4984
|
-
REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3
|
|
4985
|
-
TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1
|
|
4986
|
-
}
|
|
5208
|
+
export declare const AwsManagedHumanLoopRequestSource: {
|
|
5209
|
+
readonly REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3: "AWS/Rekognition/DetectModerationLabels/Image/V3";
|
|
5210
|
+
readonly TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1: "AWS/Textract/AnalyzeDocument/Forms/V1";
|
|
5211
|
+
};
|
|
5212
|
+
/**
|
|
5213
|
+
* @public
|
|
5214
|
+
*/
|
|
5215
|
+
export type AwsManagedHumanLoopRequestSource = (typeof AwsManagedHumanLoopRequestSource)[keyof typeof AwsManagedHumanLoopRequestSource];
|
|
4987
5216
|
/**
|
|
4988
5217
|
* @public
|
|
4989
5218
|
* <p>Configuration to control how SageMaker captures inference data for batch transform jobs.</p>
|
|
@@ -5080,22 +5309,32 @@ export interface InferenceSpecification {
|
|
|
5080
5309
|
}
|
|
5081
5310
|
/**
|
|
5082
5311
|
* @public
|
|
5312
|
+
* @enum
|
|
5083
5313
|
*/
|
|
5084
|
-
export declare
|
|
5085
|
-
APPROVED
|
|
5086
|
-
PENDING_MANUAL_APPROVAL
|
|
5087
|
-
REJECTED
|
|
5088
|
-
}
|
|
5314
|
+
export declare const ModelApprovalStatus: {
|
|
5315
|
+
readonly APPROVED: "Approved";
|
|
5316
|
+
readonly PENDING_MANUAL_APPROVAL: "PendingManualApproval";
|
|
5317
|
+
readonly REJECTED: "Rejected";
|
|
5318
|
+
};
|
|
5089
5319
|
/**
|
|
5090
5320
|
* @public
|
|
5091
5321
|
*/
|
|
5092
|
-
export
|
|
5093
|
-
|
|
5094
|
-
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
5098
|
-
|
|
5322
|
+
export type ModelApprovalStatus = (typeof ModelApprovalStatus)[keyof typeof ModelApprovalStatus];
|
|
5323
|
+
/**
|
|
5324
|
+
* @public
|
|
5325
|
+
* @enum
|
|
5326
|
+
*/
|
|
5327
|
+
export declare const ModelPackageStatus: {
|
|
5328
|
+
readonly COMPLETED: "Completed";
|
|
5329
|
+
readonly DELETING: "Deleting";
|
|
5330
|
+
readonly FAILED: "Failed";
|
|
5331
|
+
readonly IN_PROGRESS: "InProgress";
|
|
5332
|
+
readonly PENDING: "Pending";
|
|
5333
|
+
};
|
|
5334
|
+
/**
|
|
5335
|
+
* @public
|
|
5336
|
+
*/
|
|
5337
|
+
export type ModelPackageStatus = (typeof ModelPackageStatus)[keyof typeof ModelPackageStatus];
|
|
5099
5338
|
/**
|
|
5100
5339
|
* @public
|
|
5101
5340
|
* <p>Provides summary information about the model package.</p>
|
|
@@ -5195,18 +5434,28 @@ export interface MonitoringDatasetFormat {
|
|
|
5195
5434
|
}
|
|
5196
5435
|
/**
|
|
5197
5436
|
* @public
|
|
5437
|
+
* @enum
|
|
5198
5438
|
*/
|
|
5199
|
-
export declare
|
|
5200
|
-
FULLYREPLICATED
|
|
5201
|
-
SHARDEDBYS3KEY
|
|
5202
|
-
}
|
|
5439
|
+
export declare const ProcessingS3DataDistributionType: {
|
|
5440
|
+
readonly FULLYREPLICATED: "FullyReplicated";
|
|
5441
|
+
readonly SHARDEDBYS3KEY: "ShardedByS3Key";
|
|
5442
|
+
};
|
|
5203
5443
|
/**
|
|
5204
5444
|
* @public
|
|
5205
5445
|
*/
|
|
5206
|
-
export
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5446
|
+
export type ProcessingS3DataDistributionType = (typeof ProcessingS3DataDistributionType)[keyof typeof ProcessingS3DataDistributionType];
|
|
5447
|
+
/**
|
|
5448
|
+
* @public
|
|
5449
|
+
* @enum
|
|
5450
|
+
*/
|
|
5451
|
+
export declare const ProcessingS3InputMode: {
|
|
5452
|
+
readonly FILE: "File";
|
|
5453
|
+
readonly PIPE: "Pipe";
|
|
5454
|
+
};
|
|
5455
|
+
/**
|
|
5456
|
+
* @public
|
|
5457
|
+
*/
|
|
5458
|
+
export type ProcessingS3InputMode = (typeof ProcessingS3InputMode)[keyof typeof ProcessingS3InputMode];
|
|
5210
5459
|
/**
|
|
5211
5460
|
* @public
|
|
5212
5461
|
* <p>Input object for the batch transform job.</p>
|
|
@@ -5317,11 +5566,16 @@ export interface Bias {
|
|
|
5317
5566
|
}
|
|
5318
5567
|
/**
|
|
5319
5568
|
* @public
|
|
5569
|
+
* @enum
|
|
5320
5570
|
*/
|
|
5321
|
-
export declare
|
|
5322
|
-
CAPACITY_PERCENT
|
|
5323
|
-
INSTANCE_COUNT
|
|
5324
|
-
}
|
|
5571
|
+
export declare const CapacitySizeType: {
|
|
5572
|
+
readonly CAPACITY_PERCENT: "CAPACITY_PERCENT";
|
|
5573
|
+
readonly INSTANCE_COUNT: "INSTANCE_COUNT";
|
|
5574
|
+
};
|
|
5575
|
+
/**
|
|
5576
|
+
* @public
|
|
5577
|
+
*/
|
|
5578
|
+
export type CapacitySizeType = (typeof CapacitySizeType)[keyof typeof CapacitySizeType];
|
|
5325
5579
|
/**
|
|
5326
5580
|
* @public
|
|
5327
5581
|
* <p>Specifies the endpoint capacity to activate for production.</p>
|
|
@@ -5351,12 +5605,17 @@ export interface CapacitySize {
|
|
|
5351
5605
|
}
|
|
5352
5606
|
/**
|
|
5353
5607
|
* @public
|
|
5608
|
+
* @enum
|
|
5354
5609
|
*/
|
|
5355
|
-
export declare
|
|
5356
|
-
ALL_AT_ONCE
|
|
5357
|
-
CANARY
|
|
5358
|
-
LINEAR
|
|
5359
|
-
}
|
|
5610
|
+
export declare const TrafficRoutingConfigType: {
|
|
5611
|
+
readonly ALL_AT_ONCE: "ALL_AT_ONCE";
|
|
5612
|
+
readonly CANARY: "CANARY";
|
|
5613
|
+
readonly LINEAR: "LINEAR";
|
|
5614
|
+
};
|
|
5615
|
+
/**
|
|
5616
|
+
* @public
|
|
5617
|
+
*/
|
|
5618
|
+
export type TrafficRoutingConfigType = (typeof TrafficRoutingConfigType)[keyof typeof TrafficRoutingConfigType];
|
|
5360
5619
|
/**
|
|
5361
5620
|
* @public
|
|
5362
5621
|
* <p>Defines the traffic routing strategy during an endpoint deployment to shift traffic from the
|
|
@@ -5433,11 +5692,16 @@ export interface BlueGreenUpdatePolicy {
|
|
|
5433
5692
|
}
|
|
5434
5693
|
/**
|
|
5435
5694
|
* @public
|
|
5695
|
+
* @enum
|
|
5436
5696
|
*/
|
|
5437
|
-
export declare
|
|
5438
|
-
AND
|
|
5439
|
-
OR
|
|
5440
|
-
}
|
|
5697
|
+
export declare const BooleanOperator: {
|
|
5698
|
+
readonly AND: "And";
|
|
5699
|
+
readonly OR: "Or";
|
|
5700
|
+
};
|
|
5701
|
+
/**
|
|
5702
|
+
* @public
|
|
5703
|
+
*/
|
|
5704
|
+
export type BooleanOperator = (typeof BooleanOperator)[keyof typeof BooleanOperator];
|
|
5441
5705
|
/**
|
|
5442
5706
|
* @public
|
|
5443
5707
|
* <p>Details on the cache hit of a pipeline execution step.</p>
|
|
@@ -5482,19 +5746,29 @@ export interface CallbackStepMetadata {
|
|
|
5482
5746
|
}
|
|
5483
5747
|
/**
|
|
5484
5748
|
* @public
|
|
5749
|
+
* @enum
|
|
5485
5750
|
*/
|
|
5486
|
-
export declare
|
|
5487
|
-
CreationTime
|
|
5488
|
-
FinalObjectiveMetricValue
|
|
5489
|
-
Status
|
|
5490
|
-
}
|
|
5751
|
+
export declare const CandidateSortBy: {
|
|
5752
|
+
readonly CreationTime: "CreationTime";
|
|
5753
|
+
readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
|
|
5754
|
+
readonly Status: "Status";
|
|
5755
|
+
};
|
|
5491
5756
|
/**
|
|
5492
5757
|
* @public
|
|
5493
5758
|
*/
|
|
5494
|
-
export
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5759
|
+
export type CandidateSortBy = (typeof CandidateSortBy)[keyof typeof CandidateSortBy];
|
|
5760
|
+
/**
|
|
5761
|
+
* @public
|
|
5762
|
+
* @enum
|
|
5763
|
+
*/
|
|
5764
|
+
export declare const FeatureStatus: {
|
|
5765
|
+
readonly Disabled: "DISABLED";
|
|
5766
|
+
readonly Enabled: "ENABLED";
|
|
5767
|
+
};
|
|
5768
|
+
/**
|
|
5769
|
+
* @public
|
|
5770
|
+
*/
|
|
5771
|
+
export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
|
|
5498
5772
|
/**
|
|
5499
5773
|
* @public
|
|
5500
5774
|
* <p>Time series forecast settings for the SageMaker Canvas app.</p>
|
|
@@ -5543,11 +5817,16 @@ export interface CaptureContentTypeHeader {
|
|
|
5543
5817
|
}
|
|
5544
5818
|
/**
|
|
5545
5819
|
* @public
|
|
5820
|
+
* @enum
|
|
5546
5821
|
*/
|
|
5547
|
-
export declare
|
|
5548
|
-
INPUT
|
|
5549
|
-
OUTPUT
|
|
5550
|
-
}
|
|
5822
|
+
export declare const CaptureMode: {
|
|
5823
|
+
readonly INPUT: "Input";
|
|
5824
|
+
readonly OUTPUT: "Output";
|
|
5825
|
+
};
|
|
5826
|
+
/**
|
|
5827
|
+
* @public
|
|
5828
|
+
*/
|
|
5829
|
+
export type CaptureMode = (typeof CaptureMode)[keyof typeof CaptureMode];
|
|
5551
5830
|
/**
|
|
5552
5831
|
* @public
|
|
5553
5832
|
* <p>Specifies data Model Monitor will capture.</p>
|
|
@@ -5560,11 +5839,16 @@ export interface CaptureOption {
|
|
|
5560
5839
|
}
|
|
5561
5840
|
/**
|
|
5562
5841
|
* @public
|
|
5842
|
+
* @enum
|
|
5563
5843
|
*/
|
|
5564
|
-
export declare
|
|
5565
|
-
STARTED
|
|
5566
|
-
STOPPED
|
|
5567
|
-
}
|
|
5844
|
+
export declare const CaptureStatus: {
|
|
5845
|
+
readonly STARTED: "Started";
|
|
5846
|
+
readonly STOPPED: "Stopped";
|
|
5847
|
+
};
|
|
5848
|
+
/**
|
|
5849
|
+
* @public
|
|
5850
|
+
*/
|
|
5851
|
+
export type CaptureStatus = (typeof CaptureStatus)[keyof typeof CaptureStatus];
|
|
5568
5852
|
/**
|
|
5569
5853
|
* @public
|
|
5570
5854
|
* <p>Environment parameters you want to benchmark your load test against.</p>
|
|
@@ -5703,12 +5987,17 @@ export interface ClarifyCheckStepMetadata {
|
|
|
5703
5987
|
}
|
|
5704
5988
|
/**
|
|
5705
5989
|
* @public
|
|
5990
|
+
* @enum
|
|
5706
5991
|
*/
|
|
5707
|
-
export declare
|
|
5708
|
-
CATEGORICAL
|
|
5709
|
-
NUMERICAL
|
|
5710
|
-
TEXT
|
|
5711
|
-
}
|
|
5992
|
+
export declare const ClarifyFeatureType: {
|
|
5993
|
+
readonly CATEGORICAL: "categorical";
|
|
5994
|
+
readonly NUMERICAL: "numerical";
|
|
5995
|
+
readonly TEXT: "text";
|
|
5996
|
+
};
|
|
5997
|
+
/**
|
|
5998
|
+
* @public
|
|
5999
|
+
*/
|
|
6000
|
+
export type ClarifyFeatureType = (typeof ClarifyFeatureType)[keyof typeof ClarifyFeatureType];
|
|
5712
6001
|
/**
|
|
5713
6002
|
* @public
|
|
5714
6003
|
* <p>The inference configuration parameter for the model container.</p>
|
|
@@ -5875,77 +6164,87 @@ export interface ClarifyShapBaselineConfig {
|
|
|
5875
6164
|
}
|
|
5876
6165
|
/**
|
|
5877
6166
|
* @public
|
|
5878
|
-
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
|
|
5882
|
-
|
|
5883
|
-
|
|
5884
|
-
|
|
5885
|
-
|
|
5886
|
-
|
|
5887
|
-
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
|
|
5892
|
-
|
|
5893
|
-
|
|
5894
|
-
|
|
5895
|
-
|
|
5896
|
-
|
|
5897
|
-
|
|
5898
|
-
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
|
|
5902
|
-
|
|
5903
|
-
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
|
|
5918
|
-
|
|
5919
|
-
|
|
5920
|
-
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5926
|
-
|
|
5927
|
-
|
|
5928
|
-
|
|
5929
|
-
|
|
5930
|
-
|
|
5931
|
-
|
|
5932
|
-
|
|
5933
|
-
|
|
5934
|
-
|
|
5935
|
-
|
|
5936
|
-
|
|
5937
|
-
|
|
5938
|
-
|
|
5939
|
-
|
|
5940
|
-
|
|
5941
|
-
|
|
5942
|
-
|
|
5943
|
-
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
|
-
|
|
6167
|
+
* @enum
|
|
6168
|
+
*/
|
|
6169
|
+
export declare const ClarifyTextGranularity: {
|
|
6170
|
+
readonly PARAGRAPH: "paragraph";
|
|
6171
|
+
readonly SENTENCE: "sentence";
|
|
6172
|
+
readonly TOKEN: "token";
|
|
6173
|
+
};
|
|
6174
|
+
/**
|
|
6175
|
+
* @public
|
|
6176
|
+
*/
|
|
6177
|
+
export type ClarifyTextGranularity = (typeof ClarifyTextGranularity)[keyof typeof ClarifyTextGranularity];
|
|
6178
|
+
/**
|
|
6179
|
+
* @public
|
|
6180
|
+
* @enum
|
|
6181
|
+
*/
|
|
6182
|
+
export declare const ClarifyTextLanguage: {
|
|
6183
|
+
readonly AFRIKAANS: "af";
|
|
6184
|
+
readonly ALBANIAN: "sq";
|
|
6185
|
+
readonly ARABIC: "ar";
|
|
6186
|
+
readonly ARMENIAN: "hy";
|
|
6187
|
+
readonly BASQUE: "eu";
|
|
6188
|
+
readonly BENGALI: "bn";
|
|
6189
|
+
readonly BULGARIAN: "bg";
|
|
6190
|
+
readonly CATALAN: "ca";
|
|
6191
|
+
readonly CHINESE: "zh";
|
|
6192
|
+
readonly CROATIAN: "hr";
|
|
6193
|
+
readonly CZECH: "cs";
|
|
6194
|
+
readonly DANISH: "da";
|
|
6195
|
+
readonly DUTCH: "nl";
|
|
6196
|
+
readonly ENGLISH: "en";
|
|
6197
|
+
readonly ESTONIAN: "et";
|
|
6198
|
+
readonly FINNISH: "fi";
|
|
6199
|
+
readonly FRENCH: "fr";
|
|
6200
|
+
readonly GERMAN: "de";
|
|
6201
|
+
readonly GREEK: "el";
|
|
6202
|
+
readonly GUJARATI: "gu";
|
|
6203
|
+
readonly HEBREW: "he";
|
|
6204
|
+
readonly HINDI: "hi";
|
|
6205
|
+
readonly HUNGARIAN: "hu";
|
|
6206
|
+
readonly ICELANDIC: "is";
|
|
6207
|
+
readonly INDONESIAN: "id";
|
|
6208
|
+
readonly IRISH: "ga";
|
|
6209
|
+
readonly ITALIAN: "it";
|
|
6210
|
+
readonly KANNADA: "kn";
|
|
6211
|
+
readonly KYRGYZ: "ky";
|
|
6212
|
+
readonly LATVIAN: "lv";
|
|
6213
|
+
readonly LIGURIAN: "lij";
|
|
6214
|
+
readonly LITHUANIAN: "lt";
|
|
6215
|
+
readonly LUXEMBOURGISH: "lb";
|
|
6216
|
+
readonly MACEDONIAN: "mk";
|
|
6217
|
+
readonly MALAYALAM: "ml";
|
|
6218
|
+
readonly MARATHI: "mr";
|
|
6219
|
+
readonly MULTI_LANGUAGE: "xx";
|
|
6220
|
+
readonly NEPALI: "ne";
|
|
6221
|
+
readonly NORWEGIAN_BOKMAL: "nb";
|
|
6222
|
+
readonly PERSIAN: "fa";
|
|
6223
|
+
readonly POLISH: "pl";
|
|
6224
|
+
readonly PORTUGUESE: "pt";
|
|
6225
|
+
readonly ROMANIAN: "ro";
|
|
6226
|
+
readonly RUSSIAN: "ru";
|
|
6227
|
+
readonly SANSKRIT: "sa";
|
|
6228
|
+
readonly SERBIAN: "sr";
|
|
6229
|
+
readonly SETSWANA: "tn";
|
|
6230
|
+
readonly SINHALA: "si";
|
|
6231
|
+
readonly SLOVAK: "sk";
|
|
6232
|
+
readonly SLOVENIAN: "sl";
|
|
6233
|
+
readonly SPANISH: "es";
|
|
6234
|
+
readonly SWEDISH: "sv";
|
|
6235
|
+
readonly TAGALOG: "tl";
|
|
6236
|
+
readonly TAMIL: "ta";
|
|
6237
|
+
readonly TATAR: "tt";
|
|
6238
|
+
readonly TELUGU: "te";
|
|
6239
|
+
readonly TURKISH: "tr";
|
|
6240
|
+
readonly UKRAINIAN: "uk";
|
|
6241
|
+
readonly URDU: "ur";
|
|
6242
|
+
readonly YORUBA: "yo";
|
|
6243
|
+
};
|
|
6244
|
+
/**
|
|
6245
|
+
* @public
|
|
6246
|
+
*/
|
|
6247
|
+
export type ClarifyTextLanguage = (typeof ClarifyTextLanguage)[keyof typeof ClarifyTextLanguage];
|
|
5949
6248
|
/**
|
|
5950
6249
|
* @public
|
|
5951
6250
|
* <p>A parameter used to configure the SageMaker Clarify explainer to treat text features as text so
|
|
@@ -6037,19 +6336,29 @@ export interface CodeRepository {
|
|
|
6037
6336
|
}
|
|
6038
6337
|
/**
|
|
6039
6338
|
* @public
|
|
6339
|
+
* @enum
|
|
6040
6340
|
*/
|
|
6041
|
-
export declare
|
|
6042
|
-
CREATION_TIME
|
|
6043
|
-
LAST_MODIFIED_TIME
|
|
6044
|
-
NAME
|
|
6045
|
-
}
|
|
6341
|
+
export declare const CodeRepositorySortBy: {
|
|
6342
|
+
readonly CREATION_TIME: "CreationTime";
|
|
6343
|
+
readonly LAST_MODIFIED_TIME: "LastModifiedTime";
|
|
6344
|
+
readonly NAME: "Name";
|
|
6345
|
+
};
|
|
6046
6346
|
/**
|
|
6047
6347
|
* @public
|
|
6048
6348
|
*/
|
|
6049
|
-
export
|
|
6050
|
-
|
|
6051
|
-
|
|
6052
|
-
|
|
6349
|
+
export type CodeRepositorySortBy = (typeof CodeRepositorySortBy)[keyof typeof CodeRepositorySortBy];
|
|
6350
|
+
/**
|
|
6351
|
+
* @public
|
|
6352
|
+
* @enum
|
|
6353
|
+
*/
|
|
6354
|
+
export declare const CodeRepositorySortOrder: {
|
|
6355
|
+
readonly ASCENDING: "Ascending";
|
|
6356
|
+
readonly DESCENDING: "Descending";
|
|
6357
|
+
};
|
|
6358
|
+
/**
|
|
6359
|
+
* @public
|
|
6360
|
+
*/
|
|
6361
|
+
export type CodeRepositorySortOrder = (typeof CodeRepositorySortOrder)[keyof typeof CodeRepositorySortOrder];
|
|
6053
6362
|
/**
|
|
6054
6363
|
* @public
|
|
6055
6364
|
* <p>Specifies configuration details for a Git repository in your Amazon Web Services
|
|
@@ -6164,78 +6473,103 @@ export interface CollectionConfiguration {
|
|
|
6164
6473
|
}
|
|
6165
6474
|
/**
|
|
6166
6475
|
* @public
|
|
6476
|
+
* @enum
|
|
6167
6477
|
*/
|
|
6168
|
-
export declare
|
|
6169
|
-
COMPLETED
|
|
6170
|
-
FAILED
|
|
6171
|
-
INPROGRESS
|
|
6172
|
-
STARTING
|
|
6173
|
-
STOPPED
|
|
6174
|
-
STOPPING
|
|
6175
|
-
}
|
|
6478
|
+
export declare const CompilationJobStatus: {
|
|
6479
|
+
readonly COMPLETED: "COMPLETED";
|
|
6480
|
+
readonly FAILED: "FAILED";
|
|
6481
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
6482
|
+
readonly STARTING: "STARTING";
|
|
6483
|
+
readonly STOPPED: "STOPPED";
|
|
6484
|
+
readonly STOPPING: "STOPPING";
|
|
6485
|
+
};
|
|
6176
6486
|
/**
|
|
6177
6487
|
* @public
|
|
6178
6488
|
*/
|
|
6179
|
-
export
|
|
6180
|
-
AISAGE = "aisage",
|
|
6181
|
-
AMBA_CV2 = "amba_cv2",
|
|
6182
|
-
AMBA_CV22 = "amba_cv22",
|
|
6183
|
-
AMBA_CV25 = "amba_cv25",
|
|
6184
|
-
COREML = "coreml",
|
|
6185
|
-
DEEPLENS = "deeplens",
|
|
6186
|
-
IMX8MPLUS = "imx8mplus",
|
|
6187
|
-
IMX8QM = "imx8qm",
|
|
6188
|
-
JACINTO_TDA4VM = "jacinto_tda4vm",
|
|
6189
|
-
JETSON_NANO = "jetson_nano",
|
|
6190
|
-
JETSON_TX1 = "jetson_tx1",
|
|
6191
|
-
JETSON_TX2 = "jetson_tx2",
|
|
6192
|
-
JETSON_XAVIER = "jetson_xavier",
|
|
6193
|
-
LAMBDA = "lambda",
|
|
6194
|
-
ML_C4 = "ml_c4",
|
|
6195
|
-
ML_C5 = "ml_c5",
|
|
6196
|
-
ML_EIA2 = "ml_eia2",
|
|
6197
|
-
ML_G4DN = "ml_g4dn",
|
|
6198
|
-
ML_INF1 = "ml_inf1",
|
|
6199
|
-
ML_M4 = "ml_m4",
|
|
6200
|
-
ML_M5 = "ml_m5",
|
|
6201
|
-
ML_P2 = "ml_p2",
|
|
6202
|
-
ML_P3 = "ml_p3",
|
|
6203
|
-
QCS603 = "qcs603",
|
|
6204
|
-
QCS605 = "qcs605",
|
|
6205
|
-
RASP3B = "rasp3b",
|
|
6206
|
-
RK3288 = "rk3288",
|
|
6207
|
-
RK3399 = "rk3399",
|
|
6208
|
-
SBE_C = "sbe_c",
|
|
6209
|
-
SITARA_AM57X = "sitara_am57x",
|
|
6210
|
-
X86_WIN32 = "x86_win32",
|
|
6211
|
-
X86_WIN64 = "x86_win64"
|
|
6212
|
-
}
|
|
6489
|
+
export type CompilationJobStatus = (typeof CompilationJobStatus)[keyof typeof CompilationJobStatus];
|
|
6213
6490
|
/**
|
|
6214
6491
|
* @public
|
|
6492
|
+
* @enum
|
|
6215
6493
|
*/
|
|
6216
|
-
export declare
|
|
6217
|
-
|
|
6218
|
-
|
|
6219
|
-
|
|
6220
|
-
|
|
6221
|
-
|
|
6494
|
+
export declare const TargetDevice: {
|
|
6495
|
+
readonly AISAGE: "aisage";
|
|
6496
|
+
readonly AMBA_CV2: "amba_cv2";
|
|
6497
|
+
readonly AMBA_CV22: "amba_cv22";
|
|
6498
|
+
readonly AMBA_CV25: "amba_cv25";
|
|
6499
|
+
readonly COREML: "coreml";
|
|
6500
|
+
readonly DEEPLENS: "deeplens";
|
|
6501
|
+
readonly IMX8MPLUS: "imx8mplus";
|
|
6502
|
+
readonly IMX8QM: "imx8qm";
|
|
6503
|
+
readonly JACINTO_TDA4VM: "jacinto_tda4vm";
|
|
6504
|
+
readonly JETSON_NANO: "jetson_nano";
|
|
6505
|
+
readonly JETSON_TX1: "jetson_tx1";
|
|
6506
|
+
readonly JETSON_TX2: "jetson_tx2";
|
|
6507
|
+
readonly JETSON_XAVIER: "jetson_xavier";
|
|
6508
|
+
readonly LAMBDA: "lambda";
|
|
6509
|
+
readonly ML_C4: "ml_c4";
|
|
6510
|
+
readonly ML_C5: "ml_c5";
|
|
6511
|
+
readonly ML_EIA2: "ml_eia2";
|
|
6512
|
+
readonly ML_G4DN: "ml_g4dn";
|
|
6513
|
+
readonly ML_INF1: "ml_inf1";
|
|
6514
|
+
readonly ML_M4: "ml_m4";
|
|
6515
|
+
readonly ML_M5: "ml_m5";
|
|
6516
|
+
readonly ML_P2: "ml_p2";
|
|
6517
|
+
readonly ML_P3: "ml_p3";
|
|
6518
|
+
readonly QCS603: "qcs603";
|
|
6519
|
+
readonly QCS605: "qcs605";
|
|
6520
|
+
readonly RASP3B: "rasp3b";
|
|
6521
|
+
readonly RK3288: "rk3288";
|
|
6522
|
+
readonly RK3399: "rk3399";
|
|
6523
|
+
readonly SBE_C: "sbe_c";
|
|
6524
|
+
readonly SITARA_AM57X: "sitara_am57x";
|
|
6525
|
+
readonly X86_WIN32: "x86_win32";
|
|
6526
|
+
readonly X86_WIN64: "x86_win64";
|
|
6527
|
+
};
|
|
6222
6528
|
/**
|
|
6223
6529
|
* @public
|
|
6224
6530
|
*/
|
|
6225
|
-
export
|
|
6226
|
-
ARM64 = "ARM64",
|
|
6227
|
-
ARM_EABI = "ARM_EABI",
|
|
6228
|
-
ARM_EABIHF = "ARM_EABIHF",
|
|
6229
|
-
X86 = "X86",
|
|
6230
|
-
X86_64 = "X86_64"
|
|
6231
|
-
}
|
|
6531
|
+
export type TargetDevice = (typeof TargetDevice)[keyof typeof TargetDevice];
|
|
6232
6532
|
/**
|
|
6233
6533
|
* @public
|
|
6534
|
+
* @enum
|
|
6234
6535
|
*/
|
|
6235
|
-
export declare
|
|
6236
|
-
|
|
6237
|
-
|
|
6238
|
-
|
|
6536
|
+
export declare const TargetPlatformAccelerator: {
|
|
6537
|
+
readonly INTEL_GRAPHICS: "INTEL_GRAPHICS";
|
|
6538
|
+
readonly MALI: "MALI";
|
|
6539
|
+
readonly NNA: "NNA";
|
|
6540
|
+
readonly NVIDIA: "NVIDIA";
|
|
6541
|
+
};
|
|
6542
|
+
/**
|
|
6543
|
+
* @public
|
|
6544
|
+
*/
|
|
6545
|
+
export type TargetPlatformAccelerator = (typeof TargetPlatformAccelerator)[keyof typeof TargetPlatformAccelerator];
|
|
6546
|
+
/**
|
|
6547
|
+
* @public
|
|
6548
|
+
* @enum
|
|
6549
|
+
*/
|
|
6550
|
+
export declare const TargetPlatformArch: {
|
|
6551
|
+
readonly ARM64: "ARM64";
|
|
6552
|
+
readonly ARM_EABI: "ARM_EABI";
|
|
6553
|
+
readonly ARM_EABIHF: "ARM_EABIHF";
|
|
6554
|
+
readonly X86: "X86";
|
|
6555
|
+
readonly X86_64: "X86_64";
|
|
6556
|
+
};
|
|
6557
|
+
/**
|
|
6558
|
+
* @public
|
|
6559
|
+
*/
|
|
6560
|
+
export type TargetPlatformArch = (typeof TargetPlatformArch)[keyof typeof TargetPlatformArch];
|
|
6561
|
+
/**
|
|
6562
|
+
* @public
|
|
6563
|
+
* @enum
|
|
6564
|
+
*/
|
|
6565
|
+
export declare const TargetPlatformOs: {
|
|
6566
|
+
readonly ANDROID: "ANDROID";
|
|
6567
|
+
readonly LINUX: "LINUX";
|
|
6568
|
+
};
|
|
6569
|
+
/**
|
|
6570
|
+
* @public
|
|
6571
|
+
*/
|
|
6572
|
+
export type TargetPlatformOs = (typeof TargetPlatformOs)[keyof typeof TargetPlatformOs];
|
|
6239
6573
|
/**
|
|
6240
6574
|
* @public
|
|
6241
6575
|
* <p>A summary of a model compilation job.</p>
|
|
@@ -6292,18 +6626,28 @@ export interface CompilationJobSummary {
|
|
|
6292
6626
|
}
|
|
6293
6627
|
/**
|
|
6294
6628
|
* @public
|
|
6629
|
+
* @enum
|
|
6295
6630
|
*/
|
|
6296
|
-
export declare
|
|
6297
|
-
DISABLED
|
|
6298
|
-
ENABLED
|
|
6299
|
-
}
|
|
6631
|
+
export declare const CompleteOnConvergence: {
|
|
6632
|
+
readonly DISABLED: "Disabled";
|
|
6633
|
+
readonly ENABLED: "Enabled";
|
|
6634
|
+
};
|
|
6300
6635
|
/**
|
|
6301
6636
|
* @public
|
|
6302
6637
|
*/
|
|
6303
|
-
export
|
|
6304
|
-
|
|
6305
|
-
|
|
6306
|
-
|
|
6638
|
+
export type CompleteOnConvergence = (typeof CompleteOnConvergence)[keyof typeof CompleteOnConvergence];
|
|
6639
|
+
/**
|
|
6640
|
+
* @public
|
|
6641
|
+
* @enum
|
|
6642
|
+
*/
|
|
6643
|
+
export declare const ConditionOutcome: {
|
|
6644
|
+
readonly FALSE: "False";
|
|
6645
|
+
readonly TRUE: "True";
|
|
6646
|
+
};
|
|
6647
|
+
/**
|
|
6648
|
+
* @public
|
|
6649
|
+
*/
|
|
6650
|
+
export type ConditionOutcome = (typeof ConditionOutcome)[keyof typeof ConditionOutcome];
|
|
6307
6651
|
/**
|
|
6308
6652
|
* @public
|
|
6309
6653
|
* <p>Metadata for a Condition step.</p>
|
|
@@ -6330,11 +6674,16 @@ export declare class ConflictException extends __BaseException {
|
|
|
6330
6674
|
}
|
|
6331
6675
|
/**
|
|
6332
6676
|
* @public
|
|
6677
|
+
* @enum
|
|
6333
6678
|
*/
|
|
6334
|
-
export declare
|
|
6335
|
-
PLATFORM
|
|
6336
|
-
VPC
|
|
6337
|
-
}
|
|
6679
|
+
export declare const RepositoryAccessMode: {
|
|
6680
|
+
readonly PLATFORM: "Platform";
|
|
6681
|
+
readonly VPC: "Vpc";
|
|
6682
|
+
};
|
|
6683
|
+
/**
|
|
6684
|
+
* @public
|
|
6685
|
+
*/
|
|
6686
|
+
export type RepositoryAccessMode = (typeof RepositoryAccessMode)[keyof typeof RepositoryAccessMode];
|
|
6338
6687
|
/**
|
|
6339
6688
|
* @public
|
|
6340
6689
|
* <p>Specifies an authentication configuration for the private docker registry where your
|
|
@@ -6387,18 +6736,28 @@ export interface ImageConfig {
|
|
|
6387
6736
|
}
|
|
6388
6737
|
/**
|
|
6389
6738
|
* @public
|
|
6739
|
+
* @enum
|
|
6390
6740
|
*/
|
|
6391
|
-
export declare
|
|
6392
|
-
MULTI_MODEL
|
|
6393
|
-
SINGLE_MODEL
|
|
6394
|
-
}
|
|
6741
|
+
export declare const ContainerMode: {
|
|
6742
|
+
readonly MULTI_MODEL: "MultiModel";
|
|
6743
|
+
readonly SINGLE_MODEL: "SingleModel";
|
|
6744
|
+
};
|
|
6395
6745
|
/**
|
|
6396
6746
|
* @public
|
|
6397
6747
|
*/
|
|
6398
|
-
export
|
|
6399
|
-
|
|
6400
|
-
|
|
6401
|
-
|
|
6748
|
+
export type ContainerMode = (typeof ContainerMode)[keyof typeof ContainerMode];
|
|
6749
|
+
/**
|
|
6750
|
+
* @public
|
|
6751
|
+
* @enum
|
|
6752
|
+
*/
|
|
6753
|
+
export declare const ModelCacheSetting: {
|
|
6754
|
+
readonly DISABLED: "Disabled";
|
|
6755
|
+
readonly ENABLED: "Enabled";
|
|
6756
|
+
};
|
|
6757
|
+
/**
|
|
6758
|
+
* @public
|
|
6759
|
+
*/
|
|
6760
|
+
export type ModelCacheSetting = (typeof ModelCacheSetting)[keyof typeof ModelCacheSetting];
|
|
6402
6761
|
/**
|
|
6403
6762
|
* @public
|
|
6404
6763
|
* <p>Specifies additional configuration for hosting multi-model endpoints.</p>
|
|
@@ -6441,17 +6800,27 @@ export interface ContainerDefinition {
|
|
|
6441
6800
|
* endpoint. If you are using your own custom algorithm instead of an algorithm provided by
|
|
6442
6801
|
* SageMaker, the inference code must meet SageMaker requirements. SageMaker supports both
|
|
6443
6802
|
* <code>registry/repository[:tag]</code> and <code>registry/repository[@digest]</code>
|
|
6444
|
-
* image path formats. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with
|
|
6445
|
-
*
|
|
6446
|
-
*
|
|
6803
|
+
* image path formats. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html">Using Your Own Algorithms with
|
|
6804
|
+
* Amazon SageMaker</a>.
|
|
6805
|
+
* </p>
|
|
6806
|
+
* <note>
|
|
6807
|
+
* <p>The model artifacts in an Amazon S3 bucket and the Docker image for inference container
|
|
6808
|
+
* in Amazon EC2 Container Registry must be in the same region as the model or endpoint you are
|
|
6809
|
+
* creating.</p>
|
|
6810
|
+
* </note>
|
|
6447
6811
|
*/
|
|
6448
6812
|
Image?: string;
|
|
6449
6813
|
/**
|
|
6450
6814
|
* <p>Specifies whether the model container is in Amazon ECR or a private Docker registry
|
|
6451
6815
|
* accessible from your Amazon Virtual Private Cloud (VPC). For information about storing containers in a
|
|
6452
6816
|
* private Docker registry, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-containers-inference-private.html">Use a
|
|
6453
|
-
* Private Docker Registry for Real-Time Inference Containers</a
|
|
6454
|
-
*
|
|
6817
|
+
* Private Docker Registry for Real-Time Inference Containers</a>.
|
|
6818
|
+
* </p>
|
|
6819
|
+
* <note>
|
|
6820
|
+
* <p>The model artifacts in an Amazon S3 bucket and the Docker image for inference container
|
|
6821
|
+
* in Amazon EC2 Container Registry must be in the same region as the model or endpoint you are
|
|
6822
|
+
* creating.</p>
|
|
6823
|
+
* </note>
|
|
6455
6824
|
*/
|
|
6456
6825
|
ImageConfig?: ImageConfig;
|
|
6457
6826
|
/**
|
|
@@ -6503,11 +6872,16 @@ export interface ContainerDefinition {
|
|
|
6503
6872
|
}
|
|
6504
6873
|
/**
|
|
6505
6874
|
* @public
|
|
6875
|
+
* @enum
|
|
6506
6876
|
*/
|
|
6507
|
-
export declare
|
|
6508
|
-
FREE_OF_ADULT_CONTENT
|
|
6509
|
-
FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION
|
|
6510
|
-
}
|
|
6877
|
+
export declare const ContentClassifier: {
|
|
6878
|
+
readonly FREE_OF_ADULT_CONTENT: "FreeOfAdultContent";
|
|
6879
|
+
readonly FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation";
|
|
6880
|
+
};
|
|
6881
|
+
/**
|
|
6882
|
+
* @public
|
|
6883
|
+
*/
|
|
6884
|
+
export type ContentClassifier = (typeof ContentClassifier)[keyof typeof ContentClassifier];
|
|
6511
6885
|
/**
|
|
6512
6886
|
* @public
|
|
6513
6887
|
* <p>A structure describing the source of a context.</p>
|
|
@@ -6559,13 +6933,18 @@ export interface ContextSummary {
|
|
|
6559
6933
|
}
|
|
6560
6934
|
/**
|
|
6561
6935
|
* @public
|
|
6936
|
+
* @enum
|
|
6562
6937
|
*/
|
|
6563
|
-
export declare
|
|
6564
|
-
AUTO
|
|
6565
|
-
LINEAR
|
|
6566
|
-
LOGARITHMIC
|
|
6567
|
-
REVERSE_LOGARITHMIC
|
|
6568
|
-
}
|
|
6938
|
+
export declare const HyperParameterScalingType: {
|
|
6939
|
+
readonly AUTO: "Auto";
|
|
6940
|
+
readonly LINEAR: "Linear";
|
|
6941
|
+
readonly LOGARITHMIC: "Logarithmic";
|
|
6942
|
+
readonly REVERSE_LOGARITHMIC: "ReverseLogarithmic";
|
|
6943
|
+
};
|
|
6944
|
+
/**
|
|
6945
|
+
* @public
|
|
6946
|
+
*/
|
|
6947
|
+
export type HyperParameterScalingType = (typeof HyperParameterScalingType)[keyof typeof HyperParameterScalingType];
|
|
6569
6948
|
/**
|
|
6570
6949
|
* @public
|
|
6571
6950
|
* <p>A list of continuous hyperparameters to tune.</p>
|
|
@@ -6751,13 +7130,18 @@ export interface ParameterRange {
|
|
|
6751
7130
|
}
|
|
6752
7131
|
/**
|
|
6753
7132
|
* @public
|
|
7133
|
+
* @enum
|
|
6754
7134
|
*/
|
|
6755
|
-
export declare
|
|
6756
|
-
CATEGORICAL
|
|
6757
|
-
CONTINUOUS
|
|
6758
|
-
FREE_TEXT
|
|
6759
|
-
INTEGER
|
|
6760
|
-
}
|
|
7135
|
+
export declare const ParameterType: {
|
|
7136
|
+
readonly CATEGORICAL: "Categorical";
|
|
7137
|
+
readonly CONTINUOUS: "Continuous";
|
|
7138
|
+
readonly FREE_TEXT: "FreeText";
|
|
7139
|
+
readonly INTEGER: "Integer";
|
|
7140
|
+
};
|
|
7141
|
+
/**
|
|
7142
|
+
* @public
|
|
7143
|
+
*/
|
|
7144
|
+
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
6761
7145
|
/**
|
|
6762
7146
|
* @public
|
|
6763
7147
|
* <p>Defines a hyperparameter to be used by an algorithm.</p>
|
|
@@ -6797,11 +7181,16 @@ export interface HyperParameterSpecification {
|
|
|
6797
7181
|
}
|
|
6798
7182
|
/**
|
|
6799
7183
|
* @public
|
|
7184
|
+
* @enum
|
|
6800
7185
|
*/
|
|
6801
|
-
export declare
|
|
6802
|
-
MAXIMIZE
|
|
6803
|
-
MINIMIZE
|
|
6804
|
-
}
|
|
7186
|
+
export declare const HyperParameterTuningJobObjectiveType: {
|
|
7187
|
+
readonly MAXIMIZE: "Maximize";
|
|
7188
|
+
readonly MINIMIZE: "Minimize";
|
|
7189
|
+
};
|
|
7190
|
+
/**
|
|
7191
|
+
* @public
|
|
7192
|
+
*/
|
|
7193
|
+
export type HyperParameterTuningJobObjectiveType = (typeof HyperParameterTuningJobObjectiveType)[keyof typeof HyperParameterTuningJobObjectiveType];
|
|
6805
7194
|
/**
|
|
6806
7195
|
* @public
|
|
6807
7196
|
* <p>Defines the objective metric for a hyperparameter tuning job.
|
|
@@ -7146,12 +7535,17 @@ export interface ModelDeployConfig {
|
|
|
7146
7535
|
}
|
|
7147
7536
|
/**
|
|
7148
7537
|
* @public
|
|
7538
|
+
* @enum
|
|
7149
7539
|
*/
|
|
7150
|
-
export declare
|
|
7151
|
-
BINARY_CLASSIFICATION
|
|
7152
|
-
MULTICLASS_CLASSIFICATION
|
|
7153
|
-
REGRESSION
|
|
7154
|
-
}
|
|
7540
|
+
export declare const ProblemType: {
|
|
7541
|
+
readonly BINARY_CLASSIFICATION: "BinaryClassification";
|
|
7542
|
+
readonly MULTICLASS_CLASSIFICATION: "MulticlassClassification";
|
|
7543
|
+
readonly REGRESSION: "Regression";
|
|
7544
|
+
};
|
|
7545
|
+
/**
|
|
7546
|
+
* @public
|
|
7547
|
+
*/
|
|
7548
|
+
export type ProblemType = (typeof ProblemType)[keyof typeof ProblemType];
|
|
7155
7549
|
/**
|
|
7156
7550
|
* @public
|
|
7157
7551
|
*/
|
|
@@ -7163,9 +7557,7 @@ export interface CreateAutoMLJobRequest {
|
|
|
7163
7557
|
AutoMLJobName: string | undefined;
|
|
7164
7558
|
/**
|
|
7165
7559
|
* <p>An array of channel objects that describes the input data and its location. Each channel
|
|
7166
|
-
* is a named input source. Similar to <code>InputDataConfig</code> supported by <
|
|
7167
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html">HyperParameterTrainingJobDefinition</a>
|
|
7168
|
-
* </code>. Format(s) supported: CSV,
|
|
7560
|
+
* is a named input source. Similar to <code>InputDataConfig</code> supported by <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html">HyperParameterTrainingJobDefinition</a>. Format(s) supported: CSV,
|
|
7169
7561
|
* Parquet. A minimum of 500 rows is required for the training dataset. There is not a minimum
|
|
7170
7562
|
* number of rows required for the validation dataset.</p>
|
|
7171
7563
|
*/
|
|
@@ -7183,12 +7575,8 @@ export interface CreateAutoMLJobRequest {
|
|
|
7183
7575
|
ProblemType?: ProblemType | string;
|
|
7184
7576
|
/**
|
|
7185
7577
|
* <p>Defines the objective metric used to measure the predictive quality of an AutoML job. You
|
|
7186
|
-
* provide an <
|
|
7187
|
-
*
|
|
7188
|
-
* </code> and Autopilot infers whether to minimize or
|
|
7189
|
-
* maximize it. For <code>
|
|
7190
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJobV2.html">CreateAutoMLJobV2</a>
|
|
7191
|
-
* </code>, only <code>Accuracy</code> is supported.</p>
|
|
7578
|
+
* provide an <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AutoMLJobObjective.html">AutoMLJobObjective$MetricName</a> and Autopilot infers whether to minimize or
|
|
7579
|
+
* maximize it. For <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJobV2.html">CreateAutoMLJobV2</a>, only <code>Accuracy</code> is supported.</p>
|
|
7192
7580
|
*/
|
|
7193
7581
|
AutoMLJobObjective?: AutoMLJobObjective;
|
|
7194
7582
|
/**
|
|
@@ -7237,9 +7625,7 @@ export interface CreateAutoMLJobV2Request {
|
|
|
7237
7625
|
AutoMLJobName: string | undefined;
|
|
7238
7626
|
/**
|
|
7239
7627
|
* <p>An array of channel objects describing the input data and their location. Each channel
|
|
7240
|
-
* is a named input source. Similar to <code>
|
|
7241
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html#sagemaker-CreateAutoMLJob-request-InputDataConfig">InputDataConfig</a>
|
|
7242
|
-
* </code> supported by <code>CreateAutoMLJob</code>. The
|
|
7628
|
+
* is a named input source. Similar to <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html#sagemaker-CreateAutoMLJob-request-InputDataConfig">InputDataConfig</a> supported by <code>CreateAutoMLJob</code>. The
|
|
7243
7629
|
* supported formats depend on the problem type:</p>
|
|
7244
7630
|
* <ul>
|
|
7245
7631
|
* <li>
|
|
@@ -7278,9 +7664,7 @@ export interface CreateAutoMLJobV2Request {
|
|
|
7278
7664
|
*/
|
|
7279
7665
|
SecurityConfig?: AutoMLSecurityConfig;
|
|
7280
7666
|
/**
|
|
7281
|
-
* <p>Specifies a metric to minimize or maximize as the objective of a job. For <code>
|
|
7282
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJobV2.html">CreateAutoMLJobV2</a>
|
|
7283
|
-
* </code>, only <code>Accuracy</code> is supported.</p>
|
|
7667
|
+
* <p>Specifies a metric to minimize or maximize as the objective of a job. For <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJobV2.html">CreateAutoMLJobV2</a>, only <code>Accuracy</code> is supported.</p>
|
|
7284
7668
|
*/
|
|
7285
7669
|
AutoMLJobObjective?: AutoMLJobObjective;
|
|
7286
7670
|
/**
|
|
@@ -7340,18 +7724,23 @@ export interface CreateCodeRepositoryOutput {
|
|
|
7340
7724
|
}
|
|
7341
7725
|
/**
|
|
7342
7726
|
* @public
|
|
7727
|
+
* @enum
|
|
7343
7728
|
*/
|
|
7344
|
-
export declare
|
|
7345
|
-
DARKNET
|
|
7346
|
-
KERAS
|
|
7347
|
-
MXNET
|
|
7348
|
-
ONNX
|
|
7349
|
-
PYTORCH
|
|
7350
|
-
SKLEARN
|
|
7351
|
-
TENSORFLOW
|
|
7352
|
-
TFLITE
|
|
7353
|
-
XGBOOST
|
|
7354
|
-
}
|
|
7729
|
+
export declare const Framework: {
|
|
7730
|
+
readonly DARKNET: "DARKNET";
|
|
7731
|
+
readonly KERAS: "KERAS";
|
|
7732
|
+
readonly MXNET: "MXNET";
|
|
7733
|
+
readonly ONNX: "ONNX";
|
|
7734
|
+
readonly PYTORCH: "PYTORCH";
|
|
7735
|
+
readonly SKLEARN: "SKLEARN";
|
|
7736
|
+
readonly TENSORFLOW: "TENSORFLOW";
|
|
7737
|
+
readonly TFLITE: "TFLITE";
|
|
7738
|
+
readonly XGBOOST: "XGBOOST";
|
|
7739
|
+
};
|
|
7740
|
+
/**
|
|
7741
|
+
* @public
|
|
7742
|
+
*/
|
|
7743
|
+
export type Framework = (typeof Framework)[keyof typeof Framework];
|
|
7355
7744
|
/**
|
|
7356
7745
|
* @public
|
|
7357
7746
|
* <p>Contains information about the location of input model artifacts, the name and
|
|
@@ -8347,11 +8736,16 @@ export interface DataQualityJobInput {
|
|
|
8347
8736
|
}
|
|
8348
8737
|
/**
|
|
8349
8738
|
* @public
|
|
8739
|
+
* @enum
|
|
8350
8740
|
*/
|
|
8351
|
-
export declare
|
|
8352
|
-
CONTINUOUS
|
|
8353
|
-
END_OF_JOB
|
|
8354
|
-
}
|
|
8741
|
+
export declare const ProcessingS3UploadMode: {
|
|
8742
|
+
readonly CONTINUOUS: "Continuous";
|
|
8743
|
+
readonly END_OF_JOB: "EndOfJob";
|
|
8744
|
+
};
|
|
8745
|
+
/**
|
|
8746
|
+
* @public
|
|
8747
|
+
*/
|
|
8748
|
+
export type ProcessingS3UploadMode = (typeof ProcessingS3UploadMode)[keyof typeof ProcessingS3UploadMode];
|
|
8355
8749
|
/**
|
|
8356
8750
|
* @public
|
|
8357
8751
|
* <p>Information about where and how you want to store the results of a monitoring
|
|
@@ -8402,53 +8796,58 @@ export interface MonitoringOutputConfig {
|
|
|
8402
8796
|
}
|
|
8403
8797
|
/**
|
|
8404
8798
|
* @public
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
|
|
8410
|
-
|
|
8411
|
-
|
|
8412
|
-
|
|
8413
|
-
|
|
8414
|
-
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
|
|
8425
|
-
|
|
8426
|
-
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
|
|
8435
|
-
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8440
|
-
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
|
|
8447
|
-
|
|
8448
|
-
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8799
|
+
* @enum
|
|
8800
|
+
*/
|
|
8801
|
+
export declare const ProcessingInstanceType: {
|
|
8802
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
8803
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
8804
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
8805
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
8806
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
8807
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
8808
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
8809
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
8810
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
8811
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
8812
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
8813
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
8814
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
8815
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
8816
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
8817
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
8818
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
8819
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
8820
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
8821
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
8822
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
8823
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
8824
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
8825
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
8826
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
8827
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
8828
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
8829
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
8830
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
8831
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
8832
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
8833
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
8834
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
8835
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
8836
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
8837
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
8838
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
8839
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
8840
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
8841
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
8842
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
8843
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
8844
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
8845
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
8846
|
+
};
|
|
8847
|
+
/**
|
|
8848
|
+
* @public
|
|
8849
|
+
*/
|
|
8850
|
+
export type ProcessingInstanceType = (typeof ProcessingInstanceType)[keyof typeof ProcessingInstanceType];
|
|
8452
8851
|
/**
|
|
8453
8852
|
* @public
|
|
8454
8853
|
* <p>Configuration for the cluster used to run model monitoring jobs.</p>
|
|
@@ -8583,10 +8982,15 @@ export interface CreateDataQualityJobDefinitionResponse {
|
|
|
8583
8982
|
}
|
|
8584
8983
|
/**
|
|
8585
8984
|
* @public
|
|
8985
|
+
* @enum
|
|
8586
8986
|
*/
|
|
8587
|
-
export declare
|
|
8588
|
-
GreengrassV2Component
|
|
8589
|
-
}
|
|
8987
|
+
export declare const EdgePresetDeploymentType: {
|
|
8988
|
+
readonly GreengrassV2Component: "GreengrassV2Component";
|
|
8989
|
+
};
|
|
8990
|
+
/**
|
|
8991
|
+
* @public
|
|
8992
|
+
*/
|
|
8993
|
+
export type EdgePresetDeploymentType = (typeof EdgePresetDeploymentType)[keyof typeof EdgePresetDeploymentType];
|
|
8590
8994
|
/**
|
|
8591
8995
|
* @public
|
|
8592
8996
|
* <p>The output configuration.</p>
|
|
@@ -8782,18 +9186,28 @@ export interface RSessionAppSettings {
|
|
|
8782
9186
|
}
|
|
8783
9187
|
/**
|
|
8784
9188
|
* @public
|
|
9189
|
+
* @enum
|
|
8785
9190
|
*/
|
|
8786
|
-
export declare
|
|
8787
|
-
Disabled
|
|
8788
|
-
Enabled
|
|
8789
|
-
}
|
|
9191
|
+
export declare const RStudioServerProAccessStatus: {
|
|
9192
|
+
readonly Disabled: "DISABLED";
|
|
9193
|
+
readonly Enabled: "ENABLED";
|
|
9194
|
+
};
|
|
8790
9195
|
/**
|
|
8791
9196
|
* @public
|
|
8792
9197
|
*/
|
|
8793
|
-
export
|
|
8794
|
-
|
|
8795
|
-
|
|
8796
|
-
|
|
9198
|
+
export type RStudioServerProAccessStatus = (typeof RStudioServerProAccessStatus)[keyof typeof RStudioServerProAccessStatus];
|
|
9199
|
+
/**
|
|
9200
|
+
* @public
|
|
9201
|
+
* @enum
|
|
9202
|
+
*/
|
|
9203
|
+
export declare const RStudioServerProUserGroup: {
|
|
9204
|
+
readonly Admin: "R_STUDIO_ADMIN";
|
|
9205
|
+
readonly User: "R_STUDIO_USER";
|
|
9206
|
+
};
|
|
9207
|
+
/**
|
|
9208
|
+
* @public
|
|
9209
|
+
*/
|
|
9210
|
+
export type RStudioServerProUserGroup = (typeof RStudioServerProUserGroup)[keyof typeof RStudioServerProUserGroup];
|
|
8797
9211
|
/**
|
|
8798
9212
|
* @public
|
|
8799
9213
|
* <p>A collection of settings that configure user interaction with the
|
|
@@ -8816,11 +9230,16 @@ export interface RStudioServerProAppSettings {
|
|
|
8816
9230
|
}
|
|
8817
9231
|
/**
|
|
8818
9232
|
* @public
|
|
9233
|
+
* @enum
|
|
8819
9234
|
*/
|
|
8820
|
-
export declare
|
|
8821
|
-
Allowed
|
|
8822
|
-
Disabled
|
|
8823
|
-
}
|
|
9235
|
+
export declare const NotebookOutputOption: {
|
|
9236
|
+
readonly Allowed: "Allowed";
|
|
9237
|
+
readonly Disabled: "Disabled";
|
|
9238
|
+
};
|
|
9239
|
+
/**
|
|
9240
|
+
* @public
|
|
9241
|
+
*/
|
|
9242
|
+
export type NotebookOutputOption = (typeof NotebookOutputOption)[keyof typeof NotebookOutputOption];
|
|
8824
9243
|
/**
|
|
8825
9244
|
* @public
|
|
8826
9245
|
* <p>Specifies options for sharing SageMaker Studio notebooks. These settings are
|
|
@@ -8913,11 +9332,16 @@ export interface UserSettings {
|
|
|
8913
9332
|
}
|
|
8914
9333
|
/**
|
|
8915
9334
|
* @public
|
|
9335
|
+
* @enum
|
|
8916
9336
|
*/
|
|
8917
|
-
export declare
|
|
8918
|
-
DISABLED
|
|
8919
|
-
USER_PROFILE_NAME
|
|
8920
|
-
}
|
|
9337
|
+
export declare const ExecutionRoleIdentityConfig: {
|
|
9338
|
+
readonly DISABLED: "DISABLED";
|
|
9339
|
+
readonly USER_PROFILE_NAME: "USER_PROFILE_NAME";
|
|
9340
|
+
};
|
|
9341
|
+
/**
|
|
9342
|
+
* @public
|
|
9343
|
+
*/
|
|
9344
|
+
export type ExecutionRoleIdentityConfig = (typeof ExecutionRoleIdentityConfig)[keyof typeof ExecutionRoleIdentityConfig];
|
|
8921
9345
|
/**
|
|
8922
9346
|
* @public
|
|
8923
9347
|
* <p>A collection of settings that configure the <code>RStudioServerPro</code> Domain-level
|
|
@@ -9075,11 +9499,16 @@ export interface EdgeDeploymentModelConfig {
|
|
|
9075
9499
|
}
|
|
9076
9500
|
/**
|
|
9077
9501
|
* @public
|
|
9502
|
+
* @enum
|
|
9078
9503
|
*/
|
|
9079
|
-
export declare
|
|
9080
|
-
DoNothing
|
|
9081
|
-
RollbackOnFailure
|
|
9082
|
-
}
|
|
9504
|
+
export declare const FailureHandlingPolicy: {
|
|
9505
|
+
readonly DoNothing: "DO_NOTHING";
|
|
9506
|
+
readonly RollbackOnFailure: "ROLLBACK_ON_FAILURE";
|
|
9507
|
+
};
|
|
9508
|
+
/**
|
|
9509
|
+
* @public
|
|
9510
|
+
*/
|
|
9511
|
+
export type FailureHandlingPolicy = (typeof FailureHandlingPolicy)[keyof typeof FailureHandlingPolicy];
|
|
9083
9512
|
/**
|
|
9084
9513
|
* @public
|
|
9085
9514
|
* <p>Contains information about the configuration of a deployment.</p>
|
|
@@ -9093,12 +9522,17 @@ export interface EdgeDeploymentConfig {
|
|
|
9093
9522
|
}
|
|
9094
9523
|
/**
|
|
9095
9524
|
* @public
|
|
9525
|
+
* @enum
|
|
9096
9526
|
*/
|
|
9097
|
-
export declare
|
|
9098
|
-
NameContains
|
|
9099
|
-
Percentage
|
|
9100
|
-
Selection
|
|
9101
|
-
}
|
|
9527
|
+
export declare const DeviceSubsetType: {
|
|
9528
|
+
readonly NameContains: "NAMECONTAINS";
|
|
9529
|
+
readonly Percentage: "PERCENTAGE";
|
|
9530
|
+
readonly Selection: "SELECTION";
|
|
9531
|
+
};
|
|
9532
|
+
/**
|
|
9533
|
+
* @public
|
|
9534
|
+
*/
|
|
9535
|
+
export type DeviceSubsetType = (typeof DeviceSubsetType)[keyof typeof DeviceSubsetType];
|
|
9102
9536
|
/**
|
|
9103
9537
|
* @public
|
|
9104
9538
|
* <p>Contains information about the configurations of selected devices.</p>
|
|
@@ -9223,24 +9657,3 @@ export interface CreateEdgePackagingJobRequest {
|
|
|
9223
9657
|
*/
|
|
9224
9658
|
Tags?: Tag[];
|
|
9225
9659
|
}
|
|
9226
|
-
/**
|
|
9227
|
-
* @public
|
|
9228
|
-
* <p>The deployment configuration for an endpoint, which contains the desired deployment
|
|
9229
|
-
* strategy and rollback configurations.</p>
|
|
9230
|
-
*/
|
|
9231
|
-
export interface DeploymentConfig {
|
|
9232
|
-
/**
|
|
9233
|
-
* <p>Update policy for a blue/green deployment. If this update policy is specified, SageMaker
|
|
9234
|
-
* creates a new fleet during the deployment while maintaining the old fleet. SageMaker flips
|
|
9235
|
-
* traffic to the new fleet according to the specified traffic routing configuration. Only
|
|
9236
|
-
* one update policy should be used in the deployment configuration. If no update policy is
|
|
9237
|
-
* specified, SageMaker uses a blue/green deployment strategy with all at once traffic shifting
|
|
9238
|
-
* by default.</p>
|
|
9239
|
-
*/
|
|
9240
|
-
BlueGreenUpdatePolicy: BlueGreenUpdatePolicy | undefined;
|
|
9241
|
-
/**
|
|
9242
|
-
* <p>Automatic rollback configuration for handling endpoint deployment failures and
|
|
9243
|
-
* recovery.</p>
|
|
9244
|
-
*/
|
|
9245
|
-
AutoRollbackConfiguration?: AutoRollbackConfig;
|
|
9246
|
-
}
|