@aws-sdk/client-sagemaker 3.301.0 → 3.306.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist-cjs/models/models_0.js +876 -960
  2. package/dist-cjs/models/models_1.js +228 -262
  3. package/dist-cjs/models/models_2.js +400 -457
  4. package/dist-cjs/models/models_3.js +232 -283
  5. package/dist-cjs/models/models_4.js +5 -6
  6. package/dist-cjs/protocols/Aws_json1_1.js +26 -0
  7. package/dist-es/models/models_0.js +874 -958
  8. package/dist-es/models/models_1.js +228 -262
  9. package/dist-es/models/models_2.js +400 -457
  10. package/dist-es/models/models_3.js +232 -283
  11. package/dist-es/models/models_4.js +5 -6
  12. package/dist-es/protocols/Aws_json1_1.js +26 -0
  13. package/dist-types/SageMaker.d.ts +3 -9
  14. package/dist-types/commands/CreateAutoMLJobCommand.d.ts +1 -3
  15. package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +2 -6
  16. package/dist-types/commands/CreateEndpointConfigCommand.d.ts +5 -1
  17. package/dist-types/commands/DeleteTagsCommand.d.ts +2 -1
  18. package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +1 -2
  19. package/dist-types/models/models_0.d.ts +1379 -966
  20. package/dist-types/models/models_1.d.ts +429 -245
  21. package/dist-types/models/models_2.d.ts +693 -464
  22. package/dist-types/models/models_3.d.ts +550 -248
  23. package/dist-types/models/models_4.d.ts +26 -9
  24. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +2 -1
  25. package/dist-types/ts3.4/commands/UpdateAppImageConfigCommand.d.ts +4 -2
  26. package/dist-types/ts3.4/models/models_0.d.ts +1035 -875
  27. package/dist-types/ts3.4/models/models_1.d.ts +292 -230
  28. package/dist-types/ts3.4/models/models_2.d.ts +504 -415
  29. package/dist-types/ts3.4/models/models_3.d.ts +341 -238
  30. package/dist-types/ts3.4/models/models_4.d.ts +13 -6
  31. package/package.json +35 -35
