@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.
@@ -110,17 +110,22 @@ export interface DeployedImage {
110
110
  }
111
111
  /**
112
112
  * @public
113
+ * @enum
113
114
  */
114
- export declare enum StageStatus {
115
- Creating = "CREATING",
116
- Deployed = "DEPLOYED",
117
- Failed = "FAILED",
118
- InProgress = "INPROGRESS",
119
- ReadyToDeploy = "READYTODEPLOY",
120
- Starting = "STARTING",
121
- Stopped = "STOPPED",
122
- Stopping = "STOPPING"
123
- }
115
+ export declare const StageStatus: {
116
+ readonly Creating: "CREATING";
117
+ readonly Deployed: "DEPLOYED";
118
+ readonly Failed: "FAILED";
119
+ readonly InProgress: "INPROGRESS";
120
+ readonly ReadyToDeploy: "READYTODEPLOY";
121
+ readonly Starting: "STARTING";
122
+ readonly Stopped: "STOPPED";
123
+ readonly Stopping: "STOPPING";
124
+ };
125
+ /**
126
+ * @public
127
+ */
128
+ export type StageStatus = (typeof StageStatus)[keyof typeof StageStatus];
124
129
  /**
125
130
  * @public
126
131
  * <p>Contains information summarizing the deployment stage results.</p>
@@ -1149,16 +1154,21 @@ export interface DescribeDomainRequest {
1149
1154
  }
1150
1155
  /**
1151
1156
  * @public
1157
+ * @enum
1152
1158
  */
1153
- export declare enum DomainStatus {
1154
- Delete_Failed = "Delete_Failed",
1155
- Deleting = "Deleting",
1156
- Failed = "Failed",
1157
- InService = "InService",
1158
- Pending = "Pending",
1159
- Update_Failed = "Update_Failed",
1160
- Updating = "Updating"
1161
- }
1159
+ export declare const DomainStatus: {
1160
+ readonly Delete_Failed: "Delete_Failed";
1161
+ readonly Deleting: "Deleting";
1162
+ readonly Failed: "Failed";
1163
+ readonly InService: "InService";
1164
+ readonly Pending: "Pending";
1165
+ readonly Update_Failed: "Update_Failed";
1166
+ readonly Updating: "Updating";
1167
+ };
1168
+ /**
1169
+ * @public
1170
+ */
1171
+ export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
1162
1172
  /**
1163
1173
  * @public
1164
1174
  */
@@ -1347,22 +1357,32 @@ export interface DescribeEdgePackagingJobRequest {
1347
1357
  }
1348
1358
  /**
1349
1359
  * @public
1360
+ * @enum
1350
1361
  */
1351
- export declare enum EdgePackagingJobStatus {
1352
- Completed = "COMPLETED",
1353
- Failed = "FAILED",
1354
- InProgress = "INPROGRESS",
1355
- Starting = "STARTING",
1356
- Stopped = "STOPPED",
1357
- Stopping = "STOPPING"
1358
- }
1362
+ export declare const EdgePackagingJobStatus: {
1363
+ readonly Completed: "COMPLETED";
1364
+ readonly Failed: "FAILED";
1365
+ readonly InProgress: "INPROGRESS";
1366
+ readonly Starting: "STARTING";
1367
+ readonly Stopped: "STOPPED";
1368
+ readonly Stopping: "STOPPING";
1369
+ };
1359
1370
  /**
1360
1371
  * @public
1361
1372
  */
1362
- export declare enum EdgePresetDeploymentStatus {
1363
- Completed = "COMPLETED",
1364
- Failed = "FAILED"
1365
- }
1373
+ export type EdgePackagingJobStatus = (typeof EdgePackagingJobStatus)[keyof typeof EdgePackagingJobStatus];
1374
+ /**
1375
+ * @public
1376
+ * @enum
1377
+ */
1378
+ export declare const EdgePresetDeploymentStatus: {
1379
+ readonly Completed: "COMPLETED";
1380
+ readonly Failed: "FAILED";
1381
+ };
1382
+ /**
1383
+ * @public
1384
+ */
1385
+ export type EdgePresetDeploymentStatus = (typeof EdgePresetDeploymentStatus)[keyof typeof EdgePresetDeploymentStatus];
1366
1386
  /**
1367
1387
  * @public
1368
1388
  * <p>The output of a SageMaker Edge Manager deployable resource.</p>
@@ -1462,27 +1482,37 @@ export interface DescribeEndpointInput {
1462
1482
  }
1463
1483
  /**
1464
1484
  * @public
1485
+ * @enum
1465
1486
  */
1466
- export declare enum EndpointStatus {
1467
- CREATING = "Creating",
1468
- DELETING = "Deleting",
1469
- FAILED = "Failed",
1470
- IN_SERVICE = "InService",
1471
- OUT_OF_SERVICE = "OutOfService",
1472
- ROLLING_BACK = "RollingBack",
1473
- SYSTEM_UPDATING = "SystemUpdating",
1474
- UPDATING = "Updating"
1475
- }
1487
+ export declare const EndpointStatus: {
1488
+ readonly CREATING: "Creating";
1489
+ readonly DELETING: "Deleting";
1490
+ readonly FAILED: "Failed";
1491
+ readonly IN_SERVICE: "InService";
1492
+ readonly OUT_OF_SERVICE: "OutOfService";
1493
+ readonly ROLLING_BACK: "RollingBack";
1494
+ readonly SYSTEM_UPDATING: "SystemUpdating";
1495
+ readonly UPDATING: "Updating";
1496
+ };
1476
1497
  /**
1477
1498
  * @public
1478
1499
  */
1479
- export declare enum VariantStatus {
1480
- ACTIVATING_TRAFFIC = "ActivatingTraffic",
1481
- BAKING = "Baking",
1482
- CREATING = "Creating",
1483
- DELETING = "Deleting",
1484
- UPDATING = "Updating"
1485
- }
1500
+ export type EndpointStatus = (typeof EndpointStatus)[keyof typeof EndpointStatus];
1501
+ /**
1502
+ * @public
1503
+ * @enum
1504
+ */
1505
+ export declare const VariantStatus: {
1506
+ readonly ACTIVATING_TRAFFIC: "ActivatingTraffic";
1507
+ readonly BAKING: "Baking";
1508
+ readonly CREATING: "Creating";
1509
+ readonly DELETING: "Deleting";
1510
+ readonly UPDATING: "Updating";
1511
+ };
1512
+ /**
1513
+ * @public
1514
+ */
1515
+ export type VariantStatus = (typeof VariantStatus)[keyof typeof VariantStatus];
1486
1516
  /**
1487
1517
  * @public
1488
1518
  * <p>Describes the status of the production variant.</p>
@@ -1927,22 +1957,32 @@ export interface DescribeFeatureGroupRequest {
1927
1957
  }
1928
1958
  /**
1929
1959
  * @public
1960
+ * @enum
1930
1961
  */
1931
- export declare enum FeatureGroupStatus {
1932
- CREATED = "Created",
1933
- CREATE_FAILED = "CreateFailed",
1934
- CREATING = "Creating",
1935
- DELETE_FAILED = "DeleteFailed",
1936
- DELETING = "Deleting"
1937
- }
1962
+ export declare const FeatureGroupStatus: {
1963
+ readonly CREATED: "Created";
1964
+ readonly CREATE_FAILED: "CreateFailed";
1965
+ readonly CREATING: "Creating";
1966
+ readonly DELETE_FAILED: "DeleteFailed";
1967
+ readonly DELETING: "Deleting";
1968
+ };
1938
1969
  /**
1939
1970
  * @public
1940
1971
  */
