@aws-sdk/client-sagemaker 3.301.0 → 3.306.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist-cjs/models/models_0.js +876 -960
  2. package/dist-cjs/models/models_1.js +228 -262
  3. package/dist-cjs/models/models_2.js +400 -457
  4. package/dist-cjs/models/models_3.js +232 -283
  5. package/dist-cjs/models/models_4.js +5 -6
  6. package/dist-cjs/protocols/Aws_json1_1.js +26 -0
  7. package/dist-es/models/models_0.js +874 -958
  8. package/dist-es/models/models_1.js +228 -262
  9. package/dist-es/models/models_2.js +400 -457
  10. package/dist-es/models/models_3.js +232 -283
  11. package/dist-es/models/models_4.js +5 -6
  12. package/dist-es/protocols/Aws_json1_1.js +26 -0
  13. package/dist-types/SageMaker.d.ts +3 -9
  14. package/dist-types/commands/CreateAutoMLJobCommand.d.ts +1 -3
  15. package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +2 -6
  16. package/dist-types/commands/CreateEndpointConfigCommand.d.ts +5 -1
  17. package/dist-types/commands/DeleteTagsCommand.d.ts +2 -1
  18. package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +1 -2
  19. package/dist-types/models/models_0.d.ts +1379 -966
  20. package/dist-types/models/models_1.d.ts +429 -245
  21. package/dist-types/models/models_2.d.ts +693 -464
  22. package/dist-types/models/models_3.d.ts +550 -248
  23. package/dist-types/models/models_4.d.ts +26 -9
  24. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +2 -1
  25. package/dist-types/ts3.4/commands/UpdateAppImageConfigCommand.d.ts +4 -2
  26. package/dist-types/ts3.4/models/models_0.d.ts +1035 -875
  27. package/dist-types/ts3.4/models/models_1.d.ts +292 -230
  28. package/dist-types/ts3.4/models/models_2.d.ts +504 -415
  29. package/dist-types/ts3.4/models/models_3.d.ts +341 -238
  30. package/dist-types/ts3.4/models/models_4.d.ts +13 -6
  31. package/package.json +35 -35