@@ -8,12 +8,14 @@ import {
8
8
  ArtifactSource,
9
9
  AsyncInferenceConfig,
10
10
  AthenaDatasetDefinition,
11
+ AutoRollbackConfig,
11
12
  AwsManagedHumanLoopRequestSource,
12
13
  BatchDataCaptureConfig,
13
14
  BatchStrategy,
14
15
  BatchTransformInput,
15
16
  BestObjectiveNotImproving,
16
17
  Bias,
18
+ BlueGreenUpdatePolicy,
17
19
  CaptureContentTypeHeader,
18
20
  CaptureOption,
19
21
  CaptureStatus,
@@ -29,7 +31,6 @@ import {
29
31
  ContentClassifier,
30
32
  ContinuousParameterRange,
31
33
  ConvergenceDetected,
32
- DeploymentConfig,
33
34
  EndpointInput,
34
35
  HyperParameterScalingType,
35
36
  HyperParameterTuningJobObjective,
@@ -64,6 +65,10 @@ import {
64
65
  UserSettings,
65
66
  VpcConfig,
66
67
  } from "./models_0";
68
+ export interface DeploymentConfig {
69
+ BlueGreenUpdatePolicy: BlueGreenUpdatePolicy | undefined;
70
+ AutoRollbackConfiguration?: AutoRollbackConfig;
71
+ }
67
72
  export interface CreateEndpointInput {
68
73
  EndpointName: string | undefined;
69
74
  EndpointConfigName: string | undefined;
@@ -84,14 +89,16 @@ export interface DataCaptureConfig {
84
89
  export interface ExplainerConfig {
85
90
  ClarifyExplainerConfig?: ClarifyExplainerConfig;
86
91
  }
87
- export declare enum ProductionVariantAcceleratorType {
88
- ML_EIA1_LARGE = "ml.eia1.large",
89
- ML_EIA1_MEDIUM = "ml.eia1.medium",
90
- ML_EIA1_XLARGE = "ml.eia1.xlarge",
91
- ML_EIA2_LARGE = "ml.eia2.large",
92
- ML_EIA2_MEDIUM = "ml.eia2.medium",
93
- ML_EIA2_XLARGE = "ml.eia2.xlarge",
94
- }
92
+ export declare const ProductionVariantAcceleratorType: {
93
+ readonly ML_EIA1_LARGE: "ml.eia1.large";
94
+ readonly ML_EIA1_MEDIUM: "ml.eia1.medium";
95
+ readonly ML_EIA1_XLARGE: "ml.eia1.xlarge";
96
+ readonly ML_EIA2_LARGE: "ml.eia2.large";
97
+ readonly ML_EIA2_MEDIUM: "ml.eia2.medium";
98
+ readonly ML_EIA2_XLARGE: "ml.eia2.xlarge";
99
+ };
100
+ export type ProductionVariantAcceleratorType =
101
+ (typeof ProductionVariantAcceleratorType)[keyof typeof ProductionVariantAcceleratorType];
95
102
  export interface ProductionVariantCoreDumpConfig {
96
103
  DestinationS3Uri: string | undefined;
97
104
  KmsKeyId?: string;
@@ -136,11 +143,12 @@ export interface CreateExperimentRequest {
136
143
  export interface CreateExperimentResponse {
137
144
  ExperimentArn?: string;
138
145
  }
139
- export declare enum FeatureType {
140
- FRACTIONAL = "Fractional",
141
- INTEGRAL = "Integral",
142
- STRING = "String",
143
- }
146
+ export declare const FeatureType: {
147
+ readonly FRACTIONAL: "Fractional";
148
+ readonly INTEGRAL: "Integral";
149
+ readonly STRING: "String";
150
+ };
151
+ export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
144
152
  export interface FeatureDefinition {
145
153
  FeatureName?: string;
146
154
  FeatureType?: FeatureType | string;
@@ -155,10 +163,11 @@ export interface S3StorageConfig {
155
163
  KmsKeyId?: string;
156
164
  ResolvedOutputS3Uri?: string;
157
165
  }
158
- export declare enum TableFormat {
159
- GLUE = "Glue",
160
- ICEBERG = "Iceberg",
161
- }
166
+ export declare const TableFormat: {
167
+ readonly GLUE: "Glue";
168
+ readonly ICEBERG: "Iceberg";
169
+ };
170
+ export type TableFormat = (typeof TableFormat)[keyof typeof TableFormat];
162
171
  export interface OfflineStoreConfig {
163
172
  S3StorageConfig: S3StorageConfig | undefined;
164
173
  DisableGlueTableCreation?: boolean;
@@ -276,12 +285,14 @@ export interface ResourceLimits {
276
285
  MaxParallelTrainingJobs: number | undefined;
277
286
  MaxRuntimeInSeconds?: number;
278
287
  }
279
- export declare enum HyperParameterTuningJobStrategyType {
280
- BAYESIAN = "Bayesian",
281
- GRID = "Grid",
282
- HYPERBAND = "Hyperband",
283
- RANDOM = "Random",
284
- }
288
+ export declare const HyperParameterTuningJobStrategyType: {
289
+ readonly BAYESIAN: "Bayesian";
290
+ readonly GRID: "Grid";
291
+ readonly HYPERBAND: "Hyperband";
292
+ readonly RANDOM: "Random";
293
+ };
294
+ export type HyperParameterTuningJobStrategyType =
295
+ (typeof HyperParameterTuningJobStrategyType)[keyof typeof HyperParameterTuningJobStrategyType];
285
296
  export interface HyperbandStrategyConfig {
286
297
  MinResource?: number;
287
298
  MaxResource?: number;
@@ -289,10 +300,12 @@ export interface HyperbandStrategyConfig {
289
300
  export interface HyperParameterTuningJobStrategyConfig {
290
301
  HyperbandStrategyConfig?: HyperbandStrategyConfig;
291
302
  }
292
- export declare enum TrainingJobEarlyStoppingType {
293
- AUTO = "Auto",
294
- OFF = "Off",
295
- }
303
+ export declare const TrainingJobEarlyStoppingType: {
304
+ readonly AUTO: "Auto";
305
+ readonly OFF: "Off";
306
+ };
307
+ export type TrainingJobEarlyStoppingType =
308
+ (typeof TrainingJobEarlyStoppingType)[keyof typeof TrainingJobEarlyStoppingType];
296
309
  export interface TuningJobCompletionCriteria {
297
310
  TargetObjectiveMetricValue?: number;
298
311
  BestObjectiveNotImproving?: BestObjectiveNotImproving;
@@ -314,9 +327,11 @@ export interface HyperParameterAlgorithmSpecification {
314
327
  AlgorithmName?: string;
315
328
  MetricDefinitions?: MetricDefinition[];
316
329
  }
317
- export declare enum HyperParameterTuningAllocationStrategy {
318
- PRIORITIZED = "Prioritized",
319
- }
330
+ export declare const HyperParameterTuningAllocationStrategy: {
331
+ readonly PRIORITIZED: "Prioritized";
332
+ };
333
+ export type HyperParameterTuningAllocationStrategy =
334
+ (typeof HyperParameterTuningAllocationStrategy)[keyof typeof HyperParameterTuningAllocationStrategy];
320
335
  export interface HyperParameterTuningInstanceConfig {
321
336
  InstanceType: TrainingInstanceType | string | undefined;
322
337
  InstanceCount: number | undefined;
@@ -356,10 +371,12 @@ export interface HyperParameterTrainingJobDefinition {
356
371
  export interface ParentHyperParameterTuningJob {
357
372
  HyperParameterTuningJobName?: string;
358
373
  }
359
- export declare enum HyperParameterTuningJobWarmStartType {
360
- IDENTICAL_DATA_AND_ALGORITHM = "IdenticalDataAndAlgorithm",
361
- TRANSFER_LEARNING = "TransferLearning",
362
- }
374
+ export declare const HyperParameterTuningJobWarmStartType: {
375
+ readonly IDENTICAL_DATA_AND_ALGORITHM: "IdenticalDataAndAlgorithm";
376
+ readonly TRANSFER_LEARNING: "TransferLearning";
377
+ };
378
+ export type HyperParameterTuningJobWarmStartType =
379
+ (typeof HyperParameterTuningJobWarmStartType)[keyof typeof HyperParameterTuningJobWarmStartType];
363
380
  export interface HyperParameterTuningJobWarmStartConfig {
364
381
  ParentHyperParameterTuningJobs: ParentHyperParameterTuningJob[] | undefined;
365
382
  WarmStartType: HyperParameterTuningJobWarmStartType | string | undefined;
@@ -385,21 +402,25 @@ export interface CreateImageRequest {
385
402
  export interface CreateImageResponse {
386
403
  ImageArn?: string;
387
404
  }
388
- export declare enum JobType {
389
- INFERENCE = "INFERENCE",
390
- NOTEBOOK_KERNEL = "NOTEBOOK_KERNEL",
391
- TRAINING = "TRAINING",
392
- }
393
- export declare enum Processor {
394
- CPU = "CPU",
395
- GPU = "GPU",
396
- }
397
- export declare enum VendorGuidance {
398
- ARCHIVED = "ARCHIVED",
399
- NOT_PROVIDED = "NOT_PROVIDED",
400
- STABLE = "STABLE",
401
- TO_BE_ARCHIVED = "TO_BE_ARCHIVED",
402
- }
405
+ export declare const JobType: {
406
+ readonly INFERENCE: "INFERENCE";
407
+ readonly NOTEBOOK_KERNEL: "NOTEBOOK_KERNEL";
408
+ readonly TRAINING: "TRAINING";
409
+ };
410
+ export type JobType = (typeof JobType)[keyof typeof JobType];
411
+ export declare const Processor: {
412
+ readonly CPU: "CPU";
413
+ readonly GPU: "GPU";
414
+ };
415
+ export type Processor = (typeof Processor)[keyof typeof Processor];
416
+ export declare const VendorGuidance: {
417
+ readonly ARCHIVED: "ARCHIVED";
418
+ readonly NOT_PROVIDED: "NOT_PROVIDED";
419
+ readonly STABLE: "STABLE";
420
+ readonly TO_BE_ARCHIVED: "TO_BE_ARCHIVED";
421
+ };
422
+ export type VendorGuidance =
423
+ (typeof VendorGuidance)[keyof typeof VendorGuidance];
403
424
  export interface CreateImageVersionRequest {
404
425
  BaseImage: string | undefined;
405
426
  ClientToken?: string;
@@ -421,80 +442,83 @@ export interface InferenceExperimentDataStorageConfig {
421
442
  KmsKey?: string;
422
443
  ContentType?: CaptureContentTypeHeader;
423
444
  }
424
- export declare enum ModelInfrastructureType {
425
- REAL_TIME_INFERENCE = "RealTimeInference",
426
- }
427
- export declare enum _InstanceType {
428
- ML_C4_2XLARGE = "ml.c4.2xlarge",
429
- ML_C4_4XLARGE = "ml.c4.4xlarge",
430
- ML_C4_8XLARGE = "ml.c4.8xlarge",
431
- ML_C4_XLARGE = "ml.c4.xlarge",
432
- ML_C5D_18XLARGE = "ml.c5d.18xlarge",
433
- ML_C5D_2XLARGE = "ml.c5d.2xlarge",
434
- ML_C5D_4XLARGE = "ml.c5d.4xlarge",
435
- ML_C5D_9XLARGE = "ml.c5d.9xlarge",
436
- ML_C5D_XLARGE = "ml.c5d.xlarge",
437
- ML_C5_18XLARGE = "ml.c5.18xlarge",
438
- ML_C5_2XLARGE = "ml.c5.2xlarge",
439
- ML_C5_4XLARGE = "ml.c5.4xlarge",
440
- ML_C5_9XLARGE = "ml.c5.9xlarge",
441
- ML_C5_XLARGE = "ml.c5.xlarge",
442
- ML_G4DN_12XLARGE = "ml.g4dn.12xlarge",
443
- ML_G4DN_16XLARGE = "ml.g4dn.16xlarge",
444
- ML_G4DN_2XLARGE = "ml.g4dn.2xlarge",
445
- ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
446
- ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
447
- ML_G4DN_XLARGE = "ml.g4dn.xlarge",
448
- ML_G5_12XLARGE = "ml.g5.12xlarge",
449
- ML_G5_16XLARGE = "ml.g5.16xlarge",
450
- ML_G5_24XLARGE = "ml.g5.24xlarge",
451
- ML_G5_2XLARGE = "ml.g5.2xlarge",
452
- ML_G5_48XLARGE = "ml.g5.48xlarge",
453
- ML_G5_4XLARGE = "ml.g5.4xlarge",
454
- ML_G5_8XLARGE = "ml.g5.8xlarge",
455
- ML_G5_XLARGE = "ml.g5.xlarge",
456
- ML_M4_10XLARGE = "ml.m4.10xlarge",
457
- ML_M4_16XLARGE = "ml.m4.16xlarge",
458
- ML_M4_2XLARGE = "ml.m4.2xlarge",
459
- ML_M4_4XLARGE = "ml.m4.4xlarge",
460
- ML_M4_XLARGE = "ml.m4.xlarge",
461
- ML_M5D_12XLARGE = "ml.m5d.12xlarge",
462
- ML_M5D_16XLARGE = "ml.m5d.16xlarge",
463
- ML_M5D_24XLARGE = "ml.m5d.24xlarge",
464
- ML_M5D_2XLARGE = "ml.m5d.2xlarge",
465
- ML_M5D_4XLARGE = "ml.m5d.4xlarge",
466
- ML_M5D_8XLARGE = "ml.m5d.8xlarge",
467
- ML_M5D_LARGE = "ml.m5d.large",
468
- ML_M5D_XLARGE = "ml.m5d.xlarge",
469
- ML_M5_12XLARGE = "ml.m5.12xlarge",
470
- ML_M5_24XLARGE = "ml.m5.24xlarge",
471
- ML_M5_2XLARGE = "ml.m5.2xlarge",
472
- ML_M5_4XLARGE = "ml.m5.4xlarge",
473
- ML_M5_XLARGE = "ml.m5.xlarge",
474
- ML_P2_16XLARGE = "ml.p2.16xlarge",
475
- ML_P2_8XLARGE = "ml.p2.8xlarge",
476
- ML_P2_XLARGE = "ml.p2.xlarge",
477
- ML_P3DN_24XLARGE = "ml.p3dn.24xlarge",
478
- ML_P3_16XLARGE = "ml.p3.16xlarge",
479
- ML_P3_2XLARGE = "ml.p3.2xlarge",
480
- ML_P3_8XLARGE = "ml.p3.8xlarge",
481
- ML_R5_12XLARGE = "ml.r5.12xlarge",
482
- ML_R5_16XLARGE = "ml.r5.16xlarge",
483
- ML_R5_24XLARGE = "ml.r5.24xlarge",
484
- ML_R5_2XLARGE = "ml.r5.2xlarge",
485
- ML_R5_4XLARGE = "ml.r5.4xlarge",
486
- ML_R5_8XLARGE = "ml.r5.8xlarge",
487
- ML_R5_LARGE = "ml.r5.large",
488
- ML_R5_XLARGE = "ml.r5.xlarge",
489
- ML_T2_2XLARGE = "ml.t2.2xlarge",
490
- ML_T2_LARGE = "ml.t2.large",
491
- ML_T2_MEDIUM = "ml.t2.medium",
492
- ML_T2_XLARGE = "ml.t2.xlarge",
493
- ML_T3_2XLARGE = "ml.t3.2xlarge",
494
- ML_T3_LARGE = "ml.t3.large",
495
- ML_T3_MEDIUM = "ml.t3.medium",
496
- ML_T3_XLARGE = "ml.t3.xlarge",
497
- }
445
+ export declare const ModelInfrastructureType: {
446
+ readonly REAL_TIME_INFERENCE: "RealTimeInference";
447
+ };
448
+ export type ModelInfrastructureType =
449
+ (typeof ModelInfrastructureType)[keyof typeof ModelInfrastructureType];
450
+ export declare const _InstanceType: {
451
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
452
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
453
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
454
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
455
+ readonly ML_C5D_18XLARGE: "ml.c5d.18xlarge";
456
+ readonly ML_C5D_2XLARGE: "ml.c5d.2xlarge";
457
+ readonly ML_C5D_4XLARGE: "ml.c5d.4xlarge";
458
+ readonly ML_C5D_9XLARGE: "ml.c5d.9xlarge";
459
+ readonly ML_C5D_XLARGE: "ml.c5d.xlarge";
460
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
461
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
462
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
463
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
464
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
465
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
466
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
467
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
468
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
469
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
470
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
471
+ readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
472
+ readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
473
+ readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
474
+ readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
475
+ readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
476
+ readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
477
+ readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
478
+ readonly ML_G5_XLARGE: "ml.g5.xlarge";
479
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
480
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
481
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
482
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
483
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
484
+ readonly ML_M5D_12XLARGE: "ml.m5d.12xlarge";
485
+ readonly ML_M5D_16XLARGE: "ml.m5d.16xlarge";
486
+ readonly ML_M5D_24XLARGE: "ml.m5d.24xlarge";
487
+ readonly ML_M5D_2XLARGE: "ml.m5d.2xlarge";
488
+ readonly ML_M5D_4XLARGE: "ml.m5d.4xlarge";
489
+ readonly ML_M5D_8XLARGE: "ml.m5d.8xlarge";
490
+ readonly ML_M5D_LARGE: "ml.m5d.large";
491
+ readonly ML_M5D_XLARGE: "ml.m5d.xlarge";
492
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
493
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
494
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
495
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
496
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
497
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
498
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
499
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
500
+ readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
501
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
502
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
503
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
504
+ readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
505
+ readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
506
+ readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
507
+ readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
508
+ readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
509
+ readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
510
+ readonly ML_R5_LARGE: "ml.r5.large";
511
+ readonly ML_R5_XLARGE: "ml.r5.xlarge";
512
+ readonly ML_T2_2XLARGE: "ml.t2.2xlarge";
513
+ readonly ML_T2_LARGE: "ml.t2.large";
514
+ readonly ML_T2_MEDIUM: "ml.t2.medium";
515
+ readonly ML_T2_XLARGE: "ml.t2.xlarge";
516
+ readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
517
+ readonly ML_T3_LARGE: "ml.t3.large";
518
+ readonly ML_T3_MEDIUM: "ml.t3.medium";
519
+ readonly ML_T3_XLARGE: "ml.t3.xlarge";
520
+ };
521
+ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
498
522
  export interface RealTimeInferenceConfig {
499
523
  InstanceType: _InstanceType | string | undefined;
500
524
  InstanceCount: number | undefined;
@@ -520,9 +544,11 @@ export interface ShadowModeConfig {
520
544
  SourceModelVariantName: string | undefined;
521
545
  ShadowModelVariants: ShadowModelVariantConfig[] | undefined;
522
546
  }
523
- export declare enum InferenceExperimentType {
524
- SHADOW_MODE = "ShadowMode",
525
- }
547
+ export declare const InferenceExperimentType: {
548
+ readonly SHADOW_MODE: "ShadowMode";
549
+ };
550
+ export type InferenceExperimentType =
551
+ (typeof InferenceExperimentType)[keyof typeof InferenceExperimentType];
526
552
  export interface CreateInferenceExperimentRequest {
527
553
  Name: string | undefined;
528
554
  Type: InferenceExperimentType | string | undefined;
@@ -573,9 +599,10 @@ export interface Phase {
573
599
  SpawnRate?: number;
574
600
  DurationInSeconds?: number;
575
601
  }
576
- export declare enum TrafficType {
577
- PHASES = "PHASES",
578
- }
602
+ export declare const TrafficType: {
603
+ readonly PHASES: "PHASES";
604
+ };
605
+ export type TrafficType = (typeof TrafficType)[keyof typeof TrafficType];
579
606
  export interface TrafficPattern {
580
607
  TrafficType?: TrafficType | string;
581
608
  Phases?: Phase[];
@@ -596,10 +623,12 @@ export interface RecommendationJobInputConfig {
596
623
  VpcConfig?: RecommendationJobVpcConfig;
597
624
  ModelName?: string;
598
625
  }
599
- export declare enum RecommendationJobType {
600
- ADVANCED = "Advanced",
601
- DEFAULT = "Default",
602
- }
626
+ export declare const RecommendationJobType: {
627
+ readonly ADVANCED: "Advanced";
628
+ readonly DEFAULT: "Default";
629
+ };
630
+ export type RecommendationJobType =
631
+ (typeof RecommendationJobType)[keyof typeof RecommendationJobType];
603
632
  export interface RecommendationJobCompiledOutputConfig {
604
633
  S3OutputUri?: string;
605
634
  }
@@ -696,10 +725,12 @@ export interface CreateLabelingJobRequest {
696
725
  export interface CreateLabelingJobResponse {
697
726
  LabelingJobArn: string | undefined;
698
727
  }
699
- export declare enum InferenceExecutionMode {
700
- DIRECT = "Direct",
701
- SERIAL = "Serial",
702
- }
728
+ export declare const InferenceExecutionMode: {
729
+ readonly DIRECT: "Direct";
730
+ readonly SERIAL: "Serial";
731
+ };
732
+ export type InferenceExecutionMode =
733
+ (typeof InferenceExecutionMode)[keyof typeof InferenceExecutionMode];
703
734
  export interface InferenceExecutionConfig {
704
735
  Mode: InferenceExecutionMode | string | undefined;
705
736
  }
@@ -748,12 +779,14 @@ export interface CreateModelBiasJobDefinitionRequest {
748
779
  export interface CreateModelBiasJobDefinitionResponse {
749
780
  JobDefinitionArn: string | undefined;
750
781
  }
751
- export declare enum ModelCardStatus {
752
- APPROVED = "Approved",
753
- ARCHIVED = "Archived",
754
- DRAFT = "Draft",
755
- PENDINGREVIEW = "PendingReview",
756
- }
782
+ export declare const ModelCardStatus: {
783
+ readonly APPROVED: "Approved";
784
+ readonly ARCHIVED: "Archived";
785
+ readonly DRAFT: "Draft";
786
+ readonly PENDINGREVIEW: "PendingReview";
787
+ };
788
+ export type ModelCardStatus =
789
+ (typeof ModelCardStatus)[keyof typeof ModelCardStatus];
757
790
  export interface ModelCardSecurityConfig {
758
791
  KmsKeyId?: string;
759
792
  }
@@ -900,11 +933,13 @@ export interface CreateModelPackageGroupInput {
900
933
  export interface CreateModelPackageGroupOutput {
901
934
  ModelPackageGroupArn: string | undefined;
902
935
  }
903
- export declare enum MonitoringProblemType {
904
- BINARY_CLASSIFICATION = "BinaryClassification",
905
- MULTICLASS_CLASSIFICATION = "MulticlassClassification",
906
- REGRESSION = "Regression",
907
- }
936
+ export declare const MonitoringProblemType: {
937
+ readonly BINARY_CLASSIFICATION: "BinaryClassification";
938
+ readonly MULTICLASS_CLASSIFICATION: "MulticlassClassification";
939
+ readonly REGRESSION: "Regression";
940
+ };
941
+ export type MonitoringProblemType =
942
+ (typeof MonitoringProblemType)[keyof typeof MonitoringProblemType];
908
943
  export interface ModelQualityAppSpecification {
909
944
  ImageUri: string | undefined;
910
945
  ContainerEntrypoint?: string[];
@@ -970,12 +1005,14 @@ export interface MonitoringJobDefinition {
970
1005
  NetworkConfig?: NetworkConfig;
971
1006
  RoleArn: string | undefined;
972
1007
  }
973
- export declare enum MonitoringType {
974
- DATA_QUALITY = "DataQuality",
975
- MODEL_BIAS = "ModelBias",
976
- MODEL_EXPLAINABILITY = "ModelExplainability",
977
- MODEL_QUALITY = "ModelQuality",
978
- }
1008
+ export declare const MonitoringType: {
1009
+ readonly DATA_QUALITY: "DataQuality";
1010
+ readonly MODEL_BIAS: "ModelBias";
1011
+ readonly MODEL_EXPLAINABILITY: "ModelExplainability";
1012
+ readonly MODEL_QUALITY: "ModelQuality";
1013
+ };
1014
+ export type MonitoringType =
1015
+ (typeof MonitoringType)[keyof typeof MonitoringType];
979
1016
  export interface ScheduleConfig {
980
1017
  ScheduleExpression: string | undefined;
981
1018
  }
@@ -993,25 +1030,30 @@ export interface CreateMonitoringScheduleRequest {
993
1030
  export interface CreateMonitoringScheduleResponse {
994
1031
  MonitoringScheduleArn: string | undefined;
995
1032
  }
996
- export declare enum NotebookInstanceAcceleratorType {
997
- ML_EIA1_LARGE = "ml.eia1.large",
998
- ML_EIA1_MEDIUM = "ml.eia1.medium",
999
- ML_EIA1_XLARGE = "ml.eia1.xlarge",
1000
- ML_EIA2_LARGE = "ml.eia2.large",
1001
- ML_EIA2_MEDIUM = "ml.eia2.medium",
1002
- ML_EIA2_XLARGE = "ml.eia2.xlarge",
1003
- }
1004
- export declare enum DirectInternetAccess {
1005
- DISABLED = "Disabled",
1006
- ENABLED = "Enabled",
1007
- }
1033
+ export declare const NotebookInstanceAcceleratorType: {
1034
+ readonly ML_EIA1_LARGE: "ml.eia1.large";
1035
+ readonly ML_EIA1_MEDIUM: "ml.eia1.medium";
1036
+ readonly ML_EIA1_XLARGE: "ml.eia1.xlarge";
1037
+ readonly ML_EIA2_LARGE: "ml.eia2.large";
1038
+ readonly ML_EIA2_MEDIUM: "ml.eia2.medium";
1039
+ readonly ML_EIA2_XLARGE: "ml.eia2.xlarge";
1040
+ };
1041
+ export type NotebookInstanceAcceleratorType =
1042
+ (typeof NotebookInstanceAcceleratorType)[keyof typeof NotebookInstanceAcceleratorType];
1043
+ export declare const DirectInternetAccess: {
1044
+ readonly DISABLED: "Disabled";
1045
+ readonly ENABLED: "Enabled";
1046
+ };
1047
+ export type DirectInternetAccess =
1048
+ (typeof DirectInternetAccess)[keyof typeof DirectInternetAccess];
1008
1049
  export interface InstanceMetadataServiceConfiguration {
1009
1050
  MinimumInstanceMetadataServiceVersion: string | undefined;
1010
1051
  }
1011
- export declare enum RootAccess {
1012
- DISABLED = "Disabled",
1013
- ENABLED = "Enabled",
1014
- }
1052
+ export declare const RootAccess: {
1053
+ readonly DISABLED: "Disabled";
1054
+ readonly ENABLED: "Enabled";
1055
+ };
1056
+ export type RootAccess = (typeof RootAccess)[keyof typeof RootAccess];
1015
1057
  export interface CreateNotebookInstanceInput {
1016
1058
  NotebookInstanceName: string | undefined;
1017
1059
  InstanceType: _InstanceType | string | undefined;
@@ -1089,25 +1131,32 @@ export interface ExperimentConfig {
1089
1131
  TrialComponentDisplayName?: string;
1090
1132
  RunName?: string;
1091
1133
  }
1092
- export declare enum DataDistributionType {
1093
- FULLYREPLICATED = "FullyReplicated",
1094
- SHARDEDBYS3KEY = "ShardedByS3Key",
1095
- }
1096
- export declare enum InputMode {
1097
- FILE = "File",
1098
- PIPE = "Pipe",
1099
- }
1100
- export declare enum RedshiftResultCompressionType {
1101
- BZIP2 = "BZIP2",
1102
- GZIP = "GZIP",
1103
- NONE = "None",
1104
- SNAPPY = "SNAPPY",
1105
- ZSTD = "ZSTD",
1106
- }
1107
- export declare enum RedshiftResultFormat {
1108
- CSV = "CSV",
1109
- PARQUET = "PARQUET",
1110
- }
1134
+ export declare const DataDistributionType: {
1135
+ readonly FULLYREPLICATED: "FullyReplicated";
1136
+ readonly SHARDEDBYS3KEY: "ShardedByS3Key";
1137
+ };
1138
+ export type DataDistributionType =
1139
+ (typeof DataDistributionType)[keyof typeof DataDistributionType];
1140
+ export declare const InputMode: {
1141
+ readonly FILE: "File";
1142
+ readonly PIPE: "Pipe";
1143
+ };
1144
+ export type InputMode = (typeof InputMode)[keyof typeof InputMode];
1145
+ export declare const RedshiftResultCompressionType: {
1146
+ readonly BZIP2: "BZIP2";
1147
+ readonly GZIP: "GZIP";
1148
+ readonly NONE: "None";
1149
+ readonly SNAPPY: "SNAPPY";
1150
+ readonly ZSTD: "ZSTD";
1151
+ };
1152
+ export type RedshiftResultCompressionType =
1153
+ (typeof RedshiftResultCompressionType)[keyof typeof RedshiftResultCompressionType];
1154
+ export declare const RedshiftResultFormat: {
1155
+ readonly CSV: "CSV";
1156
+ readonly PARQUET: "PARQUET";
1157
+ };
1158
+ export type RedshiftResultFormat =
1159
+ (typeof RedshiftResultFormat)[keyof typeof RedshiftResultFormat];
1111
1160
  export interface RedshiftDatasetDefinition {
1112
1161
  ClusterId: string | undefined;
1113
1162
  Database: string | undefined;
@@ -1126,14 +1175,18 @@ export interface DatasetDefinition {
1126
1175
  DataDistributionType?: DataDistributionType | string;
1127
1176
  InputMode?: InputMode | string;
1128
1177
  }
1129
- export declare enum ProcessingS3CompressionType {
1130
- GZIP = "Gzip",
1131
- NONE = "None",
1132
- }
1133
- export declare enum ProcessingS3DataType {
1134
- MANIFEST_FILE = "ManifestFile",
1135
- S3_PREFIX = "S3Prefix",
1136
- }
1178
+ export declare const ProcessingS3CompressionType: {
1179
+ readonly GZIP: "Gzip";
1180
+ readonly NONE: "None";
1181
+ };
1182
+ export type ProcessingS3CompressionType =
1183
+ (typeof ProcessingS3CompressionType)[keyof typeof ProcessingS3CompressionType];
1184
+ export declare const ProcessingS3DataType: {
1185
+ readonly MANIFEST_FILE: "ManifestFile";
1186
+ readonly S3_PREFIX: "S3Prefix";
1187
+ };
1188
+ export type ProcessingS3DataType =
1189
+ (typeof ProcessingS3DataType)[keyof typeof ProcessingS3DataType];
1137
1190
  export interface ProcessingS3Input {
1138
1191
  S3Uri: string | undefined;
1139
1192
  LocalPath?: string;
@@ -1229,10 +1282,12 @@ export interface CreateSpaceRequest {
1229
1282
  export interface CreateSpaceResponse {
1230
1283
  SpaceArn?: string;
1231
1284
  }
1232
- export declare enum StudioLifecycleConfigAppType {
1233
- JupyterServer = "JupyterServer",
1234
- KernelGateway = "KernelGateway",
1235
- }
1285
+ export declare const StudioLifecycleConfigAppType: {
1286
+ readonly JupyterServer: "JupyterServer";
1287
+ readonly KernelGateway: "KernelGateway";
1288
+ };
1289
+ export type StudioLifecycleConfigAppType =
1290
+ (typeof StudioLifecycleConfigAppType)[keyof typeof StudioLifecycleConfigAppType];
1236
1291
  export interface CreateStudioLifecycleConfigRequest {
1237
1292
  StudioLifecycleConfigName: string | undefined;
1238
1293
  StudioLifecycleConfigContent: string | undefined;
@@ -1306,10 +1361,11 @@ export interface CreateTrainingJobRequest {
1306
1361
  export interface CreateTrainingJobResponse {
1307
1362
  TrainingJobArn: string | undefined;
1308
1363
  }
1309
- export declare enum JoinSource {
1310
- INPUT = "Input",
1311
- NONE = "None",
1312
- }
1364
+ export declare const JoinSource: {
1365
+ readonly INPUT: "Input";
1366
+ readonly NONE: "None";
1367
+ };
1368
+ export type JoinSource = (typeof JoinSource)[keyof typeof JoinSource];
1313
1369
  export interface DataProcessing {
1314
1370
  InputFilter?: string;
1315
1371
  OutputFilter?: string;
@@ -1382,13 +1438,15 @@ export declare namespace TrialComponentParameterValue {
1382
1438
  visitor: Visitor<T>
1383
1439
  ) => T;
1384
1440
  }
1385
- export declare enum TrialComponentPrimaryStatus {
1386
- COMPLETED = "Completed",
1387
- FAILED = "Failed",
1388
- IN_PROGRESS = "InProgress",
1389
- STOPPED = "Stopped",
1390
- STOPPING = "Stopping",
1391
- }
1441
+ export declare const TrialComponentPrimaryStatus: {
1442
+ readonly COMPLETED: "Completed";
1443
+ readonly FAILED: "Failed";
1444
+ readonly IN_PROGRESS: "InProgress";
1445
+ readonly STOPPED: "Stopped";
1446
+ readonly STOPPING: "Stopping";
1447
+ };
1448
+ export type TrialComponentPrimaryStatus =
1449
+ (typeof TrialComponentPrimaryStatus)[keyof typeof TrialComponentPrimaryStatus];
1392
1450
  export interface TrialComponentStatus {
1393
1451
  PrimaryStatus?: TrialComponentPrimaryStatus | string;
1394
1452
  Message?: string;
@@ -1476,14 +1534,16 @@ export interface DataCaptureConfigSummary {
1476
1534
  DestinationS3Uri: string | undefined;
1477
1535
  KmsKeyId: string | undefined;
1478
1536
  }
1479
- export declare enum RuleEvaluationStatus {
1480
- ERROR = "Error",
1481
- IN_PROGRESS = "InProgress",
1482
- ISSUES_FOUND = "IssuesFound",
1483
- NO_ISSUES_FOUND = "NoIssuesFound",
1484
- STOPPED = "Stopped",
1485
- STOPPING = "Stopping",
1486
- }
1537
+ export declare const RuleEvaluationStatus: {
1538
+ readonly ERROR: "Error";
1539
+ readonly IN_PROGRESS: "InProgress";
1540
+ readonly ISSUES_FOUND: "IssuesFound";
1541
+ readonly NO_ISSUES_FOUND: "NoIssuesFound";
1542
+ readonly STOPPED: "Stopped";
1543
+ readonly STOPPING: "Stopping";
1544
+ };
1545
+ export type RuleEvaluationStatus =
1546
+ (typeof RuleEvaluationStatus)[keyof typeof RuleEvaluationStatus];
1487
1547
  export interface DebugRuleEvaluationStatus {
1488
1548
  RuleConfigurationName?: string;
1489
1549
  RuleEvaluationJobArn?: string;
@@ -1540,10 +1600,11 @@ export interface DeleteDataQualityJobDefinitionRequest {
1540
1600
  export interface DeleteDeviceFleetRequest {
1541
1601
  DeviceFleetName: string | undefined;
1542
1602
  }
1543
- export declare enum RetentionType {
1544
- Delete = "Delete",
1545
- Retain = "Retain",
1546
- }
1603
+ export declare const RetentionType: {
1604
+ readonly Delete: "Delete";
1605
+ readonly Retain: "Retain";
1606
+ };
1607
+ export type RetentionType = (typeof RetentionType)[keyof typeof RetentionType];
1547
1608
  export interface RetentionPolicy {
1548
1609
  HomeEfsFileSystem?: RetentionType | string;
1549
1610
  }
@@ -1580,10 +1641,12 @@ export interface DeleteFlowDefinitionResponse {}
1580
1641
  export interface DeleteHubRequest {
1581
1642
  HubName: string | undefined;
1582
1643
  }
1583
- export declare enum HubContentType {
1584
- MODEL = "Model",
1585
- NOTEBOOK = "Notebook",
1586
- }
1644
+ export declare const HubContentType: {
1645
+ readonly MODEL: "Model";
1646
+ readonly NOTEBOOK: "Notebook";
1647
+ };
1648
+ export type HubContentType =
1649
+ (typeof HubContentType)[keyof typeof HubContentType];
1587
1650
  export interface DeleteHubContentRequest {
1588
1651
  HubName: string | undefined;
1589
1652
  HubContentType: HubContentType | string | undefined;
@@ -1664,7 +1727,6 @@ export interface DeleteTagsInput {
1664
1727
  ResourceArn: string | undefined;
1665
1728
  TagKeys: string[] | undefined;
1666
1729
  }
1667
- export interface DeleteTagsOutput {}
1668
1730
  export declare const CreateModelCardRequestFilterSensitiveLog: (
1669
1731
  obj: CreateModelCardRequest
1670
1732
  ) => any;