@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.
@@ -203,16 +203,17 @@ export interface DeployedImage {
203
203
  ResolvedImage?: string;
204
204
  ResolutionTime?: Date;
205
205
  }
206
- export declare enum StageStatus {
207
- Creating = "CREATING",
208
- Deployed = "DEPLOYED",
209
- Failed = "FAILED",
210
- InProgress = "INPROGRESS",
211
- ReadyToDeploy = "READYTODEPLOY",
212
- Starting = "STARTING",
213
- Stopped = "STOPPED",
214
- Stopping = "STOPPING",
215
- }
206
+ export declare const StageStatus: {
207
+ readonly Creating: "CREATING";
208
+ readonly Deployed: "DEPLOYED";
209
+ readonly Failed: "FAILED";
210
+ readonly InProgress: "INPROGRESS";
211
+ readonly ReadyToDeploy: "READYTODEPLOY";
212
+ readonly Starting: "STARTING";
213
+ readonly Stopped: "STOPPED";
214
+ readonly Stopping: "STOPPING";
215
+ };
216
+ export type StageStatus = (typeof StageStatus)[keyof typeof StageStatus];
216
217
  export interface EdgeDeploymentStatus {
217
218
  StageStatus: StageStatus | string | undefined;
218
219
  EdgeDeploymentSuccessInStage: number | undefined;
@@ -480,15 +481,16 @@ export interface DescribeDeviceFleetResponse {
480
481
  export interface DescribeDomainRequest {
481
482
  DomainId: string | undefined;
482
483
  }
483
- export declare enum DomainStatus {
484
- Delete_Failed = "Delete_Failed",
485
- Deleting = "Deleting",
486
- Failed = "Failed",
487
- InService = "InService",
488
- Pending = "Pending",
489
- Update_Failed = "Update_Failed",
490
- Updating = "Updating",
491
- }
484
+ export declare const DomainStatus: {
485
+ readonly Delete_Failed: "Delete_Failed";
486
+ readonly Deleting: "Deleting";
487
+ readonly Failed: "Failed";
488
+ readonly InService: "InService";
489
+ readonly Pending: "Pending";
490
+ readonly Update_Failed: "Update_Failed";
491
+ readonly Updating: "Updating";
492
+ };
493
+ export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
492
494
  export interface DescribeDomainResponse {
493
495
  DomainArn?: string;
494
496
  DomainId?: string;
@@ -533,18 +535,22 @@ export interface DescribeEdgeDeploymentPlanResponse {
533
535
  export interface DescribeEdgePackagingJobRequest {
534
536
  EdgePackagingJobName: string | undefined;
535
537
  }
536
- export declare enum EdgePackagingJobStatus {
537
- Completed = "COMPLETED",
538
- Failed = "FAILED",
539
- InProgress = "INPROGRESS",
540
- Starting = "STARTING",
541
- Stopped = "STOPPED",
542
- Stopping = "STOPPING",
543
- }
544
- export declare enum EdgePresetDeploymentStatus {
545
- Completed = "COMPLETED",
546
- Failed = "FAILED",
547
- }
538
+ export declare const EdgePackagingJobStatus: {
539
+ readonly Completed: "COMPLETED";
540
+ readonly Failed: "FAILED";
541
+ readonly InProgress: "INPROGRESS";
542
+ readonly Starting: "STARTING";
543
+ readonly Stopped: "STOPPED";
544
+ readonly Stopping: "STOPPING";
545
+ };
546
+ export type EdgePackagingJobStatus =
547
+ (typeof EdgePackagingJobStatus)[keyof typeof EdgePackagingJobStatus];
548
+ export declare const EdgePresetDeploymentStatus: {
549
+ readonly Completed: "COMPLETED";
550
+ readonly Failed: "FAILED";
551
+ };
552
+ export type EdgePresetDeploymentStatus =
553
+ (typeof EdgePresetDeploymentStatus)[keyof typeof EdgePresetDeploymentStatus];
548
554
  export interface EdgePresetDeploymentOutput {
549
555
  Type: EdgePresetDeploymentType | string | undefined;
550
556
  Artifact?: string;
@@ -571,23 +577,26 @@ export interface DescribeEdgePackagingJobResponse {
571
577
  export interface DescribeEndpointInput {
572
578
  EndpointName: string | undefined;
573
579
  }
574
- export declare enum EndpointStatus {
575
- CREATING = "Creating",
576
- DELETING = "Deleting",
577
- FAILED = "Failed",
578
- IN_SERVICE = "InService",
579
- OUT_OF_SERVICE = "OutOfService",
580
- ROLLING_BACK = "RollingBack",
581
- SYSTEM_UPDATING = "SystemUpdating",
582
- UPDATING = "Updating",
583
- }
584
- export declare enum VariantStatus {
585
- ACTIVATING_TRAFFIC = "ActivatingTraffic",
586
- BAKING = "Baking",
587
- CREATING = "Creating",
588
- DELETING = "Deleting",
589
- UPDATING = "Updating",
590
- }
580
+ export declare const EndpointStatus: {
581
+ readonly CREATING: "Creating";
582
+ readonly DELETING: "Deleting";
583
+ readonly FAILED: "Failed";
584
+ readonly IN_SERVICE: "InService";
585
+ readonly OUT_OF_SERVICE: "OutOfService";
586
+ readonly ROLLING_BACK: "RollingBack";
587
+ readonly SYSTEM_UPDATING: "SystemUpdating";
588
+ readonly UPDATING: "Updating";
589
+ };
590
+ export type EndpointStatus =
591
+ (typeof EndpointStatus)[keyof typeof EndpointStatus];
592
+ export declare const VariantStatus: {
593
+ readonly ACTIVATING_TRAFFIC: "ActivatingTraffic";
594
+ readonly BAKING: "Baking";
595
+ readonly CREATING: "Creating";
596
+ readonly DELETING: "Deleting";
597
+ readonly UPDATING: "Updating";
598
+ };
599
+ export type VariantStatus = (typeof VariantStatus)[keyof typeof VariantStatus];
591
600
  export interface ProductionVariantStatus {
592
601
  Status: VariantStatus | string | undefined;
593
602
  StatusMessage?: string;
@@ -675,27 +684,33 @@ export interface DescribeFeatureGroupRequest {
675
684
  FeatureGroupName: string | undefined;
676
685
  NextToken?: string;
677
686
  }
678
- export declare enum FeatureGroupStatus {
679
- CREATED = "Created",
680
- CREATE_FAILED = "CreateFailed",
681
- CREATING = "Creating",
682
- DELETE_FAILED = "DeleteFailed",
683
- DELETING = "Deleting",
684
- }
685
- export declare enum LastUpdateStatusValue {
686
- FAILED = "Failed",
687
- IN_PROGRESS = "InProgress",
688
- SUCCESSFUL = "Successful",
689
- }
687
+ export declare const FeatureGroupStatus: {
688
+ readonly CREATED: "Created";
689
+ readonly CREATE_FAILED: "CreateFailed";
690
+ readonly CREATING: "Creating";
691
+ readonly DELETE_FAILED: "DeleteFailed";
692
+ readonly DELETING: "Deleting";
693
+ };
694
+ export type FeatureGroupStatus =
695
+ (typeof FeatureGroupStatus)[keyof typeof FeatureGroupStatus];
696
+ export declare const LastUpdateStatusValue: {
697
+ readonly FAILED: "Failed";
698
+ readonly IN_PROGRESS: "InProgress";
699
+ readonly SUCCESSFUL: "Successful";
700
+ };
701
+ export type LastUpdateStatusValue =
702
+ (typeof LastUpdateStatusValue)[keyof typeof LastUpdateStatusValue];
690
703
  export interface LastUpdateStatus {
691
704
  Status: LastUpdateStatusValue | string | undefined;
692
705
  FailureReason?: string;
693
706
  }
694
- export declare enum OfflineStoreStatusValue {
695
- ACTIVE = "Active",
696
- BLOCKED = "Blocked",
697
- DISABLED = "Disabled",
698
- }
707
+ export declare const OfflineStoreStatusValue: {
708
+ readonly ACTIVE: "Active";
709
+ readonly BLOCKED: "Blocked";
710
+ readonly DISABLED: "Disabled";
711
+ };
712
+ export type OfflineStoreStatusValue =
713
+ (typeof OfflineStoreStatusValue)[keyof typeof OfflineStoreStatusValue];
699
714
  export interface OfflineStoreStatus {
700
715
  Status: OfflineStoreStatusValue | string | undefined;
701
716
  BlockedReason?: string;
@@ -740,12 +755,14 @@ export interface DescribeFeatureMetadataResponse {
740
755
  export interface DescribeFlowDefinitionRequest {
741
756
  FlowDefinitionName: string | undefined;
742
757
  }
743
- export declare enum FlowDefinitionStatus {
744
- ACTIVE = "Active",
745
- DELETING = "Deleting",
746
- FAILED = "Failed",
747
- INITIALIZING = "Initializing",
748
- }
758
+ export declare const FlowDefinitionStatus: {
759
+ readonly ACTIVE: "Active";
760
+ readonly DELETING: "Deleting";
761
+ readonly FAILED: "Failed";
762
+ readonly INITIALIZING: "Initializing";
763
+ };
764
+ export type FlowDefinitionStatus =
765
+ (typeof FlowDefinitionStatus)[keyof typeof FlowDefinitionStatus];
749
766
  export interface DescribeFlowDefinitionResponse {
750
767
  FlowDefinitionArn: string | undefined;
751
768
  FlowDefinitionName: string | undefined;
@@ -761,15 +778,16 @@ export interface DescribeFlowDefinitionResponse {
761
778
  export interface DescribeHubRequest {
762
779
  HubName: string | undefined;
763
780
  }
764
- export declare enum HubStatus {
765
- CREATE_FAILED = "CreateFailed",
766
- CREATING = "Creating",
767
- DELETE_FAILED = "DeleteFailed",
768
- DELETING = "Deleting",
769
- IN_SERVICE = "InService",
770
- UPDATE_FAILED = "UpdateFailed",
771
- UPDATING = "Updating",
772
- }
781
+ export declare const HubStatus: {
782
+ readonly CREATE_FAILED: "CreateFailed";
783
+ readonly CREATING: "Creating";
784
+ readonly DELETE_FAILED: "DeleteFailed";
785
+ readonly DELETING: "Deleting";
786
+ readonly IN_SERVICE: "InService";
787
+ readonly UPDATE_FAILED: "UpdateFailed";
788
+ readonly UPDATING: "Updating";
789
+ };
790
+ export type HubStatus = (typeof HubStatus)[keyof typeof HubStatus];
773
791
  export interface DescribeHubResponse {
774
792
  HubName: string | undefined;
775
793
  HubArn: string | undefined;
@@ -792,13 +810,15 @@ export interface HubContentDependency {
792
810
  DependencyOriginPath?: string;
793
811
  DependencyCopyPath?: string;
794
812
  }
795
- export declare enum HubContentStatus {
796
- AVAILABLE = "Available",
797
- DELETE_FAILED = "DeleteFailed",
798
- DELETING = "Deleting",
799
- IMPORTING = "Importing",
800
- IMPORT_FAILED = "ImportFailed",
801
- }
813
+ export declare const HubContentStatus: {
814
+ readonly AVAILABLE: "Available";
815
+ readonly DELETE_FAILED: "DeleteFailed";
816
+ readonly DELETING: "Deleting";
817
+ readonly IMPORTING: "Importing";
818
+ readonly IMPORT_FAILED: "ImportFailed";
819
+ };
820
+ export type HubContentStatus =
821
+ (typeof HubContentStatus)[keyof typeof HubContentStatus];
802
822
  export interface DescribeHubContentResponse {
803
823
  HubContentName: string | undefined;
804
824
  HubContentArn: string | undefined;
@@ -820,10 +840,12 @@ export interface DescribeHubContentResponse {
820
840
  export interface DescribeHumanTaskUiRequest {
821
841
  HumanTaskUiName: string | undefined;
822
842
  }
823
- export declare enum HumanTaskUiStatus {
824
- ACTIVE = "Active",
825
- DELETING = "Deleting",
826
- }
843
+ export declare const HumanTaskUiStatus: {
844
+ readonly ACTIVE: "Active";
845
+ readonly DELETING: "Deleting";
846
+ };
847
+ export type HumanTaskUiStatus =
848
+ (typeof HumanTaskUiStatus)[keyof typeof HumanTaskUiStatus];
827
849
  export interface UiTemplateInfo {
828
850
  Url?: string;
829
851
  ContentSha256?: string;
@@ -843,13 +865,15 @@ export interface FinalHyperParameterTuningJobObjectiveMetric {
843
865
  MetricName: string | undefined;
844
866
  Value: number | undefined;
845
867
  }
846
- export declare enum TrainingJobStatus {
847
- COMPLETED = "Completed",
848
- FAILED = "Failed",
849
- IN_PROGRESS = "InProgress",
850
- STOPPED = "Stopped",
851
- STOPPING = "Stopping",
852
- }
868
+ export declare const TrainingJobStatus: {
869
+ readonly COMPLETED: "Completed";
870
+ readonly FAILED: "Failed";
871
+ readonly IN_PROGRESS: "InProgress";
872
+ readonly STOPPED: "Stopped";
873
+ readonly STOPPING: "Stopping";
874
+ };
875
+ export type TrainingJobStatus =
876
+ (typeof TrainingJobStatus)[keyof typeof TrainingJobStatus];
853
877
  export interface HyperParameterTrainingJobSummary {
854
878
  TrainingJobDefinitionName?: string;
855
879
  TrainingJobName: string | undefined;
@@ -867,13 +891,15 @@ export interface HyperParameterTrainingJobSummary {
867
891
  export interface HyperParameterTuningJobConsumedResources {
868
892
  RuntimeInSeconds?: number;
869
893
  }
870
- export declare enum HyperParameterTuningJobStatus {
871
- COMPLETED = "Completed",
872
- FAILED = "Failed",
873
- IN_PROGRESS = "InProgress",
874
- STOPPED = "Stopped",
875
- STOPPING = "Stopping",
876
- }
894
+ export declare const HyperParameterTuningJobStatus: {
895
+ readonly COMPLETED: "Completed";
896
+ readonly FAILED: "Failed";
897
+ readonly IN_PROGRESS: "InProgress";
898
+ readonly STOPPED: "Stopped";
899
+ readonly STOPPING: "Stopping";
900
+ };
901
+ export type HyperParameterTuningJobStatus =
902
+ (typeof HyperParameterTuningJobStatus)[keyof typeof HyperParameterTuningJobStatus];
877
903
  export interface ObjectiveStatusCounters {
878
904
  Succeeded?: number;
879
905
  Pending?: number;
@@ -915,15 +941,16 @@ export interface DescribeHyperParameterTuningJobResponse {
915
941
  export interface DescribeImageRequest {
916
942
  ImageName: string | undefined;
917
943
  }
918
- export declare enum ImageStatus {
919
- CREATED = "CREATED",
920
- CREATE_FAILED = "CREATE_FAILED",
921
- CREATING = "CREATING",
922
- DELETE_FAILED = "DELETE_FAILED",
923
- DELETING = "DELETING",
924
- UPDATE_FAILED = "UPDATE_FAILED",
925
- UPDATING = "UPDATING",
926
- }
944
+ export declare const ImageStatus: {
945
+ readonly CREATED: "CREATED";
946
+ readonly CREATE_FAILED: "CREATE_FAILED";
947
+ readonly CREATING: "CREATING";
948
+ readonly DELETE_FAILED: "DELETE_FAILED";
949
+ readonly DELETING: "DELETING";
950
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
951
+ readonly UPDATING: "UPDATING";
952
+ };
953
+ export type ImageStatus = (typeof ImageStatus)[keyof typeof ImageStatus];
927
954
  export interface DescribeImageResponse {
928
955
  CreationTime?: Date;
929
956
  Description?: string;
@@ -940,13 +967,15 @@ export interface DescribeImageVersionRequest {
940
967
  Version?: number;
941
968
  Alias?: string;
942
969
  }
943
- export declare enum ImageVersionStatus {
944
- CREATED = "CREATED",
945
- CREATE_FAILED = "CREATE_FAILED",
946
- CREATING = "CREATING",
947
- DELETE_FAILED = "DELETE_FAILED",
948
- DELETING = "DELETING",
949
- }
970
+ export declare const ImageVersionStatus: {
971
+ readonly CREATED: "CREATED";
972
+ readonly CREATE_FAILED: "CREATE_FAILED";
973
+ readonly CREATING: "CREATING";
974
+ readonly DELETE_FAILED: "DELETE_FAILED";
975
+ readonly DELETING: "DELETING";
976
+ };
977
+ export type ImageVersionStatus =
978
+ (typeof ImageVersionStatus)[keyof typeof ImageVersionStatus];
950
979
  export interface DescribeImageVersionResponse {
951
980
  BaseImage?: string;
952
981
  ContainerImage?: string;
@@ -974,29 +1003,33 @@ export interface EndpointMetadata {
974
1003
  EndpointStatus?: EndpointStatus | string;
975
1004
  FailureReason?: string;
976
1005
  }
977
- export declare enum ModelVariantStatus {
978
- CREATING = "Creating",
979
- DELETED = "Deleted",
980
- DELETING = "Deleting",
981
- IN_SERVICE = "InService",
982
- UPDATING = "Updating",
983
- }
1006
+ export declare const ModelVariantStatus: {
1007
+ readonly CREATING: "Creating";
1008
+ readonly DELETED: "Deleted";
1009
+ readonly DELETING: "Deleting";
1010
+ readonly IN_SERVICE: "InService";
1011
+ readonly UPDATING: "Updating";
1012
+ };
1013
+ export type ModelVariantStatus =
1014
+ (typeof ModelVariantStatus)[keyof typeof ModelVariantStatus];
984
1015
  export interface ModelVariantConfigSummary {
985
1016
  ModelName: string | undefined;
986
1017
  VariantName: string | undefined;
987
1018
  InfrastructureConfig: ModelInfrastructureConfig | undefined;
988
1019
  Status: ModelVariantStatus | string | undefined;
989
1020
  }
990
- export declare enum InferenceExperimentStatus {
991
- CANCELLED = "Cancelled",
992
- COMPLETED = "Completed",
993
- CREATED = "Created",
994
- CREATING = "Creating",
995
- RUNNING = "Running",
996
- STARTING = "Starting",
997
- STOPPING = "Stopping",
998
- UPDATING = "Updating",
999
- }
1021
+ export declare const InferenceExperimentStatus: {
1022
+ readonly CANCELLED: "Cancelled";
1023
+ readonly COMPLETED: "Completed";
1024
+ readonly CREATED: "Created";
1025
+ readonly CREATING: "Creating";
1026
+ readonly RUNNING: "Running";
1027
+ readonly STARTING: "Starting";
1028
+ readonly STOPPING: "Stopping";
1029
+ readonly UPDATING: "Updating";
1030
+ };
1031
+ export type InferenceExperimentStatus =
1032
+ (typeof InferenceExperimentStatus)[keyof typeof InferenceExperimentStatus];
1000
1033
  export interface DescribeInferenceExperimentResponse {
1001
1034
  Arn: string | undefined;
1002
1035
  Name: string | undefined;
@@ -1056,14 +1089,16 @@ export interface InferenceRecommendation {
1056
1089
  ModelConfiguration: ModelConfiguration | undefined;
1057
1090
  RecommendationId?: string;
1058
1091
  }
1059
- export declare enum RecommendationJobStatus {
1060
- COMPLETED = "COMPLETED",
1061
- FAILED = "FAILED",
1062
- IN_PROGRESS = "IN_PROGRESS",
1063
- PENDING = "PENDING",
1064
- STOPPED = "STOPPED",
1065
- STOPPING = "STOPPING",
1066
- }
1092
+ export declare const RecommendationJobStatus: {
1093
+ readonly COMPLETED: "COMPLETED";
1094
+ readonly FAILED: "FAILED";
1095
+ readonly IN_PROGRESS: "IN_PROGRESS";
1096
+ readonly PENDING: "PENDING";
1097
+ readonly STOPPED: "STOPPED";
1098
+ readonly STOPPING: "STOPPING";
1099
+ };
1100
+ export type RecommendationJobStatus =
1101
+ (typeof RecommendationJobStatus)[keyof typeof RecommendationJobStatus];
1067
1102
  export interface DescribeInferenceRecommendationsJobResponse {
1068
1103
  JobName: string | undefined;
1069
1104
  JobDescription?: string;
@@ -1094,14 +1129,16 @@ export interface LabelingJobOutput {
1094
1129
  OutputDatasetS3Uri: string | undefined;
1095
1130
  FinalActiveLearningModelArn?: string;
1096
1131
  }
1097
- export declare enum LabelingJobStatus {
1098
- COMPLETED = "Completed",
1099
- FAILED = "Failed",
1100
- INITIALIZING = "Initializing",
1101
- IN_PROGRESS = "InProgress",
1102
- STOPPED = "Stopped",
1103
- STOPPING = "Stopping",
1104
- }
1132
+ export declare const LabelingJobStatus: {
1133
+ readonly COMPLETED: "Completed";
1134
+ readonly FAILED: "Failed";
1135
+ readonly INITIALIZING: "Initializing";
1136
+ readonly IN_PROGRESS: "InProgress";
1137
+ readonly STOPPED: "Stopped";
1138
+ readonly STOPPING: "Stopping";
1139
+ };
1140
+ export type LabelingJobStatus =
1141
+ (typeof LabelingJobStatus)[keyof typeof LabelingJobStatus];
1105
1142
  export interface DescribeLabelingJobResponse {
1106
1143
  LabelingJobStatus: LabelingJobStatus | string | undefined;
1107
1144
  LabelCounters: LabelCounters | undefined;
@@ -1169,14 +1206,16 @@ export interface DescribeModelCardRequest {
1169
1206
  ModelCardName: string | undefined;
1170
1207
  ModelCardVersion?: number;
1171
1208
  }
1172
- export declare enum ModelCardProcessingStatus {
1173
- CONTENT_DELETED = "ContentDeleted",
1174
- DELETE_COMPLETED = "DeleteCompleted",
1175
- DELETE_FAILED = "DeleteFailed",
1176
- DELETE_INPROGRESS = "DeleteInProgress",
1177
- DELETE_PENDING = "DeletePending",
1178
- EXPORTJOBS_DELETED = "ExportJobsDeleted",
1179
- }
1209
+ export declare const ModelCardProcessingStatus: {
1210
+ readonly CONTENT_DELETED: "ContentDeleted";
1211
+ readonly DELETE_COMPLETED: "DeleteCompleted";
1212
+ readonly DELETE_FAILED: "DeleteFailed";
1213
+ readonly DELETE_INPROGRESS: "DeleteInProgress";
1214
+ readonly DELETE_PENDING: "DeletePending";
1215
+ readonly EXPORTJOBS_DELETED: "ExportJobsDeleted";
1216
+ };
1217
+ export type ModelCardProcessingStatus =
1218
+ (typeof ModelCardProcessingStatus)[keyof typeof ModelCardProcessingStatus];
1180
1219
  export interface DescribeModelCardResponse {
1181
1220
  ModelCardArn: string | undefined;
1182
1221
  ModelCardName: string | undefined;
@@ -1196,11 +1235,13 @@ export interface DescribeModelCardExportJobRequest {
1196
1235
  export interface ModelCardExportArtifacts {
1197
1236
  S3ExportArtifacts: string | undefined;
1198
1237
  }
1199
- export declare enum ModelCardExportJobStatus {
1200
- COMPLETED = "Completed",
1201
- FAILED = "Failed",
1202
- IN_PROGRESS = "InProgress",
1203
- }
1238
+ export declare const ModelCardExportJobStatus: {
1239
+ readonly COMPLETED: "Completed";
1240
+ readonly FAILED: "Failed";
1241
+ readonly IN_PROGRESS: "InProgress";
1242
+ };
1243
+ export type ModelCardExportJobStatus =
1244
+ (typeof ModelCardExportJobStatus)[keyof typeof ModelCardExportJobStatus];
1204
1245
  export interface DescribeModelCardExportJobResponse {
1205
1246
  ModelCardExportJobName: string | undefined;
1206
1247
  ModelCardExportJobArn: string | undefined;
@@ -1234,12 +1275,14 @@ export interface DescribeModelExplainabilityJobDefinitionResponse {
1234
1275
  export interface DescribeModelPackageInput {
1235
1276
  ModelPackageName: string | undefined;
1236
1277
  }
1237
- export declare enum DetailedModelPackageStatus {
1238
- COMPLETED = "Completed",
1239
- FAILED = "Failed",
1240
- IN_PROGRESS = "InProgress",
1241
- NOT_STARTED = "NotStarted",
1242
- }
1278
+ export declare const DetailedModelPackageStatus: {
1279
+ readonly COMPLETED: "Completed";
1280
+ readonly FAILED: "Failed";
1281
+ readonly IN_PROGRESS: "InProgress";
1282
+ readonly NOT_STARTED: "NotStarted";
1283
+ };
1284
+ export type DetailedModelPackageStatus =
1285
+ (typeof DetailedModelPackageStatus)[keyof typeof DetailedModelPackageStatus];
1243
1286
  export interface ModelPackageStatusItem {
1244
1287
  Name: string | undefined;
1245
1288
  Status: DetailedModelPackageStatus | string | undefined;
@@ -1279,14 +1322,16 @@ export interface DescribeModelPackageOutput {
1279
1322
  export interface DescribeModelPackageGroupInput {
1280
1323
  ModelPackageGroupName: string | undefined;
1281
1324
  }
1282
- export declare enum ModelPackageGroupStatus {
1283
- COMPLETED = "Completed",
1284
- DELETE_FAILED = "DeleteFailed",
1285
- DELETING = "Deleting",
1286
- FAILED = "Failed",
1287
- IN_PROGRESS = "InProgress",
1288
- PENDING = "Pending",
1289
- }
1325
+ export declare const ModelPackageGroupStatus: {
1326
+ readonly COMPLETED: "Completed";
1327
+ readonly DELETE_FAILED: "DeleteFailed";
1328
+ readonly DELETING: "Deleting";
1329
+ readonly FAILED: "Failed";
1330
+ readonly IN_PROGRESS: "InProgress";
1331
+ readonly PENDING: "Pending";
1332
+ };
1333
+ export type ModelPackageGroupStatus =
1334
+ (typeof ModelPackageGroupStatus)[keyof typeof ModelPackageGroupStatus];
1290
1335
  export interface DescribeModelPackageGroupOutput {
1291
1336
  ModelPackageGroupName: string | undefined;
1292
1337
  ModelPackageGroupArn: string | undefined;
@@ -1314,15 +1359,17 @@ export interface DescribeModelQualityJobDefinitionResponse {
1314
1359
  export interface DescribeMonitoringScheduleRequest {
1315
1360
  MonitoringScheduleName: string | undefined;
1316
1361
  }
1317
- export declare enum ExecutionStatus {
1318
- COMPLETED = "Completed",
1319
- COMPLETED_WITH_VIOLATIONS = "CompletedWithViolations",
1320
- FAILED = "Failed",
1321
- IN_PROGRESS = "InProgress",
1322
- PENDING = "Pending",
1323
- STOPPED = "Stopped",
1324
- STOPPING = "Stopping",
1325
- }
1362
+ export declare const ExecutionStatus: {
1363
+ readonly COMPLETED: "Completed";
1364
+ readonly COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations";
1365
+ readonly FAILED: "Failed";
1366
+ readonly IN_PROGRESS: "InProgress";
1367
+ readonly PENDING: "Pending";
1368
+ readonly STOPPED: "Stopped";
1369
+ readonly STOPPING: "Stopping";
1370
+ };
1371
+ export type ExecutionStatus =
1372
+ (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
1326
1373
  export interface MonitoringExecutionSummary {
1327
1374
  MonitoringScheduleName: string | undefined;
1328
1375
  ScheduledTime: Date | undefined;
@@ -1335,12 +1382,14 @@ export interface MonitoringExecutionSummary {
1335
1382
  MonitoringJobDefinitionName?: string;
1336
1383
  MonitoringType?: MonitoringType | string;
1337
1384
  }
1338
- export declare enum ScheduleStatus {
1339
- FAILED = "Failed",
1340
- PENDING = "Pending",
1341
- SCHEDULED = "Scheduled",
1342
- STOPPED = "Stopped",
1343
- }
1385
+ export declare const ScheduleStatus: {
1386
+ readonly FAILED: "Failed";
1387
+ readonly PENDING: "Pending";
1388
+ readonly SCHEDULED: "Scheduled";
1389
+ readonly STOPPED: "Stopped";
1390
+ };
1391
+ export type ScheduleStatus =
1392
+ (typeof ScheduleStatus)[keyof typeof ScheduleStatus];
1344
1393
  export interface DescribeMonitoringScheduleResponse {
1345
1394
  MonitoringScheduleArn: string | undefined;
1346
1395
  MonitoringScheduleName: string | undefined;
@@ -1356,15 +1405,17 @@ export interface DescribeMonitoringScheduleResponse {
1356
1405
  export interface DescribeNotebookInstanceInput {
1357
1406
  NotebookInstanceName: string | undefined;
1358
1407
  }
1359
- export declare enum NotebookInstanceStatus {
1360
- Deleting = "Deleting",
1361
- Failed = "Failed",
1362
- InService = "InService",
1363
- Pending = "Pending",
1364
- Stopped = "Stopped",
1365
- Stopping = "Stopping",
1366
- Updating = "Updating",
1367
- }
1408
+ export declare const NotebookInstanceStatus: {
1409
+ readonly Deleting: "Deleting";
1410
+ readonly Failed: "Failed";
1411
+ readonly InService: "InService";
1412
+ readonly Pending: "Pending";
1413
+ readonly Stopped: "Stopped";
1414
+ readonly Stopping: "Stopping";
1415
+ readonly Updating: "Updating";
1416
+ };
1417
+ export type NotebookInstanceStatus =
1418
+ (typeof NotebookInstanceStatus)[keyof typeof NotebookInstanceStatus];
1368
1419
  export interface DescribeNotebookInstanceOutput {
1369
1420
  NotebookInstanceArn?: string;
1370
1421
  NotebookInstanceName?: string;
@@ -1403,9 +1454,11 @@ export interface DescribeNotebookInstanceLifecycleConfigOutput {
1403
1454
  export interface DescribePipelineRequest {
1404
1455
  PipelineName: string | undefined;
1405
1456
  }
1406
- export declare enum PipelineStatus {
1407
- ACTIVE = "Active",
1408
- }
1457
+ export declare const PipelineStatus: {
1458
+ readonly ACTIVE: "Active";
1459
+ };
1460
+ export type PipelineStatus =
1461
+ (typeof PipelineStatus)[keyof typeof PipelineStatus];
1409
1462
  export interface DescribePipelineResponse {
1410
1463
  PipelineArn?: string;
1411
1464
  PipelineName?: string;
@@ -1431,13 +1484,15 @@ export interface DescribePipelineDefinitionForExecutionResponse {
1431
1484
  export interface DescribePipelineExecutionRequest {
1432
1485
  PipelineExecutionArn: string | undefined;
1433
1486
  }
1434
- export declare enum PipelineExecutionStatus {
1435
- EXECUTING = "Executing",
1436
- FAILED = "Failed",
1437
- STOPPED = "Stopped",
1438
- STOPPING = "Stopping",
1439
- SUCCEEDED = "Succeeded",
1440
- }
1487
+ export declare const PipelineExecutionStatus: {
1488
+ readonly EXECUTING: "Executing";
1489
+ readonly FAILED: "Failed";
1490
+ readonly STOPPED: "Stopped";
1491
+ readonly STOPPING: "Stopping";
1492
+ readonly SUCCEEDED: "Succeeded";
1493
+ };
1494
+ export type PipelineExecutionStatus =
1495
+ (typeof PipelineExecutionStatus)[keyof typeof PipelineExecutionStatus];
1441
1496
  export interface PipelineExperimentConfig {
1442
1497
  ExperimentName?: string;
1443
1498
  TrialName?: string;
@@ -1459,13 +1514,15 @@ export interface DescribePipelineExecutionResponse {
1459
1514
  export interface DescribeProcessingJobRequest {
1460
1515
  ProcessingJobName: string | undefined;
1461
1516
  }
1462
- export declare enum ProcessingJobStatus {
1463
- COMPLETED = "Completed",
1464
- FAILED = "Failed",
1465
- IN_PROGRESS = "InProgress",
1466
- STOPPED = "Stopped",
1467
- STOPPING = "Stopping",
1468
- }
1517
+ export declare const ProcessingJobStatus: {
1518
+ readonly COMPLETED: "Completed";
1519
+ readonly FAILED: "Failed";
1520
+ readonly IN_PROGRESS: "InProgress";
1521
+ readonly STOPPED: "Stopped";
1522
+ readonly STOPPING: "Stopping";
1523
+ };
1524
+ export type ProcessingJobStatus =
1525
+ (typeof ProcessingJobStatus)[keyof typeof ProcessingJobStatus];
1469
1526
  export interface DescribeProcessingJobResponse {
1470
1527
  ProcessingInputs?: ProcessingInput[];
1471
1528
  ProcessingOutputConfig?: ProcessingOutputConfig;
@@ -1492,18 +1549,19 @@ export interface DescribeProcessingJobResponse {
1492
1549
  export interface DescribeProjectInput {
1493
1550
  ProjectName: string | undefined;
1494
1551
  }
1495
- export declare enum ProjectStatus {
1496
- CREATE_COMPLETED = "CreateCompleted",
1497
- CREATE_FAILED = "CreateFailed",
1498
- CREATE_IN_PROGRESS = "CreateInProgress",
1499
- DELETE_COMPLETED = "DeleteCompleted",
1500
- DELETE_FAILED = "DeleteFailed",
1501
- DELETE_IN_PROGRESS = "DeleteInProgress",
1502
- PENDING = "Pending",
1503
- UPDATE_COMPLETED = "UpdateCompleted",
1504
- UPDATE_FAILED = "UpdateFailed",
1505
- UPDATE_IN_PROGRESS = "UpdateInProgress",
1506
- }
1552
+ export declare const ProjectStatus: {
1553
+ readonly CREATE_COMPLETED: "CreateCompleted";
1554
+ readonly CREATE_FAILED: "CreateFailed";
1555
+ readonly CREATE_IN_PROGRESS: "CreateInProgress";
1556
+ readonly DELETE_COMPLETED: "DeleteCompleted";
1557
+ readonly DELETE_FAILED: "DeleteFailed";
1558
+ readonly DELETE_IN_PROGRESS: "DeleteInProgress";
1559
+ readonly PENDING: "Pending";
1560
+ readonly UPDATE_COMPLETED: "UpdateCompleted";
1561
+ readonly UPDATE_FAILED: "UpdateFailed";
1562
+ readonly UPDATE_IN_PROGRESS: "UpdateInProgress";
1563
+ };
1564
+ export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus];
1507
1565
  export interface ServiceCatalogProvisionedProductDetails {
1508
1566
  ProvisionedProductId?: string;
1509
1567
  ProvisionedProductStatusMessage?: string;
@@ -1527,15 +1585,16 @@ export interface DescribeSpaceRequest {
1527
1585
  DomainId: string | undefined;
1528
1586
  SpaceName: string | undefined;
1529
1587
  }
1530
- export declare enum SpaceStatus {
1531
- Delete_Failed = "Delete_Failed",
1532
- Deleting = "Deleting",
1533
- Failed = "Failed",
1534
- InService = "InService",
1535
- Pending = "Pending",
1536
- Update_Failed = "Update_Failed",
1537
- Updating = "Updating",
1538
- }
1588
+ export declare const SpaceStatus: {
1589
+ readonly Delete_Failed: "Delete_Failed";
1590
+ readonly Deleting: "Deleting";
1591
+ readonly Failed: "Failed";
1592
+ readonly InService: "InService";
1593
+ readonly Pending: "Pending";
1594
+ readonly Update_Failed: "Update_Failed";
1595
+ readonly Updating: "Updating";
1596
+ };
1597
+ export type SpaceStatus = (typeof SpaceStatus)[keyof typeof SpaceStatus];
1539
1598
  export interface DescribeSpaceResponse {
1540
1599
  DomainId?: string;
1541
1600
  SpaceArn?: string;
@@ -1586,40 +1645,46 @@ export interface ProfilerRuleEvaluationStatus {
1586
1645
  StatusDetails?: string;
1587
1646
  LastModifiedTime?: Date;
1588
1647
  }
1589
- export declare enum ProfilingStatus {
1590
- DISABLED = "Disabled",
1591
- ENABLED = "Enabled",
1592
- }
1593
- export declare enum SecondaryStatus {
1594
- COMPLETED = "Completed",
1595
- DOWNLOADING = "Downloading",
1596
- DOWNLOADING_TRAINING_IMAGE = "DownloadingTrainingImage",
1597
- FAILED = "Failed",
1598
- INTERRUPTED = "Interrupted",
1599
- LAUNCHING_ML_INSTANCES = "LaunchingMLInstances",
1600
- MAX_RUNTIME_EXCEEDED = "MaxRuntimeExceeded",
1601
- MAX_WAIT_TIME_EXCEEDED = "MaxWaitTimeExceeded",
1602
- PREPARING_TRAINING_STACK = "PreparingTrainingStack",
1603
- RESTARTING = "Restarting",
1604
- STARTING = "Starting",
1605
- STOPPED = "Stopped",
1606
- STOPPING = "Stopping",
1607
- TRAINING = "Training",
1608
- UPDATING = "Updating",
1609
- UPLOADING = "Uploading",
1610
- }
1648
+ export declare const ProfilingStatus: {
1649
+ readonly DISABLED: "Disabled";
1650
+ readonly ENABLED: "Enabled";
1651
+ };
1652
+ export type ProfilingStatus =
1653
+ (typeof ProfilingStatus)[keyof typeof ProfilingStatus];
1654
+ export declare const SecondaryStatus: {
1655
+ readonly COMPLETED: "Completed";
1656
+ readonly DOWNLOADING: "Downloading";
1657
+ readonly DOWNLOADING_TRAINING_IMAGE: "DownloadingTrainingImage";
1658
+ readonly FAILED: "Failed";
1659
+ readonly INTERRUPTED: "Interrupted";
1660
+ readonly LAUNCHING_ML_INSTANCES: "LaunchingMLInstances";
1661
+ readonly MAX_RUNTIME_EXCEEDED: "MaxRuntimeExceeded";
1662
+ readonly MAX_WAIT_TIME_EXCEEDED: "MaxWaitTimeExceeded";
1663
+ readonly PREPARING_TRAINING_STACK: "PreparingTrainingStack";
1664
+ readonly RESTARTING: "Restarting";
1665
+ readonly STARTING: "Starting";
1666
+ readonly STOPPED: "Stopped";
1667
+ readonly STOPPING: "Stopping";
1668
+ readonly TRAINING: "Training";
1669
+ readonly UPDATING: "Updating";
1670
+ readonly UPLOADING: "Uploading";
1671
+ };
1672
+ export type SecondaryStatus =
1673
+ (typeof SecondaryStatus)[keyof typeof SecondaryStatus];
1611
1674
  export interface SecondaryStatusTransition {
1612
1675
  Status: SecondaryStatus | string | undefined;
1613
1676
  StartTime: Date | undefined;
1614
1677
  EndTime?: Date;
1615
1678
  StatusMessage?: string;
1616
1679
  }
1617
- export declare enum WarmPoolResourceStatus {
1618
- AVAILABLE = "Available",
1619
- INUSE = "InUse",
1620
- REUSED = "Reused",
1621
- TERMINATED = "Terminated",
1622
- }
1680
+ export declare const WarmPoolResourceStatus: {
1681
+ readonly AVAILABLE: "Available";
1682
+ readonly INUSE: "InUse";
1683
+ readonly REUSED: "Reused";
1684
+ readonly TERMINATED: "Terminated";
1685
+ };
1686
+ export type WarmPoolResourceStatus =
1687
+ (typeof WarmPoolResourceStatus)[keyof typeof WarmPoolResourceStatus];
1623
1688
  export interface WarmPoolStatus {
1624
1689
  Status: WarmPoolResourceStatus | string | undefined;
1625
1690
  ResourceRetainedBillableTimeInSeconds?: number;
@@ -1671,13 +1736,15 @@ export interface DescribeTrainingJobResponse {
1671
1736
  export interface DescribeTransformJobRequest {
1672
1737
  TransformJobName: string | undefined;
1673
1738
  }
1674
- export declare enum TransformJobStatus {
1675
- COMPLETED = "Completed",
1676
- FAILED = "Failed",
1677
- IN_PROGRESS = "InProgress",
1678
- STOPPED = "Stopped",
1679
- STOPPING = "Stopping",
1680
- }
1739
+ export declare const TransformJobStatus: {
1740
+ readonly COMPLETED: "Completed";
1741
+ readonly FAILED: "Failed";
1742
+ readonly IN_PROGRESS: "InProgress";
1743
+ readonly STOPPED: "Stopped";
1744
+ readonly STOPPING: "Stopping";
1745
+ };
1746
+ export type TransformJobStatus =
1747
+ (typeof TransformJobStatus)[keyof typeof TransformJobStatus];
1681
1748
  export interface DescribeTransformJobResponse {
1682
1749
  TransformJobName: string | undefined;
1683
1750
  TransformJobArn: string | undefined;
@@ -1762,15 +1829,17 @@ export interface DescribeUserProfileRequest {
1762
1829
  DomainId: string | undefined;
1763
1830
  UserProfileName: string | undefined;
1764
1831
  }
1765
- export declare enum UserProfileStatus {
1766
- Delete_Failed = "Delete_Failed",
1767
- Deleting = "Deleting",
1768
- Failed = "Failed",
1769
- InService = "InService",
1770
- Pending = "Pending",
1771
- Update_Failed = "Update_Failed",
1772
- Updating = "Updating",
1773
- }
1832
+ export declare const UserProfileStatus: {
1833
+ readonly Delete_Failed: "Delete_Failed";
1834
+ readonly Deleting: "Deleting";
1835
+ readonly Failed: "Failed";
1836
+ readonly InService: "InService";
1837
+ readonly Pending: "Pending";
1838
+ readonly Update_Failed: "Update_Failed";
1839
+ readonly Updating: "Updating";
1840
+ };
1841
+ export type UserProfileStatus =
1842
+ (typeof UserProfileStatus)[keyof typeof UserProfileStatus];
1774
1843
  export interface DescribeUserProfileResponse {
1775
1844
  DomainId?: string;
1776
1845
  UserProfileArn?: string;
@@ -1796,13 +1865,15 @@ export interface OidcConfigForResponse {
1796
1865
  LogoutEndpoint?: string;
1797
1866
  JwksUri?: string;
1798
1867
  }
1799
- export declare enum WorkforceStatus {
1800
- ACTIVE = "Active",
1801
- DELETING = "Deleting",
1802
- FAILED = "Failed",
1803
- INITIALIZING = "Initializing",
1804
- UPDATING = "Updating",
1805
- }
1868
+ export declare const WorkforceStatus: {
1869
+ readonly ACTIVE: "Active";
1870
+ readonly DELETING: "Deleting";
1871
+ readonly FAILED: "Failed";
1872
+ readonly INITIALIZING: "Initializing";
1873
+ readonly UPDATING: "Updating";
1874
+ };
1875
+ export type WorkforceStatus =
1876
+ (typeof WorkforceStatus)[keyof typeof WorkforceStatus];
1806
1877
  export interface WorkforceVpcConfigResponse {
1807
1878
  VpcId: string | undefined;
1808
1879
  SecurityGroupIds: string[] | undefined;
@@ -1853,14 +1924,16 @@ export interface Device {
1853
1924
  Description?: string;
1854
1925
  IotThingName?: string;
1855
1926
  }
1856
- export declare enum DeviceDeploymentStatus {
1857
- Deployed = "DEPLOYED",
1858
- Failed = "FAILED",
1859
- InProgress = "INPROGRESS",
1860
- ReadyToDeploy = "READYTODEPLOY",
1861
- Stopped = "STOPPED",
1862
- Stopping = "STOPPING",
1863
- }
1927
+ export declare const DeviceDeploymentStatus: {
1928
+ readonly Deployed: "DEPLOYED";
1929
+ readonly Failed: "FAILED";
1930
+ readonly InProgress: "INPROGRESS";
1931
+ readonly ReadyToDeploy: "READYTODEPLOY";
1932
+ readonly Stopped: "STOPPED";
1933
+ readonly Stopping: "STOPPING";
1934
+ };
1935
+ export type DeviceDeploymentStatus =
1936
+ (typeof DeviceDeploymentStatus)[keyof typeof DeviceDeploymentStatus];
1864
1937
  export interface DeviceDeploymentSummary {
1865
1938
  EdgeDeploymentPlanArn: string | undefined;
1866
1939
  EdgeDeploymentPlanName: string | undefined;
@@ -1899,11 +1972,12 @@ export interface DeviceSummary {
1899
1972
  Models?: EdgeModelSummary[];
1900
1973
  AgentVersion?: string;
1901
1974
  }
1902
- export declare enum Direction {
1903
- ASCENDANTS = "Ascendants",
1904
- BOTH = "Both",
1905
- DESCENDANTS = "Descendants",
1906
- }
1975
+ export declare const Direction: {
1976
+ readonly ASCENDANTS: "Ascendants";
1977
+ readonly BOTH: "Both";
1978
+ readonly DESCENDANTS: "Descendants";
1979
+ };
1980
+ export type Direction = (typeof Direction)[keyof typeof Direction];
1907
1981
  export interface DisableSagemakerServicecatalogPortfolioInput {}
1908
1982
  export interface DisableSagemakerServicecatalogPortfolioOutput {}
1909
1983
  export interface DisassociateTrialComponentRequest {
@@ -2002,20 +2076,24 @@ export interface Endpoint {
2002
2076
  Tags?: Tag[];
2003
2077
  ShadowProductionVariants?: ProductionVariantSummary[];
2004
2078
  }
2005
- export declare enum EndpointConfigSortKey {
2006
- CreationTime = "CreationTime",
2007
- Name = "Name",
2008
- }
2079
+ export declare const EndpointConfigSortKey: {
2080
+ readonly CreationTime: "CreationTime";
2081
+ readonly Name: "Name";
2082
+ };
2083
+ export type EndpointConfigSortKey =
2084
+ (typeof EndpointConfigSortKey)[keyof typeof EndpointConfigSortKey];
2009
2085
  export interface EndpointConfigSummary {
2010
2086
  EndpointConfigName: string | undefined;
2011
2087
  EndpointConfigArn: string | undefined;
2012
2088
  CreationTime: Date | undefined;
2013
2089
  }
2014
- export declare enum EndpointSortKey {
2015
- CreationTime = "CreationTime",
2016
- Name = "Name",
2017
- Status = "Status",
2018
- }
2090
+ export declare const EndpointSortKey: {
2091
+ readonly CreationTime: "CreationTime";
2092
+ readonly Name: "Name";
2093
+ readonly Status: "Status";
2094
+ };
2095
+ export type EndpointSortKey =
2096
+ (typeof EndpointSortKey)[keyof typeof EndpointSortKey];
2019
2097
  export interface EndpointSummary {
2020
2098
  EndpointName: string | undefined;
2021
2099
  EndpointArn: string | undefined;
@@ -2064,16 +2142,20 @@ export interface FeatureGroup {
2064
2142
  Description?: string;
2065
2143
  Tags?: Tag[];
2066
2144
  }
2067
- export declare enum FeatureGroupSortBy {
2068
- CREATION_TIME = "CreationTime",
2069
- FEATURE_GROUP_STATUS = "FeatureGroupStatus",
2070
- NAME = "Name",
2071
- OFFLINE_STORE_STATUS = "OfflineStoreStatus",
2072
- }
2073
- export declare enum FeatureGroupSortOrder {
2074
- ASCENDING = "Ascending",
2075
- DESCENDING = "Descending",
2076
- }
2145
+ export declare const FeatureGroupSortBy: {
2146
+ readonly CREATION_TIME: "CreationTime";
2147
+ readonly FEATURE_GROUP_STATUS: "FeatureGroupStatus";
2148
+ readonly NAME: "Name";
2149
+ readonly OFFLINE_STORE_STATUS: "OfflineStoreStatus";
2150
+ };
2151
+ export type FeatureGroupSortBy =
2152
+ (typeof FeatureGroupSortBy)[keyof typeof FeatureGroupSortBy];
2153
+ export declare const FeatureGroupSortOrder: {
2154
+ readonly ASCENDING: "Ascending";
2155
+ readonly DESCENDING: "Descending";
2156
+ };
2157
+ export type FeatureGroupSortOrder =
2158
+ (typeof FeatureGroupSortOrder)[keyof typeof FeatureGroupSortOrder];
2077
2159
  export interface FeatureGroupSummary {
2078
2160
  FeatureGroupName: string | undefined;
2079
2161
  FeatureGroupArn: string | undefined;
@@ -2091,18 +2173,19 @@ export interface FeatureMetadata {
2091
2173
  Description?: string;
2092
2174
  Parameters?: FeatureParameter[];
2093
2175
  }
2094
- export declare enum Operator {
2095
- CONTAINS = "Contains",
2096
- EQUALS = "Equals",
2097
- EXISTS = "Exists",
2098
- GREATER_THAN = "GreaterThan",
2099
- GREATER_THAN_OR_EQUAL_TO = "GreaterThanOrEqualTo",
2100
- IN = "In",
2101
- LESS_THAN = "LessThan",
2102
- LESS_THAN_OR_EQUAL_TO = "LessThanOrEqualTo",
2103
- NOT_EQUALS = "NotEquals",
2104
- NOT_EXISTS = "NotExists",
2105
- }
2176
+ export declare const Operator: {
2177
+ readonly CONTAINS: "Contains";
2178
+ readonly EQUALS: "Equals";
2179
+ readonly EXISTS: "Exists";
2180
+ readonly GREATER_THAN: "GreaterThan";
2181
+ readonly GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo";
2182
+ readonly IN: "In";
2183
+ readonly LESS_THAN: "LessThan";
2184
+ readonly LESS_THAN_OR_EQUAL_TO: "LessThanOrEqualTo";
2185
+ readonly NOT_EQUALS: "NotEquals";
2186
+ readonly NOT_EXISTS: "NotExists";
2187
+ };
2188
+ export type Operator = (typeof Operator)[keyof typeof Operator];
2106
2189
  export interface Filter {
2107
2190
  Name: string | undefined;
2108
2191
  Operator?: Operator | string;
@@ -2142,30 +2225,33 @@ export interface GetModelPackageGroupPolicyOutput {
2142
2225
  ResourcePolicy: string | undefined;
2143
2226
  }
2144
2227
  export interface GetSagemakerServicecatalogPortfolioStatusInput {}
2145
- export declare enum SagemakerServicecatalogStatus {
2146
- DISABLED = "Disabled",
2147
- ENABLED = "Enabled",
2148
- }
2228
+ export declare const SagemakerServicecatalogStatus: {
2229
+ readonly DISABLED: "Disabled";
2230
+ readonly ENABLED: "Enabled";
2231
+ };
2232
+ export type SagemakerServicecatalogStatus =
2233
+ (typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
2149
2234
  export interface GetSagemakerServicecatalogPortfolioStatusOutput {
2150
2235
  Status?: SagemakerServicecatalogStatus | string;
2151
2236
  }
2152
- export declare enum ResourceType {
2153
- ENDPOINT = "Endpoint",
2154
- EXPERIMENT = "Experiment",
2155
- EXPERIMENT_TRIAL = "ExperimentTrial",
2156
- EXPERIMENT_TRIAL_COMPONENT = "ExperimentTrialComponent",
2157
- FEATURE_GROUP = "FeatureGroup",
2158
- FEATURE_METADATA = "FeatureMetadata",
2159
- HYPER_PARAMETER_TUNING_JOB = "HyperParameterTuningJob",
2160
- MODEL = "Model",
2161
- MODEL_CARD = "ModelCard",
2162
- MODEL_PACKAGE = "ModelPackage",
2163
- MODEL_PACKAGE_GROUP = "ModelPackageGroup",
2164
- PIPELINE = "Pipeline",
2165
- PIPELINE_EXECUTION = "PipelineExecution",
2166
- PROJECT = "Project",
2167
- TRAINING_JOB = "TrainingJob",
2168
- }
2237
+ export declare const ResourceType: {
2238
+ readonly ENDPOINT: "Endpoint";
2239
+ readonly EXPERIMENT: "Experiment";
2240
+ readonly EXPERIMENT_TRIAL: "ExperimentTrial";
2241
+ readonly EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent";
2242
+ readonly FEATURE_GROUP: "FeatureGroup";
2243
+ readonly FEATURE_METADATA: "FeatureMetadata";
2244
+ readonly HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob";
2245
+ readonly MODEL: "Model";
2246
+ readonly MODEL_CARD: "ModelCard";
2247
+ readonly MODEL_PACKAGE: "ModelPackage";
2248
+ readonly MODEL_PACKAGE_GROUP: "ModelPackageGroup";
2249
+ readonly PIPELINE: "Pipeline";
2250
+ readonly PIPELINE_EXECUTION: "PipelineExecution";
2251
+ readonly PROJECT: "Project";
2252
+ readonly TRAINING_JOB: "TrainingJob";
2253
+ };
2254
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
2169
2255
  export interface PropertyNameQuery {
2170
2256
  PropertyNameHint: string | undefined;
2171
2257
  }
@@ -2197,11 +2283,13 @@ export interface HubContentInfo {
2197
2283
  HubContentStatus: HubContentStatus | string | undefined;
2198
2284
  CreationTime: Date | undefined;
2199
2285
  }
2200
- export declare enum HubContentSortBy {
2201
- CREATION_TIME = "CreationTime",
2202
- HUB_CONTENT_NAME = "HubContentName",
2203
- HUB_CONTENT_STATUS = "HubContentStatus",
2204
- }
2286
+ export declare const HubContentSortBy: {
2287
+ readonly CREATION_TIME: "CreationTime";
2288
+ readonly HUB_CONTENT_NAME: "HubContentName";
2289
+ readonly HUB_CONTENT_STATUS: "HubContentStatus";
2290
+ };
2291
+ export type HubContentSortBy =
2292
+ (typeof HubContentSortBy)[keyof typeof HubContentSortBy];
2205
2293
  export interface HubInfo {
2206
2294
  HubName: string | undefined;
2207
2295
  HubArn: string | undefined;
@@ -2212,12 +2300,13 @@ export interface HubInfo {
2212
2300
  CreationTime: Date | undefined;
2213
2301
  LastModifiedTime: Date | undefined;
2214
2302
  }
2215
- export declare enum HubSortBy {
2216
- ACCOUNT_ID_OWNER = "AccountIdOwner",
2217
- CREATION_TIME = "CreationTime",
2218
- HUB_NAME = "HubName",
2219
- HUB_STATUS = "HubStatus",
2220
- }
2303
+ export declare const HubSortBy: {
2304
+ readonly ACCOUNT_ID_OWNER: "AccountIdOwner";
2305
+ readonly CREATION_TIME: "CreationTime";
2306
+ readonly HUB_NAME: "HubName";
2307
+ readonly HUB_STATUS: "HubStatus";
2308
+ };
2309
+ export type HubSortBy = (typeof HubSortBy)[keyof typeof HubSortBy];
2221
2310
  export interface HumanTaskUiSummary {
2222
2311
  HumanTaskUiName: string | undefined;
2223
2312
  HumanTaskUiArn: string | undefined;
@@ -2243,11 +2332,13 @@ export interface HyperParameterTuningJobSearchEntity {
2243
2332
  TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails;
2244
2333
  ConsumedResources?: HyperParameterTuningJobConsumedResources;
2245
2334
  }
2246
- export declare enum HyperParameterTuningJobSortByOptions {
2247
- CreationTime = "CreationTime",
2248
- Name = "Name",
2249
- Status = "Status",
2250
- }
2335
+ export declare const HyperParameterTuningJobSortByOptions: {
2336
+ readonly CreationTime: "CreationTime";
2337
+ readonly Name: "Name";
2338
+ readonly Status: "Status";
2339
+ };
2340
+ export type HyperParameterTuningJobSortByOptions =
2341
+ (typeof HyperParameterTuningJobSortByOptions)[keyof typeof HyperParameterTuningJobSortByOptions];
2251
2342
  export interface HyperParameterTuningJobSummary {
2252
2343
  HyperParameterTuningJobName: string | undefined;
2253
2344
  HyperParameterTuningJobArn: string | undefined;
@@ -2273,15 +2364,18 @@ export interface Image {
2273
2364
  ImageStatus: ImageStatus | string | undefined;
2274
2365
  LastModifiedTime: Date | undefined;
2275
2366
  }
2276
- export declare enum ImageSortBy {
2277
- CREATION_TIME = "CREATION_TIME",
2278
- IMAGE_NAME = "IMAGE_NAME",
2279
- LAST_MODIFIED_TIME = "LAST_MODIFIED_TIME",
2280
- }
2281
- export declare enum ImageSortOrder {
2282
- ASCENDING = "ASCENDING",
2283
- DESCENDING = "DESCENDING",
2284
- }
2367
+ export declare const ImageSortBy: {
2368
+ readonly CREATION_TIME: "CREATION_TIME";
2369
+ readonly IMAGE_NAME: "IMAGE_NAME";
2370
+ readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
2371
+ };
2372
+ export type ImageSortBy = (typeof ImageSortBy)[keyof typeof ImageSortBy];
2373
+ export declare const ImageSortOrder: {
2374
+ readonly ASCENDING: "ASCENDING";
2375
+ readonly DESCENDING: "DESCENDING";
2376
+ };
2377
+ export type ImageSortOrder =
2378
+ (typeof ImageSortOrder)[keyof typeof ImageSortOrder];
2285
2379
  export interface ImageVersion {
2286
2380
  CreationTime: Date | undefined;
2287
2381
  FailureReason?: string;
@@ -2291,15 +2385,19 @@ export interface ImageVersion {
2291
2385
  LastModifiedTime: Date | undefined;
2292
2386
  Version: number | undefined;
2293
2387
  }
2294
- export declare enum ImageVersionSortBy {
2295
- CREATION_TIME = "CREATION_TIME",
2296
- LAST_MODIFIED_TIME = "LAST_MODIFIED_TIME",
2297
- VERSION = "VERSION",
2298
- }
2299
- export declare enum ImageVersionSortOrder {
2300
- ASCENDING = "ASCENDING",
2301
- DESCENDING = "DESCENDING",
2302
- }
2388
+ export declare const ImageVersionSortBy: {
2389
+ readonly CREATION_TIME: "CREATION_TIME";
2390
+ readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
2391
+ readonly VERSION: "VERSION";
2392
+ };
2393
+ export type ImageVersionSortBy =
2394
+ (typeof ImageVersionSortBy)[keyof typeof ImageVersionSortBy];
2395
+ export declare const ImageVersionSortOrder: {
2396
+ readonly ASCENDING: "ASCENDING";
2397
+ readonly DESCENDING: "DESCENDING";
2398
+ };
2399
+ export type ImageVersionSortOrder =
2400
+ (typeof ImageVersionSortOrder)[keyof typeof ImageVersionSortOrder];
2303
2401
  export interface ImportHubContentRequest {
2304
2402
  HubContentName: string | undefined;
2305
2403
  HubContentVersion?: string;
@@ -2329,10 +2427,12 @@ export interface InferenceExperimentSummary {
2329
2427
  LastModifiedTime: Date | undefined;
2330
2428
  RoleArn?: string;
2331
2429
  }
2332
- export declare enum InferenceExperimentStopDesiredState {
2333
- CANCELLED = "Cancelled",
2334
- COMPLETED = "Completed",
2335
- }
2430
+ export declare const InferenceExperimentStopDesiredState: {
2431
+ readonly CANCELLED: "Cancelled";
2432
+ readonly COMPLETED: "Completed";
2433
+ };
2434
+ export type InferenceExperimentStopDesiredState =
2435
+ (typeof InferenceExperimentStopDesiredState)[keyof typeof InferenceExperimentStopDesiredState];
2336
2436
  export interface InferenceRecommendationsJob {
2337
2437
  JobName: string | undefined;
2338
2438
  JobDescription: string | undefined;
@@ -2352,9 +2452,11 @@ export interface RecommendationJobInferenceBenchmark {
2352
2452
  FailureReason?: string;
2353
2453
  EndpointMetrics?: InferenceMetrics;
2354
2454
  }
2355
- export declare enum RecommendationStepType {
2356
- BENCHMARK = "BENCHMARK",
2357
- }
2455
+ export declare const RecommendationStepType: {
2456
+ readonly BENCHMARK: "BENCHMARK";
2457
+ };
2458
+ export type RecommendationStepType =
2459
+ (typeof RecommendationStepType)[keyof typeof RecommendationStepType];
2358
2460
  export interface InferenceRecommendationsJobStep {
2359
2461
  StepType: RecommendationStepType | string | undefined;
2360
2462
  JobName: string | undefined;