1941
- export declare enum LastUpdateStatusValue {
1942
- FAILED = "Failed",
1943
- IN_PROGRESS = "InProgress",
1944
- SUCCESSFUL = "Successful"
1945
- }
1972
+ export type FeatureGroupStatus = (typeof FeatureGroupStatus)[keyof typeof FeatureGroupStatus];
1973
+ /**
1974
+ * @public
1975
+ * @enum
1976
+ */
1977
+ export declare const LastUpdateStatusValue: {
1978
+ readonly FAILED: "Failed";
1979
+ readonly IN_PROGRESS: "InProgress";
1980
+ readonly SUCCESSFUL: "Successful";
1981
+ };
1982
+ /**
1983
+ * @public
1984
+ */
1985
+ export type LastUpdateStatusValue = (typeof LastUpdateStatusValue)[keyof typeof LastUpdateStatusValue];
1946
1986
  /**
1947
1987
  * @public
1948
1988
  * <p>A value that indicates whether the update was successful.</p>
@@ -1959,12 +1999,17 @@ export interface LastUpdateStatus {
1959
1999
  }
1960
2000
  /**
1961
2001
  * @public
2002
+ * @enum
1962
2003
  */
1963
- export declare enum OfflineStoreStatusValue {
1964
- ACTIVE = "Active",
1965
- BLOCKED = "Blocked",
1966
- DISABLED = "Disabled"
1967
- }
2004
+ export declare const OfflineStoreStatusValue: {
2005
+ readonly ACTIVE: "Active";
2006
+ readonly BLOCKED: "Blocked";
2007
+ readonly DISABLED: "Disabled";
2008
+ };
2009
+ /**
2010
+ * @public
2011
+ */
2012
+ export type OfflineStoreStatusValue = (typeof OfflineStoreStatusValue)[keyof typeof OfflineStoreStatusValue];
1968
2013
  /**
1969
2014
  * @public
1970
2015
  * <p>The status of <code>OfflineStore</code>.</p>
@@ -2166,13 +2211,18 @@ export interface DescribeFlowDefinitionRequest {
2166
2211
  }
2167
2212
  /**
2168
2213
  * @public
2214
+ * @enum
2169
2215
  */
2170
- export declare enum FlowDefinitionStatus {
2171
- ACTIVE = "Active",
2172
- DELETING = "Deleting",
2173
- FAILED = "Failed",
2174
- INITIALIZING = "Initializing"
2175
- }
2216
+ export declare const FlowDefinitionStatus: {
2217
+ readonly ACTIVE: "Active";
2218
+ readonly DELETING: "Deleting";
2219
+ readonly FAILED: "Failed";
2220
+ readonly INITIALIZING: "Initializing";
2221
+ };
2222
+ /**
2223
+ * @public
2224
+ */
2225
+ export type FlowDefinitionStatus = (typeof FlowDefinitionStatus)[keyof typeof FlowDefinitionStatus];
2176
2226
  /**
2177
2227
  * @public
2178
2228
  */
@@ -2230,16 +2280,21 @@ export interface DescribeHubRequest {
2230
2280
  }
2231
2281
  /**
2232
2282
  * @public
2283
+ * @enum
2233
2284
  */
2234
- export declare enum HubStatus {
2235
- CREATE_FAILED = "CreateFailed",
2236
- CREATING = "Creating",
2237
- DELETE_FAILED = "DeleteFailed",
2238
- DELETING = "Deleting",
2239
- IN_SERVICE = "InService",
2240
- UPDATE_FAILED = "UpdateFailed",
2241
- UPDATING = "Updating"
2242
- }
2285
+ export declare const HubStatus: {
2286
+ readonly CREATE_FAILED: "CreateFailed";
2287
+ readonly CREATING: "Creating";
2288
+ readonly DELETE_FAILED: "DeleteFailed";
2289
+ readonly DELETING: "Deleting";
2290
+ readonly IN_SERVICE: "InService";
2291
+ readonly UPDATE_FAILED: "UpdateFailed";
2292
+ readonly UPDATING: "Updating";
2293
+ };
2294
+ /**
2295
+ * @public
2296
+ */
2297
+ export type HubStatus = (typeof HubStatus)[keyof typeof HubStatus];
2243
2298
  /**
2244
2299
  * @public
2245
2300
  */
@@ -2322,14 +2377,19 @@ export interface HubContentDependency {
2322
2377
  }
2323
2378
  /**
2324
2379
  * @public
2380
+ * @enum
2325
2381
  */
2326
- export declare enum HubContentStatus {
2327
- AVAILABLE = "Available",
2328
- DELETE_FAILED = "DeleteFailed",
2329
- DELETING = "Deleting",
2330
- IMPORTING = "Importing",
2331
- IMPORT_FAILED = "ImportFailed"
2332
- }
2382
+ export declare const HubContentStatus: {
2383
+ readonly AVAILABLE: "Available";
2384
+ readonly DELETE_FAILED: "DeleteFailed";
2385
+ readonly DELETING: "Deleting";
2386
+ readonly IMPORTING: "Importing";
2387
+ readonly IMPORT_FAILED: "ImportFailed";
2388
+ };
2389
+ /**
2390
+ * @public
2391
+ */
2392
+ export type HubContentStatus = (typeof HubContentStatus)[keyof typeof HubContentStatus];
2333
2393
  /**
2334
2394
  * @public
2335
2395
  */
@@ -2411,11 +2471,16 @@ export interface DescribeHumanTaskUiRequest {
2411
2471
  }
2412
2472
  /**
2413
2473
  * @public
2474
+ * @enum
2414
2475
  */
2415
- export declare enum HumanTaskUiStatus {
2416
- ACTIVE = "Active",
2417
- DELETING = "Deleting"
2418
- }
2476
+ export declare const HumanTaskUiStatus: {
2477
+ readonly ACTIVE: "Active";
2478
+ readonly DELETING: "Deleting";
2479
+ };
2480
+ /**
2481
+ * @public
2482
+ */
2483
+ export type HumanTaskUiStatus = (typeof HumanTaskUiStatus)[keyof typeof HumanTaskUiStatus];
2419
2484
  /**
2420
2485
  * @public
2421
2486
  * <p>Container for user interface template information.</p>
@@ -2490,14 +2555,19 @@ export interface FinalHyperParameterTuningJobObjectiveMetric {
2490
2555
  }
2491
2556
  /**
2492
2557
  * @public
2558
+ * @enum
2493
2559
  */
2494
- export declare enum TrainingJobStatus {
2495
- COMPLETED = "Completed",
2496
- FAILED = "Failed",
2497
- IN_PROGRESS = "InProgress",
2498
- STOPPED = "Stopped",
2499
- STOPPING = "Stopping"
2500
- }
2560
+ export declare const TrainingJobStatus: {
2561
+ readonly COMPLETED: "Completed";
2562
+ readonly FAILED: "Failed";
2563
+ readonly IN_PROGRESS: "InProgress";
2564
+ readonly STOPPED: "Stopped";
2565
+ readonly STOPPING: "Stopping";
2566
+ };
2567
+ /**
2568
+ * @public
2569
+ */
2570
+ export type TrainingJobStatus = (typeof TrainingJobStatus)[keyof typeof TrainingJobStatus];
2501
2571
  /**
2502
2572
  * @public
2503
2573
  * <p>The container for the summary information about a training job.</p>
@@ -2603,14 +2673,19 @@ export interface HyperParameterTuningJobConsumedResources {
2603
2673
  }
2604
2674
  /**
2605
2675
  * @public
2676
+ * @enum
2606
2677
  */
2607
- export declare enum HyperParameterTuningJobStatus {
2608
- COMPLETED = "Completed",
2609
- FAILED = "Failed",
2610
- IN_PROGRESS = "InProgress",
2611
- STOPPED = "Stopped",
2612
- STOPPING = "Stopping"
2613
- }
2678
+ export declare const HyperParameterTuningJobStatus: {
2679
+ readonly COMPLETED: "Completed";
2680
+ readonly FAILED: "Failed";
2681
+ readonly IN_PROGRESS: "InProgress";
2682
+ readonly STOPPED: "Stopped";
2683
+ readonly STOPPING: "Stopping";
2684
+ };
2685
+ /**
2686
+ * @public
2687
+ */
2688
+ export type HyperParameterTuningJobStatus = (typeof HyperParameterTuningJobStatus)[keyof typeof HyperParameterTuningJobStatus];
2614
2689
  /**
2615
2690
  * @public
2616
2691
  * <p>Specifies the number of training jobs that this hyperparameter tuning job launched,
@@ -2791,16 +2866,21 @@ export interface DescribeImageRequest {
2791
2866
  }
2792
2867
  /**
2793
2868
  * @public
2869
+ * @enum
2794
2870
  */
