@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.
@@ -20,15 +20,20 @@ export interface ActionSource {
20
20
  }
21
21
  /**
22
22
  * @public
23
+ * @enum
23
24
  */
24
- export declare enum ActionStatus {
25
- COMPLETED = "Completed",
26
- FAILED = "Failed",
27
- IN_PROGRESS = "InProgress",
28
- STOPPED = "Stopped",
29
- STOPPING = "Stopping",
30
- UNKNOWN = "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 enum AssociationEdgeType {
72
- ASSOCIATED_WITH = "AssociatedWith",
73
- CONTRIBUTED_TO = "ContributedTo",
74
- DERIVED_FROM = "DerivedFrom",
75
- PRODUCED = "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
- export declare enum ProductionVariantInstanceType {
230
- ML_C4_2XLARGE = "ml.c4.2xlarge",
231
- ML_C4_4XLARGE = "ml.c4.4xlarge",
232
- ML_C4_8XLARGE = "ml.c4.8xlarge",
233
- ML_C4_LARGE = "ml.c4.large",
234
- ML_C4_XLARGE = "ml.c4.xlarge",
235
- ML_C5D_18XLARGE = "ml.c5d.18xlarge",
236
- ML_C5D_2XLARGE = "ml.c5d.2xlarge",
237
- ML_C5D_4XLARGE = "ml.c5d.4xlarge",
238
- ML_C5D_9XLARGE = "ml.c5d.9xlarge",
239
- ML_C5D_LARGE = "ml.c5d.large",
240
- ML_C5D_XLARGE = "ml.c5d.xlarge",
241
- ML_C5_18XLARGE = "ml.c5.18xlarge",
242
- ML_C5_2XLARGE = "ml.c5.2xlarge",
243
- ML_C5_4XLARGE = "ml.c5.4xlarge",
244
- ML_C5_9XLARGE = "ml.c5.9xlarge",
245
- ML_C5_LARGE = "ml.c5.large",
246
- ML_C5_XLARGE = "ml.c5.xlarge",
247
- ML_C6GD_12XLARGE = "ml.c6gd.12xlarge",
248
- ML_C6GD_16XLARGE = "ml.c6gd.16xlarge",
249
- ML_C6GD_2XLARGE = "ml.c6gd.2xlarge",
250
- ML_C6GD_4XLARGE = "ml.c6gd.4xlarge",
251
- ML_C6GD_8XLARGE = "ml.c6gd.8xlarge",
252
- ML_C6GD_LARGE = "ml.c6gd.large",
253
- ML_C6GD_XLARGE = "ml.c6gd.xlarge",
254
- ML_C6GN_12XLARGE = "ml.c6gn.12xlarge",
255
- ML_C6GN_16XLARGE = "ml.c6gn.16xlarge",
256
- ML_C6GN_2XLARGE = "ml.c6gn.2xlarge",
257
- ML_C6GN_4XLARGE = "ml.c6gn.4xlarge",
258
- ML_C6GN_8XLARGE = "ml.c6gn.8xlarge",
259
- ML_C6GN_LARGE = "ml.c6gn.large",
260
- ML_C6GN_XLARGE = "ml.c6gn.xlarge",
261
- ML_C6G_12XLARGE = "ml.c6g.12xlarge",
262
- ML_C6G_16XLARGE = "ml.c6g.16xlarge",
263
- ML_C6G_2XLARGE = "ml.c6g.2xlarge",
264
- ML_C6G_4XLARGE = "ml.c6g.4xlarge",
265
- ML_C6G_8XLARGE = "ml.c6g.8xlarge",
266
- ML_C6G_LARGE = "ml.c6g.large",
267
- ML_C6G_XLARGE = "ml.c6g.xlarge",
268
- ML_C6I_12XLARGE = "ml.c6i.12xlarge",
269
- ML_C6I_16XLARGE = "ml.c6i.16xlarge",
270
- ML_C6I_24XLARGE = "ml.c6i.24xlarge",
271
- ML_C6I_2XLARGE = "ml.c6i.2xlarge",
272
- ML_C6I_32XLARGE = "ml.c6i.32xlarge",
273
- ML_C6I_4XLARGE = "ml.c6i.4xlarge",
274
- ML_C6I_8XLARGE = "ml.c6i.8xlarge",
275
- ML_C6I_LARGE = "ml.c6i.large",
276
- ML_C6I_XLARGE = "ml.c6i.xlarge",
277
- ML_C7G_12XLARGE = "ml.c7g.12xlarge",
278
- ML_C7G_16XLARGE = "ml.c7g.16xlarge",
279
- ML_C7G_2XLARGE = "ml.c7g.2xlarge",
280
- ML_C7G_4XLARGE = "ml.c7g.4xlarge",
281
- ML_C7G_8XLARGE = "ml.c7g.8xlarge",
282
- ML_C7G_LARGE = "ml.c7g.large",
283
- ML_C7G_XLARGE = "ml.c7g.xlarge",
284
- ML_G4DN_12XLARGE = "ml.g4dn.12xlarge",
285
- ML_G4DN_16XLARGE = "ml.g4dn.16xlarge",
286
- ML_G4DN_2XLARGE = "ml.g4dn.2xlarge",
287
- ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
288
- ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
289
- ML_G4DN_XLARGE = "ml.g4dn.xlarge",
290
- ML_G5_12XLARGE = "ml.g5.12xlarge",
291
- ML_G5_16XLARGE = "ml.g5.16xlarge",
292
- ML_G5_24XLARGE = "ml.g5.24xlarge",
293
- ML_G5_2XLARGE = "ml.g5.2xlarge",
294
- ML_G5_48XLARGE = "ml.g5.48xlarge",
295
- ML_G5_4XLARGE = "ml.g5.4xlarge",
296
- ML_G5_8XLARGE = "ml.g5.8xlarge",
297
- ML_G5_XLARGE = "ml.g5.xlarge",
298
- ML_INF1_24XLARGE = "ml.inf1.24xlarge",
299
- ML_INF1_2XLARGE = "ml.inf1.2xlarge",
300
- ML_INF1_6XLARGE = "ml.inf1.6xlarge",
301
- ML_INF1_XLARGE = "ml.inf1.xlarge",
302
- ML_M4_10XLARGE = "ml.m4.10xlarge",
303
- ML_M4_16XLARGE = "ml.m4.16xlarge",
304
- ML_M4_2XLARGE = "ml.m4.2xlarge",
305
- ML_M4_4XLARGE = "ml.m4.4xlarge",
306
- ML_M4_XLARGE = "ml.m4.xlarge",
307
- ML_M5D_12XLARGE = "ml.m5d.12xlarge",
308
- ML_M5D_24XLARGE = "ml.m5d.24xlarge",
309
- ML_M5D_2XLARGE = "ml.m5d.2xlarge",
310
- ML_M5D_4XLARGE = "ml.m5d.4xlarge",
311
- ML_M5D_LARGE = "ml.m5d.large",
312
- ML_M5D_XLARGE = "ml.m5d.xlarge",
313
- ML_M5_12XLARGE = "ml.m5.12xlarge",
314
- ML_M5_24XLARGE = "ml.m5.24xlarge",
315
- ML_M5_2XLARGE = "ml.m5.2xlarge",
316
- ML_M5_4XLARGE = "ml.m5.4xlarge",
317
- ML_M5_LARGE = "ml.m5.large",
318
- ML_M5_XLARGE = "ml.m5.xlarge",
319
- ML_M6GD_12XLARGE = "ml.m6gd.12xlarge",
320
- ML_M6GD_16XLARGE = "ml.m6gd.16xlarge",
321
- ML_M6GD_2XLARGE = "ml.m6gd.2xlarge",
322
- ML_M6GD_4XLARGE = "ml.m6gd.4xlarge",
323
- ML_M6GD_8XLARGE = "ml.m6gd.8xlarge",
324
- ML_M6GD_LARGE = "ml.m6gd.large",
325
- ML_M6GD_XLARGE = "ml.m6gd.xlarge",
326
- ML_M6G_12XLARGE = "ml.m6g.12xlarge",
327
- ML_M6G_16XLARGE = "ml.m6g.16xlarge",
328
- ML_M6G_2XLARGE = "ml.m6g.2xlarge",
329
- ML_M6G_4XLARGE = "ml.m6g.4xlarge",
330
- ML_M6G_8XLARGE = "ml.m6g.8xlarge",
331
- ML_M6G_LARGE = "ml.m6g.large",
332
- ML_M6G_XLARGE = "ml.m6g.xlarge",
333
- ML_P2_16XLARGE = "ml.p2.16xlarge",
334
- ML_P2_8XLARGE = "ml.p2.8xlarge",
335
- ML_P2_XLARGE = "ml.p2.xlarge",
336
- ML_P3_16XLARGE = "ml.p3.16xlarge",
337
- ML_P3_2XLARGE = "ml.p3.2xlarge",
338
- ML_P3_8XLARGE = "ml.p3.8xlarge",
339
- ML_P4DE_24XLARGE = "ml.p4de.24xlarge",
340
- ML_P4D_24XLARGE = "ml.p4d.24xlarge",
341
- ML_R5D_12XLARGE = "ml.r5d.12xlarge",
342
- ML_R5D_24XLARGE = "ml.r5d.24xlarge",
343
- ML_R5D_2XLARGE = "ml.r5d.2xlarge",
344
- ML_R5D_4XLARGE = "ml.r5d.4xlarge",
345
- ML_R5D_LARGE = "ml.r5d.large",
346
- ML_R5D_XLARGE = "ml.r5d.xlarge",
347
- ML_R5_12XLARGE = "ml.r5.12xlarge",
348
- ML_R5_24XLARGE = "ml.r5.24xlarge",
349
- ML_R5_2XLARGE = "ml.r5.2xlarge",
350
- ML_R5_4XLARGE = "ml.r5.4xlarge",
351
- ML_R5_LARGE = "ml.r5.large",
352
- ML_R5_XLARGE = "ml.r5.xlarge",
353
- ML_R6GD_12XLARGE = "ml.r6gd.12xlarge",
354
- ML_R6GD_16XLARGE = "ml.r6gd.16xlarge",
355
- ML_R6GD_2XLARGE = "ml.r6gd.2xlarge",
356
- ML_R6GD_4XLARGE = "ml.r6gd.4xlarge",
357
- ML_R6GD_8XLARGE = "ml.r6gd.8xlarge",
358
- ML_R6GD_LARGE = "ml.r6gd.large",
359
- ML_R6GD_XLARGE = "ml.r6gd.xlarge",
360
- ML_R6G_12XLARGE = "ml.r6g.12xlarge",
361
- ML_R6G_16XLARGE = "ml.r6g.16xlarge",
362
- ML_R6G_2XLARGE = "ml.r6g.2xlarge",
363
- ML_R6G_4XLARGE = "ml.r6g.4xlarge",
364
- ML_R6G_8XLARGE = "ml.r6g.8xlarge",
365
- ML_R6G_LARGE = "ml.r6g.large",
366
- ML_R6G_XLARGE = "ml.r6g.xlarge",
367
- ML_T2_2XLARGE = "ml.t2.2xlarge",
368
- ML_T2_LARGE = "ml.t2.large",
369
- ML_T2_MEDIUM = "ml.t2.medium",
370
- ML_T2_XLARGE = "ml.t2.xlarge"
371
- }
372
- /**
373
- * @public
374
- */
375
- export declare enum TransformInstanceType {
376
- ML_C4_2XLARGE = "ml.c4.2xlarge",
377
- ML_C4_4XLARGE = "ml.c4.4xlarge",
378
- ML_C4_8XLARGE = "ml.c4.8xlarge",
379
- ML_C4_XLARGE = "ml.c4.xlarge",
380
- ML_C5_18XLARGE = "ml.c5.18xlarge",
381
- ML_C5_2XLARGE = "ml.c5.2xlarge",
382
- ML_C5_4XLARGE = "ml.c5.4xlarge",
383
- ML_C5_9XLARGE = "ml.c5.9xlarge",
384
- ML_C5_XLARGE = "ml.c5.xlarge",
385
- ML_G4DN_12XLARGE = "ml.g4dn.12xlarge",
386
- ML_G4DN_16XLARGE = "ml.g4dn.16xlarge",
387
- ML_G4DN_2XLARGE = "ml.g4dn.2xlarge",
388
- ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
389
- ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
390
- ML_G4DN_XLARGE = "ml.g4dn.xlarge",
391
- ML_M4_10XLARGE = "ml.m4.10xlarge",
392
- ML_M4_16XLARGE = "ml.m4.16xlarge",
393
- ML_M4_2XLARGE = "ml.m4.2xlarge",
394
- ML_M4_4XLARGE = "ml.m4.4xlarge",
395
- ML_M4_XLARGE = "ml.m4.xlarge",
396
- ML_M5_12XLARGE = "ml.m5.12xlarge",
397
- ML_M5_24XLARGE = "ml.m5.24xlarge",
398
- ML_M5_2XLARGE = "ml.m5.2xlarge",
399
- ML_M5_4XLARGE = "ml.m5.4xlarge",
400
- ML_M5_LARGE = "ml.m5.large",
401
- ML_M5_XLARGE = "ml.m5.xlarge",
402
- ML_P2_16XLARGE = "ml.p2.16xlarge",
403
- ML_P2_8XLARGE = "ml.p2.8xlarge",
404
- ML_P2_XLARGE = "ml.p2.xlarge",
405
- ML_P3_16XLARGE = "ml.p3.16xlarge",
406
- ML_P3_2XLARGE = "ml.p3.2xlarge",
407
- ML_P3_8XLARGE = "ml.p3.8xlarge"
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 enum AlgorithmSortBy {
523
- CREATION_TIME = "CreationTime",
524
- NAME = "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 enum TrainingRepositoryAccessMode {
553
- PLATFORM = "Platform",
554
- VPC = "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 enum TrainingInputMode {
589
- FASTFILE = "FastFile",
590
- FILE = "File",
591
- PIPE = "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 enum AlgorithmStatus {
730
- COMPLETED = "Completed",
731
- DELETING = "Deleting",
732
- FAILED = "Failed",
733
- IN_PROGRESS = "InProgress",
734
- PENDING = "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 declare enum DetailedAlgorithmStatus {
740
- COMPLETED = "Completed",
741
- FAILED = "Failed",
742
- IN_PROGRESS = "InProgress",
743
- NOT_STARTED = "NotStarted"
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 enum CompressionType {
807
- GZIP = "Gzip",
808
- NONE = "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 declare enum FileSystemAccessMode {
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 enum FileSystemType {
821
- EFS = "EFS",
822
- FSXLUSTRE = "FSxLustre"
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 enum S3DataDistribution {
852
- FULLY_REPLICATED = "FullyReplicated",
853
- SHARDED_BY_S3_KEY = "ShardedByS3Key"
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 declare enum S3DataType {
859
- AUGMENTED_MANIFEST_FILE = "AugmentedManifestFile",
860
- MANIFEST_FILE = "ManifestFile",
861
- S3_PREFIX = "S3Prefix"
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 enum RecordWrapper {
986
- NONE = "None",
987
- RECORDIO = "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
- export declare enum TrainingInstanceType {
1140
- ML_C4_2XLARGE = "ml.c4.2xlarge",
1141
- ML_C4_4XLARGE = "ml.c4.4xlarge",
1142
- ML_C4_8XLARGE = "ml.c4.8xlarge",
1143
- ML_C4_XLARGE = "ml.c4.xlarge",
1144
- ML_C5N_18XLARGE = "ml.c5n.18xlarge",
1145
- ML_C5N_2XLARGE = "ml.c5n.2xlarge",
1146
- ML_C5N_4XLARGE = "ml.c5n.4xlarge",
1147
- ML_C5N_9XLARGE = "ml.c5n.9xlarge",
1148
- ML_C5N_XLARGE = "ml.c5n.xlarge",
1149
- ML_C5_18XLARGE = "ml.c5.18xlarge",
1150
- ML_C5_2XLARGE = "ml.c5.2xlarge",
1151
- ML_C5_4XLARGE = "ml.c5.4xlarge",
1152
- ML_C5_9XLARGE = "ml.c5.9xlarge",
1153
- ML_C5_XLARGE = "ml.c5.xlarge",
1154
- ML_G4DN_12XLARGE = "ml.g4dn.12xlarge",
1155
- ML_G4DN_16XLARGE = "ml.g4dn.16xlarge",
1156
- ML_G4DN_2XLARGE = "ml.g4dn.2xlarge",
1157
- ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
1158
- ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
1159
- ML_G4DN_XLARGE = "ml.g4dn.xlarge",
1160
- ML_G5_12XLARGE = "ml.g5.12xlarge",
1161
- ML_G5_16XLARGE = "ml.g5.16xlarge",
1162
- ML_G5_24XLARGE = "ml.g5.24xlarge",
1163
- ML_G5_2XLARGE = "ml.g5.2xlarge",
1164
- ML_G5_48XLARGE = "ml.g5.48xlarge",
1165
- ML_G5_4XLARGE = "ml.g5.4xlarge",
1166
- ML_G5_8XLARGE = "ml.g5.8xlarge",
1167
- ML_G5_XLARGE = "ml.g5.xlarge",
1168
- ML_M4_10XLARGE = "ml.m4.10xlarge",
1169
- ML_M4_16XLARGE = "ml.m4.16xlarge",
1170
- ML_M4_2XLARGE = "ml.m4.2xlarge",
1171
- ML_M4_4XLARGE = "ml.m4.4xlarge",
1172
- ML_M4_XLARGE = "ml.m4.xlarge",
1173
- ML_M5_12XLARGE = "ml.m5.12xlarge",
1174
- ML_M5_24XLARGE = "ml.m5.24xlarge",
1175
- ML_M5_2XLARGE = "ml.m5.2xlarge",
1176
- ML_M5_4XLARGE = "ml.m5.4xlarge",
1177
- ML_M5_LARGE = "ml.m5.large",
1178
- ML_M5_XLARGE = "ml.m5.xlarge",
1179
- ML_P2_16XLARGE = "ml.p2.16xlarge",
1180
- ML_P2_8XLARGE = "ml.p2.8xlarge",
1181
- ML_P2_XLARGE = "ml.p2.xlarge",
1182
- ML_P3DN_24XLARGE = "ml.p3dn.24xlarge",
1183
- ML_P3_16XLARGE = "ml.p3.16xlarge",
1184
- ML_P3_2XLARGE = "ml.p3.2xlarge",
1185
- ML_P3_8XLARGE = "ml.p3.8xlarge",
1186
- ML_P4D_24XLARGE = "ml.p4d.24xlarge",
1187
- ML_TRN1_2XLARGE = "ml.trn1.2xlarge",
1188
- ML_TRN1_32XLARGE = "ml.trn1.32xlarge"
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 enum BatchStrategy {
1432
- MULTI_RECORD = "MultiRecord",
1433
- SINGLE_RECORD = "SingleRecord"
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 enum SplitType {
1520
- LINE = "Line",
1521
- NONE = "None",
1522
- RECORDIO = "RecordIO",
1523
- TFRECORD = "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 enum AssemblyType {
1594
- LINE = "Line",
1595
- NONE = "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 enum AppType {
3296
- JupyterServer = "JupyterServer",
3297
- KernelGateway = "KernelGateway",
3298
- RSessionGateway = "RSessionGateway",
3299
- RStudioServerPro = "RStudioServerPro",
3300
- TensorBoard = "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 declare enum AppStatus {
3306
- Deleted = "Deleted",
3307
- Deleting = "Deleting",
3308
- Failed = "Failed",
3309
- InService = "InService",
3310
- Pending = "Pending"
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 declare enum AppImageConfigSortKey {
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 enum AppInstanceType {
3432
- ML_C5_12XLARGE = "ml.c5.12xlarge",
3433
- ML_C5_18XLARGE = "ml.c5.18xlarge",
3434
- ML_C5_24XLARGE = "ml.c5.24xlarge",
3435
- ML_C5_2XLARGE = "ml.c5.2xlarge",
3436
- ML_C5_4XLARGE = "ml.c5.4xlarge",
3437
- ML_C5_9XLARGE = "ml.c5.9xlarge",
3438
- ML_C5_LARGE = "ml.c5.large",
3439
- ML_C5_XLARGE = "ml.c5.xlarge",
3440
- ML_G4DN_12XLARGE = "ml.g4dn.12xlarge",
3441
- ML_G4DN_16XLARGE = "ml.g4dn.16xlarge",
3442
- ML_G4DN_2XLARGE = "ml.g4dn.2xlarge",
3443
- ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
3444
- ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
3445
- ML_G4DN_XLARGE = "ml.g4dn.xlarge",
3446
- ML_G5_12XLARGE = "ml.g5.12xlarge",
3447
- ML_G5_16XLARGE = "ml.g5.16xlarge",
3448
- ML_G5_24XLARGE = "ml.g5.24xlarge",
3449
- ML_G5_2XLARGE = "ml.g5.2xlarge",
3450
- ML_G5_48XLARGE = "ml.g5.48xlarge",
3451
- ML_G5_4XLARGE = "ml.g5.4xlarge",
3452
- ML_G5_8XLARGE = "ml.g5.8xlarge",
3453
- ML_G5_XLARGE = "ml.g5.xlarge",
3454
- ML_GEOSPATIAL_INTERACTIVE = "ml.geospatial.interactive",
3455
- ML_M5D_12XLARGE = "ml.m5d.12xlarge",
3456
- ML_M5D_16XLARGE = "ml.m5d.16xlarge",
3457
- ML_M5D_24XLARGE = "ml.m5d.24xlarge",
3458
- ML_M5D_2XLARGE = "ml.m5d.2xlarge",
3459
- ML_M5D_4XLARGE = "ml.m5d.4xlarge",
3460
- ML_M5D_8XLARGE = "ml.m5d.8xlarge",
3461
- ML_M5D_LARGE = "ml.m5d.large",
3462
- ML_M5D_XLARGE = "ml.m5d.xlarge",
3463
- ML_M5_12XLARGE = "ml.m5.12xlarge",
3464
- ML_M5_16XLARGE = "ml.m5.16xlarge",
3465
- ML_M5_24XLARGE = "ml.m5.24xlarge",
3466
- ML_M5_2XLARGE = "ml.m5.2xlarge",
3467
- ML_M5_4XLARGE = "ml.m5.4xlarge",
3468
- ML_M5_8XLARGE = "ml.m5.8xlarge",
3469
- ML_M5_LARGE = "ml.m5.large",
3470
- ML_M5_XLARGE = "ml.m5.xlarge",
3471
- ML_P3DN_24XLARGE = "ml.p3dn.24xlarge",
3472
- ML_P3_16XLARGE = "ml.p3.16xlarge",
3473
- ML_P3_2XLARGE = "ml.p3.2xlarge",
3474
- ML_P3_8XLARGE = "ml.p3.8xlarge",
3475
- ML_R5_12XLARGE = "ml.r5.12xlarge",
3476
- ML_R5_16XLARGE = "ml.r5.16xlarge",
3477
- ML_R5_24XLARGE = "ml.r5.24xlarge",
3478
- ML_R5_2XLARGE = "ml.r5.2xlarge",
3479
- ML_R5_4XLARGE = "ml.r5.4xlarge",
3480
- ML_R5_8XLARGE = "ml.r5.8xlarge",
3481
- ML_R5_LARGE = "ml.r5.large",
3482
- ML_R5_XLARGE = "ml.r5.xlarge",
3483
- ML_T3_2XLARGE = "ml.t3.2xlarge",
3484
- ML_T3_LARGE = "ml.t3.large",
3485
- ML_T3_MEDIUM = "ml.t3.medium",
3486
- ML_T3_MICRO = "ml.t3.micro",
3487
- ML_T3_SMALL = "ml.t3.small",
3488
- ML_T3_XLARGE = "ml.t3.xlarge",
3489
- SYSTEM = "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 declare enum AppNetworkAccessType {
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 enum AppSecurityGroupManagement {
3502
- Customer = "Customer",
3503
- Service = "Service"
3504
- }
3610
+ export declare const AppNetworkAccessType: {
3611
+ readonly PublicInternetOnly: "PublicInternetOnly";
3612
+ readonly VpcOnly: "VpcOnly";
3613
+ };
3505
3614
  /**
3506
3615
  * @public
3507
3616
  */
3508
- export declare enum AppSortKey {
3509
- CreationTime = "CreationTime"
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 enum ArtifactSourceIdType {
3533
- CUSTOM = "Custom",
3534
- MD5_HASH = "MD5Hash",
3535
- S3_ETAG = "S3ETag",
3536
- S3_VERSION = "S3Version"
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 enum AthenaResultCompressionType {
3780
- GZIP = "GZIP",
3781
- SNAPPY = "SNAPPY",
3782
- ZLIB = "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 declare enum AthenaResultFormat {
3788
- AVRO = "AVRO",
3789
- JSON = "JSON",
3790
- ORC = "ORC",
3791
- PARQUET = "PARQUET",
3792
- TEXTFILE = "TEXTFILE"
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 enum AuthMode {
3837
- IAM = "IAM",
3838
- SSO = "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 declare enum AutoMLAlgorithm {
3844
- CATBOOST = "catboost",
3845
- EXTRA_TREES = "extra-trees",
3846
- FASTAI = "fastai",
3847
- LIGHTGBM = "lightgbm",
3848
- LINEAR_LEARNER = "linear-learner",
3849
- MLP = "mlp",
3850
- NN_TORCH = "nn-torch",
3851
- RANDOMFOREST = "randomforest",
3852
- XGBOOST = "xgboost"
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 enum AutoMLMetricEnum {
3937
- ACCURACY = "Accuracy",
3938
- AUC = "AUC",
3939
- BALANCED_ACCURACY = "BalancedAccuracy",
3940
- F1 = "F1",
3941
- F1_MACRO = "F1macro",
3942
- MAE = "MAE",
3943
- MSE = "MSE",
3944
- PRECISION = "Precision",
3945
- PRECISION_MACRO = "PrecisionMacro",
3946
- R2 = "R2",
3947
- RECALL = "Recall",
3948
- RECALL_MACRO = "RecallMacro",
3949
- RMSE = "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 declare enum MetricSetSource {
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 enum AutoMLMetricExtendedEnum {
3963
- ACCURACY = "Accuracy",
3964
- AUC = "AUC",
3965
- BALANCED_ACCURACY = "BalancedAccuracy",
3966
- F1 = "F1",
3967
- F1_MACRO = "F1macro",
3968
- INFERENCE_LATENCY = "InferenceLatency",
3969
- LogLoss = "LogLoss",
3970
- MAE = "MAE",
3971
- MSE = "MSE",
3972
- PRECISION = "Precision",
3973
- PRECISION_MACRO = "PrecisionMacro",
3974
- R2 = "R2",
3975
- RECALL = "Recall",
3976
- RECALL_MACRO = "RecallMacro",
3977
- RMSE = "RMSE"
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 enum CandidateStatus {
4024
- COMPLETED = "Completed",
4025
- FAILED = "Failed",
4026
- IN_PROGRESS = "InProgress",
4027
- STOPPED = "Stopped",
4028
- STOPPING = "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 declare enum CandidateStepType {
4034
- PROCESSING = "AWS::SageMaker::ProcessingJob",
4035
- TRAINING = "AWS::SageMaker::TrainingJob",
4036
- TRANSFORM = "AWS::SageMaker::TransformJob"
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 enum AutoMLJobObjectiveType {
4060
- MAXIMIZE = "Maximize",
4061
- MINIMIZE = "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 enum AutoMLProcessingUnit {
4093
- CPU = "CPU",
4094
- GPU = "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 enum ObjectiveStatus {
4132
- Failed = "Failed",
4133
- Pending = "Pending",
4134
- Succeeded = "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 enum AutoMLChannelType {
4265
- TRAINING = "training",
4266
- VALIDATION = "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 declare enum AutoMLS3DataType {
4272
- AUGMENTED_MANIFEST_FILE = "AugmentedManifestFile",
4273
- MANIFEST_FILE = "ManifestFile",
4274
- S3_PREFIX = "S3Prefix"
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 enum AutoMLMode {
4508
- AUTO = "AUTO",
4509
- ENSEMBLING = "ENSEMBLING",
4510
- HYPERPARAMETER_TUNING = "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 enum AutoMLJobSecondaryStatus {
4773
- ANALYZING_DATA = "AnalyzingData",
4774
- CANDIDATE_DEFINITIONS_GENERATED = "CandidateDefinitionsGenerated",
4775
- COMPLETED = "Completed",
4776
- DEPLOYING_MODEL = "DeployingModel",
4777
- EXPLAINABILITY_ERROR = "ExplainabilityError",
4778
- FAILED = "Failed",
4779
- FEATURE_ENGINEERING = "FeatureEngineering",
4780
- GENERATING_EXPLAINABILITY_REPORT = "GeneratingExplainabilityReport",
4781
- GENERATING_MODEL_INSIGHTS_REPORT = "GeneratingModelInsightsReport",
4782
- MAX_AUTO_ML_JOB_RUNTIME_REACHED = "MaxAutoMLJobRuntimeReached",
4783
- MAX_CANDIDATES_REACHED = "MaxCandidatesReached",
4784
- MODEL_DEPLOYMENT_ERROR = "ModelDeploymentError",
4785
- MODEL_INSIGHTS_ERROR = "ModelInsightsError",
4786
- MODEL_TUNING = "ModelTuning",
4787
- STARTING = "Starting",
4788
- STOPPED = "Stopped",
4789
- STOPPING = "Stopping",
4790
- TRAINING_MODELS = "TrainingModels"
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 declare enum AutoMLJobStatus {
4796
- COMPLETED = "Completed",
4797
- FAILED = "Failed",
4798
- IN_PROGRESS = "InProgress",
4799
- STOPPED = "Stopped",
4800
- STOPPING = "Stopping"
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 enum AutoMLSortBy {
4956
- CREATION_TIME = "CreationTime",
4957
- NAME = "Name",
4958
- STATUS = "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 declare enum AutoMLSortOrder {
4964
- ASCENDING = "Ascending",
4965
- DESCENDING = "Descending"
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 enum AwsManagedHumanLoopRequestSource {
4984
- REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3 = "AWS/Rekognition/DetectModerationLabels/Image/V3",
4985
- TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1 = "AWS/Textract/AnalyzeDocument/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 enum ModelApprovalStatus {
5085
- APPROVED = "Approved",
5086
- PENDING_MANUAL_APPROVAL = "PendingManualApproval",
5087
- REJECTED = "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 declare enum ModelPackageStatus {
5093
- COMPLETED = "Completed",
5094
- DELETING = "Deleting",
5095
- FAILED = "Failed",
5096
- IN_PROGRESS = "InProgress",
5097
- PENDING = "Pending"
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 enum ProcessingS3DataDistributionType {
5200
- FULLYREPLICATED = "FullyReplicated",
5201
- SHARDEDBYS3KEY = "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 declare enum ProcessingS3InputMode {
5207
- FILE = "File",
5208
- PIPE = "Pipe"
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 enum CapacitySizeType {
5322
- CAPACITY_PERCENT = "CAPACITY_PERCENT",
5323
- INSTANCE_COUNT = "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 enum TrafficRoutingConfigType {
5356
- ALL_AT_ONCE = "ALL_AT_ONCE",
5357
- CANARY = "CANARY",
5358
- LINEAR = "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 enum BooleanOperator {
5438
- AND = "And",
5439
- OR = "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 enum CandidateSortBy {
5487
- CreationTime = "CreationTime",
5488
- FinalObjectiveMetricValue = "FinalObjectiveMetricValue",
5489
- Status = "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 declare enum FeatureStatus {
5495
- Disabled = "DISABLED",
5496
- Enabled = "ENABLED"
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 enum CaptureMode {
5548
- INPUT = "Input",
5549
- OUTPUT = "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 enum CaptureStatus {
5565
- STARTED = "Started",
5566
- STOPPED = "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 enum ClarifyFeatureType {
5708
- CATEGORICAL = "categorical",
5709
- NUMERICAL = "numerical",
5710
- TEXT = "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
- export declare enum ClarifyTextGranularity {
5880
- PARAGRAPH = "paragraph",
5881
- SENTENCE = "sentence",
5882
- TOKEN = "token"
5883
- }
5884
- /**
5885
- * @public
5886
- */
5887
- export declare enum ClarifyTextLanguage {
5888
- AFRIKAANS = "af",
5889
- ALBANIAN = "sq",
5890
- ARABIC = "ar",
5891
- ARMENIAN = "hy",
5892
- BASQUE = "eu",
5893
- BENGALI = "bn",
5894
- BULGARIAN = "bg",
5895
- CATALAN = "ca",
5896
- CHINESE = "zh",
5897
- CROATIAN = "hr",
5898
- CZECH = "cs",
5899
- DANISH = "da",
5900
- DUTCH = "nl",
5901
- ENGLISH = "en",
5902
- ESTONIAN = "et",
5903
- FINNISH = "fi",
5904
- FRENCH = "fr",
5905
- GERMAN = "de",
5906
- GREEK = "el",
5907
- GUJARATI = "gu",
5908
- HEBREW = "he",
5909
- HINDI = "hi",
5910
- HUNGARIAN = "hu",
5911
- ICELANDIC = "is",
5912
- INDONESIAN = "id",
5913
- IRISH = "ga",
5914
- ITALIAN = "it",
5915
- KANNADA = "kn",
5916
- KYRGYZ = "ky",
5917
- LATVIAN = "lv",
5918
- LIGURIAN = "lij",
5919
- LITHUANIAN = "lt",
5920
- LUXEMBOURGISH = "lb",
5921
- MACEDONIAN = "mk",
5922
- MALAYALAM = "ml",
5923
- MARATHI = "mr",
5924
- MULTI_LANGUAGE = "xx",
5925
- NEPALI = "ne",
5926
- NORWEGIAN_BOKMAL = "nb",
5927
- PERSIAN = "fa",
5928
- POLISH = "pl",
5929
- PORTUGUESE = "pt",
5930
- ROMANIAN = "ro",
5931
- RUSSIAN = "ru",
5932
- SANSKRIT = "sa",
5933
- SERBIAN = "sr",
5934
- SETSWANA = "tn",
5935
- SINHALA = "si",
5936
- SLOVAK = "sk",
5937
- SLOVENIAN = "sl",
5938
- SPANISH = "es",
5939
- SWEDISH = "sv",
5940
- TAGALOG = "tl",
5941
- TAMIL = "ta",
5942
- TATAR = "tt",
5943
- TELUGU = "te",
5944
- TURKISH = "tr",
5945
- UKRAINIAN = "uk",
5946
- URDU = "ur",
5947
- YORUBA = "yo"
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 enum CodeRepositorySortBy {
6042
- CREATION_TIME = "CreationTime",
6043
- LAST_MODIFIED_TIME = "LastModifiedTime",
6044
- NAME = "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 declare enum CodeRepositorySortOrder {
6050
- ASCENDING = "Ascending",
6051
- DESCENDING = "Descending"
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 enum CompilationJobStatus {
6169
- COMPLETED = "COMPLETED",
6170
- FAILED = "FAILED",
6171
- INPROGRESS = "INPROGRESS",
6172
- STARTING = "STARTING",
6173
- STOPPED = "STOPPED",
6174
- STOPPING = "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 declare enum TargetDevice {
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 enum TargetPlatformAccelerator {
6217
- INTEL_GRAPHICS = "INTEL_GRAPHICS",
6218
- MALI = "MALI",
6219
- NNA = "NNA",
6220
- NVIDIA = "NVIDIA"
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 declare enum TargetPlatformArch {
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 enum TargetPlatformOs {
6236
- ANDROID = "ANDROID",
6237
- LINUX = "LINUX"
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 enum CompleteOnConvergence {
6297
- DISABLED = "Disabled",
6298
- ENABLED = "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 declare enum ConditionOutcome {
6304
- FALSE = "False",
6305
- TRUE = "True"
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 enum RepositoryAccessMode {
6335
- PLATFORM = "Platform",
6336
- VPC = "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 enum ContainerMode {
6392
- MULTI_MODEL = "MultiModel",
6393
- SINGLE_MODEL = "SingleModel"
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 declare enum ModelCacheSetting {
6399
- DISABLED = "Disabled",
6400
- ENABLED = "Enabled"
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 enum ContentClassifier {
6508
- FREE_OF_ADULT_CONTENT = "FreeOfAdultContent",
6509
- FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION = "FreeOfPersonallyIdentifiableInformation"
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 enum HyperParameterScalingType {
6564
- AUTO = "Auto",
6565
- LINEAR = "Linear",
6566
- LOGARITHMIC = "Logarithmic",
6567
- REVERSE_LOGARITHMIC = "ReverseLogarithmic"
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 enum ParameterType {
6756
- CATEGORICAL = "Categorical",
6757
- CONTINUOUS = "Continuous",
6758
- FREE_TEXT = "FreeText",
6759
- INTEGER = "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 enum HyperParameterTuningJobObjectiveType {
6802
- MAXIMIZE = "Maximize",
6803
- MINIMIZE = "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 enum ProblemType {
7151
- BINARY_CLASSIFICATION = "BinaryClassification",
7152
- MULTICLASS_CLASSIFICATION = "MulticlassClassification",
7153
- REGRESSION = "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 enum Framework {
7345
- DARKNET = "DARKNET",
7346
- KERAS = "KERAS",
7347
- MXNET = "MXNET",
7348
- ONNX = "ONNX",
7349
- PYTORCH = "PYTORCH",
7350
- SKLEARN = "SKLEARN",
7351
- TENSORFLOW = "TENSORFLOW",
7352
- TFLITE = "TFLITE",
7353
- XGBOOST = "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 enum ProcessingS3UploadMode {
8352
- CONTINUOUS = "Continuous",
8353
- END_OF_JOB = "EndOfJob"
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
- export declare enum ProcessingInstanceType {
8407
- ML_C4_2XLARGE = "ml.c4.2xlarge",
8408
- ML_C4_4XLARGE = "ml.c4.4xlarge",
8409
- ML_C4_8XLARGE = "ml.c4.8xlarge",
8410
- ML_C4_XLARGE = "ml.c4.xlarge",
8411
- ML_C5_18XLARGE = "ml.c5.18xlarge",
8412
- ML_C5_2XLARGE = "ml.c5.2xlarge",
8413
- ML_C5_4XLARGE = "ml.c5.4xlarge",
8414
- ML_C5_9XLARGE = "ml.c5.9xlarge",
8415
- ML_C5_XLARGE = "ml.c5.xlarge",
8416
- ML_G4DN_12XLARGE = "ml.g4dn.12xlarge",
8417
- ML_G4DN_16XLARGE = "ml.g4dn.16xlarge",
8418
- ML_G4DN_2XLARGE = "ml.g4dn.2xlarge",
8419
- ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
8420
- ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
8421
- ML_G4DN_XLARGE = "ml.g4dn.xlarge",
8422
- ML_M4_10XLARGE = "ml.m4.10xlarge",
8423
- ML_M4_16XLARGE = "ml.m4.16xlarge",
8424
- ML_M4_2XLARGE = "ml.m4.2xlarge",
8425
- ML_M4_4XLARGE = "ml.m4.4xlarge",
8426
- ML_M4_XLARGE = "ml.m4.xlarge",
8427
- ML_M5_12XLARGE = "ml.m5.12xlarge",
8428
- ML_M5_24XLARGE = "ml.m5.24xlarge",
8429
- ML_M5_2XLARGE = "ml.m5.2xlarge",
8430
- ML_M5_4XLARGE = "ml.m5.4xlarge",
8431
- ML_M5_LARGE = "ml.m5.large",
8432
- ML_M5_XLARGE = "ml.m5.xlarge",
8433
- ML_P2_16XLARGE = "ml.p2.16xlarge",
8434
- ML_P2_8XLARGE = "ml.p2.8xlarge",
8435
- ML_P2_XLARGE = "ml.p2.xlarge",
8436
- ML_P3_16XLARGE = "ml.p3.16xlarge",
8437
- ML_P3_2XLARGE = "ml.p3.2xlarge",
8438
- ML_P3_8XLARGE = "ml.p3.8xlarge",
8439
- ML_R5_12XLARGE = "ml.r5.12xlarge",
8440
- ML_R5_16XLARGE = "ml.r5.16xlarge",
8441
- ML_R5_24XLARGE = "ml.r5.24xlarge",
8442
- ML_R5_2XLARGE = "ml.r5.2xlarge",
8443
- ML_R5_4XLARGE = "ml.r5.4xlarge",
8444
- ML_R5_8XLARGE = "ml.r5.8xlarge",
8445
- ML_R5_LARGE = "ml.r5.large",
8446
- ML_R5_XLARGE = "ml.r5.xlarge",
8447
- ML_T3_2XLARGE = "ml.t3.2xlarge",
8448
- ML_T3_LARGE = "ml.t3.large",
8449
- ML_T3_MEDIUM = "ml.t3.medium",
8450
- ML_T3_XLARGE = "ml.t3.xlarge"
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 enum EdgePresetDeploymentType {
8588
- GreengrassV2Component = "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 enum RStudioServerProAccessStatus {
8787
- Disabled = "DISABLED",
8788
- Enabled = "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 declare enum RStudioServerProUserGroup {
8794
- Admin = "R_STUDIO_ADMIN",
8795
- User = "R_STUDIO_USER"
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 enum NotebookOutputOption {
8821
- Allowed = "Allowed",
8822
- Disabled = "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 enum ExecutionRoleIdentityConfig {
8918
- DISABLED = "DISABLED",
8919
- USER_PROFILE_NAME = "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 enum FailureHandlingPolicy {
9080
- DoNothing = "DO_NOTHING",
9081
- RollbackOnFailure = "ROLLBACK_ON_FAILURE"
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 enum DeviceSubsetType {
9098
- NameContains = "NAMECONTAINS",
9099
- Percentage = "PERCENTAGE",
9100
- Selection = "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>