@@ -36,7 +36,6 @@ import {
36
36
  ContainerDefinition,
37
37
  ContextSummary,
38
38
  InferenceSpecification,
39
- KernelGatewayImageConfig,
40
39
  MetadataProperties,
41
40
  ModelApprovalStatus,
42
41
  ModelPackageStatus,
@@ -62,6 +61,7 @@ import {
62
61
  HubContentType,
63
62
  InferenceExecutionConfig,
64
63
  InferenceExperimentType,
64
+ LabelingJobInputConfig,
65
65
  ModelCardSecurityConfig,
66
66
  ModelCardStatus,
67
67
  ModelClientConfig,
@@ -137,9 +137,10 @@ import {
137
137
  InferenceExperimentSummary,
138
138
  InferenceRecommendationsJob,
139
139
  InferenceRecommendationsJobStep,
140
+ LabelCounters,
140
141
  LabelingJobForWorkteamSummary,
142
+ LabelingJobOutput,
141
143
  LabelingJobStatus,
142
- LabelingJobSummary,
143
144
  MetricData,
144
145
  ModelArtifacts,
145
146
  ModelCardExportJobStatus,
@@ -172,6 +173,20 @@ import {
172
173
  Workforce,
173
174
  Workteam,
174
175
  } from "./models_2";
176
+ export interface LabelingJobSummary {
177
+ LabelingJobName: string | undefined;
178
+ LabelingJobArn: string | undefined;
179
+ CreationTime: Date | undefined;
180
+ LastModifiedTime: Date | undefined;
181
+ LabelingJobStatus: LabelingJobStatus | string | undefined;
182
+ LabelCounters: LabelCounters | undefined;
183
+ WorkteamArn: string | undefined;
184
+ PreHumanTaskLambdaArn: string | undefined;
185
+ AnnotationConsolidationLambdaArn?: string;
186
+ FailureReason?: string;
187
+ LabelingJobOutput?: LabelingJobOutput;
188
+ InputConfig?: LabelingJobInputConfig;
189
+ }
175
190
  export interface LambdaStepMetadata {
176
191
  Arn?: string;
177
192
  OutputParameters?: OutputParameter[];
@@ -183,20 +198,23 @@ export interface LineageGroupSummary {
183
198
  CreationTime?: Date;
184
199
  LastModifiedTime?: Date;
185
200
  }
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
- }
201
+ export declare const LineageType: {
202
+ readonly ACTION: "Action";
203
+ readonly ARTIFACT: "Artifact";
204
+ readonly CONTEXT: "Context";
205
+ readonly TRIAL_COMPONENT: "TrialComponent";
206
+ };
207
+ export type LineageType = (typeof LineageType)[keyof typeof LineageType];
208
+ export declare const SortActionsBy: {
209
+ readonly CREATION_TIME: "CreationTime";
210
+ readonly NAME: "Name";
211
+ };
212
+ export type SortActionsBy = (typeof SortActionsBy)[keyof typeof SortActionsBy];
213
+ export declare const SortOrder: {
214
+ readonly ASCENDING: "Ascending";
215
+ readonly DESCENDING: "Descending";
216
+ };
217
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
200
218
  export interface ListActionsRequest {
201
219
  SourceUri?: string;
202
220
  ActionType?: string;
@@ -263,9 +281,11 @@ export interface ListAppsResponse {
263
281
  Apps?: AppDetails[];
264
282
  NextToken?: string;
265
283
  }
266
- export declare enum SortArtifactsBy {
267
- CREATION_TIME = "CreationTime",
268
- }
284
+ export declare const SortArtifactsBy: {
285
+ readonly CREATION_TIME: "CreationTime";
286
+ };
287
+ export type SortArtifactsBy =
288
+ (typeof SortArtifactsBy)[keyof typeof SortArtifactsBy];
269
289
  export interface ListArtifactsRequest {
270
290
  SourceUri?: string;
271
291
  ArtifactType?: string;
@@ -280,13 +300,15 @@ export interface ListArtifactsResponse {
280
300
  ArtifactSummaries?: ArtifactSummary[];
281
301
  NextToken?: string;
282
302
  }
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
- }
303
+ export declare const SortAssociationsBy: {
304
+ readonly CREATION_TIME: "CreationTime";
305
+ readonly DESTINATION_ARN: "DestinationArn";
306
+ readonly DESTINATION_TYPE: "DestinationType";
307
+ readonly SOURCE_ARN: "SourceArn";
308
+ readonly SOURCE_TYPE: "SourceType";
309
+ };
310
+ export type SortAssociationsBy =
311
+ (typeof SortAssociationsBy)[keyof typeof SortAssociationsBy];
290
312
  export interface ListAssociationsRequest {
291
313
  SourceArn?: string;
292
314
  DestinationArn?: string;
@@ -348,11 +370,13 @@ export interface ListCodeRepositoriesOutput {
348
370
  CodeRepositorySummaryList: CodeRepositorySummary[] | undefined;
349
371
  NextToken?: string;
350
372
  }
351
- export declare enum ListCompilationJobsSortBy {
352
- CREATION_TIME = "CreationTime",
353
- NAME = "Name",
354
- STATUS = "Status",
355
- }
373
+ export declare const ListCompilationJobsSortBy: {
374
+ readonly CREATION_TIME: "CreationTime";
375
+ readonly NAME: "Name";
376
+ readonly STATUS: "Status";
377
+ };
378
+ export type ListCompilationJobsSortBy =
379
+ (typeof ListCompilationJobsSortBy)[keyof typeof ListCompilationJobsSortBy];
356
380
  export interface ListCompilationJobsRequest {
357
381
  NextToken?: string;
358
382
  MaxResults?: number;
@@ -369,10 +393,12 @@ export interface ListCompilationJobsResponse {
369
393
  CompilationJobSummaries: CompilationJobSummary[] | undefined;
370
394
  NextToken?: string;
371
395
  }
372
- export declare enum SortContextsBy {
373
- CREATION_TIME = "CreationTime",
374
- NAME = "Name",
375
- }
396
+ export declare const SortContextsBy: {
397
+ readonly CREATION_TIME: "CreationTime";
398
+ readonly NAME: "Name";
399
+ };
400
+ export type SortContextsBy =
401
+ (typeof SortContextsBy)[keyof typeof SortContextsBy];
376
402
  export interface ListContextsRequest {
377
403
  SourceUri?: string;
378
404
  ContextType?: string;
@@ -387,10 +413,12 @@ export interface ListContextsResponse {
387
413
  ContextSummaries?: ContextSummary[];
388
414
  NextToken?: string;
389
415
  }
390
- export declare enum MonitoringJobDefinitionSortKey {
391
- CREATION_TIME = "CreationTime",
392
- NAME = "Name",
393
- }
416
+ export declare const MonitoringJobDefinitionSortKey: {
417
+ readonly CREATION_TIME: "CreationTime";
418
+ readonly NAME: "Name";
419
+ };
420
+ export type MonitoringJobDefinitionSortKey =
421
+ (typeof MonitoringJobDefinitionSortKey)[keyof typeof MonitoringJobDefinitionSortKey];
394
422
  export interface ListDataQualityJobDefinitionsRequest {
395
423
  EndpointName?: string;
396
424
  SortBy?: MonitoringJobDefinitionSortKey | string;
@@ -411,11 +439,13 @@ export interface ListDataQualityJobDefinitionsResponse {
411
439
  JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
412
440
  NextToken?: string;
413
441
  }
414
- export declare enum ListDeviceFleetsSortBy {
415
- CreationTime = "CREATION_TIME",
416
- LastModifiedTime = "LAST_MODIFIED_TIME",
417
- Name = "NAME",
418
- }
442
+ export declare const ListDeviceFleetsSortBy: {
443
+ readonly CreationTime: "CREATION_TIME";
444
+ readonly LastModifiedTime: "LAST_MODIFIED_TIME";
445
+ readonly Name: "NAME";
446
+ };
447
+ export type ListDeviceFleetsSortBy =
448
+ (typeof ListDeviceFleetsSortBy)[keyof typeof ListDeviceFleetsSortBy];
419
449
  export interface ListDeviceFleetsRequest {
420
450
  NextToken?: string;
421
451
  MaxResults?: number;
@@ -450,12 +480,14 @@ export interface ListDomainsResponse {
450
480
  Domains?: DomainDetails[];
451
481
  NextToken?: string;
452
482
  }
453
- export declare enum ListEdgeDeploymentPlansSortBy {
454
- CreationTime = "CREATION_TIME",
455
- DeviceFleetName = "DEVICE_FLEET_NAME",
456
- LastModifiedTime = "LAST_MODIFIED_TIME",
457
- Name = "NAME",
458
- }
483
+ export declare const ListEdgeDeploymentPlansSortBy: {
484
+ readonly CreationTime: "CREATION_TIME";
485
+ readonly DeviceFleetName: "DEVICE_FLEET_NAME";
486
+ readonly LastModifiedTime: "LAST_MODIFIED_TIME";
487
+ readonly Name: "NAME";
488
+ };
489
+ export type ListEdgeDeploymentPlansSortBy =
490
+ (typeof ListEdgeDeploymentPlansSortBy)[keyof typeof ListEdgeDeploymentPlansSortBy];
459
491
  export interface ListEdgeDeploymentPlansRequest {
460
492
  NextToken?: string;
461
493
  MaxResults?: number;
@@ -472,13 +504,15 @@ export interface ListEdgeDeploymentPlansResponse {
472
504
  EdgeDeploymentPlanSummaries: EdgeDeploymentPlanSummary[] | undefined;
473
505
  NextToken?: string;
474
506
  }
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
- }
507
+ export declare const ListEdgePackagingJobsSortBy: {
508
+ readonly CreationTime: "CREATION_TIME";
509
+ readonly EdgePackagingJobStatus: "STATUS";
510
+ readonly LastModifiedTime: "LAST_MODIFIED_TIME";
511
+ readonly ModelName: "MODEL_NAME";
512
+ readonly Name: "NAME";
513
+ };
514
+ export type ListEdgePackagingJobsSortBy =
515
+ (typeof ListEdgePackagingJobsSortBy)[keyof typeof ListEdgePackagingJobsSortBy];
482
516
  export interface ListEdgePackagingJobsRequest {
483
517
  NextToken?: string;
484
518
  MaxResults?: number;
@@ -496,10 +530,11 @@ export interface ListEdgePackagingJobsResponse {
496
530
  EdgePackagingJobSummaries: EdgePackagingJobSummary[] | undefined;
497
531
  NextToken?: string;
498
532
  }
499
- export declare enum OrderKey {
500
- Ascending = "Ascending",
501
- Descending = "Descending",
502
- }
533
+ export declare const OrderKey: {
534
+ readonly Ascending: "Ascending";
535
+ readonly Descending: "Descending";
536
+ };
537
+ export type OrderKey = (typeof OrderKey)[keyof typeof OrderKey];
503
538
  export interface ListEndpointConfigsInput {
504
539
  SortBy?: EndpointConfigSortKey | string;
505
540
  SortOrder?: OrderKey | string;
@@ -529,10 +564,12 @@ export interface ListEndpointsOutput {
529
564
  Endpoints: EndpointSummary[] | undefined;
530
565
  NextToken?: string;
531
566
  }
532
- export declare enum SortExperimentsBy {
533
- CREATION_TIME = "CreationTime",
534
- NAME = "Name",
535
- }
567
+ export declare const SortExperimentsBy: {
568
+ readonly CREATION_TIME: "CreationTime";
569
+ readonly NAME: "Name";
570
+ };
571
+ export type SortExperimentsBy =
572
+ (typeof SortExperimentsBy)[keyof typeof SortExperimentsBy];
536
573
  export interface ListExperimentsRequest {
537
574
  CreatedAfter?: Date;
538
575
  CreatedBefore?: Date;
@@ -678,11 +715,13 @@ export interface ListImageVersionsResponse {
678
715
  ImageVersions?: ImageVersion[];
679
716
  NextToken?: string;
680
717
  }
681
- export declare enum SortInferenceExperimentsBy {
682
- CREATION_TIME = "CreationTime",
683
- NAME = "Name",
684
- STATUS = "Status",
685
- }
718
+ export declare const SortInferenceExperimentsBy: {
719
+ readonly CREATION_TIME: "CreationTime";
720
+ readonly NAME: "Name";
721
+ readonly STATUS: "Status";
722
+ };
723
+ export type SortInferenceExperimentsBy =
724
+ (typeof SortInferenceExperimentsBy)[keyof typeof SortInferenceExperimentsBy];
686
725
  export interface ListInferenceExperimentsRequest {
687
726
  NameContains?: string;
688
727
  Type?: InferenceExperimentType | string;
@@ -700,11 +739,13 @@ export interface ListInferenceExperimentsResponse {
700
739
  InferenceExperiments?: InferenceExperimentSummary[];
701
740
  NextToken?: string;
702
741
  }
703
- export declare enum ListInferenceRecommendationsJobsSortBy {
704
- CREATION_TIME = "CreationTime",
705
- NAME = "Name",
706
- STATUS = "Status",
707
- }
742
+ export declare const ListInferenceRecommendationsJobsSortBy: {
743
+ readonly CREATION_TIME: "CreationTime";
744
+ readonly NAME: "Name";
745
+ readonly STATUS: "Status";
746
+ };
747
+ export type ListInferenceRecommendationsJobsSortBy =
748
+ (typeof ListInferenceRecommendationsJobsSortBy)[keyof typeof ListInferenceRecommendationsJobsSortBy];
708
749
  export interface ListInferenceRecommendationsJobsRequest {
709
750
  CreationTimeAfter?: Date;
710
751
  CreationTimeBefore?: Date;
@@ -732,11 +773,12 @@ export interface ListInferenceRecommendationsJobStepsResponse {
732
773
  Steps?: InferenceRecommendationsJobStep[];
733
774
  NextToken?: string;
734
775
  }
735
- export declare enum SortBy {
736
- CREATION_TIME = "CreationTime",
737
- NAME = "Name",
738
- STATUS = "Status",
739
- }
776
+ export declare const SortBy: {
777
+ readonly CREATION_TIME: "CreationTime";
778
+ readonly NAME: "Name";
779
+ readonly STATUS: "Status";
780
+ };
781
+ export type SortBy = (typeof SortBy)[keyof typeof SortBy];
740
782
  export interface ListLabelingJobsRequest {
741
783
  CreationTimeAfter?: Date;
742
784
  CreationTimeBefore?: Date;
@@ -753,9 +795,11 @@ export interface ListLabelingJobsResponse {
753
795
  LabelingJobSummaryList?: LabelingJobSummary[];
754
796
  NextToken?: string;
755
797
  }
756
- export declare enum ListLabelingJobsForWorkteamSortByOptions {
757
- CREATION_TIME = "CreationTime",
758
- }
798
+ export declare const ListLabelingJobsForWorkteamSortByOptions: {
799
+ readonly CREATION_TIME: "CreationTime";
800
+ };
801
+ export type ListLabelingJobsForWorkteamSortByOptions =
802
+ (typeof ListLabelingJobsForWorkteamSortByOptions)[keyof typeof ListLabelingJobsForWorkteamSortByOptions];
759
803
  export interface ListLabelingJobsForWorkteamRequest {
760
804
  WorkteamArn: string | undefined;
761
805
  MaxResults?: number;
@@ -770,10 +814,12 @@ export interface ListLabelingJobsForWorkteamResponse {
770
814
  LabelingJobSummaryList: LabelingJobForWorkteamSummary[] | undefined;
771
815
  NextToken?: string;
772
816
  }
773
- export declare enum SortLineageGroupsBy {
774
- CREATION_TIME = "CreationTime",
775
- NAME = "Name",
776
- }
817
+ export declare const SortLineageGroupsBy: {
818
+ readonly CREATION_TIME: "CreationTime";
819
+ readonly NAME: "Name";
820
+ };
821
+ export type SortLineageGroupsBy =
822
+ (typeof SortLineageGroupsBy)[keyof typeof SortLineageGroupsBy];
777
823
  export interface ListLineageGroupsRequest {
778
824
  CreatedAfter?: Date;
779
825
  CreatedBefore?: Date;
@@ -800,15 +846,19 @@ export interface ListModelBiasJobDefinitionsResponse {
800
846
  JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
801
847
  NextToken?: string;
802
848
  }
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
- }
849
+ export declare const ModelCardExportJobSortBy: {
850
+ readonly CREATION_TIME: "CreationTime";
851
+ readonly NAME: "Name";
852
+ readonly STATUS: "Status";
853
+ };
854
+ export type ModelCardExportJobSortBy =
855
+ (typeof ModelCardExportJobSortBy)[keyof typeof ModelCardExportJobSortBy];
856
+ export declare const ModelCardExportJobSortOrder: {
857
+ readonly ASCENDING: "Ascending";
858
+ readonly DESCENDING: "Descending";
859
+ };
860
+ export type ModelCardExportJobSortOrder =
861
+ (typeof ModelCardExportJobSortOrder)[keyof typeof ModelCardExportJobSortOrder];
812
862
  export interface ListModelCardExportJobsRequest {
813
863
  ModelCardName: string | undefined;
814
864
  ModelCardVersion?: number;
@@ -834,14 +884,18 @@ export interface ListModelCardExportJobsResponse {
834
884
  ModelCardExportJobSummaries: ModelCardExportJobSummary[] | undefined;
835
885
  NextToken?: string;
836
886
  }
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
- }
887
+ export declare const ModelCardSortBy: {
888
+ readonly CREATION_TIME: "CreationTime";
889
+ readonly NAME: "Name";
890
+ };
891
+ export type ModelCardSortBy =
892
+ (typeof ModelCardSortBy)[keyof typeof ModelCardSortBy];
893
+ export declare const ModelCardSortOrder: {
894
+ readonly ASCENDING: "Ascending";
895
+ readonly DESCENDING: "Descending";
896
+ };
897
+ export type ModelCardSortOrder =
898
+ (typeof ModelCardSortOrder)[keyof typeof ModelCardSortOrder];
845
899
  export interface ListModelCardsRequest {
846
900
  CreationTimeAfter?: Date;
847
901
  CreationTimeBefore?: Date;
@@ -863,9 +917,11 @@ export interface ListModelCardsResponse {
863
917
  ModelCardSummaries: ModelCardSummary[] | undefined;
864
918
  NextToken?: string;
865
919
  }
866
- export declare enum ModelCardVersionSortBy {
867
- VERSION = "Version",
868
- }
920
+ export declare const ModelCardVersionSortBy: {
921
+ readonly VERSION: "Version";
922
+ };
923
+ export type ModelCardVersionSortBy =
924
+ (typeof ModelCardVersionSortBy)[keyof typeof ModelCardVersionSortBy];
869
925
  export interface ListModelCardVersionsRequest {
870
926
  CreationTimeAfter?: Date;
871
927
  CreationTimeBefore?: Date;
@@ -902,12 +958,14 @@ export interface ListModelExplainabilityJobDefinitionsResponse {
902
958
  JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
903
959
  NextToken?: string;
904
960
  }
905
- export declare enum ModelMetadataFilterType {
906
- DOMAIN = "Domain",
907
- FRAMEWORK = "Framework",
908
- FRAMEWORKVERSION = "FrameworkVersion",
909
- TASK = "Task",
910
- }
961
+ export declare const ModelMetadataFilterType: {
962
+ readonly DOMAIN: "Domain";
963
+ readonly FRAMEWORK: "Framework";
964
+ readonly FRAMEWORKVERSION: "FrameworkVersion";
965
+ readonly TASK: "Task";
966
+ };
967
+ export type ModelMetadataFilterType =
968
+ (typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
911
969
  export interface ModelMetadataFilter {
912
970
  Name: ModelMetadataFilterType | string | undefined;
913
971
  Value: string | undefined;
@@ -931,10 +989,12 @@ export interface ListModelMetadataResponse {
931
989
  ModelMetadataSummaries: ModelMetadataSummary[] | undefined;
932
990
  NextToken?: string;
933
991
  }
934
- export declare enum ModelPackageGroupSortBy {
935
- CREATION_TIME = "CreationTime",
936
- NAME = "Name",
937
- }
992
+ export declare const ModelPackageGroupSortBy: {
993
+ readonly CREATION_TIME: "CreationTime";
994
+ readonly NAME: "Name";
995
+ };
996
+ export type ModelPackageGroupSortBy =
997
+ (typeof ModelPackageGroupSortBy)[keyof typeof ModelPackageGroupSortBy];
938
998
  export interface ListModelPackageGroupsInput {
939
999
  CreationTimeAfter?: Date;
940
1000
  CreationTimeBefore?: Date;
@@ -955,15 +1015,19 @@ export interface ListModelPackageGroupsOutput {
955
1015
  ModelPackageGroupSummaryList: ModelPackageGroupSummary[] | undefined;
956
1016
  NextToken?: string;
957
1017
  }
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
- }
1018
+ export declare const ModelPackageType: {
1019
+ readonly BOTH: "Both";
1020
+ readonly UNVERSIONED: "Unversioned";
1021
+ readonly VERSIONED: "Versioned";
1022
+ };
1023
+ export type ModelPackageType =
1024
+ (typeof ModelPackageType)[keyof typeof ModelPackageType];
1025
+ export declare const ModelPackageSortBy: {
1026
+ readonly CREATION_TIME: "CreationTime";
1027
+ readonly NAME: "Name";
1028
+ };
1029
+ export type ModelPackageSortBy =
1030
+ (typeof ModelPackageSortBy)[keyof typeof ModelPackageSortBy];
967
1031
  export interface ListModelPackagesInput {
968
1032
  CreationTimeAfter?: Date;
969
1033
  CreationTimeBefore?: Date;
@@ -1004,10 +1068,11 @@ export interface ListModelQualityJobDefinitionsResponse {
1004
1068
  JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
1005
1069
  NextToken?: string;
1006
1070
  }
1007
- export declare enum ModelSortKey {
1008
- CreationTime = "CreationTime",
1009
- Name = "Name",
1010
- }
1071
+ export declare const ModelSortKey: {
1072
+ readonly CreationTime: "CreationTime";
1073
+ readonly Name: "Name";
1074
+ };
1075
+ export type ModelSortKey = (typeof ModelSortKey)[keyof typeof ModelSortKey];
1011
1076
  export interface ListModelsInput {
1012
1077
  SortBy?: ModelSortKey | string;
1013
1078
  SortOrder?: OrderKey | string;
@@ -1026,14 +1091,18 @@ export interface ListModelsOutput {
1026
1091
  Models: ModelSummary[] | undefined;
1027
1092
  NextToken?: string;
1028
1093
  }
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
- }
1094
+ export declare const MonitoringAlertHistorySortKey: {
1095
+ readonly CreationTime: "CreationTime";
1096
+ readonly Status: "Status";
1097
+ };
1098
+ export type MonitoringAlertHistorySortKey =
1099
+ (typeof MonitoringAlertHistorySortKey)[keyof typeof MonitoringAlertHistorySortKey];
1100
+ export declare const MonitoringAlertStatus: {
1101
+ readonly IN_ALERT: "InAlert";
1102
+ readonly OK: "OK";
1103
+ };
1104
+ export type MonitoringAlertStatus =
1105
+ (typeof MonitoringAlertStatus)[keyof typeof MonitoringAlertStatus];
1037
1106
  export interface ListMonitoringAlertHistoryRequest {
1038
1107
  MonitoringScheduleName?: string;
1039
1108
  MonitoringAlertName?: string;
@@ -1079,11 +1148,13 @@ export interface ListMonitoringAlertsResponse {
1079
1148
  MonitoringAlertSummaries?: MonitoringAlertSummary[];
1080
1149
  NextToken?: string;
1081
1150
  }
1082
- export declare enum MonitoringExecutionSortKey {
1083
- CREATION_TIME = "CreationTime",
1084
- SCHEDULED_TIME = "ScheduledTime",
1085
- STATUS = "Status",
1086
- }
1151
+ export declare const MonitoringExecutionSortKey: {
1152
+ readonly CREATION_TIME: "CreationTime";
1153
+ readonly SCHEDULED_TIME: "ScheduledTime";
1154
+ readonly STATUS: "Status";
1155
+ };
1156
+ export type MonitoringExecutionSortKey =
1157
+ (typeof MonitoringExecutionSortKey)[keyof typeof MonitoringExecutionSortKey];
1087
1158
  export interface ListMonitoringExecutionsRequest {
1088
1159
  MonitoringScheduleName?: string;
1089
1160
  EndpointName?: string;
@@ -1105,11 +1176,13 @@ export interface ListMonitoringExecutionsResponse {
1105
1176
  MonitoringExecutionSummaries: MonitoringExecutionSummary[] | undefined;
1106
1177
  NextToken?: string;
1107
1178
  }
1108
- export declare enum MonitoringScheduleSortKey {
1109
- CREATION_TIME = "CreationTime",
1110
- NAME = "Name",
1111
- STATUS = "Status",
1112
- }
1179
+ export declare const MonitoringScheduleSortKey: {
1180
+ readonly CREATION_TIME: "CreationTime";
1181
+ readonly NAME: "Name";
1182
+ readonly STATUS: "Status";
1183
+ };
1184
+ export type MonitoringScheduleSortKey =
1185
+ (typeof MonitoringScheduleSortKey)[keyof typeof MonitoringScheduleSortKey];
1113
1186
  export interface ListMonitoringSchedulesRequest {
1114
1187
  EndpointName?: string;
1115
1188
  SortBy?: MonitoringScheduleSortKey | string;
@@ -1139,15 +1212,19 @@ export interface ListMonitoringSchedulesResponse {
1139
1212
  MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
1140
1213
  NextToken?: string;
1141
1214
  }
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
- }
1215
+ export declare const NotebookInstanceLifecycleConfigSortKey: {
1216
+ readonly CREATION_TIME: "CreationTime";
1217
+ readonly LAST_MODIFIED_TIME: "LastModifiedTime";
1218
+ readonly NAME: "Name";
1219
+ };
1220
+ export type NotebookInstanceLifecycleConfigSortKey =
1221
+ (typeof NotebookInstanceLifecycleConfigSortKey)[keyof typeof NotebookInstanceLifecycleConfigSortKey];
1222
+ export declare const NotebookInstanceLifecycleConfigSortOrder: {
1223
+ readonly ASCENDING: "Ascending";
1224
+ readonly DESCENDING: "Descending";
1225
+ };
1226
+ export type NotebookInstanceLifecycleConfigSortOrder =
1227
+ (typeof NotebookInstanceLifecycleConfigSortOrder)[keyof typeof NotebookInstanceLifecycleConfigSortOrder];
1151
1228
  export interface ListNotebookInstanceLifecycleConfigsInput {
1152
1229
  NextToken?: string;
1153
1230
  MaxResults?: number;
@@ -1169,15 +1246,19 @@ export interface ListNotebookInstanceLifecycleConfigsOutput {
1169
1246
  NextToken?: string;
1170
1247
  NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
1171
1248
  }
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
- }
1249
+ export declare const NotebookInstanceSortKey: {
1250
+ readonly CREATION_TIME: "CreationTime";
1251
+ readonly NAME: "Name";
1252
+ readonly STATUS: "Status";
1253
+ };
1254
+ export type NotebookInstanceSortKey =
1255
+ (typeof NotebookInstanceSortKey)[keyof typeof NotebookInstanceSortKey];
1256
+ export declare const NotebookInstanceSortOrder: {
1257
+ readonly ASCENDING: "Ascending";
1258
+ readonly DESCENDING: "Descending";
1259
+ };
1260
+ export type NotebookInstanceSortOrder =
1261
+ (typeof NotebookInstanceSortOrder)[keyof typeof NotebookInstanceSortOrder];
1181
1262
  export interface ListNotebookInstancesInput {
1182
1263
  NextToken?: string;
1183
1264
  MaxResults?: number;
@@ -1209,10 +1290,12 @@ export interface ListNotebookInstancesOutput {
1209
1290
  NextToken?: string;
1210
1291
  NotebookInstances?: NotebookInstanceSummary[];
1211
1292
  }
1212
- export declare enum SortPipelineExecutionsBy {
1213
- CREATION_TIME = "CreationTime",
1214
- PIPELINE_EXECUTION_ARN = "PipelineExecutionArn",
1215
- }
1293
+ export declare const SortPipelineExecutionsBy: {
1294
+ readonly CREATION_TIME: "CreationTime";
1295
+ readonly PIPELINE_EXECUTION_ARN: "PipelineExecutionArn";
1296
+ };
1297
+ export type SortPipelineExecutionsBy =
1298
+ (typeof SortPipelineExecutionsBy)[keyof typeof SortPipelineExecutionsBy];
1216
1299
  export interface ListPipelineExecutionsRequest {
1217
1300
  PipelineName: string | undefined;
1218
1301
  CreatedAfter?: Date;
@@ -1286,14 +1369,15 @@ export interface PipelineExecutionStepMetadata {
1286
1369
  Fail?: FailStepMetadata;
1287
1370
  AutoMLJob?: AutoMLJobStepMetadata;
1288
1371
  }
1289
- export declare enum StepStatus {
1290
- EXECUTING = "Executing",
1291
- FAILED = "Failed",
1292
- STARTING = "Starting",
1293
- STOPPED = "Stopped",
1294
- STOPPING = "Stopping",
1295
- SUCCEEDED = "Succeeded",
1296
- }
1372
+ export declare const StepStatus: {
1373
+ readonly EXECUTING: "Executing";
1374
+ readonly FAILED: "Failed";
1375
+ readonly STARTING: "Starting";
1376
+ readonly STOPPED: "Stopped";
1377
+ readonly STOPPING: "Stopping";
1378
+ readonly SUCCEEDED: "Succeeded";
1379
+ };
1380
+ export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
1297
1381
  export interface PipelineExecutionStep {
1298
1382
  StepName?: string;
1299
1383
  StepDisplayName?: string;
@@ -1323,10 +1407,12 @@ export interface ListPipelineParametersForExecutionResponse {
1323
1407
  PipelineParameters?: Parameter[];
1324
1408
  NextToken?: string;
1325
1409
  }
1326
- export declare enum SortPipelinesBy {
1327
- CREATION_TIME = "CreationTime",
1328
- NAME = "Name",
1329
- }
1410
+ export declare const SortPipelinesBy: {
1411
+ readonly CREATION_TIME: "CreationTime";
1412
+ readonly NAME: "Name";
1413
+ };
1414
+ export type SortPipelinesBy =
1415
+ (typeof SortPipelinesBy)[keyof typeof SortPipelinesBy];
1330
1416
  export interface ListPipelinesRequest {
1331
1417
  PipelineNamePrefix?: string;
1332
1418
  CreatedAfter?: Date;
@@ -1376,14 +1462,17 @@ export interface ListProcessingJobsResponse {
1376
1462
  ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
1377
1463
  NextToken?: string;
1378
1464
  }
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
- }
1465
+ export declare const ProjectSortBy: {
1466
+ readonly CREATION_TIME: "CreationTime";
1467
+ readonly NAME: "Name";
1468
+ };
1469
+ export type ProjectSortBy = (typeof ProjectSortBy)[keyof typeof ProjectSortBy];
1470
+ export declare const ProjectSortOrder: {
1471
+ readonly ASCENDING: "Ascending";
1472
+ readonly DESCENDING: "Descending";
1473
+ };
1474
+ export type ProjectSortOrder =
1475
+ (typeof ProjectSortOrder)[keyof typeof ProjectSortOrder];
1387
1476
  export interface ListProjectsInput {
1388
1477
  CreationTimeAfter?: Date;
1389
1478
  CreationTimeBefore?: Date;
@@ -1405,10 +1494,11 @@ export interface ListProjectsOutput {
1405
1494
  ProjectSummaryList: ProjectSummary[] | undefined;
1406
1495
  NextToken?: string;
1407
1496
  }
1408
- export declare enum SpaceSortKey {
1409
- CreationTime = "CreationTime",
1410
- LastModifiedTime = "LastModifiedTime",
1411
- }
1497
+ export declare const SpaceSortKey: {
1498
+ readonly CreationTime: "CreationTime";
1499
+ readonly LastModifiedTime: "LastModifiedTime";
1500
+ };
1501
+ export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
1412
1502
  export interface ListSpacesRequest {
1413
1503
  NextToken?: string;
1414
1504
  MaxResults?: number;
@@ -1439,11 +1529,13 @@ export interface ListStageDevicesResponse {
1439
1529
  DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
1440
1530
  NextToken?: string;
1441
1531
  }
1442
- export declare enum StudioLifecycleConfigSortKey {
1443
- CreationTime = "CreationTime",
1444
- LastModifiedTime = "LastModifiedTime",
1445
- Name = "Name",
1446
- }
1532
+ export declare const StudioLifecycleConfigSortKey: {
1533
+ readonly CreationTime: "CreationTime";
1534
+ readonly LastModifiedTime: "LastModifiedTime";
1535
+ readonly Name: "Name";
1536
+ };
1537
+ export type StudioLifecycleConfigSortKey =
1538
+ (typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
1447
1539
  export interface ListStudioLifecycleConfigsRequest {
1448
1540
  MaxResults?: number;
1449
1541
  NextToken?: string;
@@ -1511,12 +1603,14 @@ export interface ListTrainingJobsResponse {
1511
1603
  TrainingJobSummaries: TrainingJobSummary[] | undefined;
1512
1604
  NextToken?: string;
1513
1605
  }
1514
- export declare enum TrainingJobSortByOptions {
1515
- CreationTime = "CreationTime",
1516
- FinalObjectiveMetricValue = "FinalObjectiveMetricValue",
1517
- Name = "Name",
1518
- Status = "Status",
1519
- }
1606
+ export declare const TrainingJobSortByOptions: {
1607
+ readonly CreationTime: "CreationTime";
1608
+ readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
1609
+ readonly Name: "Name";
1610
+ readonly Status: "Status";
1611
+ };
1612
+ export type TrainingJobSortByOptions =
1613
+ (typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
1520
1614
  export interface ListTrainingJobsForHyperParameterTuningJobRequest {
1521
1615
  HyperParameterTuningJobName: string | undefined;
1522
1616
  NextToken?: string;
@@ -1554,10 +1648,12 @@ export interface ListTransformJobsResponse {
1554
1648
  TransformJobSummaries: TransformJobSummary[] | undefined;
1555
1649
  NextToken?: string;
1556
1650
  }
1557
- export declare enum SortTrialComponentsBy {
1558
- CREATION_TIME = "CreationTime",
1559
- NAME = "Name",
1560
- }
1651
+ export declare const SortTrialComponentsBy: {
1652
+ readonly CREATION_TIME: "CreationTime";
1653
+ readonly NAME: "Name";
1654
+ };
1655
+ export type SortTrialComponentsBy =
1656
+ (typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
1561
1657
  export interface ListTrialComponentsRequest {
1562
1658
  ExperimentName?: string;
1563
1659
  TrialName?: string;
@@ -1586,10 +1682,11 @@ export interface ListTrialComponentsResponse {
1586
1682
  TrialComponentSummaries?: TrialComponentSummary[];
1587
1683
  NextToken?: string;
1588
1684
  }
1589
- export declare enum SortTrialsBy {
1590
- CREATION_TIME = "CreationTime",
1591
- NAME = "Name",
1592
- }
1685
+ export declare const SortTrialsBy: {
1686
+ readonly CREATION_TIME: "CreationTime";
1687
+ readonly NAME: "Name";
1688
+ };
1689
+ export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
1593
1690
  export interface ListTrialsRequest {
1594
1691
  ExperimentName?: string;
1595
1692
  TrialComponentName?: string;
@@ -1612,10 +1709,12 @@ export interface ListTrialsResponse {
1612
1709
  TrialSummaries?: TrialSummary[];
1613
1710
  NextToken?: string;
1614
1711
  }
1615
- export declare enum UserProfileSortKey {
1616
- CreationTime = "CreationTime",
1617
- LastModifiedTime = "LastModifiedTime",
1618
- }
1712
+ export declare const UserProfileSortKey: {
1713
+ readonly CreationTime: "CreationTime";
1714
+ readonly LastModifiedTime: "LastModifiedTime";
1715
+ };
1716
+ export type UserProfileSortKey =
1717
+ (typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
1619
1718
  export interface ListUserProfilesRequest {
1620
1719
  NextToken?: string;
1621
1720
  MaxResults?: number;
@@ -1635,10 +1734,12 @@ export interface ListUserProfilesResponse {
1635
1734
  UserProfiles?: UserProfileDetails[];
1636
1735
  NextToken?: string;
1637
1736
  }
1638
- export declare enum ListWorkforcesSortByOptions {
1639
- CreateDate = "CreateDate",
1640
- Name = "Name",
1641
- }
1737
+ export declare const ListWorkforcesSortByOptions: {
1738
+ readonly CreateDate: "CreateDate";
1739
+ readonly Name: "Name";
1740
+ };
1741
+ export type ListWorkforcesSortByOptions =
1742
+ (typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
1642
1743
  export interface ListWorkforcesRequest {
1643
1744
  SortBy?: ListWorkforcesSortByOptions | string;
1644
1745
  SortOrder?: SortOrder | string;
@@ -1650,10 +1751,12 @@ export interface ListWorkforcesResponse {
1650
1751
  Workforces: Workforce[] | undefined;
1651
1752
  NextToken?: string;
1652
1753
  }
1653
- export declare enum ListWorkteamsSortByOptions {
1654
- CreateDate = "CreateDate",
1655
- Name = "Name",
1656
- }
1754
+ export declare const ListWorkteamsSortByOptions: {
1755
+ readonly CreateDate: "CreateDate";
1756
+ readonly Name: "Name";
1757
+ };
1758
+ export type ListWorkteamsSortByOptions =
1759
+ (typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
1657
1760
  export interface ListWorkteamsRequest {
1658
1761
  SortBy?: ListWorkteamsSortByOptions | string;
1659
1762
  SortOrder?: SortOrder | string;
@@ -1793,11 +1896,13 @@ export interface ModelPackageGroup {
1793
1896
  ModelPackageGroupStatus?: ModelPackageGroupStatus | string;
1794
1897
  Tags?: Tag[];
1795
1898
  }
1796
- export declare enum ModelVariantAction {
1797
- PROMOTE = "Promote",
1798
- REMOVE = "Remove",
1799
- RETAIN = "Retain",
1800
- }
1899
+ export declare const ModelVariantAction: {
1900
+ readonly PROMOTE: "Promote";
1901
+ readonly REMOVE: "Remove";
1902
+ readonly RETAIN: "Retain";
1903
+ };
1904
+ export type ModelVariantAction =
1905
+ (typeof ModelVariantAction)[keyof typeof ModelVariantAction];
1801
1906
  export interface NestedFilters {
1802
1907
  NestedPropertyName: string | undefined;
1803
1908
  Filters: Filter[] | undefined;
@@ -1948,10 +2053,12 @@ export interface RetryPipelineExecutionRequest {
1948
2053
  export interface RetryPipelineExecutionResponse {
1949
2054
  PipelineExecutionArn?: string;
1950
2055
  }
1951
- export declare enum SearchSortOrder {
1952
- ASCENDING = "Ascending",
1953
- DESCENDING = "Descending",
1954
- }
2056
+ export declare const SearchSortOrder: {
2057
+ readonly ASCENDING: "Ascending";
2058
+ readonly DESCENDING: "Descending";
2059
+ };
2060
+ export type SearchSortOrder =
2061
+ (typeof SearchSortOrder)[keyof typeof SearchSortOrder];
1955
2062
  export interface TrainingJob {
1956
2063
  TrainingJobName?: string;
1957
2064
  TrainingJobArn?: string;
@@ -2169,10 +2276,6 @@ export interface UpdateActionRequest {
2169
2276
  export interface UpdateActionResponse {
2170
2277
  ActionArn?: string;
2171
2278
  }
2172
- export interface UpdateAppImageConfigRequest {
2173
- AppImageConfigName: string | undefined;
2174
- KernelGatewayImageConfig?: KernelGatewayImageConfig;
2175
- }
2176
2279
  export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
2177
2280
  export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
2178
2281
  export declare const SearchResponseFilterSensitiveLog: (