@aws-sdk/client-sagemaker 3.301.0 → 3.303.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 +870 -958
- 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-es/models/models_0.js +870 -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-types/models/models_0.d.ts +1320 -880
- package/dist-types/models/models_1.d.ts +402 -232
- package/dist-types/models/models_2.d.ts +685 -400
- package/dist-types/models/models_3.d.ts +487 -232
- package/dist-types/models/models_4.d.ts +10 -5
- package/dist-types/ts3.4/models/models_0.d.ts +1026 -870
- package/dist-types/ts3.4/models/models_1.d.ts +286 -228
- package/dist-types/ts3.4/models/models_2.d.ts +502 -400
- package/dist-types/ts3.4/models/models_3.d.ts +324 -232
- package/dist-types/ts3.4/models/models_4.d.ts +7 -5
- 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,12 +614,17 @@ 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>
|
|
@@ -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>
|
|
@@ -3775,22 +3910,32 @@ export interface AsyncInferenceConfig {
|
|
|
3775
3910
|
}
|
|
3776
3911
|
/**
|
|
3777
3912
|
* @public
|
|
3913
|
+
* @enum
|
|
3778
3914
|
*/
|
|
3779
|
-
export declare
|
|
3780
|
-
GZIP
|
|
3781
|
-
SNAPPY
|
|
3782
|
-
ZLIB
|
|
3783
|
-
}
|
|
3915
|
+
export declare const AthenaResultCompressionType: {
|
|
3916
|
+
readonly GZIP: "GZIP";
|
|
3917
|
+
readonly SNAPPY: "SNAPPY";
|
|
3918
|
+
readonly ZLIB: "ZLIB";
|
|
3919
|
+
};
|
|
3784
3920
|
/**
|
|
3785
3921
|
* @public
|
|
3786
3922
|
*/
|
|
3787
|
-
export
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3923
|
+
export type AthenaResultCompressionType = (typeof AthenaResultCompressionType)[keyof typeof AthenaResultCompressionType];
|
|
3924
|
+
/**
|
|
3925
|
+
* @public
|
|
3926
|
+
* @enum
|
|
3927
|
+
*/
|
|
3928
|
+
export declare const AthenaResultFormat: {
|
|
3929
|
+
readonly AVRO: "AVRO";
|
|
3930
|
+
readonly JSON: "JSON";
|
|
3931
|
+
readonly ORC: "ORC";
|
|
3932
|
+
readonly PARQUET: "PARQUET";
|
|
3933
|
+
readonly TEXTFILE: "TEXTFILE";
|
|
3934
|
+
};
|
|
3935
|
+
/**
|
|
3936
|
+
* @public
|
|
3937
|
+
*/
|
|
3938
|
+
export type AthenaResultFormat = (typeof AthenaResultFormat)[keyof typeof AthenaResultFormat];
|
|
3794
3939
|
/**
|
|
3795
3940
|
* @public
|
|
3796
3941
|
* <p>Configuration for Athena Dataset Definition input.</p>
|
|
@@ -3832,25 +3977,35 @@ export interface AthenaDatasetDefinition {
|
|
|
3832
3977
|
}
|
|
3833
3978
|
/**
|
|
3834
3979
|
* @public
|
|
3980
|
+
* @enum
|
|
3835
3981
|
*/
|
|
3836
|
-
export declare
|
|
3837
|
-
IAM
|
|
3838
|
-
SSO
|
|
3839
|
-
}
|
|
3982
|
+
export declare const AuthMode: {
|
|
3983
|
+
readonly IAM: "IAM";
|
|
3984
|
+
readonly SSO: "SSO";
|
|
3985
|
+
};
|
|
3840
3986
|
/**
|
|
3841
3987
|
* @public
|
|
3842
3988
|
*/
|
|
3843
|
-
export
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3989
|
+
export type AuthMode = (typeof AuthMode)[keyof typeof AuthMode];
|
|
3990
|
+
/**
|
|
3991
|
+
* @public
|
|
3992
|
+
* @enum
|
|
3993
|
+
*/
|
|
3994
|
+
export declare const AutoMLAlgorithm: {
|
|
3995
|
+
readonly CATBOOST: "catboost";
|
|
3996
|
+
readonly EXTRA_TREES: "extra-trees";
|
|
3997
|
+
readonly FASTAI: "fastai";
|
|
3998
|
+
readonly LIGHTGBM: "lightgbm";
|
|
3999
|
+
readonly LINEAR_LEARNER: "linear-learner";
|
|
4000
|
+
readonly MLP: "mlp";
|
|
4001
|
+
readonly NN_TORCH: "nn-torch";
|
|
4002
|
+
readonly RANDOMFOREST: "randomforest";
|
|
4003
|
+
readonly XGBOOST: "xgboost";
|
|
4004
|
+
};
|
|
4005
|
+
/**
|
|
4006
|
+
* @public
|
|
4007
|
+
*/
|
|
4008
|
+
export type AutoMLAlgorithm = (typeof AutoMLAlgorithm)[keyof typeof AutoMLAlgorithm];
|
|
3854
4009
|
/**
|
|
3855
4010
|
* @public
|
|
3856
4011
|
* <p>The collection of algorithms run on a dataset for training the model candidates of an
|
|
@@ -3932,50 +4087,65 @@ export interface CandidateArtifactLocations {
|
|
|
3932
4087
|
}
|
|
3933
4088
|
/**
|
|
3934
4089
|
* @public
|
|
4090
|
+
* @enum
|
|
3935
4091
|
*/
|
|
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
|
-
}
|
|
4092
|
+
export declare const AutoMLMetricEnum: {
|
|
4093
|
+
readonly ACCURACY: "Accuracy";
|
|
4094
|
+
readonly AUC: "AUC";
|
|
4095
|
+
readonly BALANCED_ACCURACY: "BalancedAccuracy";
|
|
4096
|
+
readonly F1: "F1";
|
|
4097
|
+
readonly F1_MACRO: "F1macro";
|
|
4098
|
+
readonly MAE: "MAE";
|
|
4099
|
+
readonly MSE: "MSE";
|
|
4100
|
+
readonly PRECISION: "Precision";
|
|
4101
|
+
readonly PRECISION_MACRO: "PrecisionMacro";
|
|
4102
|
+
readonly R2: "R2";
|
|
4103
|
+
readonly RECALL: "Recall";
|
|
4104
|
+
readonly RECALL_MACRO: "RecallMacro";
|
|
4105
|
+
readonly RMSE: "RMSE";
|
|
4106
|
+
};
|
|
3951
4107
|
/**
|
|
3952
4108
|
* @public
|
|
3953
4109
|
*/
|
|
3954
|
-
export
|
|
3955
|
-
TEST = "Test",
|
|
3956
|
-
TRAIN = "Train",
|
|
3957
|
-
VALIDATION = "Validation"
|
|
3958
|
-
}
|
|
4110
|
+
export type AutoMLMetricEnum = (typeof AutoMLMetricEnum)[keyof typeof AutoMLMetricEnum];
|
|
3959
4111
|
/**
|
|
3960
4112
|
* @public
|
|
4113
|
+
* @enum
|
|
3961
4114
|
*/
|
|
3962
|
-
export declare
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
4115
|
+
export declare const MetricSetSource: {
|
|
4116
|
+
readonly TEST: "Test";
|
|
4117
|
+
readonly TRAIN: "Train";
|
|
4118
|
+
readonly VALIDATION: "Validation";
|
|
4119
|
+
};
|
|
4120
|
+
/**
|
|
4121
|
+
* @public
|
|
4122
|
+
*/
|
|
4123
|
+
export type MetricSetSource = (typeof MetricSetSource)[keyof typeof MetricSetSource];
|
|
4124
|
+
/**
|
|
4125
|
+
* @public
|
|
4126
|
+
* @enum
|
|
4127
|
+
*/
|
|
4128
|
+
export declare const AutoMLMetricExtendedEnum: {
|
|
4129
|
+
readonly ACCURACY: "Accuracy";
|
|
4130
|
+
readonly AUC: "AUC";
|
|
4131
|
+
readonly BALANCED_ACCURACY: "BalancedAccuracy";
|
|
4132
|
+
readonly F1: "F1";
|
|
4133
|
+
readonly F1_MACRO: "F1macro";
|
|
4134
|
+
readonly INFERENCE_LATENCY: "InferenceLatency";
|
|
4135
|
+
readonly LogLoss: "LogLoss";
|
|
4136
|
+
readonly MAE: "MAE";
|
|
4137
|
+
readonly MSE: "MSE";
|
|
4138
|
+
readonly PRECISION: "Precision";
|
|
4139
|
+
readonly PRECISION_MACRO: "PrecisionMacro";
|
|
4140
|
+
readonly R2: "R2";
|
|
4141
|
+
readonly RECALL: "Recall";
|
|
4142
|
+
readonly RECALL_MACRO: "RecallMacro";
|
|
4143
|
+
readonly RMSE: "RMSE";
|
|
4144
|
+
};
|
|
4145
|
+
/**
|
|
4146
|
+
* @public
|
|
4147
|
+
*/
|
|
4148
|
+
export type AutoMLMetricExtendedEnum = (typeof AutoMLMetricExtendedEnum)[keyof typeof AutoMLMetricExtendedEnum];
|
|
3979
4149
|
/**
|
|
3980
4150
|
* @public
|
|
3981
4151
|
* <p>Information about the metric for a candidate produced by an AutoML job.</p>
|
|
@@ -4019,22 +4189,32 @@ export interface CandidateProperties {
|
|
|
4019
4189
|
}
|
|
4020
4190
|
/**
|
|
4021
4191
|
* @public
|
|
4192
|
+
* @enum
|
|
4022
4193
|
*/
|
|
4023
|
-
export declare
|
|
4024
|
-
COMPLETED
|
|
4025
|
-
FAILED
|
|
4026
|
-
IN_PROGRESS
|
|
4027
|
-
STOPPED
|
|
4028
|
-
STOPPING
|
|
4029
|
-
}
|
|
4194
|
+
export declare const CandidateStatus: {
|
|
4195
|
+
readonly COMPLETED: "Completed";
|
|
4196
|
+
readonly FAILED: "Failed";
|
|
4197
|
+
readonly IN_PROGRESS: "InProgress";
|
|
4198
|
+
readonly STOPPED: "Stopped";
|
|
4199
|
+
readonly STOPPING: "Stopping";
|
|
4200
|
+
};
|
|
4030
4201
|
/**
|
|
4031
4202
|
* @public
|
|
4032
4203
|
*/
|
|
4033
|
-
export
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4204
|
+
export type CandidateStatus = (typeof CandidateStatus)[keyof typeof CandidateStatus];
|
|
4205
|
+
/**
|
|
4206
|
+
* @public
|
|
4207
|
+
* @enum
|
|
4208
|
+
*/
|
|
4209
|
+
export declare const CandidateStepType: {
|
|
4210
|
+
readonly PROCESSING: "AWS::SageMaker::ProcessingJob";
|
|
4211
|
+
readonly TRAINING: "AWS::SageMaker::TrainingJob";
|
|
4212
|
+
readonly TRANSFORM: "AWS::SageMaker::TransformJob";
|
|
4213
|
+
};
|
|
4214
|
+
/**
|
|
4215
|
+
* @public
|
|
4216
|
+
*/
|
|
4217
|
+
export type CandidateStepType = (typeof CandidateStepType)[keyof typeof CandidateStepType];
|
|
4038
4218
|
/**
|
|
4039
4219
|
* @public
|
|
4040
4220
|
* <p>Information about the steps for a candidate and what step it is working on.</p>
|
|
@@ -4055,11 +4235,16 @@ export interface AutoMLCandidateStep {
|
|
|
4055
4235
|
}
|
|
4056
4236
|
/**
|
|
4057
4237
|
* @public
|
|
4238
|
+
* @enum
|
|
4058
4239
|
*/
|
|
4059
|
-
export declare
|
|
4060
|
-
MAXIMIZE
|
|
4061
|
-
MINIMIZE
|
|
4062
|
-
}
|
|
4240
|
+
export declare const AutoMLJobObjectiveType: {
|
|
4241
|
+
readonly MAXIMIZE: "Maximize";
|
|
4242
|
+
readonly MINIMIZE: "Minimize";
|
|
4243
|
+
};
|
|
4244
|
+
/**
|
|
4245
|
+
* @public
|
|
4246
|
+
*/
|
|
4247
|
+
export type AutoMLJobObjectiveType = (typeof AutoMLJobObjectiveType)[keyof typeof AutoMLJobObjectiveType];
|
|
4063
4248
|
/**
|
|
4064
4249
|
* @public
|
|
4065
4250
|
* <p>The best candidate result from an AutoML training job.</p>
|
|
@@ -4088,11 +4273,16 @@ export interface FinalAutoMLJobObjectiveMetric {
|
|
|
4088
4273
|
}
|
|
4089
4274
|
/**
|
|
4090
4275
|
* @public
|
|
4276
|
+
* @enum
|
|
4091
4277
|
*/
|
|
4092
|
-
export declare
|
|
4093
|
-
CPU
|
|
4094
|
-
GPU
|
|
4095
|
-
}
|
|
4278
|
+
export declare const AutoMLProcessingUnit: {
|
|
4279
|
+
readonly CPU: "CPU";
|
|
4280
|
+
readonly GPU: "GPU";
|
|
4281
|
+
};
|
|
4282
|
+
/**
|
|
4283
|
+
* @public
|
|
4284
|
+
*/
|
|
4285
|
+
export type AutoMLProcessingUnit = (typeof AutoMLProcessingUnit)[keyof typeof AutoMLProcessingUnit];
|
|
4096
4286
|
/**
|
|
4097
4287
|
* @public
|
|
4098
4288
|
* <p>A list of container definitions that describe the different containers that make up an
|
|
@@ -4127,12 +4317,17 @@ export interface AutoMLContainerDefinition {
|
|
|
4127
4317
|
}
|
|
4128
4318
|
/**
|
|
4129
4319
|
* @public
|
|
4320
|
+
* @enum
|
|
4130
4321
|
*/
|
|
4131
|
-
export declare
|
|
4132
|
-
Failed
|
|
4133
|
-
Pending
|
|
4134
|
-
Succeeded
|
|
4135
|
-
}
|
|
4322
|
+
export declare const ObjectiveStatus: {
|
|
4323
|
+
readonly Failed: "Failed";
|
|
4324
|
+
readonly Pending: "Pending";
|
|
4325
|
+
readonly Succeeded: "Succeeded";
|
|
4326
|
+
};
|
|
4327
|
+
/**
|
|
4328
|
+
* @public
|
|
4329
|
+
*/
|
|
4330
|
+
export type ObjectiveStatus = (typeof ObjectiveStatus)[keyof typeof ObjectiveStatus];
|
|
4136
4331
|
/**
|
|
4137
4332
|
* @public
|
|
4138
4333
|
* <p>Information about a candidate produced by an AutoML training job, including its status,
|
|
@@ -4260,19 +4455,29 @@ export interface AutoMLCandidateGenerationConfig {
|
|
|
4260
4455
|
}
|
|
4261
4456
|
/**
|
|
4262
4457
|
* @public
|
|
4458
|
+
* @enum
|
|
4263
4459
|
*/
|
|
4264
|
-
export declare
|
|
4265
|
-
TRAINING
|
|
4266
|
-
VALIDATION
|
|
4267
|
-
}
|
|
4460
|
+
export declare const AutoMLChannelType: {
|
|
4461
|
+
readonly TRAINING: "training";
|
|
4462
|
+
readonly VALIDATION: "validation";
|
|
4463
|
+
};
|
|
4268
4464
|
/**
|
|
4269
4465
|
* @public
|
|
4270
4466
|
*/
|
|
4271
|
-
export
|
|
4272
|
-
|
|
4273
|
-
|
|
4274
|
-
|
|
4275
|
-
|
|
4467
|
+
export type AutoMLChannelType = (typeof AutoMLChannelType)[keyof typeof AutoMLChannelType];
|
|
4468
|
+
/**
|
|
4469
|
+
* @public
|
|
4470
|
+
* @enum
|
|
4471
|
+
*/
|
|
4472
|
+
export declare const AutoMLS3DataType: {
|
|
4473
|
+
readonly AUGMENTED_MANIFEST_FILE: "AugmentedManifestFile";
|
|
4474
|
+
readonly MANIFEST_FILE: "ManifestFile";
|
|
4475
|
+
readonly S3_PREFIX: "S3Prefix";
|
|
4476
|
+
};
|
|
4477
|
+
/**
|
|
4478
|
+
* @public
|
|
4479
|
+
*/
|
|
4480
|
+
export type AutoMLS3DataType = (typeof AutoMLS3DataType)[keyof typeof AutoMLS3DataType];
|
|
4276
4481
|
/**
|
|
4277
4482
|
* @public
|
|
4278
4483
|
* <p>Describes the Amazon S3 data source.</p>
|
|
@@ -4503,12 +4708,17 @@ export interface AutoMLJobCompletionCriteria {
|
|
|
4503
4708
|
}
|
|
4504
4709
|
/**
|
|
4505
4710
|
* @public
|
|
4711
|
+
* @enum
|
|
4506
4712
|
*/
|
|
4507
|
-
export declare
|
|
4508
|
-
AUTO
|
|
4509
|
-
ENSEMBLING
|
|
4510
|
-
HYPERPARAMETER_TUNING
|
|
4511
|
-
}
|
|
4713
|
+
export declare const AutoMLMode: {
|
|
4714
|
+
readonly AUTO: "AUTO";
|
|
4715
|
+
readonly ENSEMBLING: "ENSEMBLING";
|
|
4716
|
+
readonly HYPERPARAMETER_TUNING: "HYPERPARAMETER_TUNING";
|
|
4717
|
+
};
|
|
4718
|
+
/**
|
|
4719
|
+
* @public
|
|
4720
|
+
*/
|
|
4721
|
+
export type AutoMLMode = (typeof AutoMLMode)[keyof typeof AutoMLMode];
|
|
4512
4722
|
/**
|
|
4513
4723
|
* @public
|
|
4514
4724
|
* <p>Specifies a VPC that your training jobs and hosted models have access to. Control
|
|
@@ -4768,37 +4978,47 @@ export interface AutoMLJobObjective {
|
|
|
4768
4978
|
}
|
|
4769
4979
|
/**
|
|
4770
4980
|
* @public
|
|
4981
|
+
* @enum
|
|
4771
4982
|
*/
|
|
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
|
-
}
|
|
4983
|
+
export declare const AutoMLJobSecondaryStatus: {
|
|
4984
|
+
readonly ANALYZING_DATA: "AnalyzingData";
|
|
4985
|
+
readonly CANDIDATE_DEFINITIONS_GENERATED: "CandidateDefinitionsGenerated";
|
|
4986
|
+
readonly COMPLETED: "Completed";
|
|
4987
|
+
readonly DEPLOYING_MODEL: "DeployingModel";
|
|
4988
|
+
readonly EXPLAINABILITY_ERROR: "ExplainabilityError";
|
|
4989
|
+
readonly FAILED: "Failed";
|
|
4990
|
+
readonly FEATURE_ENGINEERING: "FeatureEngineering";
|
|
4991
|
+
readonly GENERATING_EXPLAINABILITY_REPORT: "GeneratingExplainabilityReport";
|
|
4992
|
+
readonly GENERATING_MODEL_INSIGHTS_REPORT: "GeneratingModelInsightsReport";
|
|
4993
|
+
readonly MAX_AUTO_ML_JOB_RUNTIME_REACHED: "MaxAutoMLJobRuntimeReached";
|
|
4994
|
+
readonly MAX_CANDIDATES_REACHED: "MaxCandidatesReached";
|
|
4995
|
+
readonly MODEL_DEPLOYMENT_ERROR: "ModelDeploymentError";
|
|
4996
|
+
readonly MODEL_INSIGHTS_ERROR: "ModelInsightsError";
|
|
4997
|
+
readonly MODEL_TUNING: "ModelTuning";
|
|
4998
|
+
readonly STARTING: "Starting";
|
|
4999
|
+
readonly STOPPED: "Stopped";
|
|
5000
|
+
readonly STOPPING: "Stopping";
|
|
5001
|
+
readonly TRAINING_MODELS: "TrainingModels";
|
|
5002
|
+
};
|
|
4792
5003
|
/**
|
|
4793
5004
|
* @public
|
|
4794
5005
|
*/
|
|
4795
|
-
export
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
5006
|
+
export type AutoMLJobSecondaryStatus = (typeof AutoMLJobSecondaryStatus)[keyof typeof AutoMLJobSecondaryStatus];
|
|
5007
|
+
/**
|
|
5008
|
+
* @public
|
|
5009
|
+
* @enum
|
|
5010
|
+
*/
|
|
5011
|
+
export declare const AutoMLJobStatus: {
|
|
5012
|
+
readonly COMPLETED: "Completed";
|
|
5013
|
+
readonly FAILED: "Failed";
|
|
5014
|
+
readonly IN_PROGRESS: "InProgress";
|
|
5015
|
+
readonly STOPPED: "Stopped";
|
|
5016
|
+
readonly STOPPING: "Stopping";
|
|
5017
|
+
};
|
|
5018
|
+
/**
|
|
5019
|
+
* @public
|
|
5020
|
+
*/
|
|
5021
|
+
export type AutoMLJobStatus = (typeof AutoMLJobStatus)[keyof typeof AutoMLJobStatus];
|
|
4802
5022
|
/**
|
|
4803
5023
|
* @public
|
|
4804
5024
|
* <p>Metadata for an AutoML job step.</p>
|
|
@@ -4951,19 +5171,29 @@ export declare namespace AutoMLProblemTypeConfig {
|
|
|
4951
5171
|
}
|
|
4952
5172
|
/**
|
|
4953
5173
|
* @public
|
|
5174
|
+
* @enum
|
|
4954
5175
|
*/
|
|
4955
|
-
export declare
|
|
4956
|
-
CREATION_TIME
|
|
4957
|
-
NAME
|
|
4958
|
-
STATUS
|
|
4959
|
-
}
|
|
5176
|
+
export declare const AutoMLSortBy: {
|
|
5177
|
+
readonly CREATION_TIME: "CreationTime";
|
|
5178
|
+
readonly NAME: "Name";
|
|
5179
|
+
readonly STATUS: "Status";
|
|
5180
|
+
};
|
|
4960
5181
|
/**
|
|
4961
5182
|
* @public
|
|
4962
5183
|
*/
|
|
4963
|
-
export
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
5184
|
+
export type AutoMLSortBy = (typeof AutoMLSortBy)[keyof typeof AutoMLSortBy];
|
|
5185
|
+
/**
|
|
5186
|
+
* @public
|
|
5187
|
+
* @enum
|
|
5188
|
+
*/
|
|
5189
|
+
export declare const AutoMLSortOrder: {
|
|
5190
|
+
readonly ASCENDING: "Ascending";
|
|
5191
|
+
readonly DESCENDING: "Descending";
|
|
5192
|
+
};
|
|
5193
|
+
/**
|
|
5194
|
+
* @public
|
|
5195
|
+
*/
|
|
5196
|
+
export type AutoMLSortOrder = (typeof AutoMLSortOrder)[keyof typeof AutoMLSortOrder];
|
|
4967
5197
|
/**
|
|
4968
5198
|
* @public
|
|
4969
5199
|
* <p>Automatic rollback configuration for handling endpoint deployment failures and
|
|
@@ -4979,11 +5209,16 @@ export interface AutoRollbackConfig {
|
|
|
4979
5209
|
}
|
|
4980
5210
|
/**
|
|
4981
5211
|
* @public
|
|
5212
|
+
* @enum
|
|
4982
5213
|
*/
|
|
4983
|
-
export declare
|
|
4984
|
-
REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3
|
|
4985
|
-
TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1
|
|
4986
|
-
}
|
|
5214
|
+
export declare const AwsManagedHumanLoopRequestSource: {
|
|
5215
|
+
readonly REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3: "AWS/Rekognition/DetectModerationLabels/Image/V3";
|
|
5216
|
+
readonly TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1: "AWS/Textract/AnalyzeDocument/Forms/V1";
|
|
5217
|
+
};
|
|
5218
|
+
/**
|
|
5219
|
+
* @public
|
|
5220
|
+
*/
|
|
5221
|
+
export type AwsManagedHumanLoopRequestSource = (typeof AwsManagedHumanLoopRequestSource)[keyof typeof AwsManagedHumanLoopRequestSource];
|
|
4987
5222
|
/**
|
|
4988
5223
|
* @public
|
|
4989
5224
|
* <p>Configuration to control how SageMaker captures inference data for batch transform jobs.</p>
|
|
@@ -5080,22 +5315,32 @@ export interface InferenceSpecification {
|
|
|
5080
5315
|
}
|
|
5081
5316
|
/**
|
|
5082
5317
|
* @public
|
|
5318
|
+
* @enum
|
|
5083
5319
|
*/
|
|
5084
|
-
export declare
|
|
5085
|
-
APPROVED
|
|
5086
|
-
PENDING_MANUAL_APPROVAL
|
|
5087
|
-
REJECTED
|
|
5088
|
-
}
|
|
5320
|
+
export declare const ModelApprovalStatus: {
|
|
5321
|
+
readonly APPROVED: "Approved";
|
|
5322
|
+
readonly PENDING_MANUAL_APPROVAL: "PendingManualApproval";
|
|
5323
|
+
readonly REJECTED: "Rejected";
|
|
5324
|
+
};
|
|
5089
5325
|
/**
|
|
5090
5326
|
* @public
|
|
5091
5327
|
*/
|
|
5092
|
-
export
|
|
5093
|
-
|
|
5094
|
-
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
5098
|
-
|
|
5328
|
+
export type ModelApprovalStatus = (typeof ModelApprovalStatus)[keyof typeof ModelApprovalStatus];
|
|
5329
|
+
/**
|
|
5330
|
+
* @public
|
|
5331
|
+
* @enum
|
|
5332
|
+
*/
|
|
5333
|
+
export declare const ModelPackageStatus: {
|
|
5334
|
+
readonly COMPLETED: "Completed";
|
|
5335
|
+
readonly DELETING: "Deleting";
|
|
5336
|
+
readonly FAILED: "Failed";
|
|
5337
|
+
readonly IN_PROGRESS: "InProgress";
|
|
5338
|
+
readonly PENDING: "Pending";
|
|
5339
|
+
};
|
|
5340
|
+
/**
|
|
5341
|
+
* @public
|
|
5342
|
+
*/
|
|
5343
|
+
export type ModelPackageStatus = (typeof ModelPackageStatus)[keyof typeof ModelPackageStatus];
|
|
5099
5344
|
/**
|
|
5100
5345
|
* @public
|
|
5101
5346
|
* <p>Provides summary information about the model package.</p>
|
|
@@ -5195,18 +5440,28 @@ export interface MonitoringDatasetFormat {
|
|
|
5195
5440
|
}
|
|
5196
5441
|
/**
|
|
5197
5442
|
* @public
|
|
5443
|
+
* @enum
|
|
5198
5444
|
*/
|
|
5199
|
-
export declare
|
|
5200
|
-
FULLYREPLICATED
|
|
5201
|
-
SHARDEDBYS3KEY
|
|
5202
|
-
}
|
|
5445
|
+
export declare const ProcessingS3DataDistributionType: {
|
|
5446
|
+
readonly FULLYREPLICATED: "FullyReplicated";
|
|
5447
|
+
readonly SHARDEDBYS3KEY: "ShardedByS3Key";
|
|
5448
|
+
};
|
|
5203
5449
|
/**
|
|
5204
5450
|
* @public
|
|
5205
5451
|
*/
|
|
5206
|
-
export
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5452
|
+
export type ProcessingS3DataDistributionType = (typeof ProcessingS3DataDistributionType)[keyof typeof ProcessingS3DataDistributionType];
|
|
5453
|
+
/**
|
|
5454
|
+
* @public
|
|
5455
|
+
* @enum
|
|
5456
|
+
*/
|
|
5457
|
+
export declare const ProcessingS3InputMode: {
|
|
5458
|
+
readonly FILE: "File";
|
|
5459
|
+
readonly PIPE: "Pipe";
|
|
5460
|
+
};
|
|
5461
|
+
/**
|
|
5462
|
+
* @public
|
|
5463
|
+
*/
|
|
5464
|
+
export type ProcessingS3InputMode = (typeof ProcessingS3InputMode)[keyof typeof ProcessingS3InputMode];
|
|
5210
5465
|
/**
|
|
5211
5466
|
* @public
|
|
5212
5467
|
* <p>Input object for the batch transform job.</p>
|
|
@@ -5317,11 +5572,16 @@ export interface Bias {
|
|
|
5317
5572
|
}
|
|
5318
5573
|
/**
|
|
5319
5574
|
* @public
|
|
5575
|
+
* @enum
|
|
5320
5576
|
*/
|
|
5321
|
-
export declare
|
|
5322
|
-
CAPACITY_PERCENT
|
|
5323
|
-
INSTANCE_COUNT
|
|
5324
|
-
}
|
|
5577
|
+
export declare const CapacitySizeType: {
|
|
5578
|
+
readonly CAPACITY_PERCENT: "CAPACITY_PERCENT";
|
|
5579
|
+
readonly INSTANCE_COUNT: "INSTANCE_COUNT";
|
|
5580
|
+
};
|
|
5581
|
+
/**
|
|
5582
|
+
* @public
|
|
5583
|
+
*/
|
|
5584
|
+
export type CapacitySizeType = (typeof CapacitySizeType)[keyof typeof CapacitySizeType];
|
|
5325
5585
|
/**
|
|
5326
5586
|
* @public
|
|
5327
5587
|
* <p>Specifies the endpoint capacity to activate for production.</p>
|
|
@@ -5351,12 +5611,17 @@ export interface CapacitySize {
|
|
|
5351
5611
|
}
|
|
5352
5612
|
/**
|
|
5353
5613
|
* @public
|
|
5614
|
+
* @enum
|
|
5354
5615
|
*/
|
|
5355
|
-
export declare
|
|
5356
|
-
ALL_AT_ONCE
|
|
5357
|
-
CANARY
|
|
5358
|
-
LINEAR
|
|
5359
|
-
}
|
|
5616
|
+
export declare const TrafficRoutingConfigType: {
|
|
5617
|
+
readonly ALL_AT_ONCE: "ALL_AT_ONCE";
|
|
5618
|
+
readonly CANARY: "CANARY";
|
|
5619
|
+
readonly LINEAR: "LINEAR";
|
|
5620
|
+
};
|
|
5621
|
+
/**
|
|
5622
|
+
* @public
|
|
5623
|
+
*/
|
|
5624
|
+
export type TrafficRoutingConfigType = (typeof TrafficRoutingConfigType)[keyof typeof TrafficRoutingConfigType];
|
|
5360
5625
|
/**
|
|
5361
5626
|
* @public
|
|
5362
5627
|
* <p>Defines the traffic routing strategy during an endpoint deployment to shift traffic from the
|
|
@@ -5433,11 +5698,16 @@ export interface BlueGreenUpdatePolicy {
|
|
|
5433
5698
|
}
|
|
5434
5699
|
/**
|
|
5435
5700
|
* @public
|
|
5701
|
+
* @enum
|
|
5436
5702
|
*/
|
|
5437
|
-
export declare
|
|
5438
|
-
AND
|
|
5439
|
-
OR
|
|
5440
|
-
}
|
|
5703
|
+
export declare const BooleanOperator: {
|
|
5704
|
+
readonly AND: "And";
|
|
5705
|
+
readonly OR: "Or";
|
|
5706
|
+
};
|
|
5707
|
+
/**
|
|
5708
|
+
* @public
|
|
5709
|
+
*/
|
|
5710
|
+
export type BooleanOperator = (typeof BooleanOperator)[keyof typeof BooleanOperator];
|
|
5441
5711
|
/**
|
|
5442
5712
|
* @public
|
|
5443
5713
|
* <p>Details on the cache hit of a pipeline execution step.</p>
|
|
@@ -5482,19 +5752,29 @@ export interface CallbackStepMetadata {
|
|
|
5482
5752
|
}
|
|
5483
5753
|
/**
|
|
5484
5754
|
* @public
|
|
5755
|
+
* @enum
|
|
5485
5756
|
*/
|
|
5486
|
-
export declare
|
|
5487
|
-
CreationTime
|
|
5488
|
-
FinalObjectiveMetricValue
|
|
5489
|
-
Status
|
|
5490
|
-
}
|
|
5757
|
+
export declare const CandidateSortBy: {
|
|
5758
|
+
readonly CreationTime: "CreationTime";
|
|
5759
|
+
readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
|
|
5760
|
+
readonly Status: "Status";
|
|
5761
|
+
};
|
|
5491
5762
|
/**
|
|
5492
5763
|
* @public
|
|
5493
5764
|
*/
|
|
5494
|
-
export
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5765
|
+
export type CandidateSortBy = (typeof CandidateSortBy)[keyof typeof CandidateSortBy];
|
|
5766
|
+
/**
|
|
5767
|
+
* @public
|
|
5768
|
+
* @enum
|
|
5769
|
+
*/
|
|
5770
|
+
export declare const FeatureStatus: {
|
|
5771
|
+
readonly Disabled: "DISABLED";
|
|
5772
|
+
readonly Enabled: "ENABLED";
|
|
5773
|
+
};
|
|
5774
|
+
/**
|
|
5775
|
+
* @public
|
|
5776
|
+
*/
|
|
5777
|
+
export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
|
|
5498
5778
|
/**
|
|
5499
5779
|
* @public
|
|
5500
5780
|
* <p>Time series forecast settings for the SageMaker Canvas app.</p>
|
|
@@ -5543,11 +5823,16 @@ export interface CaptureContentTypeHeader {
|
|
|
5543
5823
|
}
|
|
5544
5824
|
/**
|
|
5545
5825
|
* @public
|
|
5826
|
+
* @enum
|
|
5546
5827
|
*/
|
|
5547
|
-
export declare
|
|
5548
|
-
INPUT
|
|
5549
|
-
OUTPUT
|
|
5550
|
-
}
|
|
5828
|
+
export declare const CaptureMode: {
|
|
5829
|
+
readonly INPUT: "Input";
|
|
5830
|
+
readonly OUTPUT: "Output";
|
|
5831
|
+
};
|
|
5832
|
+
/**
|
|
5833
|
+
* @public
|
|
5834
|
+
*/
|
|
5835
|
+
export type CaptureMode = (typeof CaptureMode)[keyof typeof CaptureMode];
|
|
5551
5836
|
/**
|
|
5552
5837
|
* @public
|
|
5553
5838
|
* <p>Specifies data Model Monitor will capture.</p>
|
|
@@ -5560,11 +5845,16 @@ export interface CaptureOption {
|
|
|
5560
5845
|
}
|
|
5561
5846
|
/**
|
|
5562
5847
|
* @public
|
|
5848
|
+
* @enum
|
|
5563
5849
|
*/
|
|
5564
|
-
export declare
|
|
5565
|
-
STARTED
|
|
5566
|
-
STOPPED
|
|
5567
|
-
}
|
|
5850
|
+
export declare const CaptureStatus: {
|
|
5851
|
+
readonly STARTED: "Started";
|
|
5852
|
+
readonly STOPPED: "Stopped";
|
|
5853
|
+
};
|
|
5854
|
+
/**
|
|
5855
|
+
* @public
|
|
5856
|
+
*/
|
|
5857
|
+
export type CaptureStatus = (typeof CaptureStatus)[keyof typeof CaptureStatus];
|
|
5568
5858
|
/**
|
|
5569
5859
|
* @public
|
|
5570
5860
|
* <p>Environment parameters you want to benchmark your load test against.</p>
|
|
@@ -5703,12 +5993,17 @@ export interface ClarifyCheckStepMetadata {
|
|
|
5703
5993
|
}
|
|
5704
5994
|
/**
|
|
5705
5995
|
* @public
|
|
5996
|
+
* @enum
|
|
5706
5997
|
*/
|
|
5707
|
-
export declare
|
|
5708
|
-
CATEGORICAL
|
|
5709
|
-
NUMERICAL
|
|
5710
|
-
TEXT
|
|
5711
|
-
}
|
|
5998
|
+
export declare const ClarifyFeatureType: {
|
|
5999
|
+
readonly CATEGORICAL: "categorical";
|
|
6000
|
+
readonly NUMERICAL: "numerical";
|
|
6001
|
+
readonly TEXT: "text";
|
|
6002
|
+
};
|
|
6003
|
+
/**
|
|
6004
|
+
* @public
|
|
6005
|
+
*/
|
|
6006
|
+
export type ClarifyFeatureType = (typeof ClarifyFeatureType)[keyof typeof ClarifyFeatureType];
|
|
5712
6007
|
/**
|
|
5713
6008
|
* @public
|
|
5714
6009
|
* <p>The inference configuration parameter for the model container.</p>
|
|
@@ -5875,77 +6170,87 @@ export interface ClarifyShapBaselineConfig {
|
|
|
5875
6170
|
}
|
|
5876
6171
|
/**
|
|
5877
6172
|
* @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
|
-
|
|
6173
|
+
* @enum
|
|
6174
|
+
*/
|
|
6175
|
+
export declare const ClarifyTextGranularity: {
|
|
6176
|
+
readonly PARAGRAPH: "paragraph";
|
|
6177
|
+
readonly SENTENCE: "sentence";
|
|
6178
|
+
readonly TOKEN: "token";
|
|
6179
|
+
};
|
|
6180
|
+
/**
|
|
6181
|
+
* @public
|
|
6182
|
+
*/
|
|
6183
|
+
export type ClarifyTextGranularity = (typeof ClarifyTextGranularity)[keyof typeof ClarifyTextGranularity];
|
|
6184
|
+
/**
|
|
6185
|
+
* @public
|
|
6186
|
+
* @enum
|
|
6187
|
+
*/
|
|
6188
|
+
export declare const ClarifyTextLanguage: {
|
|
6189
|
+
readonly AFRIKAANS: "af";
|
|
6190
|
+
readonly ALBANIAN: "sq";
|
|
6191
|
+
readonly ARABIC: "ar";
|
|
6192
|
+
readonly ARMENIAN: "hy";
|
|
6193
|
+
readonly BASQUE: "eu";
|
|
6194
|
+
readonly BENGALI: "bn";
|
|
6195
|
+
readonly BULGARIAN: "bg";
|
|
6196
|
+
readonly CATALAN: "ca";
|
|
6197
|
+
readonly CHINESE: "zh";
|
|
6198
|
+
readonly CROATIAN: "hr";
|
|
6199
|
+
readonly CZECH: "cs";
|
|
6200
|
+
readonly DANISH: "da";
|
|
6201
|
+
readonly DUTCH: "nl";
|
|
6202
|
+
readonly ENGLISH: "en";
|
|
6203
|
+
readonly ESTONIAN: "et";
|
|
6204
|
+
readonly FINNISH: "fi";
|
|
6205
|
+
readonly FRENCH: "fr";
|
|
6206
|
+
readonly GERMAN: "de";
|
|
6207
|
+
readonly GREEK: "el";
|
|
6208
|
+
readonly GUJARATI: "gu";
|
|
6209
|
+
readonly HEBREW: "he";
|
|
6210
|
+
readonly HINDI: "hi";
|
|
6211
|
+
readonly HUNGARIAN: "hu";
|
|
6212
|
+
readonly ICELANDIC: "is";
|
|
6213
|
+
readonly INDONESIAN: "id";
|
|
6214
|
+
readonly IRISH: "ga";
|
|
6215
|
+
readonly ITALIAN: "it";
|
|
6216
|
+
readonly KANNADA: "kn";
|
|
6217
|
+
readonly KYRGYZ: "ky";
|
|
6218
|
+
readonly LATVIAN: "lv";
|
|
6219
|
+
readonly LIGURIAN: "lij";
|
|
6220
|
+
readonly LITHUANIAN: "lt";
|
|
6221
|
+
readonly LUXEMBOURGISH: "lb";
|
|
6222
|
+
readonly MACEDONIAN: "mk";
|
|
6223
|
+
readonly MALAYALAM: "ml";
|
|
6224
|
+
readonly MARATHI: "mr";
|
|
6225
|
+
readonly MULTI_LANGUAGE: "xx";
|
|
6226
|
+
readonly NEPALI: "ne";
|
|
6227
|
+
readonly NORWEGIAN_BOKMAL: "nb";
|
|
6228
|
+
readonly PERSIAN: "fa";
|
|
6229
|
+
readonly POLISH: "pl";
|
|
6230
|
+
readonly PORTUGUESE: "pt";
|
|
6231
|
+
readonly ROMANIAN: "ro";
|
|
6232
|
+
readonly RUSSIAN: "ru";
|
|
6233
|
+
readonly SANSKRIT: "sa";
|
|
6234
|
+
readonly SERBIAN: "sr";
|
|
6235
|
+
readonly SETSWANA: "tn";
|
|
6236
|
+
readonly SINHALA: "si";
|
|
6237
|
+
readonly SLOVAK: "sk";
|
|
6238
|
+
readonly SLOVENIAN: "sl";
|
|
6239
|
+
readonly SPANISH: "es";
|
|
6240
|
+
readonly SWEDISH: "sv";
|
|
6241
|
+
readonly TAGALOG: "tl";
|
|
6242
|
+
readonly TAMIL: "ta";
|
|
6243
|
+
readonly TATAR: "tt";
|
|
6244
|
+
readonly TELUGU: "te";
|
|
6245
|
+
readonly TURKISH: "tr";
|
|
6246
|
+
readonly UKRAINIAN: "uk";
|
|
6247
|
+
readonly URDU: "ur";
|
|
6248
|
+
readonly YORUBA: "yo";
|
|
6249
|
+
};
|
|
6250
|
+
/**
|
|
6251
|
+
* @public
|
|
6252
|
+
*/
|
|
6253
|
+
export type ClarifyTextLanguage = (typeof ClarifyTextLanguage)[keyof typeof ClarifyTextLanguage];
|
|
5949
6254
|
/**
|
|
5950
6255
|
* @public
|
|
5951
6256
|
* <p>A parameter used to configure the SageMaker Clarify explainer to treat text features as text so
|
|
@@ -6037,19 +6342,29 @@ export interface CodeRepository {
|
|
|
6037
6342
|
}
|
|
6038
6343
|
/**
|
|
6039
6344
|
* @public
|
|
6345
|
+
* @enum
|
|
6040
6346
|
*/
|
|
6041
|
-
export declare
|
|
6042
|
-
CREATION_TIME
|
|
6043
|
-
LAST_MODIFIED_TIME
|
|
6044
|
-
NAME
|
|
6045
|
-
}
|
|
6347
|
+
export declare const CodeRepositorySortBy: {
|
|
6348
|
+
readonly CREATION_TIME: "CreationTime";
|
|
6349
|
+
readonly LAST_MODIFIED_TIME: "LastModifiedTime";
|
|
6350
|
+
readonly NAME: "Name";
|
|
6351
|
+
};
|
|
6046
6352
|
/**
|
|
6047
6353
|
* @public
|
|
6048
6354
|
*/
|
|
6049
|
-
export
|
|
6050
|
-
|
|
6051
|
-
|
|
6052
|
-
|
|
6355
|
+
export type CodeRepositorySortBy = (typeof CodeRepositorySortBy)[keyof typeof CodeRepositorySortBy];
|
|
6356
|
+
/**
|
|
6357
|
+
* @public
|
|
6358
|
+
* @enum
|
|
6359
|
+
*/
|
|
6360
|
+
export declare const CodeRepositorySortOrder: {
|
|
6361
|
+
readonly ASCENDING: "Ascending";
|
|
6362
|
+
readonly DESCENDING: "Descending";
|
|
6363
|
+
};
|
|
6364
|
+
/**
|
|
6365
|
+
* @public
|
|
6366
|
+
*/
|
|
6367
|
+
export type CodeRepositorySortOrder = (typeof CodeRepositorySortOrder)[keyof typeof CodeRepositorySortOrder];
|
|
6053
6368
|
/**
|
|
6054
6369
|
* @public
|
|
6055
6370
|
* <p>Specifies configuration details for a Git repository in your Amazon Web Services
|
|
@@ -6164,78 +6479,103 @@ export interface CollectionConfiguration {
|
|
|
6164
6479
|
}
|
|
6165
6480
|
/**
|
|
6166
6481
|
* @public
|
|
6482
|
+
* @enum
|
|
6167
6483
|
*/
|
|
6168
|
-
export declare
|
|
6169
|
-
COMPLETED
|
|
6170
|
-
FAILED
|
|
6171
|
-
INPROGRESS
|
|
6172
|
-
STARTING
|
|
6173
|
-
STOPPED
|
|
6174
|
-
STOPPING
|
|
6175
|
-
}
|
|
6484
|
+
export declare const CompilationJobStatus: {
|
|
6485
|
+
readonly COMPLETED: "COMPLETED";
|
|
6486
|
+
readonly FAILED: "FAILED";
|
|
6487
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
6488
|
+
readonly STARTING: "STARTING";
|
|
6489
|
+
readonly STOPPED: "STOPPED";
|
|
6490
|
+
readonly STOPPING: "STOPPING";
|
|
6491
|
+
};
|
|
6176
6492
|
/**
|
|
6177
6493
|
* @public
|
|
6178
6494
|
*/
|
|
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
|
-
}
|
|
6495
|
+
export type CompilationJobStatus = (typeof CompilationJobStatus)[keyof typeof CompilationJobStatus];
|
|
6213
6496
|
/**
|
|
6214
6497
|
* @public
|
|
6498
|
+
* @enum
|
|
6215
6499
|
*/
|
|
6216
|
-
export declare
|
|
6217
|
-
|
|
6218
|
-
|
|
6219
|
-
|
|
6220
|
-
|
|
6221
|
-
|
|
6500
|
+
export declare const TargetDevice: {
|
|
6501
|
+
readonly AISAGE: "aisage";
|
|
6502
|
+
readonly AMBA_CV2: "amba_cv2";
|
|
6503
|
+
readonly AMBA_CV22: "amba_cv22";
|
|
6504
|
+
readonly AMBA_CV25: "amba_cv25";
|
|
6505
|
+
readonly COREML: "coreml";
|
|
6506
|
+
readonly DEEPLENS: "deeplens";
|
|
6507
|
+
readonly IMX8MPLUS: "imx8mplus";
|
|
6508
|
+
readonly IMX8QM: "imx8qm";
|
|
6509
|
+
readonly JACINTO_TDA4VM: "jacinto_tda4vm";
|
|
6510
|
+
readonly JETSON_NANO: "jetson_nano";
|
|
6511
|
+
readonly JETSON_TX1: "jetson_tx1";
|
|
6512
|
+
readonly JETSON_TX2: "jetson_tx2";
|
|
6513
|
+
readonly JETSON_XAVIER: "jetson_xavier";
|
|
6514
|
+
readonly LAMBDA: "lambda";
|
|
6515
|
+
readonly ML_C4: "ml_c4";
|
|
6516
|
+
readonly ML_C5: "ml_c5";
|
|
6517
|
+
readonly ML_EIA2: "ml_eia2";
|
|
6518
|
+
readonly ML_G4DN: "ml_g4dn";
|
|
6519
|
+
readonly ML_INF1: "ml_inf1";
|
|
6520
|
+
readonly ML_M4: "ml_m4";
|
|
6521
|
+
readonly ML_M5: "ml_m5";
|
|
6522
|
+
readonly ML_P2: "ml_p2";
|
|
6523
|
+
readonly ML_P3: "ml_p3";
|
|
6524
|
+
readonly QCS603: "qcs603";
|
|
6525
|
+
readonly QCS605: "qcs605";
|
|
6526
|
+
readonly RASP3B: "rasp3b";
|
|
6527
|
+
readonly RK3288: "rk3288";
|
|
6528
|
+
readonly RK3399: "rk3399";
|
|
6529
|
+
readonly SBE_C: "sbe_c";
|
|
6530
|
+
readonly SITARA_AM57X: "sitara_am57x";
|
|
6531
|
+
readonly X86_WIN32: "x86_win32";
|
|
6532
|
+
readonly X86_WIN64: "x86_win64";
|
|
6533
|
+
};
|
|
6222
6534
|
/**
|
|
6223
6535
|
* @public
|
|
6224
6536
|
*/
|
|
6225
|
-
export
|
|
6226
|
-
ARM64 = "ARM64",
|
|
6227
|
-
ARM_EABI = "ARM_EABI",
|
|
6228
|
-
ARM_EABIHF = "ARM_EABIHF",
|
|
6229
|
-
X86 = "X86",
|
|
6230
|
-
X86_64 = "X86_64"
|
|
6231
|
-
}
|
|
6537
|
+
export type TargetDevice = (typeof TargetDevice)[keyof typeof TargetDevice];
|
|
6232
6538
|
/**
|
|
6233
6539
|
* @public
|
|
6540
|
+
* @enum
|
|
6234
6541
|
*/
|
|
6235
|
-
export declare
|
|
6236
|
-
|
|
6237
|
-
|
|
6238
|
-
|
|
6542
|
+
export declare const TargetPlatformAccelerator: {
|
|
6543
|
+
readonly INTEL_GRAPHICS: "INTEL_GRAPHICS";
|
|
6544
|
+
readonly MALI: "MALI";
|
|
6545
|
+
readonly NNA: "NNA";
|
|
6546
|
+
readonly NVIDIA: "NVIDIA";
|
|
6547
|
+
};
|
|
6548
|
+
/**
|
|
6549
|
+
* @public
|
|
6550
|
+
*/
|
|
6551
|
+
export type TargetPlatformAccelerator = (typeof TargetPlatformAccelerator)[keyof typeof TargetPlatformAccelerator];
|
|
6552
|
+
/**
|
|
6553
|
+
* @public
|
|
6554
|
+
* @enum
|
|
6555
|
+
*/
|
|
6556
|
+
export declare const TargetPlatformArch: {
|
|
6557
|
+
readonly ARM64: "ARM64";
|
|
6558
|
+
readonly ARM_EABI: "ARM_EABI";
|
|
6559
|
+
readonly ARM_EABIHF: "ARM_EABIHF";
|
|
6560
|
+
readonly X86: "X86";
|
|
6561
|
+
readonly X86_64: "X86_64";
|
|
6562
|
+
};
|
|
6563
|
+
/**
|
|
6564
|
+
* @public
|
|
6565
|
+
*/
|
|
6566
|
+
export type TargetPlatformArch = (typeof TargetPlatformArch)[keyof typeof TargetPlatformArch];
|
|
6567
|
+
/**
|
|
6568
|
+
* @public
|
|
6569
|
+
* @enum
|
|
6570
|
+
*/
|
|
6571
|
+
export declare const TargetPlatformOs: {
|
|
6572
|
+
readonly ANDROID: "ANDROID";
|
|
6573
|
+
readonly LINUX: "LINUX";
|
|
6574
|
+
};
|
|
6575
|
+
/**
|
|
6576
|
+
* @public
|
|
6577
|
+
*/
|
|
6578
|
+
export type TargetPlatformOs = (typeof TargetPlatformOs)[keyof typeof TargetPlatformOs];
|
|
6239
6579
|
/**
|
|
6240
6580
|
* @public
|
|
6241
6581
|
* <p>A summary of a model compilation job.</p>
|
|
@@ -6292,18 +6632,28 @@ export interface CompilationJobSummary {
|
|
|
6292
6632
|
}
|
|
6293
6633
|
/**
|
|
6294
6634
|
* @public
|
|
6635
|
+
* @enum
|
|
6295
6636
|
*/
|
|
6296
|
-
export declare
|
|
6297
|
-
DISABLED
|
|
6298
|
-
ENABLED
|
|
6299
|
-
}
|
|
6637
|
+
export declare const CompleteOnConvergence: {
|
|
6638
|
+
readonly DISABLED: "Disabled";
|
|
6639
|
+
readonly ENABLED: "Enabled";
|
|
6640
|
+
};
|
|
6300
6641
|
/**
|
|
6301
6642
|
* @public
|
|
6302
6643
|
*/
|
|
6303
|
-
export
|
|
6304
|
-
|
|
6305
|
-
|
|
6306
|
-
|
|
6644
|
+
export type CompleteOnConvergence = (typeof CompleteOnConvergence)[keyof typeof CompleteOnConvergence];
|
|
6645
|
+
/**
|
|
6646
|
+
* @public
|
|
6647
|
+
* @enum
|
|
6648
|
+
*/
|
|
6649
|
+
export declare const ConditionOutcome: {
|
|
6650
|
+
readonly FALSE: "False";
|
|
6651
|
+
readonly TRUE: "True";
|
|
6652
|
+
};
|
|
6653
|
+
/**
|
|
6654
|
+
* @public
|
|
6655
|
+
*/
|
|
6656
|
+
export type ConditionOutcome = (typeof ConditionOutcome)[keyof typeof ConditionOutcome];
|
|
6307
6657
|
/**
|
|
6308
6658
|
* @public
|
|
6309
6659
|
* <p>Metadata for a Condition step.</p>
|
|
@@ -6330,11 +6680,16 @@ export declare class ConflictException extends __BaseException {
|
|
|
6330
6680
|
}
|
|
6331
6681
|
/**
|
|
6332
6682
|
* @public
|
|
6683
|
+
* @enum
|
|
6333
6684
|
*/
|
|
6334
|
-
export declare
|
|
6335
|
-
PLATFORM
|
|
6336
|
-
VPC
|
|
6337
|
-
}
|
|
6685
|
+
export declare const RepositoryAccessMode: {
|
|
6686
|
+
readonly PLATFORM: "Platform";
|
|
6687
|
+
readonly VPC: "Vpc";
|
|
6688
|
+
};
|
|
6689
|
+
/**
|
|
6690
|
+
* @public
|
|
6691
|
+
*/
|
|
6692
|
+
export type RepositoryAccessMode = (typeof RepositoryAccessMode)[keyof typeof RepositoryAccessMode];
|
|
6338
6693
|
/**
|
|
6339
6694
|
* @public
|
|
6340
6695
|
* <p>Specifies an authentication configuration for the private docker registry where your
|
|
@@ -6387,18 +6742,28 @@ export interface ImageConfig {
|
|
|
6387
6742
|
}
|
|
6388
6743
|
/**
|
|
6389
6744
|
* @public
|
|
6745
|
+
* @enum
|
|
6390
6746
|
*/
|
|
6391
|
-
export declare
|
|
6392
|
-
MULTI_MODEL
|
|
6393
|
-
SINGLE_MODEL
|
|
6394
|
-
}
|
|
6747
|
+
export declare const ContainerMode: {
|
|
6748
|
+
readonly MULTI_MODEL: "MultiModel";
|
|
6749
|
+
readonly SINGLE_MODEL: "SingleModel";
|
|
6750
|
+
};
|
|
6395
6751
|
/**
|
|
6396
6752
|
* @public
|
|
6397
6753
|
*/
|
|
6398
|
-
export
|
|
6399
|
-
|
|
6400
|
-
|
|
6401
|
-
|
|
6754
|
+
export type ContainerMode = (typeof ContainerMode)[keyof typeof ContainerMode];
|
|
6755
|
+
/**
|
|
6756
|
+
* @public
|
|
6757
|
+
* @enum
|
|
6758
|
+
*/
|
|
6759
|
+
export declare const ModelCacheSetting: {
|
|
6760
|
+
readonly DISABLED: "Disabled";
|
|
6761
|
+
readonly ENABLED: "Enabled";
|
|
6762
|
+
};
|
|
6763
|
+
/**
|
|
6764
|
+
* @public
|
|
6765
|
+
*/
|
|
6766
|
+
export type ModelCacheSetting = (typeof ModelCacheSetting)[keyof typeof ModelCacheSetting];
|
|
6402
6767
|
/**
|
|
6403
6768
|
* @public
|
|
6404
6769
|
* <p>Specifies additional configuration for hosting multi-model endpoints.</p>
|
|
@@ -6503,11 +6868,16 @@ export interface ContainerDefinition {
|
|
|
6503
6868
|
}
|
|
6504
6869
|
/**
|
|
6505
6870
|
* @public
|
|
6871
|
+
* @enum
|
|
6506
6872
|
*/
|
|
6507
|
-
export declare
|
|
6508
|
-
FREE_OF_ADULT_CONTENT
|
|
6509
|
-
FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION
|
|
6510
|
-
}
|
|
6873
|
+
export declare const ContentClassifier: {
|
|
6874
|
+
readonly FREE_OF_ADULT_CONTENT: "FreeOfAdultContent";
|
|
6875
|
+
readonly FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation";
|
|
6876
|
+
};
|
|
6877
|
+
/**
|
|
6878
|
+
* @public
|
|
6879
|
+
*/
|
|
6880
|
+
export type ContentClassifier = (typeof ContentClassifier)[keyof typeof ContentClassifier];
|
|
6511
6881
|
/**
|
|
6512
6882
|
* @public
|
|
6513
6883
|
* <p>A structure describing the source of a context.</p>
|
|
@@ -6559,13 +6929,18 @@ export interface ContextSummary {
|
|
|
6559
6929
|
}
|
|
6560
6930
|
/**
|
|
6561
6931
|
* @public
|
|
6932
|
+
* @enum
|
|
6562
6933
|
*/
|
|
6563
|
-
export declare
|
|
6564
|
-
AUTO
|
|
6565
|
-
LINEAR
|
|
6566
|
-
LOGARITHMIC
|
|
6567
|
-
REVERSE_LOGARITHMIC
|
|
6568
|
-
}
|
|
6934
|
+
export declare const HyperParameterScalingType: {
|
|
6935
|
+
readonly AUTO: "Auto";
|
|
6936
|
+
readonly LINEAR: "Linear";
|
|
6937
|
+
readonly LOGARITHMIC: "Logarithmic";
|
|
6938
|
+
readonly REVERSE_LOGARITHMIC: "ReverseLogarithmic";
|
|
6939
|
+
};
|
|
6940
|
+
/**
|
|
6941
|
+
* @public
|
|
6942
|
+
*/
|
|
6943
|
+
export type HyperParameterScalingType = (typeof HyperParameterScalingType)[keyof typeof HyperParameterScalingType];
|
|
6569
6944
|
/**
|
|
6570
6945
|
* @public
|
|
6571
6946
|
* <p>A list of continuous hyperparameters to tune.</p>
|
|
@@ -6751,13 +7126,18 @@ export interface ParameterRange {
|
|
|
6751
7126
|
}
|
|
6752
7127
|
/**
|
|
6753
7128
|
* @public
|
|
7129
|
+
* @enum
|
|
6754
7130
|
*/
|
|
6755
|
-
export declare
|
|
6756
|
-
CATEGORICAL
|
|
6757
|
-
CONTINUOUS
|
|
6758
|
-
FREE_TEXT
|
|
6759
|
-
INTEGER
|
|
6760
|
-
}
|
|
7131
|
+
export declare const ParameterType: {
|
|
7132
|
+
readonly CATEGORICAL: "Categorical";
|
|
7133
|
+
readonly CONTINUOUS: "Continuous";
|
|
7134
|
+
readonly FREE_TEXT: "FreeText";
|
|
7135
|
+
readonly INTEGER: "Integer";
|
|
7136
|
+
};
|
|
7137
|
+
/**
|
|
7138
|
+
* @public
|
|
7139
|
+
*/
|
|
7140
|
+
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
6761
7141
|
/**
|
|
6762
7142
|
* @public
|
|
6763
7143
|
* <p>Defines a hyperparameter to be used by an algorithm.</p>
|
|
@@ -6797,11 +7177,16 @@ export interface HyperParameterSpecification {
|
|
|
6797
7177
|
}
|
|
6798
7178
|
/**
|
|
6799
7179
|
* @public
|
|
7180
|
+
* @enum
|
|
6800
7181
|
*/
|
|
6801
|
-
export declare
|
|
6802
|
-
MAXIMIZE
|
|
6803
|
-
MINIMIZE
|
|
6804
|
-
}
|
|
7182
|
+
export declare const HyperParameterTuningJobObjectiveType: {
|
|
7183
|
+
readonly MAXIMIZE: "Maximize";
|
|
7184
|
+
readonly MINIMIZE: "Minimize";
|
|
7185
|
+
};
|
|
7186
|
+
/**
|
|
7187
|
+
* @public
|
|
7188
|
+
*/
|
|
7189
|
+
export type HyperParameterTuningJobObjectiveType = (typeof HyperParameterTuningJobObjectiveType)[keyof typeof HyperParameterTuningJobObjectiveType];
|
|
6805
7190
|
/**
|
|
6806
7191
|
* @public
|
|
6807
7192
|
* <p>Defines the objective metric for a hyperparameter tuning job.
|
|
@@ -7146,12 +7531,17 @@ export interface ModelDeployConfig {
|
|
|
7146
7531
|
}
|
|
7147
7532
|
/**
|
|
7148
7533
|
* @public
|
|
7534
|
+
* @enum
|
|
7149
7535
|
*/
|
|
7150
|
-
export declare
|
|
7151
|
-
BINARY_CLASSIFICATION
|
|
7152
|
-
MULTICLASS_CLASSIFICATION
|
|
7153
|
-
REGRESSION
|
|
7154
|
-
}
|
|
7536
|
+
export declare const ProblemType: {
|
|
7537
|
+
readonly BINARY_CLASSIFICATION: "BinaryClassification";
|
|
7538
|
+
readonly MULTICLASS_CLASSIFICATION: "MulticlassClassification";
|
|
7539
|
+
readonly REGRESSION: "Regression";
|
|
7540
|
+
};
|
|
7541
|
+
/**
|
|
7542
|
+
* @public
|
|
7543
|
+
*/
|
|
7544
|
+
export type ProblemType = (typeof ProblemType)[keyof typeof ProblemType];
|
|
7155
7545
|
/**
|
|
7156
7546
|
* @public
|
|
7157
7547
|
*/
|
|
@@ -7340,18 +7730,23 @@ export interface CreateCodeRepositoryOutput {
|
|
|
7340
7730
|
}
|
|
7341
7731
|
/**
|
|
7342
7732
|
* @public
|
|
7733
|
+
* @enum
|
|
7343
7734
|
*/
|
|
7344
|
-
export declare
|
|
7345
|
-
DARKNET
|
|
7346
|
-
KERAS
|
|
7347
|
-
MXNET
|
|
7348
|
-
ONNX
|
|
7349
|
-
PYTORCH
|
|
7350
|
-
SKLEARN
|
|
7351
|
-
TENSORFLOW
|
|
7352
|
-
TFLITE
|
|
7353
|
-
XGBOOST
|
|
7354
|
-
}
|
|
7735
|
+
export declare const Framework: {
|
|
7736
|
+
readonly DARKNET: "DARKNET";
|
|
7737
|
+
readonly KERAS: "KERAS";
|
|
7738
|
+
readonly MXNET: "MXNET";
|
|
7739
|
+
readonly ONNX: "ONNX";
|
|
7740
|
+
readonly PYTORCH: "PYTORCH";
|
|
7741
|
+
readonly SKLEARN: "SKLEARN";
|
|
7742
|
+
readonly TENSORFLOW: "TENSORFLOW";
|
|
7743
|
+
readonly TFLITE: "TFLITE";
|
|
7744
|
+
readonly XGBOOST: "XGBOOST";
|
|
7745
|
+
};
|
|
7746
|
+
/**
|
|
7747
|
+
* @public
|
|
7748
|
+
*/
|
|
7749
|
+
export type Framework = (typeof Framework)[keyof typeof Framework];
|
|
7355
7750
|
/**
|
|
7356
7751
|
* @public
|
|
7357
7752
|
* <p>Contains information about the location of input model artifacts, the name and
|
|
@@ -8347,11 +8742,16 @@ export interface DataQualityJobInput {
|
|
|
8347
8742
|
}
|
|
8348
8743
|
/**
|
|
8349
8744
|
* @public
|
|
8745
|
+
* @enum
|
|
8350
8746
|
*/
|
|
8351
|
-
export declare
|
|
8352
|
-
CONTINUOUS
|
|
8353
|
-
END_OF_JOB
|
|
8354
|
-
}
|
|
8747
|
+
export declare const ProcessingS3UploadMode: {
|
|
8748
|
+
readonly CONTINUOUS: "Continuous";
|
|
8749
|
+
readonly END_OF_JOB: "EndOfJob";
|
|
8750
|
+
};
|
|
8751
|
+
/**
|
|
8752
|
+
* @public
|
|
8753
|
+
*/
|
|
8754
|
+
export type ProcessingS3UploadMode = (typeof ProcessingS3UploadMode)[keyof typeof ProcessingS3UploadMode];
|
|
8355
8755
|
/**
|
|
8356
8756
|
* @public
|
|
8357
8757
|
* <p>Information about where and how you want to store the results of a monitoring
|
|
@@ -8402,53 +8802,58 @@ export interface MonitoringOutputConfig {
|
|
|
8402
8802
|
}
|
|
8403
8803
|
/**
|
|
8404
8804
|
* @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
|
-
|
|
8805
|
+
* @enum
|
|
8806
|
+
*/
|
|
8807
|
+
export declare const ProcessingInstanceType: {
|
|
8808
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
8809
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
8810
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
8811
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
8812
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
8813
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
8814
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
8815
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
8816
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
8817
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
8818
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
8819
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
8820
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
8821
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
8822
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
8823
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
8824
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
8825
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
8826
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
8827
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
8828
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
8829
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
8830
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
8831
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
8832
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
8833
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
8834
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
8835
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
8836
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
8837
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
8838
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
8839
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
8840
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
8841
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
8842
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
8843
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
8844
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
8845
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
8846
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
8847
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
8848
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
8849
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
8850
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
8851
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
8852
|
+
};
|
|
8853
|
+
/**
|
|
8854
|
+
* @public
|
|
8855
|
+
*/
|
|
8856
|
+
export type ProcessingInstanceType = (typeof ProcessingInstanceType)[keyof typeof ProcessingInstanceType];
|
|
8452
8857
|
/**
|
|
8453
8858
|
* @public
|
|
8454
8859
|
* <p>Configuration for the cluster used to run model monitoring jobs.</p>
|
|
@@ -8583,10 +8988,15 @@ export interface CreateDataQualityJobDefinitionResponse {
|
|
|
8583
8988
|
}
|
|
8584
8989
|
/**
|
|
8585
8990
|
* @public
|
|
8991
|
+
* @enum
|
|
8586
8992
|
*/
|
|
8587
|
-
export declare
|
|
8588
|
-
GreengrassV2Component
|
|
8589
|
-
}
|
|
8993
|
+
export declare const EdgePresetDeploymentType: {
|
|
8994
|
+
readonly GreengrassV2Component: "GreengrassV2Component";
|
|
8995
|
+
};
|
|
8996
|
+
/**
|
|
8997
|
+
* @public
|
|
8998
|
+
*/
|
|
8999
|
+
export type EdgePresetDeploymentType = (typeof EdgePresetDeploymentType)[keyof typeof EdgePresetDeploymentType];
|
|
8590
9000
|
/**
|
|
8591
9001
|
* @public
|
|
8592
9002
|
* <p>The output configuration.</p>
|
|
@@ -8782,18 +9192,28 @@ export interface RSessionAppSettings {
|
|
|
8782
9192
|
}
|
|
8783
9193
|
/**
|
|
8784
9194
|
* @public
|
|
9195
|
+
* @enum
|
|
8785
9196
|
*/
|
|
8786
|
-
export declare
|
|
8787
|
-
Disabled
|
|
8788
|
-
Enabled
|
|
8789
|
-
}
|
|
9197
|
+
export declare const RStudioServerProAccessStatus: {
|
|
9198
|
+
readonly Disabled: "DISABLED";
|
|
9199
|
+
readonly Enabled: "ENABLED";
|
|
9200
|
+
};
|
|
8790
9201
|
/**
|
|
8791
9202
|
* @public
|
|
8792
9203
|
*/
|
|
8793
|
-
export
|
|
8794
|
-
|
|
8795
|
-
|
|
8796
|
-
|
|
9204
|
+
export type RStudioServerProAccessStatus = (typeof RStudioServerProAccessStatus)[keyof typeof RStudioServerProAccessStatus];
|
|
9205
|
+
/**
|
|
9206
|
+
* @public
|
|
9207
|
+
* @enum
|
|
9208
|
+
*/
|
|
9209
|
+
export declare const RStudioServerProUserGroup: {
|
|
9210
|
+
readonly Admin: "R_STUDIO_ADMIN";
|
|
9211
|
+
readonly User: "R_STUDIO_USER";
|
|
9212
|
+
};
|
|
9213
|
+
/**
|
|
9214
|
+
* @public
|
|
9215
|
+
*/
|
|
9216
|
+
export type RStudioServerProUserGroup = (typeof RStudioServerProUserGroup)[keyof typeof RStudioServerProUserGroup];
|
|
8797
9217
|
/**
|
|
8798
9218
|
* @public
|
|
8799
9219
|
* <p>A collection of settings that configure user interaction with the
|
|
@@ -8816,11 +9236,16 @@ export interface RStudioServerProAppSettings {
|
|
|
8816
9236
|
}
|
|
8817
9237
|
/**
|
|
8818
9238
|
* @public
|
|
9239
|
+
* @enum
|
|
8819
9240
|
*/
|
|
8820
|
-
export declare
|
|
8821
|
-
Allowed
|
|
8822
|
-
Disabled
|
|
8823
|
-
}
|
|
9241
|
+
export declare const NotebookOutputOption: {
|
|
9242
|
+
readonly Allowed: "Allowed";
|
|
9243
|
+
readonly Disabled: "Disabled";
|
|
9244
|
+
};
|
|
9245
|
+
/**
|
|
9246
|
+
* @public
|
|
9247
|
+
*/
|
|
9248
|
+
export type NotebookOutputOption = (typeof NotebookOutputOption)[keyof typeof NotebookOutputOption];
|
|
8824
9249
|
/**
|
|
8825
9250
|
* @public
|
|
8826
9251
|
* <p>Specifies options for sharing SageMaker Studio notebooks. These settings are
|
|
@@ -8913,11 +9338,16 @@ export interface UserSettings {
|
|
|
8913
9338
|
}
|
|
8914
9339
|
/**
|
|
8915
9340
|
* @public
|
|
9341
|
+
* @enum
|
|
8916
9342
|
*/
|
|
8917
|
-
export declare
|
|
8918
|
-
DISABLED
|
|
8919
|
-
USER_PROFILE_NAME
|
|
8920
|
-
}
|
|
9343
|
+
export declare const ExecutionRoleIdentityConfig: {
|
|
9344
|
+
readonly DISABLED: "DISABLED";
|
|
9345
|
+
readonly USER_PROFILE_NAME: "USER_PROFILE_NAME";
|
|
9346
|
+
};
|
|
9347
|
+
/**
|
|
9348
|
+
* @public
|
|
9349
|
+
*/
|
|
9350
|
+
export type ExecutionRoleIdentityConfig = (typeof ExecutionRoleIdentityConfig)[keyof typeof ExecutionRoleIdentityConfig];
|
|
8921
9351
|
/**
|
|
8922
9352
|
* @public
|
|
8923
9353
|
* <p>A collection of settings that configure the <code>RStudioServerPro</code> Domain-level
|
|
@@ -9075,11 +9505,16 @@ export interface EdgeDeploymentModelConfig {
|
|
|
9075
9505
|
}
|
|
9076
9506
|
/**
|
|
9077
9507
|
* @public
|
|
9508
|
+
* @enum
|
|
9078
9509
|
*/
|
|
9079
|
-
export declare
|
|
9080
|
-
DoNothing
|
|
9081
|
-
RollbackOnFailure
|
|
9082
|
-
}
|
|
9510
|
+
export declare const FailureHandlingPolicy: {
|
|
9511
|
+
readonly DoNothing: "DO_NOTHING";
|
|
9512
|
+
readonly RollbackOnFailure: "ROLLBACK_ON_FAILURE";
|
|
9513
|
+
};
|
|
9514
|
+
/**
|
|
9515
|
+
* @public
|
|
9516
|
+
*/
|
|
9517
|
+
export type FailureHandlingPolicy = (typeof FailureHandlingPolicy)[keyof typeof FailureHandlingPolicy];
|
|
9083
9518
|
/**
|
|
9084
9519
|
* @public
|
|
9085
9520
|
* <p>Contains information about the configuration of a deployment.</p>
|
|
@@ -9093,12 +9528,17 @@ export interface EdgeDeploymentConfig {
|
|
|
9093
9528
|
}
|
|
9094
9529
|
/**
|
|
9095
9530
|
* @public
|
|
9531
|
+
* @enum
|
|
9096
9532
|
*/
|
|
9097
|
-
export declare
|
|
9098
|
-
NameContains
|
|
9099
|
-
Percentage
|
|
9100
|
-
Selection
|
|
9101
|
-
}
|
|
9533
|
+
export declare const DeviceSubsetType: {
|
|
9534
|
+
readonly NameContains: "NAMECONTAINS";
|
|
9535
|
+
readonly Percentage: "PERCENTAGE";
|
|
9536
|
+
readonly Selection: "SELECTION";
|
|
9537
|
+
};
|
|
9538
|
+
/**
|
|
9539
|
+
* @public
|
|
9540
|
+
*/
|
|
9541
|
+
export type DeviceSubsetType = (typeof DeviceSubsetType)[keyof typeof DeviceSubsetType];
|
|
9102
9542
|
/**
|
|
9103
9543
|
* @public
|
|
9104
9544
|
* <p>Contains information about the configurations of selected devices.</p>
|