2795
- export declare enum ImageStatus {
2796
- CREATED = "CREATED",
2797
- CREATE_FAILED = "CREATE_FAILED",
2798
- CREATING = "CREATING",
2799
- DELETE_FAILED = "DELETE_FAILED",
2800
- DELETING = "DELETING",
2801
- UPDATE_FAILED = "UPDATE_FAILED",
2802
- UPDATING = "UPDATING"
2803
- }
2871
+ export declare const ImageStatus: {
2872
+ readonly CREATED: "CREATED";
2873
+ readonly CREATE_FAILED: "CREATE_FAILED";
2874
+ readonly CREATING: "CREATING";
2875
+ readonly DELETE_FAILED: "DELETE_FAILED";
2876
+ readonly DELETING: "DELETING";
2877
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
2878
+ readonly UPDATING: "UPDATING";
2879
+ };
2880
+ /**
2881
+ * @public
2882
+ */
2883
+ export type ImageStatus = (typeof ImageStatus)[keyof typeof ImageStatus];
2804
2884
  /**
2805
2885
  * @public
2806
2886
  */
@@ -2861,14 +2941,19 @@ export interface DescribeImageVersionRequest {
2861
2941
  }
2862
2942
  /**
2863
2943
  * @public
2944
+ * @enum
2864
2945
  */
2865
- export declare enum ImageVersionStatus {
2866
- CREATED = "CREATED",
2867
- CREATE_FAILED = "CREATE_FAILED",
2868
- CREATING = "CREATING",
2869
- DELETE_FAILED = "DELETE_FAILED",
2870
- DELETING = "DELETING"
2871
- }
2946
+ export declare const ImageVersionStatus: {
2947
+ readonly CREATED: "CREATED";
2948
+ readonly CREATE_FAILED: "CREATE_FAILED";
2949
+ readonly CREATING: "CREATING";
2950
+ readonly DELETE_FAILED: "DELETE_FAILED";
2951
+ readonly DELETING: "DELETING";
2952
+ };
2953
+ /**
2954
+ * @public
2955
+ */
2956
+ export type ImageVersionStatus = (typeof ImageVersionStatus)[keyof typeof ImageVersionStatus];
2872
2957
  /**
2873
2958
  * @public
2874
2959
  */
@@ -3018,14 +3103,19 @@ export interface EndpointMetadata {
3018
3103
  }
3019
3104
  /**
3020
3105
  * @public
3106
+ * @enum
3021
3107
  */
3022
- export declare enum ModelVariantStatus {
3023
- CREATING = "Creating",
3024
- DELETED = "Deleted",
3025
- DELETING = "Deleting",
3026
- IN_SERVICE = "InService",
3027
- UPDATING = "Updating"
3028
- }
3108
+ export declare const ModelVariantStatus: {
3109
+ readonly CREATING: "Creating";
3110
+ readonly DELETED: "Deleted";
3111
+ readonly DELETING: "Deleting";
3112
+ readonly IN_SERVICE: "InService";
3113
+ readonly UPDATING: "Updating";
3114
+ };
3115
+ /**
3116
+ * @public
3117
+ */
3118
+ export type ModelVariantStatus = (typeof ModelVariantStatus)[keyof typeof ModelVariantStatus];
3029
3119
  /**
3030
3120
  * @public
3031
3121
  * <p>Summary of the deployment configuration of a model.</p>
@@ -3078,17 +3168,22 @@ export interface ModelVariantConfigSummary {
3078
3168
  }
3079
3169
  /**
3080
3170
  * @public
3171
+ * @enum
3081
3172
  */
3082
- export declare enum InferenceExperimentStatus {
3083
- CANCELLED = "Cancelled",
3084
- COMPLETED = "Completed",
3085
- CREATED = "Created",
3086
- CREATING = "Creating",
3087
- RUNNING = "Running",
3088
- STARTING = "Starting",
3089
- STOPPING = "Stopping",
3090
- UPDATING = "Updating"
3091
- }
3173
+ export declare const InferenceExperimentStatus: {
3174
+ readonly CANCELLED: "Cancelled";
3175
+ readonly COMPLETED: "Completed";
3176
+ readonly CREATED: "Created";
3177
+ readonly CREATING: "Creating";
3178
+ readonly RUNNING: "Running";
3179
+ readonly STARTING: "Starting";
3180
+ readonly STOPPING: "Stopping";
3181
+ readonly UPDATING: "Updating";
3182
+ };
3183
+ /**
3184
+ * @public
3185
+ */
3186
+ export type InferenceExperimentStatus = (typeof InferenceExperimentStatus)[keyof typeof InferenceExperimentStatus];
3092
3187
  /**
3093
3188
  * @public
3094
3189
  */
@@ -3379,15 +3474,20 @@ export interface InferenceRecommendation {
3379
3474
  }
3380
3475
  /**
3381
3476
  * @public
3477
+ * @enum
3382
3478
  */
3383
- export declare enum RecommendationJobStatus {
3384
- COMPLETED = "COMPLETED",
3385
- FAILED = "FAILED",
3386
- IN_PROGRESS = "IN_PROGRESS",
3387
- PENDING = "PENDING",
3388
- STOPPED = "STOPPED",
3389
- STOPPING = "STOPPING"
3390
- }
3479
+ export declare const RecommendationJobStatus: {
3480
+ readonly COMPLETED: "COMPLETED";
3481
+ readonly FAILED: "FAILED";
3482
+ readonly IN_PROGRESS: "IN_PROGRESS";
3483
+ readonly PENDING: "PENDING";
3484
+ readonly STOPPED: "STOPPED";
3485
+ readonly STOPPING: "STOPPING";
3486
+ };
3487
+ /**
3488
+ * @public
3489
+ */
3490
+ export type RecommendationJobStatus = (typeof RecommendationJobStatus)[keyof typeof RecommendationJobStatus];
3391
3491
  /**
3392
3492
  * @public
3393
3493
  */
@@ -3504,15 +3604,20 @@ export interface LabelingJobOutput {
3504
3604
  }
3505
3605
  /**
3506
3606
  * @public
3607
+ * @enum
3507
3608
  */
3508
- export declare enum LabelingJobStatus {
3509
- COMPLETED = "Completed",
3510
- FAILED = "Failed",
3511
- INITIALIZING = "Initializing",
3512
- IN_PROGRESS = "InProgress",
3513
- STOPPED = "Stopped",
3514
- STOPPING = "Stopping"
3515
- }
3609
+ export declare const LabelingJobStatus: {
3610
+ readonly COMPLETED: "Completed";
3611
+ readonly FAILED: "Failed";
3612
+ readonly INITIALIZING: "Initializing";
3613
+ readonly IN_PROGRESS: "InProgress";
3614
+ readonly STOPPED: "Stopped";
3615
+ readonly STOPPING: "Stopping";
3616
+ };
3617
+ /**
3618
+ * @public
3619
+ */
3620
+ export type LabelingJobStatus = (typeof LabelingJobStatus)[keyof typeof LabelingJobStatus];
3516
3621
  /**
3517
3622
  * @public
3518
3623
  */
@@ -3837,15 +3942,20 @@ export interface DescribeModelCardRequest {
3837
3942
  }
3838
3943
  /**
3839
3944
  * @public
3945
+ * @enum
3840
3946
  */
