@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.
@@ -84,14 +84,16 @@ export interface DataCaptureConfig {
84
84
  export interface ExplainerConfig {
85
85
  ClarifyExplainerConfig?: ClarifyExplainerConfig;
86
86
  }
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
- }
87
+ export declare const ProductionVariantAcceleratorType: {
88
+ readonly ML_EIA1_LARGE: "ml.eia1.large";
89
+ readonly ML_EIA1_MEDIUM: "ml.eia1.medium";
90
+ readonly ML_EIA1_XLARGE: "ml.eia1.xlarge";
91
+ readonly ML_EIA2_LARGE: "ml.eia2.large";
92
+ readonly ML_EIA2_MEDIUM: "ml.eia2.medium";
93
+ readonly ML_EIA2_XLARGE: "ml.eia2.xlarge";
94
+ };
95
+ export type ProductionVariantAcceleratorType =
96
+ (typeof ProductionVariantAcceleratorType)[keyof typeof ProductionVariantAcceleratorType];
95
97
  export interface ProductionVariantCoreDumpConfig {
96
98
  DestinationS3Uri: string | undefined;
97
99
  KmsKeyId?: string;
@@ -136,11 +138,12 @@ export interface CreateExperimentRequest {
136
138
  export interface CreateExperimentResponse {
137
139
  ExperimentArn?: string;
138
140
  }
139
- export declare enum FeatureType {
140
- FRACTIONAL = "Fractional",
141
- INTEGRAL = "Integral",
142
- STRING = "String",
143
- }
141
+ export declare const FeatureType: {
142
+ readonly FRACTIONAL: "Fractional";
143
+ readonly INTEGRAL: "Integral";
144
+ readonly STRING: "String";
145
+ };
146
+ export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
144
147
  export interface FeatureDefinition {
145
148
  FeatureName?: string;
146
149
  FeatureType?: FeatureType | string;
@@ -155,10 +158,11 @@ export interface S3StorageConfig {
155
158
  KmsKeyId?: string;
156
159
  ResolvedOutputS3Uri?: string;
157
160
  }
158
- export declare enum TableFormat {
159
- GLUE = "Glue",
160
- ICEBERG = "Iceberg",
161
- }
161
+ export declare const TableFormat: {
162
+ readonly GLUE: "Glue";
163
+ readonly ICEBERG: "Iceberg";
164
+ };
165
+ export type TableFormat = (typeof TableFormat)[keyof typeof TableFormat];
162
166
  export interface OfflineStoreConfig {
163
167
  S3StorageConfig: S3StorageConfig | undefined;
164
168
  DisableGlueTableCreation?: boolean;
@@ -276,12 +280,14 @@ export interface ResourceLimits {
276
280
  MaxParallelTrainingJobs: number | undefined;
277
281
  MaxRuntimeInSeconds?: number;
278
282
  }
279
- export declare enum HyperParameterTuningJobStrategyType {
280
- BAYESIAN = "Bayesian",
281
- GRID = "Grid",
282
- HYPERBAND = "Hyperband",
283
- RANDOM = "Random",
284
- }
283
+ export declare const HyperParameterTuningJobStrategyType: {
284
+ readonly BAYESIAN: "Bayesian";
285
+ readonly GRID: "Grid";
286
+ readonly HYPERBAND: "Hyperband";
287
+ readonly RANDOM: "Random";
288
+ };
289
+ export type HyperParameterTuningJobStrategyType =
290
+ (typeof HyperParameterTuningJobStrategyType)[keyof typeof HyperParameterTuningJobStrategyType];
285
291
  export interface HyperbandStrategyConfig {
286
292
  MinResource?: number;
287
293
  MaxResource?: number;
@@ -289,10 +295,12 @@ export interface HyperbandStrategyConfig {
289
295
  export interface HyperParameterTuningJobStrategyConfig {
290
296
  HyperbandStrategyConfig?: HyperbandStrategyConfig;
291
297
  }
292
- export declare enum TrainingJobEarlyStoppingType {
293
- AUTO = "Auto",
294
- OFF = "Off",
295
- }
298
+ export declare const TrainingJobEarlyStoppingType: {
299
+ readonly AUTO: "Auto";
300
+ readonly OFF: "Off";
301
+ };
302
+ export type TrainingJobEarlyStoppingType =
303
+ (typeof TrainingJobEarlyStoppingType)[keyof typeof TrainingJobEarlyStoppingType];
296
304
  export interface TuningJobCompletionCriteria {
297
305
  TargetObjectiveMetricValue?: number;
298
306
  BestObjectiveNotImproving?: BestObjectiveNotImproving;
@@ -314,9 +322,11 @@ export interface HyperParameterAlgorithmSpecification {
314
322
  AlgorithmName?: string;
315
323
  MetricDefinitions?: MetricDefinition[];
316
324
  }
317
- export declare enum HyperParameterTuningAllocationStrategy {
318
- PRIORITIZED = "Prioritized",
319
- }
325
+ export declare const HyperParameterTuningAllocationStrategy: {
326
+ readonly PRIORITIZED: "Prioritized";
327
+ };
328
+ export type HyperParameterTuningAllocationStrategy =
329
+ (typeof HyperParameterTuningAllocationStrategy)[keyof typeof HyperParameterTuningAllocationStrategy];
320
330
  export interface HyperParameterTuningInstanceConfig {
321
331
  InstanceType: TrainingInstanceType | string | undefined;
322
332
  InstanceCount: number | undefined;
@@ -356,10 +366,12 @@ export interface HyperParameterTrainingJobDefinition {
356
366
  export interface ParentHyperParameterTuningJob {
357
367
  HyperParameterTuningJobName?: string;
358
368
  }
359
- export declare enum HyperParameterTuningJobWarmStartType {
360
- IDENTICAL_DATA_AND_ALGORITHM = "IdenticalDataAndAlgorithm",
361
- TRANSFER_LEARNING = "TransferLearning",
362
- }
369
+ export declare const HyperParameterTuningJobWarmStartType: {
370
+ readonly IDENTICAL_DATA_AND_ALGORITHM: "IdenticalDataAndAlgorithm";
371
+ readonly TRANSFER_LEARNING: "TransferLearning";
372
+ };
373
+ export type HyperParameterTuningJobWarmStartType =
374
+ (typeof HyperParameterTuningJobWarmStartType)[keyof typeof HyperParameterTuningJobWarmStartType];
363
375
  export interface HyperParameterTuningJobWarmStartConfig {
364
376
  ParentHyperParameterTuningJobs: ParentHyperParameterTuningJob[] | undefined;
365
377
  WarmStartType: HyperParameterTuningJobWarmStartType | string | undefined;
@@ -385,21 +397,25 @@ export interface CreateImageRequest {
385
397
  export interface CreateImageResponse {
386
398
  ImageArn?: string;
387
399
  }
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
- }
400
+ export declare const JobType: {
401
+ readonly INFERENCE: "INFERENCE";
402
+ readonly NOTEBOOK_KERNEL: "NOTEBOOK_KERNEL";
403
+ readonly TRAINING: "TRAINING";
404
+ };
405
+ export type JobType = (typeof JobType)[keyof typeof JobType];
406
+ export declare const Processor: {
407
+ readonly CPU: "CPU";
408
+ readonly GPU: "GPU";
409
+ };
410
+ export type Processor = (typeof Processor)[keyof typeof Processor];
411
+ export declare const VendorGuidance: {
412
+ readonly ARCHIVED: "ARCHIVED";
413
+ readonly NOT_PROVIDED: "NOT_PROVIDED";
414
+ readonly STABLE: "STABLE";
415
+ readonly TO_BE_ARCHIVED: "TO_BE_ARCHIVED";
416
+ };
417
+ export type VendorGuidance =
418
+ (typeof VendorGuidance)[keyof typeof VendorGuidance];
403
419
  export interface CreateImageVersionRequest {
404
420
  BaseImage: string | undefined;
405
421
  ClientToken?: string;
@@ -421,80 +437,83 @@ export interface InferenceExperimentDataStorageConfig {
421
437
  KmsKey?: string;
422
438
  ContentType?: CaptureContentTypeHeader;
423
439
  }
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
- }
440
+ export declare const ModelInfrastructureType: {
441
+ readonly REAL_TIME_INFERENCE: "RealTimeInference";
442
+ };
443
+ export type ModelInfrastructureType =
444
+ (typeof ModelInfrastructureType)[keyof typeof ModelInfrastructureType];
445
+ export declare const _InstanceType: {
446
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
447
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
448
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
449
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
450
+ readonly ML_C5D_18XLARGE: "ml.c5d.18xlarge";
451
+ readonly ML_C5D_2XLARGE: "ml.c5d.2xlarge";
452
+ readonly ML_C5D_4XLARGE: "ml.c5d.4xlarge";
453
+ readonly ML_C5D_9XLARGE: "ml.c5d.9xlarge";
454
+ readonly ML_C5D_XLARGE: "ml.c5d.xlarge";
455
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
456
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
457
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
458
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
459
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
460
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
461
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
462
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
463
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
464
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
465
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
466
+ readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
467
+ readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
468
+ readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
469
+ readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
470
+ readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
471
+ readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
472
+ readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
473
+ readonly ML_G5_XLARGE: "ml.g5.xlarge";
474
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
475
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
476
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
477
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
478
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
479
+ readonly ML_M5D_12XLARGE: "ml.m5d.12xlarge";
480
+ readonly ML_M5D_16XLARGE: "ml.m5d.16xlarge";
481
+ readonly ML_M5D_24XLARGE: "ml.m5d.24xlarge";
482
+ readonly ML_M5D_2XLARGE: "ml.m5d.2xlarge";
483
+ readonly ML_M5D_4XLARGE: "ml.m5d.4xlarge";
484
+ readonly ML_M5D_8XLARGE: "ml.m5d.8xlarge";
485
+ readonly ML_M5D_LARGE: "ml.m5d.large";
486
+ readonly ML_M5D_XLARGE: "ml.m5d.xlarge";
487
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
488
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
489
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
490
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
491
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
492
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
493
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
494
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
495
+ readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
496
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
497
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
498
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
499
+ readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
500
+ readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
501
+ readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
502
+ readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
503
+ readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
504
+ readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
505
+ readonly ML_R5_LARGE: "ml.r5.large";
506
+ readonly ML_R5_XLARGE: "ml.r5.xlarge";
507
+ readonly ML_T2_2XLARGE: "ml.t2.2xlarge";
508
+ readonly ML_T2_LARGE: "ml.t2.large";
509
+ readonly ML_T2_MEDIUM: "ml.t2.medium";
510
+ readonly ML_T2_XLARGE: "ml.t2.xlarge";
511
+ readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
512
+ readonly ML_T3_LARGE: "ml.t3.large";
513
+ readonly ML_T3_MEDIUM: "ml.t3.medium";
514
+ readonly ML_T3_XLARGE: "ml.t3.xlarge";
515
+ };
516
+ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
498
517
  export interface RealTimeInferenceConfig {
499
518
  InstanceType: _InstanceType | string | undefined;
500
519
  InstanceCount: number | undefined;
@@ -520,9 +539,11 @@ export interface ShadowModeConfig {
520
539
  SourceModelVariantName: string | undefined;
521
540
  ShadowModelVariants: ShadowModelVariantConfig[] | undefined;
522
541
  }
523
- export declare enum InferenceExperimentType {
524
- SHADOW_MODE = "ShadowMode",
525
- }
542
+ export declare const InferenceExperimentType: {
543
+ readonly SHADOW_MODE: "ShadowMode";
544
+ };
545
+ export type InferenceExperimentType =
546
+ (typeof InferenceExperimentType)[keyof typeof InferenceExperimentType];
526
547
  export interface CreateInferenceExperimentRequest {
527
548
  Name: string | undefined;
528
549
  Type: InferenceExperimentType | string | undefined;
@@ -573,9 +594,10 @@ export interface Phase {
573
594
  SpawnRate?: number;
574
595
  DurationInSeconds?: number;
575
596
  }
576
- export declare enum TrafficType {
577
- PHASES = "PHASES",
578
- }
597
+ export declare const TrafficType: {
598
+ readonly PHASES: "PHASES";
599
+ };
600
+ export type TrafficType = (typeof TrafficType)[keyof typeof TrafficType];
579
601
  export interface TrafficPattern {
580
602
  TrafficType?: TrafficType | string;
581
603
  Phases?: Phase[];
@@ -596,10 +618,12 @@ export interface RecommendationJobInputConfig {
596
618
  VpcConfig?: RecommendationJobVpcConfig;
597
619
  ModelName?: string;
598
620
  }
599
- export declare enum RecommendationJobType {
600
- ADVANCED = "Advanced",
601
- DEFAULT = "Default",
602
- }
621
+ export declare const RecommendationJobType: {
622
+ readonly ADVANCED: "Advanced";
623
+ readonly DEFAULT: "Default";
624
+ };
625
+ export type RecommendationJobType =
626
+ (typeof RecommendationJobType)[keyof typeof RecommendationJobType];
603
627
  export interface RecommendationJobCompiledOutputConfig {
604
628
  S3OutputUri?: string;
605
629
  }
@@ -696,10 +720,12 @@ export interface CreateLabelingJobRequest {
696
720
  export interface CreateLabelingJobResponse {
697
721
  LabelingJobArn: string | undefined;
698
722
  }
699
- export declare enum InferenceExecutionMode {
700
- DIRECT = "Direct",
701
- SERIAL = "Serial",
702
- }
723
+ export declare const InferenceExecutionMode: {
724
+ readonly DIRECT: "Direct";
725
+ readonly SERIAL: "Serial";
726
+ };
727
+ export type InferenceExecutionMode =
728
+ (typeof InferenceExecutionMode)[keyof typeof InferenceExecutionMode];
703
729
  export interface InferenceExecutionConfig {
704
730
  Mode: InferenceExecutionMode | string | undefined;
705
731
  }
@@ -748,12 +774,14 @@ export interface CreateModelBiasJobDefinitionRequest {
748
774
  export interface CreateModelBiasJobDefinitionResponse {
749
775
  JobDefinitionArn: string | undefined;
750
776
  }
751
- export declare enum ModelCardStatus {
752
- APPROVED = "Approved",
753
- ARCHIVED = "Archived",
754
- DRAFT = "Draft",
755
- PENDINGREVIEW = "PendingReview",
756
- }
777
+ export declare const ModelCardStatus: {
778
+ readonly APPROVED: "Approved";
779
+ readonly ARCHIVED: "Archived";
780
+ readonly DRAFT: "Draft";
781
+ readonly PENDINGREVIEW: "PendingReview";
782
+ };
783
+ export type ModelCardStatus =
784
+ (typeof ModelCardStatus)[keyof typeof ModelCardStatus];
757
785
  export interface ModelCardSecurityConfig {
758
786
  KmsKeyId?: string;
759
787
  }
@@ -900,11 +928,13 @@ export interface CreateModelPackageGroupInput {
900
928
  export interface CreateModelPackageGroupOutput {
901
929
  ModelPackageGroupArn: string | undefined;
902
930
  }
903
- export declare enum MonitoringProblemType {
904
- BINARY_CLASSIFICATION = "BinaryClassification",
905
- MULTICLASS_CLASSIFICATION = "MulticlassClassification",
906
- REGRESSION = "Regression",
907
- }
931
+ export declare const MonitoringProblemType: {
932
+ readonly BINARY_CLASSIFICATION: "BinaryClassification";
933
+ readonly MULTICLASS_CLASSIFICATION: "MulticlassClassification";
934
+ readonly REGRESSION: "Regression";
935
+ };
936
+ export type MonitoringProblemType =
937
+ (typeof MonitoringProblemType)[keyof typeof MonitoringProblemType];
908
938
  export interface ModelQualityAppSpecification {
909
939
  ImageUri: string | undefined;
910
940
  ContainerEntrypoint?: string[];
@@ -970,12 +1000,14 @@ export interface MonitoringJobDefinition {
970
1000
  NetworkConfig?: NetworkConfig;
971
1001
  RoleArn: string | undefined;
972
1002
  }
973
- export declare enum MonitoringType {
974
- DATA_QUALITY = "DataQuality",
975
- MODEL_BIAS = "ModelBias",
976
- MODEL_EXPLAINABILITY = "ModelExplainability",
977
- MODEL_QUALITY = "ModelQuality",
978
- }
1003
+ export declare const MonitoringType: {
1004
+ readonly DATA_QUALITY: "DataQuality";
1005
+ readonly MODEL_BIAS: "ModelBias";
1006
+ readonly MODEL_EXPLAINABILITY: "ModelExplainability";
1007
+ readonly MODEL_QUALITY: "ModelQuality";
1008
+ };
1009
+ export type MonitoringType =
1010
+ (typeof MonitoringType)[keyof typeof MonitoringType];
979
1011
  export interface ScheduleConfig {
980
1012
  ScheduleExpression: string | undefined;
981
1013
  }
@@ -993,25 +1025,30 @@ export interface CreateMonitoringScheduleRequest {
993
1025
  export interface CreateMonitoringScheduleResponse {
994
1026
  MonitoringScheduleArn: string | undefined;
995
1027
  }
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
- }
1028
+ export declare const NotebookInstanceAcceleratorType: {
1029
+ readonly ML_EIA1_LARGE: "ml.eia1.large";
1030
+ readonly ML_EIA1_MEDIUM: "ml.eia1.medium";
1031
+ readonly ML_EIA1_XLARGE: "ml.eia1.xlarge";
1032
+ readonly ML_EIA2_LARGE: "ml.eia2.large";
1033
+ readonly ML_EIA2_MEDIUM: "ml.eia2.medium";
1034
+ readonly ML_EIA2_XLARGE: "ml.eia2.xlarge";
1035
+ };
1036
+ export type NotebookInstanceAcceleratorType =
1037
+ (typeof NotebookInstanceAcceleratorType)[keyof typeof NotebookInstanceAcceleratorType];
1038
+ export declare const DirectInternetAccess: {
1039
+ readonly DISABLED: "Disabled";
1040
+ readonly ENABLED: "Enabled";
1041
+ };
1042
+ export type DirectInternetAccess =
1043
+ (typeof DirectInternetAccess)[keyof typeof DirectInternetAccess];
1008
1044
  export interface InstanceMetadataServiceConfiguration {
1009
1045
  MinimumInstanceMetadataServiceVersion: string | undefined;
1010
1046
  }
1011
- export declare enum RootAccess {
1012
- DISABLED = "Disabled",
1013
- ENABLED = "Enabled",
1014
- }
1047
+ export declare const RootAccess: {
1048
+ readonly DISABLED: "Disabled";
1049
+ readonly ENABLED: "Enabled";
1050
+ };
1051
+ export type RootAccess = (typeof RootAccess)[keyof typeof RootAccess];
1015
1052
  export interface CreateNotebookInstanceInput {
1016
1053
  NotebookInstanceName: string | undefined;
1017
1054
  InstanceType: _InstanceType | string | undefined;
@@ -1089,25 +1126,32 @@ export interface ExperimentConfig {
1089
1126
  TrialComponentDisplayName?: string;
1090
1127
  RunName?: string;
1091
1128
  }
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
- }
1129
+ export declare const DataDistributionType: {
1130
+ readonly FULLYREPLICATED: "FullyReplicated";
1131
+ readonly SHARDEDBYS3KEY: "ShardedByS3Key";
1132
+ };
1133
+ export type DataDistributionType =
1134
+ (typeof DataDistributionType)[keyof typeof DataDistributionType];
1135
+ export declare const InputMode: {
1136
+ readonly FILE: "File";
1137
+ readonly PIPE: "Pipe";
1138
+ };
1139
+ export type InputMode = (typeof InputMode)[keyof typeof InputMode];
1140
+ export declare const RedshiftResultCompressionType: {
1141
+ readonly BZIP2: "BZIP2";
1142
+ readonly GZIP: "GZIP";
1143
+ readonly NONE: "None";
1144
+ readonly SNAPPY: "SNAPPY";
1145
+ readonly ZSTD: "ZSTD";
1146
+ };
1147
+ export type RedshiftResultCompressionType =
1148
+ (typeof RedshiftResultCompressionType)[keyof typeof RedshiftResultCompressionType];
1149
+ export declare const RedshiftResultFormat: {
1150
+ readonly CSV: "CSV";
1151
+ readonly PARQUET: "PARQUET";
1152
+ };
1153
+ export type RedshiftResultFormat =
1154
+ (typeof RedshiftResultFormat)[keyof typeof RedshiftResultFormat];
1111
1155
  export interface RedshiftDatasetDefinition {
1112
1156
  ClusterId: string | undefined;
1113
1157
  Database: string | undefined;
@@ -1126,14 +1170,18 @@ export interface DatasetDefinition {
1126
1170
  DataDistributionType?: DataDistributionType | string;
1127
1171
  InputMode?: InputMode | string;
1128
1172
  }
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
- }
1173
+ export declare const ProcessingS3CompressionType: {
1174
+ readonly GZIP: "Gzip";
1175
+ readonly NONE: "None";
1176
+ };
1177
+ export type ProcessingS3CompressionType =
1178
+ (typeof ProcessingS3CompressionType)[keyof typeof ProcessingS3CompressionType];
1179
+ export declare const ProcessingS3DataType: {
1180
+ readonly MANIFEST_FILE: "ManifestFile";
1181
+ readonly S3_PREFIX: "S3Prefix";
1182
+ };
1183
+ export type ProcessingS3DataType =
1184
+ (typeof ProcessingS3DataType)[keyof typeof ProcessingS3DataType];
1137
1185
  export interface ProcessingS3Input {
1138
1186
  S3Uri: string | undefined;
1139
1187
  LocalPath?: string;
@@ -1229,10 +1277,12 @@ export interface CreateSpaceRequest {
1229
1277
  export interface CreateSpaceResponse {
1230
1278
  SpaceArn?: string;
1231
1279
  }
1232
- export declare enum StudioLifecycleConfigAppType {
1233
- JupyterServer = "JupyterServer",
1234
- KernelGateway = "KernelGateway",
1235
- }
1280
+ export declare const StudioLifecycleConfigAppType: {
1281
+ readonly JupyterServer: "JupyterServer";
1282
+ readonly KernelGateway: "KernelGateway";
1283
+ };
1284
+ export type StudioLifecycleConfigAppType =
1285
+ (typeof StudioLifecycleConfigAppType)[keyof typeof StudioLifecycleConfigAppType];
1236
1286
  export interface CreateStudioLifecycleConfigRequest {
1237
1287
  StudioLifecycleConfigName: string | undefined;
1238
1288
  StudioLifecycleConfigContent: string | undefined;
@@ -1306,10 +1356,11 @@ export interface CreateTrainingJobRequest {
1306
1356
  export interface CreateTrainingJobResponse {
1307
1357
  TrainingJobArn: string | undefined;
1308
1358
  }
1309
- export declare enum JoinSource {
1310
- INPUT = "Input",
1311
- NONE = "None",
1312
- }
1359
+ export declare const JoinSource: {
1360
+ readonly INPUT: "Input";
1361
+ readonly NONE: "None";
1362
+ };
1363
+ export type JoinSource = (typeof JoinSource)[keyof typeof JoinSource];
1313
1364
  export interface DataProcessing {
1314
1365
  InputFilter?: string;
1315
1366
  OutputFilter?: string;
@@ -1382,13 +1433,15 @@ export declare namespace TrialComponentParameterValue {
1382
1433
  visitor: Visitor<T>
1383
1434
  ) => T;
1384
1435
  }
1385
- export declare enum TrialComponentPrimaryStatus {
1386
- COMPLETED = "Completed",
1387
- FAILED = "Failed",
1388
- IN_PROGRESS = "InProgress",
1389
- STOPPED = "Stopped",
1390
- STOPPING = "Stopping",
1391
- }
1436
+ export declare const TrialComponentPrimaryStatus: {
1437
+ readonly COMPLETED: "Completed";
1438
+ readonly FAILED: "Failed";
1439
+ readonly IN_PROGRESS: "InProgress";
1440
+ readonly STOPPED: "Stopped";
1441
+ readonly STOPPING: "Stopping";
1442
+ };
1443
+ export type TrialComponentPrimaryStatus =
1444
+ (typeof TrialComponentPrimaryStatus)[keyof typeof TrialComponentPrimaryStatus];
1392
1445
  export interface TrialComponentStatus {
1393
1446
  PrimaryStatus?: TrialComponentPrimaryStatus | string;
1394
1447
  Message?: string;
@@ -1476,14 +1529,16 @@ export interface DataCaptureConfigSummary {
1476
1529
  DestinationS3Uri: string | undefined;
1477
1530
  KmsKeyId: string | undefined;
1478
1531
  }
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
- }
1532
+ export declare const RuleEvaluationStatus: {
1533
+ readonly ERROR: "Error";
1534
+ readonly IN_PROGRESS: "InProgress";
1535
+ readonly ISSUES_FOUND: "IssuesFound";
1536
+ readonly NO_ISSUES_FOUND: "NoIssuesFound";
1537
+ readonly STOPPED: "Stopped";
1538
+ readonly STOPPING: "Stopping";
1539
+ };
1540
+ export type RuleEvaluationStatus =
1541
+ (typeof RuleEvaluationStatus)[keyof typeof RuleEvaluationStatus];
1487
1542
  export interface DebugRuleEvaluationStatus {
1488
1543
  RuleConfigurationName?: string;
1489
1544
  RuleEvaluationJobArn?: string;
@@ -1540,10 +1595,11 @@ export interface DeleteDataQualityJobDefinitionRequest {
1540
1595
  export interface DeleteDeviceFleetRequest {
1541
1596
  DeviceFleetName: string | undefined;
1542
1597
  }
1543
- export declare enum RetentionType {
1544
- Delete = "Delete",
1545
- Retain = "Retain",
1546
- }
1598
+ export declare const RetentionType: {
1599
+ readonly Delete: "Delete";
1600
+ readonly Retain: "Retain";
1601
+ };
1602
+ export type RetentionType = (typeof RetentionType)[keyof typeof RetentionType];
1547
1603
  export interface RetentionPolicy {
1548
1604
  HomeEfsFileSystem?: RetentionType | string;
1549
1605
  }
@@ -1580,10 +1636,12 @@ export interface DeleteFlowDefinitionResponse {}
1580
1636
  export interface DeleteHubRequest {
1581
1637
  HubName: string | undefined;
1582
1638
  }
1583
- export declare enum HubContentType {
1584
- MODEL = "Model",
1585
- NOTEBOOK = "Notebook",
1586
- }
1639
+ export declare const HubContentType: {
1640
+ readonly MODEL: "Model";
1641
+ readonly NOTEBOOK: "Notebook";
1642
+ };
1643
+ export type HubContentType =
1644
+ (typeof HubContentType)[keyof typeof HubContentType];
1587
1645
  export interface DeleteHubContentRequest {
1588
1646
  HubName: string | undefined;
1589
1647
  HubContentType: HubContentType | string | undefined;