@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.
@@ -183,20 +183,23 @@ export interface LineageGroupSummary {
183
183
  CreationTime?: Date;
184
184
  LastModifiedTime?: Date;
185
185
  }
186
- export declare enum LineageType {
187
- ACTION = "Action",
188
- ARTIFACT = "Artifact",
189
- CONTEXT = "Context",
190
- TRIAL_COMPONENT = "TrialComponent",
191
- }
192
- export declare enum SortActionsBy {
193
- CREATION_TIME = "CreationTime",
194
- NAME = "Name",
195
- }
196
- export declare enum SortOrder {
197
- ASCENDING = "Ascending",
198
- DESCENDING = "Descending",
199
- }
186
+ export declare const LineageType: {
187
+ readonly ACTION: "Action";
188
+ readonly ARTIFACT: "Artifact";
189
+ readonly CONTEXT: "Context";
190
+ readonly TRIAL_COMPONENT: "TrialComponent";
191
+ };
192
+ export type LineageType = (typeof LineageType)[keyof typeof LineageType];
193
+ export declare const SortActionsBy: {
194
+ readonly CREATION_TIME: "CreationTime";
195
+ readonly NAME: "Name";
196
+ };
197
+ export type SortActionsBy = (typeof SortActionsBy)[keyof typeof SortActionsBy];
198
+ export declare const SortOrder: {
199
+ readonly ASCENDING: "Ascending";
200
+ readonly DESCENDING: "Descending";
201
+ };
202
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
200
203
  export interface ListActionsRequest {
201
204
  SourceUri?: string;
202
205
  ActionType?: string;
@@ -263,9 +266,11 @@ export interface ListAppsResponse {
263
266
  Apps?: AppDetails[];
264
267
  NextToken?: string;
265
268
  }
266
- export declare enum SortArtifactsBy {
267
- CREATION_TIME = "CreationTime",
268
- }
269
+ export declare const SortArtifactsBy: {
270
+ readonly CREATION_TIME: "CreationTime";
271
+ };
272
+ export type SortArtifactsBy =
273
+ (typeof SortArtifactsBy)[keyof typeof SortArtifactsBy];
269
274
  export interface ListArtifactsRequest {
270
275
  SourceUri?: string;
271
276
  ArtifactType?: string;
@@ -280,13 +285,15 @@ export interface ListArtifactsResponse {
280
285
  ArtifactSummaries?: ArtifactSummary[];
281
286
  NextToken?: string;
282
287
  }
283
- export declare enum SortAssociationsBy {
284
- CREATION_TIME = "CreationTime",
285
- DESTINATION_ARN = "DestinationArn",
286
- DESTINATION_TYPE = "DestinationType",
287
- SOURCE_ARN = "SourceArn",
288
- SOURCE_TYPE = "SourceType",
289
- }
288
+ export declare const SortAssociationsBy: {
289
+ readonly CREATION_TIME: "CreationTime";
290
+ readonly DESTINATION_ARN: "DestinationArn";
291
+ readonly DESTINATION_TYPE: "DestinationType";
292
+ readonly SOURCE_ARN: "SourceArn";
293
+ readonly SOURCE_TYPE: "SourceType";
294
+ };
295
+ export type SortAssociationsBy =
296
+ (typeof SortAssociationsBy)[keyof typeof SortAssociationsBy];
290
297
  export interface ListAssociationsRequest {
291
298
  SourceArn?: string;
292
299
  DestinationArn?: string;
@@ -348,11 +355,13 @@ export interface ListCodeRepositoriesOutput {
348
355
  CodeRepositorySummaryList: CodeRepositorySummary[] | undefined;
349
356
  NextToken?: string;
350
357
  }
351
- export declare enum ListCompilationJobsSortBy {
352
- CREATION_TIME = "CreationTime",
353
- NAME = "Name",
354
- STATUS = "Status",
355
- }
358
+ export declare const ListCompilationJobsSortBy: {
359
+ readonly CREATION_TIME: "CreationTime";
360
+ readonly NAME: "Name";
361
+ readonly STATUS: "Status";
362
+ };
363
+ export type ListCompilationJobsSortBy =
364
+ (typeof ListCompilationJobsSortBy)[keyof typeof ListCompilationJobsSortBy];
356
365
  export interface ListCompilationJobsRequest {
357
366
  NextToken?: string;
358
367
  MaxResults?: number;
@@ -369,10 +378,12 @@ export interface ListCompilationJobsResponse {
369
378
  CompilationJobSummaries: CompilationJobSummary[] | undefined;
370
379
  NextToken?: string;
371
380
  }
372
- export declare enum SortContextsBy {
373
- CREATION_TIME = "CreationTime",
374
- NAME = "Name",
375
- }
381
+ export declare const SortContextsBy: {
382
+ readonly CREATION_TIME: "CreationTime";
383
+ readonly NAME: "Name";
384
+ };
385
+ export type SortContextsBy =
386
+ (typeof SortContextsBy)[keyof typeof SortContextsBy];
376
387
  export interface ListContextsRequest {
377
388
  SourceUri?: string;
378
389
  ContextType?: string;
@@ -387,10 +398,12 @@ export interface ListContextsResponse {
387
398
  ContextSummaries?: ContextSummary[];
388
399
  NextToken?: string;
389
400
  }
390
- export declare enum MonitoringJobDefinitionSortKey {
391
- CREATION_TIME = "CreationTime",
392
- NAME = "Name",
393
- }
401
+ export declare const MonitoringJobDefinitionSortKey: {
402
+ readonly CREATION_TIME: "CreationTime";
403
+ readonly NAME: "Name";
404
+ };
405
+ export type MonitoringJobDefinitionSortKey =
406
+ (typeof MonitoringJobDefinitionSortKey)[keyof typeof MonitoringJobDefinitionSortKey];
394
407
  export interface ListDataQualityJobDefinitionsRequest {
395
408
  EndpointName?: string;
396
409
  SortBy?: MonitoringJobDefinitionSortKey | string;
@@ -411,11 +424,13 @@ export interface ListDataQualityJobDefinitionsResponse {
411
424
  JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
412
425
  NextToken?: string;
413
426
  }
414
- export declare enum ListDeviceFleetsSortBy {
415
- CreationTime = "CREATION_TIME",
416
- LastModifiedTime = "LAST_MODIFIED_TIME",
417
- Name = "NAME",
418
- }
427
+ export declare const ListDeviceFleetsSortBy: {
428
+ readonly CreationTime: "CREATION_TIME";
429
+ readonly LastModifiedTime: "LAST_MODIFIED_TIME";
430
+ readonly Name: "NAME";
431
+ };
432
+ export type ListDeviceFleetsSortBy =
433
+ (typeof ListDeviceFleetsSortBy)[keyof typeof ListDeviceFleetsSortBy];
419
434
  export interface ListDeviceFleetsRequest {
420
435
  NextToken?: string;
421
436
  MaxResults?: number;
@@ -450,12 +465,14 @@ export interface ListDomainsResponse {
450
465
  Domains?: DomainDetails[];
451
466
  NextToken?: string;
452
467
  }
453
- export declare enum ListEdgeDeploymentPlansSortBy {
454
- CreationTime = "CREATION_TIME",
455
- DeviceFleetName = "DEVICE_FLEET_NAME",
456
- LastModifiedTime = "LAST_MODIFIED_TIME",
457
- Name = "NAME",
458
- }
468
+ export declare const ListEdgeDeploymentPlansSortBy: {
469
+ readonly CreationTime: "CREATION_TIME";
470
+ readonly DeviceFleetName: "DEVICE_FLEET_NAME";
471
+ readonly LastModifiedTime: "LAST_MODIFIED_TIME";
472
+ readonly Name: "NAME";
473
+ };
474
+ export type ListEdgeDeploymentPlansSortBy =
475
+ (typeof ListEdgeDeploymentPlansSortBy)[keyof typeof ListEdgeDeploymentPlansSortBy];
459
476
  export interface ListEdgeDeploymentPlansRequest {
460
477
  NextToken?: string;
461
478
  MaxResults?: number;
@@ -472,13 +489,15 @@ export interface ListEdgeDeploymentPlansResponse {
472
489
  EdgeDeploymentPlanSummaries: EdgeDeploymentPlanSummary[] | undefined;
473
490
  NextToken?: string;
474
491
  }
475
- export declare enum ListEdgePackagingJobsSortBy {
476
- CreationTime = "CREATION_TIME",
477
- EdgePackagingJobStatus = "STATUS",
478
- LastModifiedTime = "LAST_MODIFIED_TIME",
479
- ModelName = "MODEL_NAME",
480
- Name = "NAME",
481
- }
492
+ export declare const ListEdgePackagingJobsSortBy: {
493
+ readonly CreationTime: "CREATION_TIME";
494
+ readonly EdgePackagingJobStatus: "STATUS";
495
+ readonly LastModifiedTime: "LAST_MODIFIED_TIME";
496
+ readonly ModelName: "MODEL_NAME";
497
+ readonly Name: "NAME";
498
+ };
499
+ export type ListEdgePackagingJobsSortBy =
500
+ (typeof ListEdgePackagingJobsSortBy)[keyof typeof ListEdgePackagingJobsSortBy];
482
501
  export interface ListEdgePackagingJobsRequest {
483
502
  NextToken?: string;
484
503
  MaxResults?: number;
@@ -496,10 +515,11 @@ export interface ListEdgePackagingJobsResponse {
496
515
  EdgePackagingJobSummaries: EdgePackagingJobSummary[] | undefined;
497
516
  NextToken?: string;
498
517
  }
499
- export declare enum OrderKey {
500
- Ascending = "Ascending",
501
- Descending = "Descending",
502
- }
518
+ export declare const OrderKey: {
519
+ readonly Ascending: "Ascending";
520
+ readonly Descending: "Descending";
521
+ };
522
+ export type OrderKey = (typeof OrderKey)[keyof typeof OrderKey];
503
523
  export interface ListEndpointConfigsInput {
504
524
  SortBy?: EndpointConfigSortKey | string;
505
525
  SortOrder?: OrderKey | string;
@@ -529,10 +549,12 @@ export interface ListEndpointsOutput {
529
549
  Endpoints: EndpointSummary[] | undefined;
530
550
  NextToken?: string;
531
551
  }
532
- export declare enum SortExperimentsBy {
533
- CREATION_TIME = "CreationTime",
534
- NAME = "Name",
535
- }
552
+ export declare const SortExperimentsBy: {
553
+ readonly CREATION_TIME: "CreationTime";
554
+ readonly NAME: "Name";
555
+ };
556
+ export type SortExperimentsBy =
557
+ (typeof SortExperimentsBy)[keyof typeof SortExperimentsBy];
536
558
  export interface ListExperimentsRequest {
537
559
  CreatedAfter?: Date;
538
560
  CreatedBefore?: Date;
@@ -678,11 +700,13 @@ export interface ListImageVersionsResponse {
678
700
  ImageVersions?: ImageVersion[];
679
701
  NextToken?: string;
680
702
  }
681
- export declare enum SortInferenceExperimentsBy {
682
- CREATION_TIME = "CreationTime",
683
- NAME = "Name",
684
- STATUS = "Status",
685
- }
703
+ export declare const SortInferenceExperimentsBy: {
704
+ readonly CREATION_TIME: "CreationTime";
705
+ readonly NAME: "Name";
706
+ readonly STATUS: "Status";
707
+ };
708
+ export type SortInferenceExperimentsBy =
709
+ (typeof SortInferenceExperimentsBy)[keyof typeof SortInferenceExperimentsBy];
686
710
  export interface ListInferenceExperimentsRequest {
687
711
  NameContains?: string;
688
712
  Type?: InferenceExperimentType | string;
@@ -700,11 +724,13 @@ export interface ListInferenceExperimentsResponse {
700
724
  InferenceExperiments?: InferenceExperimentSummary[];
701
725
  NextToken?: string;
702
726
  }
703
- export declare enum ListInferenceRecommendationsJobsSortBy {
704
- CREATION_TIME = "CreationTime",
705
- NAME = "Name",
706
- STATUS = "Status",
707
- }
727
+ export declare const ListInferenceRecommendationsJobsSortBy: {
728
+ readonly CREATION_TIME: "CreationTime";
729
+ readonly NAME: "Name";
730
+ readonly STATUS: "Status";
731
+ };
732
+ export type ListInferenceRecommendationsJobsSortBy =
733
+ (typeof ListInferenceRecommendationsJobsSortBy)[keyof typeof ListInferenceRecommendationsJobsSortBy];
708
734
  export interface ListInferenceRecommendationsJobsRequest {
709
735
  CreationTimeAfter?: Date;
710
736
  CreationTimeBefore?: Date;
@@ -732,11 +758,12 @@ export interface ListInferenceRecommendationsJobStepsResponse {
732
758
  Steps?: InferenceRecommendationsJobStep[];
733
759
  NextToken?: string;
734
760
  }
735
- export declare enum SortBy {
736
- CREATION_TIME = "CreationTime",
737
- NAME = "Name",
738
- STATUS = "Status",
739
- }
761
+ export declare const SortBy: {
762
+ readonly CREATION_TIME: "CreationTime";
763
+ readonly NAME: "Name";
764
+ readonly STATUS: "Status";
765
+ };
766
+ export type SortBy = (typeof SortBy)[keyof typeof SortBy];
740
767
  export interface ListLabelingJobsRequest {
741
768
  CreationTimeAfter?: Date;
742
769
  CreationTimeBefore?: Date;
@@ -753,9 +780,11 @@ export interface ListLabelingJobsResponse {
753
780
  LabelingJobSummaryList?: LabelingJobSummary[];
754
781
  NextToken?: string;
755
782
  }
756
- export declare enum ListLabelingJobsForWorkteamSortByOptions {
757
- CREATION_TIME = "CreationTime",
758
- }
783
+ export declare const ListLabelingJobsForWorkteamSortByOptions: {
784
+ readonly CREATION_TIME: "CreationTime";
785
+ };
786
+ export type ListLabelingJobsForWorkteamSortByOptions =
787
+ (typeof ListLabelingJobsForWorkteamSortByOptions)[keyof typeof ListLabelingJobsForWorkteamSortByOptions];
759
788
  export interface ListLabelingJobsForWorkteamRequest {
760
789
  WorkteamArn: string | undefined;
761
790
  MaxResults?: number;
@@ -770,10 +799,12 @@ export interface ListLabelingJobsForWorkteamResponse {
770
799
  LabelingJobSummaryList: LabelingJobForWorkteamSummary[] | undefined;
771
800
  NextToken?: string;
772
801
  }
773
- export declare enum SortLineageGroupsBy {
774
- CREATION_TIME = "CreationTime",
775
- NAME = "Name",
776
- }
802
+ export declare const SortLineageGroupsBy: {
803
+ readonly CREATION_TIME: "CreationTime";
804
+ readonly NAME: "Name";
805
+ };
806
+ export type SortLineageGroupsBy =
807
+ (typeof SortLineageGroupsBy)[keyof typeof SortLineageGroupsBy];
777
808
  export interface ListLineageGroupsRequest {
778
809
  CreatedAfter?: Date;
779
810
  CreatedBefore?: Date;
@@ -800,15 +831,19 @@ export interface ListModelBiasJobDefinitionsResponse {
800
831
  JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
801
832
  NextToken?: string;
802
833
  }
803
- export declare enum ModelCardExportJobSortBy {
804
- CREATION_TIME = "CreationTime",
805
- NAME = "Name",
806
- STATUS = "Status",
807
- }
808
- export declare enum ModelCardExportJobSortOrder {
809
- ASCENDING = "Ascending",
810
- DESCENDING = "Descending",
811
- }
834
+ export declare const ModelCardExportJobSortBy: {
835
+ readonly CREATION_TIME: "CreationTime";
836
+ readonly NAME: "Name";
837
+ readonly STATUS: "Status";
838
+ };
839
+ export type ModelCardExportJobSortBy =
840
+ (typeof ModelCardExportJobSortBy)[keyof typeof ModelCardExportJobSortBy];
841
+ export declare const ModelCardExportJobSortOrder: {
842
+ readonly ASCENDING: "Ascending";
843
+ readonly DESCENDING: "Descending";
844
+ };
845
+ export type ModelCardExportJobSortOrder =
846
+ (typeof ModelCardExportJobSortOrder)[keyof typeof ModelCardExportJobSortOrder];
812
847
  export interface ListModelCardExportJobsRequest {
813
848
  ModelCardName: string | undefined;
814
849
  ModelCardVersion?: number;
@@ -834,14 +869,18 @@ export interface ListModelCardExportJobsResponse {
834
869
  ModelCardExportJobSummaries: ModelCardExportJobSummary[] | undefined;
835
870
  NextToken?: string;
836
871
  }
837
- export declare enum ModelCardSortBy {
838
- CREATION_TIME = "CreationTime",
839
- NAME = "Name",
840
- }
841
- export declare enum ModelCardSortOrder {
842
- ASCENDING = "Ascending",
843
- DESCENDING = "Descending",
844
- }
872
+ export declare const ModelCardSortBy: {
873
+ readonly CREATION_TIME: "CreationTime";
874
+ readonly NAME: "Name";
875
+ };
876
+ export type ModelCardSortBy =
877
+ (typeof ModelCardSortBy)[keyof typeof ModelCardSortBy];
878
+ export declare const ModelCardSortOrder: {
879
+ readonly ASCENDING: "Ascending";
880
+ readonly DESCENDING: "Descending";
881
+ };
882
+ export type ModelCardSortOrder =
883
+ (typeof ModelCardSortOrder)[keyof typeof ModelCardSortOrder];
845
884
  export interface ListModelCardsRequest {
846
885
  CreationTimeAfter?: Date;
847
886
  CreationTimeBefore?: Date;
@@ -863,9 +902,11 @@ export interface ListModelCardsResponse {
863
902
  ModelCardSummaries: ModelCardSummary[] | undefined;
864
903
  NextToken?: string;
865
904
  }
866
- export declare enum ModelCardVersionSortBy {
867
- VERSION = "Version",
868
- }
905
+ export declare const ModelCardVersionSortBy: {
906
+ readonly VERSION: "Version";
907
+ };
908
+ export type ModelCardVersionSortBy =
909
+ (typeof ModelCardVersionSortBy)[keyof typeof ModelCardVersionSortBy];
869
910
  export interface ListModelCardVersionsRequest {
870
911
  CreationTimeAfter?: Date;
871
912
  CreationTimeBefore?: Date;
@@ -902,12 +943,14 @@ export interface ListModelExplainabilityJobDefinitionsResponse {
902
943
  JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
903
944
  NextToken?: string;
904
945
  }
905
- export declare enum ModelMetadataFilterType {
906
- DOMAIN = "Domain",
907
- FRAMEWORK = "Framework",
908
- FRAMEWORKVERSION = "FrameworkVersion",
909
- TASK = "Task",
910
- }
946
+ export declare const ModelMetadataFilterType: {
947
+ readonly DOMAIN: "Domain";
948
+ readonly FRAMEWORK: "Framework";
949
+ readonly FRAMEWORKVERSION: "FrameworkVersion";
950
+ readonly TASK: "Task";
951
+ };
952
+ export type ModelMetadataFilterType =
953
+ (typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
911
954
  export interface ModelMetadataFilter {
912
955
  Name: ModelMetadataFilterType | string | undefined;
913
956
  Value: string | undefined;
@@ -931,10 +974,12 @@ export interface ListModelMetadataResponse {
931
974
  ModelMetadataSummaries: ModelMetadataSummary[] | undefined;
932
975
  NextToken?: string;
933
976
  }
934
- export declare enum ModelPackageGroupSortBy {
935
- CREATION_TIME = "CreationTime",
936
- NAME = "Name",
937
- }
977
+ export declare const ModelPackageGroupSortBy: {
978
+ readonly CREATION_TIME: "CreationTime";
979
+ readonly NAME: "Name";
980
+ };
981
+ export type ModelPackageGroupSortBy =
982
+ (typeof ModelPackageGroupSortBy)[keyof typeof ModelPackageGroupSortBy];
938
983
  export interface ListModelPackageGroupsInput {
939
984
  CreationTimeAfter?: Date;
940
985
  CreationTimeBefore?: Date;
@@ -955,15 +1000,19 @@ export interface ListModelPackageGroupsOutput {
955
1000
  ModelPackageGroupSummaryList: ModelPackageGroupSummary[] | undefined;
956
1001
  NextToken?: string;
957
1002
  }
958
- export declare enum ModelPackageType {
959
- BOTH = "Both",
960
- UNVERSIONED = "Unversioned",
961
- VERSIONED = "Versioned",
962
- }
963
- export declare enum ModelPackageSortBy {
964
- CREATION_TIME = "CreationTime",
965
- NAME = "Name",
966
- }
1003
+ export declare const ModelPackageType: {
1004
+ readonly BOTH: "Both";
1005
+ readonly UNVERSIONED: "Unversioned";
1006
+ readonly VERSIONED: "Versioned";
1007
+ };
1008
+ export type ModelPackageType =
1009
+ (typeof ModelPackageType)[keyof typeof ModelPackageType];
1010
+ export declare const ModelPackageSortBy: {
1011
+ readonly CREATION_TIME: "CreationTime";
1012
+ readonly NAME: "Name";
1013
+ };
1014
+ export type ModelPackageSortBy =
1015
+ (typeof ModelPackageSortBy)[keyof typeof ModelPackageSortBy];
967
1016
  export interface ListModelPackagesInput {
968
1017
  CreationTimeAfter?: Date;
969
1018
  CreationTimeBefore?: Date;
@@ -1004,10 +1053,11 @@ export interface ListModelQualityJobDefinitionsResponse {
1004
1053
  JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
1005
1054
  NextToken?: string;
1006
1055
  }
1007
- export declare enum ModelSortKey {
1008
- CreationTime = "CreationTime",
1009
- Name = "Name",
1010
- }
1056
+ export declare const ModelSortKey: {
1057
+ readonly CreationTime: "CreationTime";
1058
+ readonly Name: "Name";
1059
+ };
1060
+ export type ModelSortKey = (typeof ModelSortKey)[keyof typeof ModelSortKey];
1011
1061
  export interface ListModelsInput {
1012
1062
  SortBy?: ModelSortKey | string;
1013
1063
  SortOrder?: OrderKey | string;
@@ -1026,14 +1076,18 @@ export interface ListModelsOutput {
1026
1076
  Models: ModelSummary[] | undefined;
1027
1077
  NextToken?: string;
1028
1078
  }
1029
- export declare enum MonitoringAlertHistorySortKey {
1030
- CreationTime = "CreationTime",
1031
- Status = "Status",
1032
- }
1033
- export declare enum MonitoringAlertStatus {
1034
- IN_ALERT = "InAlert",
1035
- OK = "OK",
1036
- }
1079
+ export declare const MonitoringAlertHistorySortKey: {
1080
+ readonly CreationTime: "CreationTime";
1081
+ readonly Status: "Status";
1082
+ };
1083
+ export type MonitoringAlertHistorySortKey =
1084
+ (typeof MonitoringAlertHistorySortKey)[keyof typeof MonitoringAlertHistorySortKey];
1085
+ export declare const MonitoringAlertStatus: {
1086
+ readonly IN_ALERT: "InAlert";
1087
+ readonly OK: "OK";
1088
+ };
1089
+ export type MonitoringAlertStatus =
1090
+ (typeof MonitoringAlertStatus)[keyof typeof MonitoringAlertStatus];
1037
1091
  export interface ListMonitoringAlertHistoryRequest {
1038
1092
  MonitoringScheduleName?: string;
1039
1093
  MonitoringAlertName?: string;
@@ -1079,11 +1133,13 @@ export interface ListMonitoringAlertsResponse {
1079
1133
  MonitoringAlertSummaries?: MonitoringAlertSummary[];
1080
1134
  NextToken?: string;
1081
1135
  }
1082
- export declare enum MonitoringExecutionSortKey {
1083
- CREATION_TIME = "CreationTime",
1084
- SCHEDULED_TIME = "ScheduledTime",
1085
- STATUS = "Status",
1086
- }
1136
+ export declare const MonitoringExecutionSortKey: {
1137
+ readonly CREATION_TIME: "CreationTime";
1138
+ readonly SCHEDULED_TIME: "ScheduledTime";
1139
+ readonly STATUS: "Status";
1140
+ };
1141
+ export type MonitoringExecutionSortKey =
1142
+ (typeof MonitoringExecutionSortKey)[keyof typeof MonitoringExecutionSortKey];
1087
1143
  export interface ListMonitoringExecutionsRequest {
1088
1144
  MonitoringScheduleName?: string;
1089
1145
  EndpointName?: string;
@@ -1105,11 +1161,13 @@ export interface ListMonitoringExecutionsResponse {
1105
1161
  MonitoringExecutionSummaries: MonitoringExecutionSummary[] | undefined;
1106
1162
  NextToken?: string;
1107
1163
  }
1108
- export declare enum MonitoringScheduleSortKey {
1109
- CREATION_TIME = "CreationTime",
1110
- NAME = "Name",
1111
- STATUS = "Status",
1112
- }
1164
+ export declare const MonitoringScheduleSortKey: {
1165
+ readonly CREATION_TIME: "CreationTime";
1166
+ readonly NAME: "Name";
1167
+ readonly STATUS: "Status";
1168
+ };
1169
+ export type MonitoringScheduleSortKey =
1170
+ (typeof MonitoringScheduleSortKey)[keyof typeof MonitoringScheduleSortKey];
1113
1171
  export interface ListMonitoringSchedulesRequest {
1114
1172
  EndpointName?: string;
1115
1173
  SortBy?: MonitoringScheduleSortKey | string;
@@ -1139,15 +1197,19 @@ export interface ListMonitoringSchedulesResponse {
1139
1197
  MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
1140
1198
  NextToken?: string;
1141
1199
  }
1142
- export declare enum NotebookInstanceLifecycleConfigSortKey {
1143
- CREATION_TIME = "CreationTime",
1144
- LAST_MODIFIED_TIME = "LastModifiedTime",
1145
- NAME = "Name",
1146
- }
1147
- export declare enum NotebookInstanceLifecycleConfigSortOrder {
1148
- ASCENDING = "Ascending",
1149
- DESCENDING = "Descending",
1150
- }
1200
+ export declare const NotebookInstanceLifecycleConfigSortKey: {
1201
+ readonly CREATION_TIME: "CreationTime";
1202
+ readonly LAST_MODIFIED_TIME: "LastModifiedTime";
1203
+ readonly NAME: "Name";
1204
+ };
1205
+ export type NotebookInstanceLifecycleConfigSortKey =
1206
+ (typeof NotebookInstanceLifecycleConfigSortKey)[keyof typeof NotebookInstanceLifecycleConfigSortKey];
1207
+ export declare const NotebookInstanceLifecycleConfigSortOrder: {
1208
+ readonly ASCENDING: "Ascending";
1209
+ readonly DESCENDING: "Descending";
1210
+ };
1211
+ export type NotebookInstanceLifecycleConfigSortOrder =
1212
+ (typeof NotebookInstanceLifecycleConfigSortOrder)[keyof typeof NotebookInstanceLifecycleConfigSortOrder];
1151
1213
  export interface ListNotebookInstanceLifecycleConfigsInput {
1152
1214
  NextToken?: string;
1153
1215
  MaxResults?: number;
@@ -1169,15 +1231,19 @@ export interface ListNotebookInstanceLifecycleConfigsOutput {
1169
1231
  NextToken?: string;
1170
1232
  NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
1171
1233
  }
1172
- export declare enum NotebookInstanceSortKey {
1173
- CREATION_TIME = "CreationTime",
1174
- NAME = "Name",
1175
- STATUS = "Status",
1176
- }
1177
- export declare enum NotebookInstanceSortOrder {
1178
- ASCENDING = "Ascending",
1179
- DESCENDING = "Descending",
1180
- }
1234
+ export declare const NotebookInstanceSortKey: {
1235
+ readonly CREATION_TIME: "CreationTime";
1236
+ readonly NAME: "Name";
1237
+ readonly STATUS: "Status";
1238
+ };
1239
+ export type NotebookInstanceSortKey =
1240
+ (typeof NotebookInstanceSortKey)[keyof typeof NotebookInstanceSortKey];
1241
+ export declare const NotebookInstanceSortOrder: {
1242
+ readonly ASCENDING: "Ascending";
1243
+ readonly DESCENDING: "Descending";
1244
+ };
1245
+ export type NotebookInstanceSortOrder =
1246
+ (typeof NotebookInstanceSortOrder)[keyof typeof NotebookInstanceSortOrder];
1181
1247
  export interface ListNotebookInstancesInput {
1182
1248
  NextToken?: string;
1183
1249
  MaxResults?: number;
@@ -1209,10 +1275,12 @@ export interface ListNotebookInstancesOutput {
1209
1275
  NextToken?: string;
1210
1276
  NotebookInstances?: NotebookInstanceSummary[];
1211
1277
  }
1212
- export declare enum SortPipelineExecutionsBy {
1213
- CREATION_TIME = "CreationTime",
1214
- PIPELINE_EXECUTION_ARN = "PipelineExecutionArn",
1215
- }
1278
+ export declare const SortPipelineExecutionsBy: {
1279
+ readonly CREATION_TIME: "CreationTime";
1280
+ readonly PIPELINE_EXECUTION_ARN: "PipelineExecutionArn";
1281
+ };
1282
+ export type SortPipelineExecutionsBy =
1283
+ (typeof SortPipelineExecutionsBy)[keyof typeof SortPipelineExecutionsBy];
1216
1284
  export interface ListPipelineExecutionsRequest {
1217
1285
  PipelineName: string | undefined;
1218
1286
  CreatedAfter?: Date;
@@ -1286,14 +1354,15 @@ export interface PipelineExecutionStepMetadata {
1286
1354
  Fail?: FailStepMetadata;
1287
1355
  AutoMLJob?: AutoMLJobStepMetadata;
1288
1356
  }
1289
- export declare enum StepStatus {
1290
- EXECUTING = "Executing",
1291
- FAILED = "Failed",
1292
- STARTING = "Starting",
1293
- STOPPED = "Stopped",
1294
- STOPPING = "Stopping",
1295
- SUCCEEDED = "Succeeded",
1296
- }
1357
+ export declare const StepStatus: {
1358
+ readonly EXECUTING: "Executing";
1359
+ readonly FAILED: "Failed";
1360
+ readonly STARTING: "Starting";
1361
+ readonly STOPPED: "Stopped";
1362
+ readonly STOPPING: "Stopping";
1363
+ readonly SUCCEEDED: "Succeeded";
1364
+ };
1365
+ export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
1297
1366
  export interface PipelineExecutionStep {
1298
1367
  StepName?: string;
1299
1368
  StepDisplayName?: string;
@@ -1323,10 +1392,12 @@ export interface ListPipelineParametersForExecutionResponse {
1323
1392
  PipelineParameters?: Parameter[];
1324
1393
  NextToken?: string;
1325
1394
  }
1326
- export declare enum SortPipelinesBy {
1327
- CREATION_TIME = "CreationTime",
1328
- NAME = "Name",
1329
- }
1395
+ export declare const SortPipelinesBy: {
1396
+ readonly CREATION_TIME: "CreationTime";
1397
+ readonly NAME: "Name";
1398
+ };
1399
+ export type SortPipelinesBy =
1400
+ (typeof SortPipelinesBy)[keyof typeof SortPipelinesBy];
1330
1401
  export interface ListPipelinesRequest {
1331
1402
  PipelineNamePrefix?: string;
1332
1403
  CreatedAfter?: Date;
@@ -1376,14 +1447,17 @@ export interface ListProcessingJobsResponse {
1376
1447
  ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
1377
1448
  NextToken?: string;
1378
1449
  }
1379
- export declare enum ProjectSortBy {
1380
- CREATION_TIME = "CreationTime",
1381
- NAME = "Name",
1382
- }
1383
- export declare enum ProjectSortOrder {
1384
- ASCENDING = "Ascending",
1385
- DESCENDING = "Descending",
1386
- }
1450
+ export declare const ProjectSortBy: {
1451
+ readonly CREATION_TIME: "CreationTime";
1452
+ readonly NAME: "Name";
1453
+ };
1454
+ export type ProjectSortBy = (typeof ProjectSortBy)[keyof typeof ProjectSortBy];
1455
+ export declare const ProjectSortOrder: {
1456
+ readonly ASCENDING: "Ascending";
1457
+ readonly DESCENDING: "Descending";
1458
+ };
1459
+ export type ProjectSortOrder =
1460
+ (typeof ProjectSortOrder)[keyof typeof ProjectSortOrder];
1387
1461
  export interface ListProjectsInput {
1388
1462
  CreationTimeAfter?: Date;
1389
1463
  CreationTimeBefore?: Date;
@@ -1405,10 +1479,11 @@ export interface ListProjectsOutput {
1405
1479
  ProjectSummaryList: ProjectSummary[] | undefined;
1406
1480
  NextToken?: string;
1407
1481
  }
1408
- export declare enum SpaceSortKey {
1409
- CreationTime = "CreationTime",
1410
- LastModifiedTime = "LastModifiedTime",
1411
- }
1482
+ export declare const SpaceSortKey: {
1483
+ readonly CreationTime: "CreationTime";
1484
+ readonly LastModifiedTime: "LastModifiedTime";
1485
+ };
1486
+ export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
1412
1487
  export interface ListSpacesRequest {
1413
1488
  NextToken?: string;
1414
1489
  MaxResults?: number;
@@ -1439,11 +1514,13 @@ export interface ListStageDevicesResponse {
1439
1514
  DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
1440
1515
  NextToken?: string;
1441
1516
  }
1442
- export declare enum StudioLifecycleConfigSortKey {
1443
- CreationTime = "CreationTime",
1444
- LastModifiedTime = "LastModifiedTime",
1445
- Name = "Name",
1446
- }
1517
+ export declare const StudioLifecycleConfigSortKey: {
1518
+ readonly CreationTime: "CreationTime";
1519
+ readonly LastModifiedTime: "LastModifiedTime";
1520
+ readonly Name: "Name";
1521
+ };
1522
+ export type StudioLifecycleConfigSortKey =
1523
+ (typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
1447
1524
  export interface ListStudioLifecycleConfigsRequest {
1448
1525
  MaxResults?: number;
1449
1526
  NextToken?: string;
@@ -1511,12 +1588,14 @@ export interface ListTrainingJobsResponse {
1511
1588
  TrainingJobSummaries: TrainingJobSummary[] | undefined;
1512
1589
  NextToken?: string;
1513
1590
  }
1514
- export declare enum TrainingJobSortByOptions {
1515
- CreationTime = "CreationTime",
1516
- FinalObjectiveMetricValue = "FinalObjectiveMetricValue",
1517
- Name = "Name",
1518
- Status = "Status",
1519
- }
1591
+ export declare const TrainingJobSortByOptions: {
1592
+ readonly CreationTime: "CreationTime";
1593
+ readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
1594
+ readonly Name: "Name";
1595
+ readonly Status: "Status";
1596
+ };
1597
+ export type TrainingJobSortByOptions =
1598
+ (typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
1520
1599
  export interface ListTrainingJobsForHyperParameterTuningJobRequest {
1521
1600
  HyperParameterTuningJobName: string | undefined;
1522
1601
  NextToken?: string;
@@ -1554,10 +1633,12 @@ export interface ListTransformJobsResponse {
1554
1633
  TransformJobSummaries: TransformJobSummary[] | undefined;
1555
1634
  NextToken?: string;
1556
1635
  }
1557
- export declare enum SortTrialComponentsBy {
1558
- CREATION_TIME = "CreationTime",
1559
- NAME = "Name",
1560
- }
1636
+ export declare const SortTrialComponentsBy: {
1637
+ readonly CREATION_TIME: "CreationTime";
1638
+ readonly NAME: "Name";
1639
+ };
1640
+ export type SortTrialComponentsBy =
1641
+ (typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
1561
1642
  export interface ListTrialComponentsRequest {
1562
1643
  ExperimentName?: string;
1563
1644
  TrialName?: string;
@@ -1586,10 +1667,11 @@ export interface ListTrialComponentsResponse {
1586
1667
  TrialComponentSummaries?: TrialComponentSummary[];
1587
1668
  NextToken?: string;
1588
1669
  }
1589
- export declare enum SortTrialsBy {
1590
- CREATION_TIME = "CreationTime",
1591
- NAME = "Name",
1592
- }
1670
+ export declare const SortTrialsBy: {
1671
+ readonly CREATION_TIME: "CreationTime";
1672
+ readonly NAME: "Name";
1673
+ };
1674
+ export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
1593
1675
  export interface ListTrialsRequest {
1594
1676
  ExperimentName?: string;
1595
1677
  TrialComponentName?: string;
@@ -1612,10 +1694,12 @@ export interface ListTrialsResponse {
1612
1694
  TrialSummaries?: TrialSummary[];
1613
1695
  NextToken?: string;
1614
1696
  }
1615
- export declare enum UserProfileSortKey {
1616
- CreationTime = "CreationTime",
1617
- LastModifiedTime = "LastModifiedTime",
1618
- }
1697
+ export declare const UserProfileSortKey: {
1698
+ readonly CreationTime: "CreationTime";
1699
+ readonly LastModifiedTime: "LastModifiedTime";
1700
+ };
1701
+ export type UserProfileSortKey =
1702
+ (typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
1619
1703
  export interface ListUserProfilesRequest {
1620
1704
  NextToken?: string;
1621
1705
  MaxResults?: number;
@@ -1635,10 +1719,12 @@ export interface ListUserProfilesResponse {
1635
1719
  UserProfiles?: UserProfileDetails[];
1636
1720
  NextToken?: string;
1637
1721
  }
1638
- export declare enum ListWorkforcesSortByOptions {
1639
- CreateDate = "CreateDate",
1640
- Name = "Name",
1641
- }
1722
+ export declare const ListWorkforcesSortByOptions: {
1723
+ readonly CreateDate: "CreateDate";
1724
+ readonly Name: "Name";
1725
+ };
1726
+ export type ListWorkforcesSortByOptions =
1727
+ (typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
1642
1728
  export interface ListWorkforcesRequest {
1643
1729
  SortBy?: ListWorkforcesSortByOptions | string;
1644
1730
  SortOrder?: SortOrder | string;
@@ -1650,10 +1736,12 @@ export interface ListWorkforcesResponse {
1650
1736
  Workforces: Workforce[] | undefined;
1651
1737
  NextToken?: string;
1652
1738
  }
1653
- export declare enum ListWorkteamsSortByOptions {
1654
- CreateDate = "CreateDate",
1655
- Name = "Name",
1656
- }
1739
+ export declare const ListWorkteamsSortByOptions: {
1740
+ readonly CreateDate: "CreateDate";
1741
+ readonly Name: "Name";
1742
+ };
1743
+ export type ListWorkteamsSortByOptions =
1744
+ (typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
1657
1745
  export interface ListWorkteamsRequest {
1658
1746
  SortBy?: ListWorkteamsSortByOptions | string;
1659
1747
  SortOrder?: SortOrder | string;
@@ -1793,11 +1881,13 @@ export interface ModelPackageGroup {
1793
1881
  ModelPackageGroupStatus?: ModelPackageGroupStatus | string;
1794
1882
  Tags?: Tag[];
1795
1883
  }
1796
- export declare enum ModelVariantAction {
1797
- PROMOTE = "Promote",
1798
- REMOVE = "Remove",
1799
- RETAIN = "Retain",
1800
- }
1884
+ export declare const ModelVariantAction: {
1885
+ readonly PROMOTE: "Promote";
1886
+ readonly REMOVE: "Remove";
1887
+ readonly RETAIN: "Retain";
1888
+ };
1889
+ export type ModelVariantAction =
1890
+ (typeof ModelVariantAction)[keyof typeof ModelVariantAction];
1801
1891
  export interface NestedFilters {
1802
1892
  NestedPropertyName: string | undefined;
1803
1893
  Filters: Filter[] | undefined;
@@ -1948,10 +2038,12 @@ export interface RetryPipelineExecutionRequest {
1948
2038
  export interface RetryPipelineExecutionResponse {
1949
2039
  PipelineExecutionArn?: string;
1950
2040
  }
1951
- export declare enum SearchSortOrder {
1952
- ASCENDING = "Ascending",
1953
- DESCENDING = "Descending",
1954
- }
2041
+ export declare const SearchSortOrder: {
2042
+ readonly ASCENDING: "Ascending";
2043
+ readonly DESCENDING: "Descending";
2044
+ };
2045
+ export type SearchSortOrder =
2046
+ (typeof SearchSortOrder)[keyof typeof SearchSortOrder];
1955
2047
  export interface TrainingJob {
1956
2048
  TrainingJobName?: string;
1957
2049
  TrainingJobArn?: string;