3841
- export declare enum ModelCardProcessingStatus {
3842
- CONTENT_DELETED = "ContentDeleted",
3843
- DELETE_COMPLETED = "DeleteCompleted",
3844
- DELETE_FAILED = "DeleteFailed",
3845
- DELETE_INPROGRESS = "DeleteInProgress",
3846
- DELETE_PENDING = "DeletePending",
3847
- EXPORTJOBS_DELETED = "ExportJobsDeleted"
3848
- }
3947
+ export declare const ModelCardProcessingStatus: {
3948
+ readonly CONTENT_DELETED: "ContentDeleted";
3949
+ readonly DELETE_COMPLETED: "DeleteCompleted";
3950
+ readonly DELETE_FAILED: "DeleteFailed";
3951
+ readonly DELETE_INPROGRESS: "DeleteInProgress";
3952
+ readonly DELETE_PENDING: "DeletePending";
3953
+ readonly EXPORTJOBS_DELETED: "ExportJobsDeleted";
3954
+ };
3955
+ /**
3956
+ * @public
3957
+ */
3958
+ export type ModelCardProcessingStatus = (typeof ModelCardProcessingStatus)[keyof typeof ModelCardProcessingStatus];
3849
3959
  /**
3850
3960
  * @public
3851
3961
  */
@@ -3963,12 +4073,17 @@ export interface ModelCardExportArtifacts {
3963
4073
  }
3964
4074
  /**
3965
4075
  * @public
4076
+ * @enum
3966
4077
  */
3967
- export declare enum ModelCardExportJobStatus {
3968
- COMPLETED = "Completed",
3969
- FAILED = "Failed",
3970
- IN_PROGRESS = "InProgress"
3971
- }
4078
+ export declare const ModelCardExportJobStatus: {
4079
+ readonly COMPLETED: "Completed";
4080
+ readonly FAILED: "Failed";
4081
+ readonly IN_PROGRESS: "InProgress";
4082
+ };
4083
+ /**
4084
+ * @public
4085
+ */
4086
+ export type ModelCardExportJobStatus = (typeof ModelCardExportJobStatus)[keyof typeof ModelCardExportJobStatus];
3972
4087
  /**
3973
4088
  * @public
3974
4089
  */
@@ -4106,13 +4221,18 @@ export interface DescribeModelPackageInput {
4106
4221
  }
4107
4222
  /**
4108
4223
  * @public
4224
+ * @enum
4109
4225
  */
4110
- export declare enum DetailedModelPackageStatus {
4111
- COMPLETED = "Completed",
4112
- FAILED = "Failed",
4113
- IN_PROGRESS = "InProgress",
4114
- NOT_STARTED = "NotStarted"
4115
- }
4226
+ export declare const DetailedModelPackageStatus: {
4227
+ readonly COMPLETED: "Completed";
4228
+ readonly FAILED: "Failed";
4229
+ readonly IN_PROGRESS: "InProgress";
4230
+ readonly NOT_STARTED: "NotStarted";
4231
+ };
4232
+ /**
4233
+ * @public
4234
+ */
4235
+ export type DetailedModelPackageStatus = (typeof DetailedModelPackageStatus)[keyof typeof DetailedModelPackageStatus];
4116
4236
  /**
4117
4237
  * @public
4118
4238
  * <p>Represents the overall status of a model package.</p>
@@ -4273,15 +4393,20 @@ export interface DescribeModelPackageGroupInput {
4273
4393
  }
4274
4394
  /**
4275
4395
  * @public
4396
+ * @enum
4276
4397
  */
4277
- export declare enum ModelPackageGroupStatus {
4278
- COMPLETED = "Completed",
4279
- DELETE_FAILED = "DeleteFailed",
4280
- DELETING = "Deleting",
4281
- FAILED = "Failed",
4282
- IN_PROGRESS = "InProgress",
4283
- PENDING = "Pending"
4284
- }
4398
+ export declare const ModelPackageGroupStatus: {
4399
+ readonly COMPLETED: "Completed";
4400
+ readonly DELETE_FAILED: "DeleteFailed";
4401
+ readonly DELETING: "Deleting";
4402
+ readonly FAILED: "Failed";
4403
+ readonly IN_PROGRESS: "InProgress";
4404
+ readonly PENDING: "Pending";
4405
+ };
4406
+ /**
4407
+ * @public
4408
+ */
4409
+ export type ModelPackageGroupStatus = (typeof ModelPackageGroupStatus)[keyof typeof ModelPackageGroupStatus];
4285
4410
  /**
4286
4411
  * @public
4287
4412
  */
@@ -4384,16 +4509,21 @@ export interface DescribeMonitoringScheduleRequest {
4384
4509
  }
4385
4510
  /**
4386
4511
  * @public
4512
+ * @enum
4387
4513
  */
4388
- export declare enum ExecutionStatus {
4389
- COMPLETED = "Completed",
4390
- COMPLETED_WITH_VIOLATIONS = "CompletedWithViolations",
4391
- FAILED = "Failed",
4392
- IN_PROGRESS = "InProgress",
4393
- PENDING = "Pending",
4394
- STOPPED = "Stopped",
4395
- STOPPING = "Stopping"
4396
- }
4514
+ export declare const ExecutionStatus: {
4515
+ readonly COMPLETED: "Completed";
4516
+ readonly COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations";
4517
+ readonly FAILED: "Failed";
4518
+ readonly IN_PROGRESS: "InProgress";
4519
+ readonly PENDING: "Pending";
4520
+ readonly STOPPED: "Stopped";
4521
+ readonly STOPPING: "Stopping";
4522
+ };
4523
+ /**
4524
+ * @public
4525
+ */
4526
+ export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
4397
4527
  /**
4398
4528
  * @public
4399
4529
  * <p>Summary of information about the last monitoring job to run.</p>
@@ -4442,13 +4572,18 @@ export interface MonitoringExecutionSummary {
4442
4572
  }
4443
4573
  /**
4444
4574
  * @public
4575
+ * @enum
4445
4576
  */
4446
- export declare enum ScheduleStatus {
4447
- FAILED = "Failed",
4448
- PENDING = "Pending",
4449
- SCHEDULED = "Scheduled",
4450
- STOPPED = "Stopped"
4451
- }
4577
+ export declare const ScheduleStatus: {
4578
+ readonly FAILED: "Failed";
4579
+ readonly PENDING: "Pending";
4580
+ readonly SCHEDULED: "Scheduled";
4581
+ readonly STOPPED: "Stopped";
4582
+ };
4583
+ /**
4584
+ * @public
4585
+ */
4586
+ export type ScheduleStatus = (typeof ScheduleStatus)[keyof typeof ScheduleStatus];
4452
4587
  /**
4453
4588
  * @public
4454
4589
  */
@@ -4529,16 +4664,21 @@ export interface DescribeNotebookInstanceInput {
4529
4664
  }
4530
4665
  /**
4531
4666
  * @public
4667
+ * @enum
4532
4668
  */
4533
- export declare enum NotebookInstanceStatus {
4534
- Deleting = "Deleting",
4535
- Failed = "Failed",
4536
- InService = "InService",
4537
- Pending = "Pending",
4538
- Stopped = "Stopped",
4539
- Stopping = "Stopping",
4540
- Updating = "Updating"
4541
- }
4669
+ export declare const NotebookInstanceStatus: {
4670
+ readonly Deleting: "Deleting";
4671
+ readonly Failed: "Failed";
4672
+ readonly InService: "InService";
4673
+ readonly Pending: "Pending";
4674
+ readonly Stopped: "Stopped";
4675
+ readonly Stopping: "Stopping";
4676
+ readonly Updating: "Updating";
4677
+ };
4678
+ /**
4679
+ * @public
4680
+ */
4681
+ export type NotebookInstanceStatus = (typeof NotebookInstanceStatus)[keyof typeof NotebookInstanceStatus];
4542
4682
  /**
4543
4683
  * @public
4544
4684
  */
@@ -4713,10 +4853,15 @@ export interface DescribePipelineRequest {
4713
4853
  }
4714
4854
  /**
4715
4855
  * @public
4856
+ * @enum
4716
4857
  */
4717
- export declare enum PipelineStatus {
4718
- ACTIVE = "Active"
4719
- }
4858
+ export declare const PipelineStatus: {
4859
+ readonly ACTIVE: "Active";
4860
+ };
4861
+ /**
4862
+ * @public
4863
+ */
4864
+ export type PipelineStatus = (typeof PipelineStatus)[keyof typeof PipelineStatus];
4720
4865
  /**
4721
4866
  * @public
4722
4867
  */
@@ -4809,14 +4954,19 @@ export interface DescribePipelineExecutionRequest {
4809
4954
  }
4810
4955
  /**
4811
4956
  * @public
4957
+ * @enum
4812
4958
  */
4813
- export declare enum PipelineExecutionStatus {
4814
- EXECUTING = "Executing",
4815
- FAILED = "Failed",
4816
- STOPPED = "Stopped",
4817
- STOPPING = "Stopping",
4818
- SUCCEEDED = "Succeeded"
4819
- }
4959
+ export declare const PipelineExecutionStatus: {
4960
+ readonly EXECUTING: "Executing";
4961
+ readonly FAILED: "Failed";
4962
+ readonly STOPPED: "Stopped";
4963
+ readonly STOPPING: "Stopping";
4964
+ readonly SUCCEEDED: "Succeeded";
4965
+ };
4966
+ /**
4967
+ * @public
4968
+ */
4969
+ export type PipelineExecutionStatus = (typeof PipelineExecutionStatus)[keyof typeof PipelineExecutionStatus];
4820
4970
  /**
4821
4971
  * @public
4822
4972
  * <p>Specifies the names of the experiment and trial created by a pipeline.</p>
@@ -4898,14 +5048,19 @@ export interface DescribeProcessingJobRequest {
4898
5048
  }
4899
5049
  /**
4900
5050
  * @public
5051
+ * @enum
4901
5052
  */
4902
- export declare enum ProcessingJobStatus {
4903
- COMPLETED = "Completed",
4904
- FAILED = "Failed",
4905
- IN_PROGRESS = "InProgress",
4906
- STOPPED = "Stopped",
4907
- STOPPING = "Stopping"
4908
- }
5053
+ export declare const ProcessingJobStatus: {
5054
+ readonly COMPLETED: "Completed";
5055
+ readonly FAILED: "Failed";
5056
+ readonly IN_PROGRESS: "InProgress";
5057
+ readonly STOPPED: "Stopped";
5058
+ readonly STOPPING: "Stopping";
5059
+ };
5060
+ /**
5061
+ * @public
5062
+ */
5063
+ export type ProcessingJobStatus = (typeof ProcessingJobStatus)[keyof typeof ProcessingJobStatus];
4909
5064
  /**
4910
5065
  * @public
4911
5066
  */
@@ -5012,19 +5167,24 @@ export interface DescribeProjectInput {
5012
5167
  }
5013
5168
  /**
5014
5169
  * @public
5170
+ * @enum
5015
5171
  */
5016
- export declare enum ProjectStatus {
5017
- CREATE_COMPLETED = "CreateCompleted",
5018
- CREATE_FAILED = "CreateFailed",
5019
- CREATE_IN_PROGRESS = "CreateInProgress",
5020
- DELETE_COMPLETED = "DeleteCompleted",
5021
- DELETE_FAILED = "DeleteFailed",
5022
- DELETE_IN_PROGRESS = "DeleteInProgress",
5023
- PENDING = "Pending",
5024
- UPDATE_COMPLETED = "UpdateCompleted",
5025
- UPDATE_FAILED = "UpdateFailed",
5026
- UPDATE_IN_PROGRESS = "UpdateInProgress"
5027
- }
5172
+ export declare const ProjectStatus: {
5173
+ readonly CREATE_COMPLETED: "CreateCompleted";
5174
+ readonly CREATE_FAILED: "CreateFailed";
5175
+ readonly CREATE_IN_PROGRESS: "CreateInProgress";
5176
+ readonly DELETE_COMPLETED: "DeleteCompleted";
5177
+ readonly DELETE_FAILED: "DeleteFailed";
5178
+ readonly DELETE_IN_PROGRESS: "DeleteInProgress";
5179
+ readonly PENDING: "Pending";
5180
+ readonly UPDATE_COMPLETED: "UpdateCompleted";
5181
+ readonly UPDATE_FAILED: "UpdateFailed";
5182
+ readonly UPDATE_IN_PROGRESS: "UpdateInProgress";
5183
+ };
5184
+ /**
5185
+ * @public
5186
+ */
5187
+ export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus];
5028
5188
  /**
5029
5189
  * @public
5030
5190
  * <p>Details of a provisioned service catalog product. For information about service catalog,
@@ -5130,16 +5290,21 @@ export interface DescribeSpaceRequest {
5130
5290
  }
5131
5291
  /**
5132
5292
  * @public
5293
+ * @enum
5133
5294
  */
5134
- export declare enum SpaceStatus {
5135
- Delete_Failed = "Delete_Failed",
5136
- Deleting = "Deleting",
5137
- Failed = "Failed",
5138
- InService = "InService",
5139
- Pending = "Pending",
5140
- Update_Failed = "Update_Failed",
5141
- Updating = "Updating"
5142
- }
5295
+ export declare const SpaceStatus: {
5296
+ readonly Delete_Failed: "Delete_Failed";
5297
+ readonly Deleting: "Deleting";
5298
+ readonly Failed: "Failed";
5299
+ readonly InService: "InService";
5300
+ readonly Pending: "Pending";
5301
+ readonly Update_Failed: "Update_Failed";
5302
+ readonly Updating: "Updating";
5303
+ };
5304
+ /**
5305
+ * @public
5306
+ */
5307
+ export type SpaceStatus = (typeof SpaceStatus)[keyof typeof SpaceStatus];
5143
5308
  /**
5144
5309
  * @public
5145
5310
  */
@@ -5318,32 +5483,42 @@ export interface ProfilerRuleEvaluationStatus {
5318
5483
  }
5319
5484
  /**
5320
5485
  * @public
5486
+ * @enum
5321
5487
  */
5322
- export declare enum ProfilingStatus {
5323
- DISABLED = "Disabled",
5324
- ENABLED = "Enabled"
5325
- }
5488
+ export declare const ProfilingStatus: {
5489
+ readonly DISABLED: "Disabled";
5490
+ readonly ENABLED: "Enabled";
5491
+ };
5326
5492
  /**
5327
5493
  * @public
5328
5494
  */
5329
- export declare enum SecondaryStatus {
5330
- COMPLETED = "Completed",
5331
- DOWNLOADING = "Downloading",
5332
- DOWNLOADING_TRAINING_IMAGE = "DownloadingTrainingImage",
5333
- FAILED = "Failed",
5334
- INTERRUPTED = "Interrupted",
5335
- LAUNCHING_ML_INSTANCES = "LaunchingMLInstances",
5336
- MAX_RUNTIME_EXCEEDED = "MaxRuntimeExceeded",
5337
- MAX_WAIT_TIME_EXCEEDED = "MaxWaitTimeExceeded",
5338
- PREPARING_TRAINING_STACK = "PreparingTrainingStack",
5339
- RESTARTING = "Restarting",
5340
- STARTING = "Starting",
5341
- STOPPED = "Stopped",
5342
- STOPPING = "Stopping",
5343
- TRAINING = "Training",
5344
- UPDATING = "Updating",
5345
- UPLOADING = "Uploading"
5346
- }
5495
+ export type ProfilingStatus = (typeof ProfilingStatus)[keyof typeof ProfilingStatus];
5496
+ /**
5497
+ * @public
5498
+ * @enum
5499
+ */
5500
+ export declare const SecondaryStatus: {
5501
+ readonly COMPLETED: "Completed";
5502
+ readonly DOWNLOADING: "Downloading";
5503
+ readonly DOWNLOADING_TRAINING_IMAGE: "DownloadingTrainingImage";
5504
+ readonly FAILED: "Failed";
5505
+ readonly INTERRUPTED: "Interrupted";
5506
+ readonly LAUNCHING_ML_INSTANCES: "LaunchingMLInstances";
5507
+ readonly MAX_RUNTIME_EXCEEDED: "MaxRuntimeExceeded";
5508
+ readonly MAX_WAIT_TIME_EXCEEDED: "MaxWaitTimeExceeded";
5509
+ readonly PREPARING_TRAINING_STACK: "PreparingTrainingStack";
5510
+ readonly RESTARTING: "Restarting";
5511
+ readonly STARTING: "Starting";
5512
+ readonly STOPPED: "Stopped";
5513
+ readonly STOPPING: "Stopping";
5514
+ readonly TRAINING: "Training";
5515
+ readonly UPDATING: "Updating";
5516
+ readonly UPLOADING: "Uploading";
5517
+ };
5518
+ /**
5519
+ * @public
5520
+ */
5521
+ export type SecondaryStatus = (typeof SecondaryStatus)[keyof typeof SecondaryStatus];
5347
5522
  /**
5348
5523
  * @public
5349
5524
  * <p>An array element of <a>DescribeTrainingJobResponse$SecondaryStatusTransitions</a>. It provides
@@ -5533,13 +5708,18 @@ export interface SecondaryStatusTransition {
5533
5708
  }
5534
5709
  /**
5535
5710
  * @public
5711
+ * @enum
5536
5712
  */
5537
- export declare enum WarmPoolResourceStatus {
5538
- AVAILABLE = "Available",
5539
- INUSE = "InUse",
5540
- REUSED = "Reused",
5541
- TERMINATED = "Terminated"
5542
- }
5713
+ export declare const WarmPoolResourceStatus: {
5714
+ readonly AVAILABLE: "Available";
5715
+ readonly INUSE: "InUse";
5716
+ readonly REUSED: "Reused";
5717
+ readonly TERMINATED: "Terminated";
5718
+ };
5719
+ /**
5720
+ * @public
5721
+ */
5722
+ export type WarmPoolResourceStatus = (typeof WarmPoolResourceStatus)[keyof typeof WarmPoolResourceStatus];
5543
5723
  /**
5544
5724
  * @public
5545
5725
  * <p>Status and billing information about the warm pool.</p>
@@ -5965,14 +6145,19 @@ export interface DescribeTransformJobRequest {
5965
6145
  }
5966
6146
  /**
5967
6147
  * @public
6148
+ * @enum
5968
6149
  */
5969
- export declare enum TransformJobStatus {
5970
- COMPLETED = "Completed",
5971
- FAILED = "Failed",
5972
- IN_PROGRESS = "InProgress",
5973
- STOPPED = "Stopped",
5974
- STOPPING = "Stopping"
5975
- }
6150
+ export declare const TransformJobStatus: {
6151
+ readonly COMPLETED: "Completed";
6152
+ readonly FAILED: "Failed";
6153
+ readonly IN_PROGRESS: "InProgress";
6154
+ readonly STOPPED: "Stopped";
6155
+ readonly STOPPING: "Stopping";
6156
+ };
6157
+ /**
6158
+ * @public
6159
+ */
6160
+ export type TransformJobStatus = (typeof TransformJobStatus)[keyof typeof TransformJobStatus];
5976
6161
  /**
5977
6162
  * @public
5978
6163
  */
@@ -6362,16 +6547,21 @@ export interface DescribeUserProfileRequest {
6362
6547
  }
6363
6548
  /**
6364
6549
  * @public
6550
+ * @enum
6365
6551
  */
6366
- export declare enum UserProfileStatus {
6367
- Delete_Failed = "Delete_Failed",
6368
- Deleting = "Deleting",
6369
- Failed = "Failed",
6370
- InService = "InService",
6371
- Pending = "Pending",
6372
- Update_Failed = "Update_Failed",
6373
- Updating = "Updating"
6374
- }
6552
+ export declare const UserProfileStatus: {
6553
+ readonly Delete_Failed: "Delete_Failed";
6554
+ readonly Deleting: "Deleting";
6555
+ readonly Failed: "Failed";
6556
+ readonly InService: "InService";
6557
+ readonly Pending: "Pending";
6558
+ readonly Update_Failed: "Update_Failed";
6559
+ readonly Updating: "Updating";
6560
+ };
6561
+ /**
6562
+ * @public
6563
+ */
6564
+ export type UserProfileStatus = (typeof UserProfileStatus)[keyof typeof UserProfileStatus];
6375
6565
  /**
6376
6566
  * @public
6377
6567
  */
@@ -6468,14 +6658,19 @@ export interface OidcConfigForResponse {
6468
6658
  }
6469
6659
  /**
6470
6660
  * @public
6661
+ * @enum
6471
6662
  */
6472
- export declare enum WorkforceStatus {
6473
- ACTIVE = "Active",
6474
- DELETING = "Deleting",
6475
- FAILED = "Failed",
6476
- INITIALIZING = "Initializing",
6477
- UPDATING = "Updating"
6478
- }
6663
+ export declare const WorkforceStatus: {
6664
+ readonly ACTIVE: "Active";
6665
+ readonly DELETING: "Deleting";
6666
+ readonly FAILED: "Failed";
6667
+ readonly INITIALIZING: "Initializing";
6668
+ readonly UPDATING: "Updating";
6669
+ };
6670
+ /**
6671
+ * @public
6672
+ */
6673
+ export type WorkforceStatus = (typeof WorkforceStatus)[keyof typeof WorkforceStatus];
6479
6674
  /**
6480
6675
  * @public
6481
6676
  * <p>A VpcConfig object that specifies the VPC that you want your workforce to connect to.</p>
@@ -6679,15 +6874,20 @@ export interface Device {
6679
6874
  }
6680
6875
  /**
6681
6876
  * @public
6877
+ * @enum
6682
6878
  */
6683
- export declare enum DeviceDeploymentStatus {
6684
- Deployed = "DEPLOYED",
6685
- Failed = "FAILED",
6686
- InProgress = "INPROGRESS",
6687
- ReadyToDeploy = "READYTODEPLOY",
6688
- Stopped = "STOPPED",
6689
- Stopping = "STOPPING"
6690
- }
6879
+ export declare const DeviceDeploymentStatus: {
6880
+ readonly Deployed: "DEPLOYED";
6881
+ readonly Failed: "FAILED";
6882
+ readonly InProgress: "INPROGRESS";
6883
+ readonly ReadyToDeploy: "READYTODEPLOY";
6884
+ readonly Stopped: "STOPPED";
6885
+ readonly Stopping: "STOPPING";
6886
+ };
6887
+ /**
6888
+ * @public
6889
+ */
6890
+ export type DeviceDeploymentStatus = (typeof DeviceDeploymentStatus)[keyof typeof DeviceDeploymentStatus];
6691
6891
  /**
6692
6892
  * @public
6693
6893
  * <p>Contains information summarizing device details and deployment status.</p>
@@ -6832,12 +7032,17 @@ export interface DeviceSummary {
6832
7032
  }
6833
7033
  /**
6834
7034
  * @public
7035
+ * @enum
6835
7036
  */
6836
- export declare enum Direction {
6837
- ASCENDANTS = "Ascendants",
6838
- BOTH = "Both",
6839
- DESCENDANTS = "Descendants"
6840
- }
7037
+ export declare const Direction: {
7038
+ readonly ASCENDANTS: "Ascendants";
7039
+ readonly BOTH: "Both";
7040
+ readonly DESCENDANTS: "Descendants";
7041
+ };
7042
+ /**
7043
+ * @public
7044
+ */
7045
+ export type Direction = (typeof Direction)[keyof typeof Direction];
6841
7046
  /**
6842
7047
  * @public
6843
7048
  */
@@ -7243,11 +7448,16 @@ export interface Endpoint {
7243
7448
  }
7244
7449
  /**
7245
7450
  * @public
7451
+ * @enum
7246
7452
  */
7247
- export declare enum EndpointConfigSortKey {
7248
- CreationTime = "CreationTime",
7249
- Name = "Name"
7250
- }
7453
+ export declare const EndpointConfigSortKey: {
7454
+ readonly CreationTime: "CreationTime";
7455
+ readonly Name: "Name";
7456
+ };
7457
+ /**
7458
+ * @public
7459
+ */
7460
+ export type EndpointConfigSortKey = (typeof EndpointConfigSortKey)[keyof typeof EndpointConfigSortKey];
7251
7461
  /**
7252
7462
  * @public
7253
7463
  * <p>Provides summary information for an endpoint configuration.</p>
@@ -7268,12 +7478,17 @@ export interface EndpointConfigSummary {
7268
7478
  }
7269
7479
  /**
7270
7480
  * @public
7481
+ * @enum
7271
7482
  */
7272
- export declare enum EndpointSortKey {
7273
- CreationTime = "CreationTime",
7274
- Name = "Name",
7275
- Status = "Status"
7276
- }
7483
+ export declare const EndpointSortKey: {
7484
+ readonly CreationTime: "CreationTime";
7485
+ readonly Name: "Name";
7486
+ readonly Status: "Status";
7487
+ };
7488
+ /**
7489
+ * @public
7490
+ */
7491
+ export type EndpointSortKey = (typeof EndpointSortKey)[keyof typeof EndpointSortKey];
7277
7492
  /**
7278
7493
  * @public
7279
7494
  * <p>Provides summary information for an endpoint.</p>
@@ -7543,20 +7758,30 @@ export interface FeatureGroup {
7543
7758
  }
7544
7759
  /**
7545
7760
  * @public
7761
+ * @enum
7546
7762
  */
7547
- export declare enum FeatureGroupSortBy {
7548
- CREATION_TIME = "CreationTime",
7549
- FEATURE_GROUP_STATUS = "FeatureGroupStatus",
7550
- NAME = "Name",
7551
- OFFLINE_STORE_STATUS = "OfflineStoreStatus"
7552
- }
7763
+ export declare const FeatureGroupSortBy: {
7764
+ readonly CREATION_TIME: "CreationTime";
7765
+ readonly FEATURE_GROUP_STATUS: "FeatureGroupStatus";
7766
+ readonly NAME: "Name";
7767
+ readonly OFFLINE_STORE_STATUS: "OfflineStoreStatus";
7768
+ };
7553
7769
  /**
7554
7770
  * @public
7555
7771
  */
7556
- export declare enum FeatureGroupSortOrder {
7557
- ASCENDING = "Ascending",
7558
- DESCENDING = "Descending"
7559
- }
7772
+ export type FeatureGroupSortBy = (typeof FeatureGroupSortBy)[keyof typeof FeatureGroupSortBy];
7773
+ /**
7774
+ * @public
7775
+ * @enum
7776
+ */
7777
+ export declare const FeatureGroupSortOrder: {
7778
+ readonly ASCENDING: "Ascending";
7779
+ readonly DESCENDING: "Descending";
7780
+ };
7781
+ /**
7782
+ * @public
7783
+ */
7784
+ export type FeatureGroupSortOrder = (typeof FeatureGroupSortOrder)[keyof typeof FeatureGroupSortOrder];
7560
7785
  /**
7561
7786
  * @public
7562
7787
  * <p>The name, Arn, <code>CreationTime</code>, <code>FeatureGroup</code> values,
@@ -7628,19 +7853,24 @@ export interface FeatureMetadata {
7628
7853
  }
7629
7854
  /**
7630
7855
  * @public
7856
+ * @enum
7631
7857
  */
7632
- export declare enum Operator {
7633
- CONTAINS = "Contains",
7634
- EQUALS = "Equals",
7635
- EXISTS = "Exists",
7636
- GREATER_THAN = "GreaterThan",
7637
- GREATER_THAN_OR_EQUAL_TO = "GreaterThanOrEqualTo",
7638
- IN = "In",
7639
- LESS_THAN = "LessThan",
7640
- LESS_THAN_OR_EQUAL_TO = "LessThanOrEqualTo",
7641
- NOT_EQUALS = "NotEquals",
7642
- NOT_EXISTS = "NotExists"
7643
- }
7858
+ export declare const Operator: {
7859
+ readonly CONTAINS: "Contains";
7860
+ readonly EQUALS: "Equals";
7861
+ readonly EXISTS: "Exists";
7862
+ readonly GREATER_THAN: "GreaterThan";
7863
+ readonly GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo";
7864
+ readonly IN: "In";
7865
+ readonly LESS_THAN: "LessThan";
7866
+ readonly LESS_THAN_OR_EQUAL_TO: "LessThanOrEqualTo";
7867
+ readonly NOT_EQUALS: "NotEquals";
7868
+ readonly NOT_EXISTS: "NotExists";
7869
+ };
7870
+ /**
7871
+ * @public
7872
+ */
7873
+ export type Operator = (typeof Operator)[keyof typeof Operator];
7644
7874
  /**
7645
7875
  * @public
7646
7876
  * <p>A conditional statement for a search expression that includes a resource property, a
@@ -7958,11 +8188,16 @@ export interface GetSagemakerServicecatalogPortfolioStatusInput {
7958
8188
  }
7959
8189
  /**
7960
8190
  * @public
8191
+ * @enum
7961
8192
  */
7962
- export declare enum SagemakerServicecatalogStatus {
7963
- DISABLED = "Disabled",
7964
- ENABLED = "Enabled"
7965
- }
8193
+ export declare const SagemakerServicecatalogStatus: {
8194
+ readonly DISABLED: "Disabled";
8195
+ readonly ENABLED: "Enabled";
8196
+ };
8197
+ /**
8198
+ * @public
8199
+ */
8200
+ export type SagemakerServicecatalogStatus = (typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
7966
8201
  /**
7967
8202
  * @public
7968
8203
  */
@@ -7974,24 +8209,29 @@ export interface GetSagemakerServicecatalogPortfolioStatusOutput {
7974
8209
  }
7975
8210
  /**
7976
8211
  * @public
8212
+ * @enum
7977
8213
  */
7978
- export declare enum ResourceType {
7979
- ENDPOINT = "Endpoint",
7980
- EXPERIMENT = "Experiment",
7981
- EXPERIMENT_TRIAL = "ExperimentTrial",
7982
- EXPERIMENT_TRIAL_COMPONENT = "ExperimentTrialComponent",
7983
- FEATURE_GROUP = "FeatureGroup",
7984
- FEATURE_METADATA = "FeatureMetadata",
7985
- HYPER_PARAMETER_TUNING_JOB = "HyperParameterTuningJob",
7986
- MODEL = "Model",
7987
- MODEL_CARD = "ModelCard",
7988
- MODEL_PACKAGE = "ModelPackage",
7989
- MODEL_PACKAGE_GROUP = "ModelPackageGroup",
7990
- PIPELINE = "Pipeline",
7991
- PIPELINE_EXECUTION = "PipelineExecution",
7992
- PROJECT = "Project",
7993
- TRAINING_JOB = "TrainingJob"
7994
- }
8214
+ export declare const ResourceType: {
8215
+ readonly ENDPOINT: "Endpoint";
8216
+ readonly EXPERIMENT: "Experiment";
8217
+ readonly EXPERIMENT_TRIAL: "ExperimentTrial";
8218
+ readonly EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent";
8219
+ readonly FEATURE_GROUP: "FeatureGroup";
8220
+ readonly FEATURE_METADATA: "FeatureMetadata";
8221
+ readonly HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob";
8222
+ readonly MODEL: "Model";
8223
+ readonly MODEL_CARD: "ModelCard";
8224
+ readonly MODEL_PACKAGE: "ModelPackage";
8225
+ readonly MODEL_PACKAGE_GROUP: "ModelPackageGroup";
8226
+ readonly PIPELINE: "Pipeline";
8227
+ readonly PIPELINE_EXECUTION: "PipelineExecution";
8228
+ readonly PROJECT: "Project";
8229
+ readonly TRAINING_JOB: "TrainingJob";
8230
+ };
8231
+ /**
8232
+ * @public
8233
+ */
8234
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
7995
8235
  /**
7996
8236
  * @public
7997
8237
  * <p>Part of the <code>SuggestionQuery</code> type. Specifies a hint for retrieving property
@@ -8115,12 +8355,17 @@ export interface HubContentInfo {
8115
8355
  }
8116
8356
  /**
8117
8357
  * @public
8358
+ * @enum
8118
8359
  */
8119
- export declare enum HubContentSortBy {
8120
- CREATION_TIME = "CreationTime",
8121
- HUB_CONTENT_NAME = "HubContentName",
8122
- HUB_CONTENT_STATUS = "HubContentStatus"
8123
- }
8360
+ export declare const HubContentSortBy: {
8361
+ readonly CREATION_TIME: "CreationTime";
8362
+ readonly HUB_CONTENT_NAME: "HubContentName";
8363
+ readonly HUB_CONTENT_STATUS: "HubContentStatus";
8364
+ };
8365
+ /**
8366
+ * @public
8367
+ */
8368
+ export type HubContentSortBy = (typeof HubContentSortBy)[keyof typeof HubContentSortBy];
8124
8369
  /**
8125
8370
  * @public
8126
8371
  * <p>Information about a hub.</p>
@@ -8161,13 +8406,18 @@ export interface HubInfo {
8161
8406
  }
8162
8407
  /**
8163
8408
  * @public
8409
+ * @enum
8164
8410
  */
8165
- export declare enum HubSortBy {
8166
- ACCOUNT_ID_OWNER = "AccountIdOwner",
8167
- CREATION_TIME = "CreationTime",
8168
- HUB_NAME = "HubName",
8169
- HUB_STATUS = "HubStatus"
8170
- }
8411
+ export declare const HubSortBy: {
8412
+ readonly ACCOUNT_ID_OWNER: "AccountIdOwner";
8413
+ readonly CREATION_TIME: "CreationTime";
8414
+ readonly HUB_NAME: "HubName";
8415
+ readonly HUB_STATUS: "HubStatus";
8416
+ };
8417
+ /**
8418
+ * @public
8419
+ */
8420
+ export type HubSortBy = (typeof HubSortBy)[keyof typeof HubSortBy];
8171
8421
  /**
8172
8422
  * @public
8173
8423
  * <p>Container for human task user interface information.</p>
@@ -8287,12 +8537,17 @@ export interface HyperParameterTuningJobSearchEntity {
8287
8537
  }
8288
8538
  /**
8289
8539
  * @public
8540
+ * @enum
8290
8541
  */
8291
- export declare enum HyperParameterTuningJobSortByOptions {
8292
- CreationTime = "CreationTime",
8293
- Name = "Name",
8294
- Status = "Status"
8295
- }
8542
+ export declare const HyperParameterTuningJobSortByOptions: {
8543
+ readonly CreationTime: "CreationTime";
8544
+ readonly Name: "Name";
8545
+ readonly Status: "Status";
8546
+ };
8547
+ /**
8548
+ * @public
8549
+ */
8550
+ export type HyperParameterTuningJobSortByOptions = (typeof HyperParameterTuningJobSortByOptions)[keyof typeof HyperParameterTuningJobSortByOptions];
8296
8551
  /**
8297
8552
  * @public
8298
8553
  * <p>Provides summary information about a hyperparameter tuning job.</p>
@@ -8393,19 +8648,29 @@ export interface Image {
8393
8648
  }
8394
8649
  /**
8395
8650
  * @public
8651
+ * @enum
8396
8652
  */
8397
- export declare enum ImageSortBy {
8398
- CREATION_TIME = "CREATION_TIME",
8399
- IMAGE_NAME = "IMAGE_NAME",
8400
- LAST_MODIFIED_TIME = "LAST_MODIFIED_TIME"
8401
- }
8653
+ export declare const ImageSortBy: {
8654
+ readonly CREATION_TIME: "CREATION_TIME";
8655
+ readonly IMAGE_NAME: "IMAGE_NAME";
8656
+ readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
8657
+ };
8402
8658
  /**
8403
8659
  * @public
8404
8660
  */
8405
- export declare enum ImageSortOrder {
8406
- ASCENDING = "ASCENDING",
8407
- DESCENDING = "DESCENDING"
8408
- }
8661
+ export type ImageSortBy = (typeof ImageSortBy)[keyof typeof ImageSortBy];
8662
+ /**
8663
+ * @public
8664
+ * @enum
8665
+ */
8666
+ export declare const ImageSortOrder: {
8667
+ readonly ASCENDING: "ASCENDING";
8668
+ readonly DESCENDING: "DESCENDING";
8669
+ };
8670
+ /**
8671
+ * @public
8672
+ */
8673
+ export type ImageSortOrder = (typeof ImageSortOrder)[keyof typeof ImageSortOrder];
8409
8674
  /**
8410
8675
  * @public
8411
8676
  * <p>A version of a SageMaker <code>Image</code>. A version represents an existing container
@@ -8443,19 +8708,29 @@ export interface ImageVersion {
8443
8708
  }
8444
8709
  /**
8445
8710
  * @public
8711
+ * @enum
8446
8712
  */
8447
- export declare enum ImageVersionSortBy {
8448
- CREATION_TIME = "CREATION_TIME",
8449
- LAST_MODIFIED_TIME = "LAST_MODIFIED_TIME",
8450
- VERSION = "VERSION"
8451
- }
8713
+ export declare const ImageVersionSortBy: {
8714
+ readonly CREATION_TIME: "CREATION_TIME";
8715
+ readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
8716
+ readonly VERSION: "VERSION";
8717
+ };
8452
8718
  /**
8453
8719
  * @public
8454
8720
  */
8455
- export declare enum ImageVersionSortOrder {
8456
- ASCENDING = "ASCENDING",
8457
- DESCENDING = "DESCENDING"
8458
- }
8721
+ export type ImageVersionSortBy = (typeof ImageVersionSortBy)[keyof typeof ImageVersionSortBy];
8722
+ /**
8723
+ * @public
8724
+ * @enum
8725
+ */
8726
+ export declare const ImageVersionSortOrder: {
8727
+ readonly ASCENDING: "ASCENDING";
8728
+ readonly DESCENDING: "DESCENDING";
8729
+ };
8730
+ /**
8731
+ * @public
8732
+ */
8733
+ export type ImageVersionSortOrder = (typeof ImageVersionSortOrder)[keyof typeof ImageVersionSortOrder];
8459
8734
  /**
8460
8735
  * @public
8461
8736
  */
@@ -8570,11 +8845,16 @@ export interface InferenceExperimentSummary {
8570
8845
  }
8571
8846
  /**
8572
8847
  * @public
8848
+ * @enum
8573
8849
  */
8574
- export declare enum InferenceExperimentStopDesiredState {
8575
- CANCELLED = "Cancelled",
8576
- COMPLETED = "Completed"
8577
- }
8850
+ export declare const InferenceExperimentStopDesiredState: {
8851
+ readonly CANCELLED: "Cancelled";
8852
+ readonly COMPLETED: "Completed";
8853
+ };
8854
+ /**
8855
+ * @public
8856
+ */
8857
+ export type InferenceExperimentStopDesiredState = (typeof InferenceExperimentStopDesiredState)[keyof typeof InferenceExperimentStopDesiredState];
8578
8858
  /**
8579
8859
  * @public
8580
8860
  * <p>A structure that contains a list of recommendation jobs.</p>
@@ -8650,10 +8930,15 @@ export interface RecommendationJobInferenceBenchmark {
8650
8930
  }
8651
8931
  /**
8652
8932
  * @public
8933
+ * @enum
8653
8934
  */
8654
- export declare enum RecommendationStepType {
8655
- BENCHMARK = "BENCHMARK"
8656
- }
8935
+ export declare const RecommendationStepType: {
8936
+ readonly BENCHMARK: "BENCHMARK";
8937
+ };
8938
+ /**
8939
+ * @public
8940
+ */
8941
+ export type RecommendationStepType = (typeof RecommendationStepType)[keyof typeof RecommendationStepType];
8657
8942
  /**
8658
8943
  * @public
8659
8944
  * <p>A returned array object for the <code>Steps</code> response field in the