@aws-sdk/client-sagemaker 3.427.0 → 3.429.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 (33) hide show
  1. package/dist-cjs/models/models_0.js +5 -8
  2. package/dist-cjs/models/models_1.js +4 -1
  3. package/dist-cjs/models/models_2.js +1 -6
  4. package/dist-cjs/models/models_3.js +7 -2
  5. package/dist-es/models/models_0.js +4 -7
  6. package/dist-es/models/models_1.js +3 -0
  7. package/dist-es/models/models_2.js +0 -5
  8. package/dist-es/models/models_3.js +5 -0
  9. package/dist-types/commands/CreateDataQualityJobDefinitionCommand.d.ts +2 -1
  10. package/dist-types/commands/CreateDomainCommand.d.ts +6 -0
  11. package/dist-types/commands/CreateFeatureGroupCommand.d.ts +6 -2
  12. package/dist-types/commands/CreateUserProfileCommand.d.ts +6 -0
  13. package/dist-types/commands/DeleteDataQualityJobDefinitionCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteDeviceFleetCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteFeatureGroupCommand.d.ts +3 -0
  16. package/dist-types/commands/DescribeDomainCommand.d.ts +6 -0
  17. package/dist-types/commands/DescribeUserProfileCommand.d.ts +6 -0
  18. package/dist-types/commands/UpdateDomainCommand.d.ts +6 -0
  19. package/dist-types/commands/UpdateUserProfileCommand.d.ts +6 -0
  20. package/dist-types/models/models_0.d.ts +156 -138
  21. package/dist-types/models/models_1.d.ts +90 -89
  22. package/dist-types/models/models_2.d.ts +123 -133
  23. package/dist-types/models/models_3.d.ts +241 -337
  24. package/dist-types/models/models_4.d.ts +163 -33
  25. package/dist-types/ts3.4/commands/CreateDataQualityJobDefinitionCommand.d.ts +2 -4
  26. package/dist-types/ts3.4/commands/DeleteDataQualityJobDefinitionCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/DeleteDeviceFleetCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +123 -129
  29. package/dist-types/ts3.4/models/models_1.d.ts +75 -78
  30. package/dist-types/ts3.4/models/models_2.d.ts +104 -113
  31. package/dist-types/ts3.4/models/models_3.d.ts +217 -238
  32. package/dist-types/ts3.4/models/models_4.d.ts +62 -32
  33. package/package.json +32 -32
@@ -43,7 +43,6 @@ import {
43
43
  DataQualityAppSpecification,
44
44
  DataQualityBaselineConfig,
45
45
  DataQualityJobInput,
46
- EdgePresetDeploymentType,
47
46
  GitConfig,
48
47
  HyperParameterTuningJobObjectiveType,
49
48
  InferenceSpecification,
@@ -92,6 +91,7 @@ import {
92
91
  EdgeDeploymentConfig,
93
92
  EdgeDeploymentModelConfig,
94
93
  EdgeOutputConfig,
94
+ EdgePresetDeploymentType,
95
95
  EndpointInfo,
96
96
  ExecutionRoleIdentityConfig,
97
97
  ExperimentConfig,
@@ -173,13 +173,19 @@ import {
173
173
  UserSettings,
174
174
  VendorGuidance,
175
175
  } from "./models_1";
176
+ export interface DeleteDataQualityJobDefinitionRequest {
177
+ JobDefinitionName: string | undefined;
178
+ }
179
+ export interface DeleteDeviceFleetRequest {
180
+ DeviceFleetName: string | undefined;
181
+ }
176
182
  export declare const RetentionType: {
177
183
  readonly Delete: "Delete";
178
184
  readonly Retain: "Retain";
179
185
  };
180
186
  export type RetentionType = (typeof RetentionType)[keyof typeof RetentionType];
181
187
  export interface RetentionPolicy {
182
- HomeEfsFileSystem?: RetentionType | string;
188
+ HomeEfsFileSystem?: RetentionType;
183
189
  }
184
190
  export interface DeleteDomainRequest {
185
191
  DomainId: string | undefined;
@@ -222,7 +228,7 @@ export type HubContentType =
222
228
  (typeof HubContentType)[keyof typeof HubContentType];
223
229
  export interface DeleteHubContentRequest {
224
230
  HubName: string | undefined;
225
- HubContentType: HubContentType | string | undefined;
231
+ HubContentType: HubContentType | undefined;
226
232
  HubContentName: string | undefined;
227
233
  HubContentVersion: string | undefined;
228
234
  }
@@ -334,7 +340,7 @@ export interface DeployedImage {
334
340
  }
335
341
  export interface RealTimeInferenceRecommendation {
336
342
  RecommendationId: string | undefined;
337
- InstanceType: ProductionVariantInstanceType | string | undefined;
343
+ InstanceType: ProductionVariantInstanceType | undefined;
338
344
  Environment?: Record<string, string>;
339
345
  }
340
346
  export declare const RecommendationStatus: {
@@ -346,7 +352,7 @@ export declare const RecommendationStatus: {
346
352
  export type RecommendationStatus =
347
353
  (typeof RecommendationStatus)[keyof typeof RecommendationStatus];
348
354
  export interface DeploymentRecommendation {
349
- RecommendationStatus: RecommendationStatus | string | undefined;
355
+ RecommendationStatus: RecommendationStatus | undefined;
350
356
  RealTimeInferenceRecommendations?: RealTimeInferenceRecommendation[];
351
357
  }
352
358
  export declare const StageStatus: {
@@ -361,7 +367,7 @@ export declare const StageStatus: {
361
367
  };
362
368
  export type StageStatus = (typeof StageStatus)[keyof typeof StageStatus];
363
369
  export interface EdgeDeploymentStatus {
364
- StageStatus: StageStatus | string | undefined;
370
+ StageStatus: StageStatus | undefined;
365
371
  EdgeDeploymentSuccessInStage: number | undefined;
366
372
  EdgeDeploymentPendingInStage: number | undefined;
367
373
  EdgeDeploymentFailedInStage: number | undefined;
@@ -390,7 +396,7 @@ export interface DescribeActionResponse {
390
396
  Source?: ActionSource;
391
397
  ActionType?: string;
392
398
  Description?: string;
393
- Status?: ActionStatus | string;
399
+ Status?: ActionStatus;
394
400
  Properties?: Record<string, string>;
395
401
  CreationTime?: Date;
396
402
  CreatedBy?: UserContext;
@@ -410,7 +416,7 @@ export interface DescribeAlgorithmOutput {
410
416
  TrainingSpecification: TrainingSpecification | undefined;
411
417
  InferenceSpecification?: InferenceSpecification;
412
418
  ValidationSpecification?: AlgorithmValidationSpecification;
413
- AlgorithmStatus: AlgorithmStatus | string | undefined;
419
+ AlgorithmStatus: AlgorithmStatus | undefined;
414
420
  AlgorithmStatusDetails: AlgorithmStatusDetails | undefined;
415
421
  ProductId?: string;
416
422
  CertifyForMarketplace?: boolean;
@@ -418,17 +424,17 @@ export interface DescribeAlgorithmOutput {
418
424
  export interface DescribeAppRequest {
419
425
  DomainId: string | undefined;
420
426
  UserProfileName?: string;
421
- AppType: AppType | string | undefined;
427
+ AppType: AppType | undefined;
422
428
  AppName: string | undefined;
423
429
  SpaceName?: string;
424
430
  }
425
431
  export interface DescribeAppResponse {
426
432
  AppArn?: string;
427
- AppType?: AppType | string;
433
+ AppType?: AppType;
428
434
  AppName?: string;
429
435
  DomainId?: string;
430
436
  UserProfileName?: string;
431
- Status?: AppStatus | string;
437
+ Status?: AppStatus;
432
438
  LastHealthCheckTimestamp?: Date;
433
439
  LastUserActivityTimestamp?: Date;
434
440
  CreationTime?: Date;
@@ -470,7 +476,7 @@ export interface ModelDeployResult {
470
476
  }
471
477
  export interface ResolvedAttributes {
472
478
  AutoMLJobObjective?: AutoMLJobObjective;
473
- ProblemType?: ProblemType | string;
479
+ ProblemType?: ProblemType;
474
480
  CompletionCriteria?: AutoMLJobCompletionCriteria;
475
481
  }
476
482
  export interface DescribeAutoMLJobResponse {
@@ -480,7 +486,7 @@ export interface DescribeAutoMLJobResponse {
480
486
  OutputDataConfig: AutoMLOutputDataConfig | undefined;
481
487
  RoleArn: string | undefined;
482
488
  AutoMLJobObjective?: AutoMLJobObjective;
483
- ProblemType?: ProblemType | string;
489
+ ProblemType?: ProblemType;
484
490
  AutoMLJobConfig?: AutoMLJobConfig;
485
491
  CreationTime: Date | undefined;
486
492
  EndTime?: Date;
@@ -488,8 +494,8 @@ export interface DescribeAutoMLJobResponse {
488
494
  FailureReason?: string;
489
495
  PartialFailureReasons?: AutoMLPartialFailureReason[];
490
496
  BestCandidate?: AutoMLCandidate;
491
- AutoMLJobStatus: AutoMLJobStatus | string | undefined;
492
- AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | string | undefined;
497
+ AutoMLJobStatus: AutoMLJobStatus | undefined;
498
+ AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
493
499
  GenerateCandidateDefinitionsOnly?: boolean;
494
500
  AutoMLJobArtifacts?: AutoMLJobArtifacts;
495
501
  ResolvedAttributes?: ResolvedAttributes;
@@ -513,15 +519,15 @@ export interface DescribeAutoMLJobV2Response {
513
519
  FailureReason?: string;
514
520
  PartialFailureReasons?: AutoMLPartialFailureReason[];
515
521
  BestCandidate?: AutoMLCandidate;
516
- AutoMLJobStatus: AutoMLJobStatus | string | undefined;
517
- AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | string | undefined;
522
+ AutoMLJobStatus: AutoMLJobStatus | undefined;
523
+ AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
518
524
  ModelDeployConfig?: ModelDeployConfig;
519
525
  ModelDeployResult?: ModelDeployResult;
520
526
  DataSplitConfig?: AutoMLDataSplitConfig;
521
527
  SecurityConfig?: AutoMLSecurityConfig;
522
528
  AutoMLJobArtifacts?: AutoMLJobArtifacts;
523
529
  ResolvedAttributes?: AutoMLResolvedAttributes;
524
- AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName | string;
530
+ AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName;
525
531
  }
526
532
  export interface DescribeCodeRepositoryInput {
527
533
  CodeRepositoryName: string | undefined;
@@ -545,7 +551,7 @@ export interface ModelDigests {
545
551
  export interface DescribeCompilationJobResponse {
546
552
  CompilationJobName: string | undefined;
547
553
  CompilationJobArn: string | undefined;
548
- CompilationJobStatus: CompilationJobStatus | string | undefined;
554
+ CompilationJobStatus: CompilationJobStatus | undefined;
549
555
  CompilationStartTime?: Date;
550
556
  CompilationEndTime?: Date;
551
557
  StoppingCondition: StoppingCondition | undefined;
@@ -650,20 +656,20 @@ export interface DescribeDomainResponse {
650
656
  DomainName?: string;
651
657
  HomeEfsFileSystemId?: string;
652
658
  SingleSignOnManagedApplicationInstanceId?: string;
653
- Status?: DomainStatus | string;
659
+ Status?: DomainStatus;
654
660
  CreationTime?: Date;
655
661
  LastModifiedTime?: Date;
656
662
  FailureReason?: string;
657
- AuthMode?: AuthMode | string;
663
+ AuthMode?: AuthMode;
658
664
  DefaultUserSettings?: UserSettings;
659
- AppNetworkAccessType?: AppNetworkAccessType | string;
665
+ AppNetworkAccessType?: AppNetworkAccessType;
660
666
  HomeEfsFileSystemKmsKeyId?: string;
661
667
  SubnetIds?: string[];
662
668
  Url?: string;
663
669
  VpcId?: string;
664
670
  KmsKeyId?: string;
665
671
  DomainSettings?: DomainSettings;
666
- AppSecurityGroupManagement?: AppSecurityGroupManagement | string;
672
+ AppSecurityGroupManagement?: AppSecurityGroupManagement;
667
673
  SecurityGroupIdForDomainBoundary?: string;
668
674
  DefaultSpaceSettings?: DefaultSpaceSettings;
669
675
  }
@@ -705,9 +711,9 @@ export declare const EdgePresetDeploymentStatus: {
705
711
  export type EdgePresetDeploymentStatus =
706
712
  (typeof EdgePresetDeploymentStatus)[keyof typeof EdgePresetDeploymentStatus];
707
713
  export interface EdgePresetDeploymentOutput {
708
- Type: EdgePresetDeploymentType | string | undefined;
714
+ Type: EdgePresetDeploymentType | undefined;
709
715
  Artifact?: string;
710
- Status?: EdgePresetDeploymentStatus | string;
716
+ Status?: EdgePresetDeploymentStatus;
711
717
  StatusMessage?: string;
712
718
  }
713
719
  export interface DescribeEdgePackagingJobResponse {
@@ -719,7 +725,7 @@ export interface DescribeEdgePackagingJobResponse {
719
725
  RoleArn?: string;
720
726
  OutputConfig?: EdgeOutputConfig;
721
727
  ResourceKey?: string;
722
- EdgePackagingJobStatus: EdgePackagingJobStatus | string | undefined;
728
+ EdgePackagingJobStatus: EdgePackagingJobStatus | undefined;
723
729
  EdgePackagingJobStatusMessage?: string;
724
730
  CreationTime?: Date;
725
731
  LastModifiedTime?: Date;
@@ -752,7 +758,7 @@ export declare const VariantStatus: {
752
758
  };
753
759
  export type VariantStatus = (typeof VariantStatus)[keyof typeof VariantStatus];
754
760
  export interface ProductionVariantStatus {
755
- Status: VariantStatus | string | undefined;
761
+ Status: VariantStatus | undefined;
756
762
  StatusMessage?: string;
757
763
  StartTime?: Date;
758
764
  }
@@ -763,8 +769,8 @@ export interface PendingProductionVariantSummary {
763
769
  DesiredWeight?: number;
764
770
  CurrentInstanceCount?: number;
765
771
  DesiredInstanceCount?: number;
766
- InstanceType?: ProductionVariantInstanceType | string;
767
- AcceleratorType?: ProductionVariantAcceleratorType | string;
772
+ InstanceType?: ProductionVariantInstanceType;
773
+ AcceleratorType?: ProductionVariantAcceleratorType;
768
774
  VariantStatus?: ProductionVariantStatus[];
769
775
  CurrentServerlessConfig?: ProductionVariantServerlessConfig;
770
776
  DesiredServerlessConfig?: ProductionVariantServerlessConfig;
@@ -792,7 +798,7 @@ export interface DescribeEndpointOutput {
792
798
  EndpointConfigName: string | undefined;
793
799
  ProductionVariants?: ProductionVariantSummary[];
794
800
  DataCaptureConfig?: DataCaptureConfigSummary;
795
- EndpointStatus: EndpointStatus | string | undefined;
801
+ EndpointStatus: EndpointStatus | undefined;
796
802
  FailureReason?: string;
797
803
  CreationTime: Date | undefined;
798
804
  LastModifiedTime: Date | undefined;
@@ -855,7 +861,7 @@ export declare const LastUpdateStatusValue: {
855
861
  export type LastUpdateStatusValue =
856
862
  (typeof LastUpdateStatusValue)[keyof typeof LastUpdateStatusValue];
857
863
  export interface LastUpdateStatus {
858
- Status: LastUpdateStatusValue | string | undefined;
864
+ Status: LastUpdateStatusValue | undefined;
859
865
  FailureReason?: string;
860
866
  }
861
867
  export declare const OfflineStoreStatusValue: {
@@ -866,7 +872,7 @@ export declare const OfflineStoreStatusValue: {
866
872
  export type OfflineStoreStatusValue =
867
873
  (typeof OfflineStoreStatusValue)[keyof typeof OfflineStoreStatusValue];
868
874
  export interface OfflineStoreStatus {
869
- Status: OfflineStoreStatusValue | string | undefined;
875
+ Status: OfflineStoreStatusValue | undefined;
870
876
  BlockedReason?: string;
871
877
  }
872
878
  export interface DescribeFeatureGroupResponse {
@@ -880,7 +886,7 @@ export interface DescribeFeatureGroupResponse {
880
886
  OnlineStoreConfig?: OnlineStoreConfig;
881
887
  OfflineStoreConfig?: OfflineStoreConfig;
882
888
  RoleArn?: string;
883
- FeatureGroupStatus?: FeatureGroupStatus | string;
889
+ FeatureGroupStatus?: FeatureGroupStatus;
884
890
  OfflineStoreStatus?: OfflineStoreStatus;
885
891
  LastUpdateStatus?: LastUpdateStatus;
886
892
  FailureReason?: string;
@@ -900,7 +906,7 @@ export interface DescribeFeatureMetadataResponse {
900
906
  FeatureGroupArn: string | undefined;
901
907
  FeatureGroupName: string | undefined;
902
908
  FeatureName: string | undefined;
903
- FeatureType: FeatureType | string | undefined;
909
+ FeatureType: FeatureType | undefined;
904
910
  CreationTime: Date | undefined;
905
911
  LastModifiedTime: Date | undefined;
906
912
  Description?: string;
@@ -920,7 +926,7 @@ export type FlowDefinitionStatus =
920
926
  export interface DescribeFlowDefinitionResponse {
921
927
  FlowDefinitionArn: string | undefined;
922
928
  FlowDefinitionName: string | undefined;
923
- FlowDefinitionStatus: FlowDefinitionStatus | string | undefined;
929
+ FlowDefinitionStatus: FlowDefinitionStatus | undefined;
924
930
  CreationTime: Date | undefined;
925
931
  HumanLoopRequestSource?: HumanLoopRequestSource;
926
932
  HumanLoopActivationConfig?: HumanLoopActivationConfig;
@@ -949,14 +955,14 @@ export interface DescribeHubResponse {
949
955
  HubDescription?: string;
950
956
  HubSearchKeywords?: string[];
951
957
  S3StorageConfig?: HubS3StorageConfig;
952
- HubStatus: HubStatus | string | undefined;
958
+ HubStatus: HubStatus | undefined;
953
959
  FailureReason?: string;
954
960
  CreationTime: Date | undefined;
955
961
  LastModifiedTime: Date | undefined;
956
962
  }
957
963
  export interface DescribeHubContentRequest {
958
964
  HubName: string | undefined;
959
- HubContentType: HubContentType | string | undefined;
965
+ HubContentType: HubContentType | undefined;
960
966
  HubContentName: string | undefined;
961
967
  HubContentVersion?: string;
962
968
  }
@@ -977,7 +983,7 @@ export interface DescribeHubContentResponse {
977
983
  HubContentName: string | undefined;
978
984
  HubContentArn: string | undefined;
979
985
  HubContentVersion: string | undefined;
980
- HubContentType: HubContentType | string | undefined;
986
+ HubContentType: HubContentType | undefined;
981
987
  DocumentSchemaVersion: string | undefined;
982
988
  HubName: string | undefined;
983
989
  HubArn: string | undefined;
@@ -987,7 +993,7 @@ export interface DescribeHubContentResponse {
987
993
  HubContentDocument: string | undefined;
988
994
  HubContentSearchKeywords?: string[];
989
995
  HubContentDependencies?: HubContentDependency[];
990
- HubContentStatus: HubContentStatus | string | undefined;
996
+ HubContentStatus: HubContentStatus | undefined;
991
997
  FailureReason?: string;
992
998
  CreationTime: Date | undefined;
993
999
  }
@@ -1007,7 +1013,7 @@ export interface UiTemplateInfo {
1007
1013
  export interface DescribeHumanTaskUiResponse {
1008
1014
  HumanTaskUiArn: string | undefined;
1009
1015
  HumanTaskUiName: string | undefined;
1010
- HumanTaskUiStatus?: HumanTaskUiStatus | string;
1016
+ HumanTaskUiStatus?: HumanTaskUiStatus;
1011
1017
  CreationTime: Date | undefined;
1012
1018
  UiTemplate: UiTemplateInfo | undefined;
1013
1019
  }
@@ -1015,7 +1021,7 @@ export interface DescribeHyperParameterTuningJobRequest {
1015
1021
  HyperParameterTuningJobName: string | undefined;
1016
1022
  }
1017
1023
  export interface FinalHyperParameterTuningJobObjectiveMetric {
1018
- Type?: HyperParameterTuningJobObjectiveType | string;
1024
+ Type?: HyperParameterTuningJobObjectiveType;
1019
1025
  MetricName: string | undefined;
1020
1026
  Value: number | undefined;
1021
1027
  }
@@ -1036,11 +1042,11 @@ export interface HyperParameterTrainingJobSummary {
1036
1042
  CreationTime: Date | undefined;
1037
1043
  TrainingStartTime?: Date;
1038
1044
  TrainingEndTime?: Date;
1039
- TrainingJobStatus: TrainingJobStatus | string | undefined;
1045
+ TrainingJobStatus: TrainingJobStatus | undefined;
1040
1046
  TunedHyperParameters: Record<string, string> | undefined;
1041
1047
  FailureReason?: string;
1042
1048
  FinalHyperParameterTuningJobObjectiveMetric?: FinalHyperParameterTuningJobObjectiveMetric;
1043
- ObjectiveStatus?: ObjectiveStatus | string;
1049
+ ObjectiveStatus?: ObjectiveStatus;
1044
1050
  }
1045
1051
  export interface HyperParameterTuningJobConsumedResources {
1046
1052
  RuntimeInSeconds?: number;
@@ -1076,10 +1082,7 @@ export interface DescribeHyperParameterTuningJobResponse {
1076
1082
  HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
1077
1083
  TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
1078
1084
  TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
1079
- HyperParameterTuningJobStatus:
1080
- | HyperParameterTuningJobStatus
1081
- | string
1082
- | undefined;
1085
+ HyperParameterTuningJobStatus: HyperParameterTuningJobStatus | undefined;
1083
1086
  CreationTime: Date | undefined;
1084
1087
  HyperParameterTuningEndTime?: Date;
1085
1088
  LastModifiedTime?: Date;
@@ -1113,7 +1116,7 @@ export interface DescribeImageResponse {
1113
1116
  FailureReason?: string;
1114
1117
  ImageArn?: string;
1115
1118
  ImageName?: string;
1116
- ImageStatus?: ImageStatus | string;
1119
+ ImageStatus?: ImageStatus;
1117
1120
  LastModifiedTime?: Date;
1118
1121
  RoleArn?: string;
1119
1122
  }
@@ -1138,14 +1141,14 @@ export interface DescribeImageVersionResponse {
1138
1141
  FailureReason?: string;
1139
1142
  ImageArn?: string;
1140
1143
  ImageVersionArn?: string;
1141
- ImageVersionStatus?: ImageVersionStatus | string;
1144
+ ImageVersionStatus?: ImageVersionStatus;
1142
1145
  LastModifiedTime?: Date;
1143
1146
  Version?: number;
1144
- VendorGuidance?: VendorGuidance | string;
1145
- JobType?: JobType | string;
1147
+ VendorGuidance?: VendorGuidance;
1148
+ JobType?: JobType;
1146
1149
  MLFramework?: string;
1147
1150
  ProgrammingLang?: string;
1148
- Processor?: Processor | string;
1151
+ Processor?: Processor;
1149
1152
  Horovod?: boolean;
1150
1153
  ReleaseNotes?: string;
1151
1154
  }
@@ -1155,7 +1158,7 @@ export interface DescribeInferenceExperimentRequest {
1155
1158
  export interface EndpointMetadata {
1156
1159
  EndpointName: string | undefined;
1157
1160
  EndpointConfigName?: string;
1158
- EndpointStatus?: EndpointStatus | string;
1161
+ EndpointStatus?: EndpointStatus;
1159
1162
  FailureReason?: string;
1160
1163
  }
1161
1164
  export declare const ModelVariantStatus: {
@@ -1171,7 +1174,7 @@ export interface ModelVariantConfigSummary {
1171
1174
  ModelName: string | undefined;
1172
1175
  VariantName: string | undefined;
1173
1176
  InfrastructureConfig: ModelInfrastructureConfig | undefined;
1174
- Status: ModelVariantStatus | string | undefined;
1177
+ Status: ModelVariantStatus | undefined;
1175
1178
  }
1176
1179
  export declare const InferenceExperimentStatus: {
1177
1180
  readonly CANCELLED: "Cancelled";
@@ -1188,9 +1191,9 @@ export type InferenceExperimentStatus =
1188
1191
  export interface DescribeInferenceExperimentResponse {
1189
1192
  Arn: string | undefined;
1190
1193
  Name: string | undefined;
1191
- Type: InferenceExperimentType | string | undefined;
1194
+ Type: InferenceExperimentType | undefined;
1192
1195
  Schedule?: InferenceExperimentSchedule;
1193
- Status: InferenceExperimentStatus | string | undefined;
1196
+ Status: InferenceExperimentStatus | undefined;
1194
1197
  StatusReason?: string;
1195
1198
  Description?: string;
1196
1199
  CreationTime?: Date;
@@ -1217,7 +1220,7 @@ export interface EndpointPerformance {
1217
1220
  export interface EndpointOutputConfiguration {
1218
1221
  EndpointName: string | undefined;
1219
1222
  VariantName: string | undefined;
1220
- InstanceType?: ProductionVariantInstanceType | string;
1223
+ InstanceType?: ProductionVariantInstanceType;
1221
1224
  InitialInstanceCount?: number;
1222
1225
  ServerlessConfig?: ProductionVariantServerlessConfig;
1223
1226
  }
@@ -1261,10 +1264,10 @@ export type RecommendationJobStatus =
1261
1264
  export interface DescribeInferenceRecommendationsJobResponse {
1262
1265
  JobName: string | undefined;
1263
1266
  JobDescription?: string;
1264
- JobType: RecommendationJobType | string | undefined;
1267
+ JobType: RecommendationJobType | undefined;
1265
1268
  JobArn: string | undefined;
1266
1269
  RoleArn: string | undefined;
1267
- Status: RecommendationJobStatus | string | undefined;
1270
+ Status: RecommendationJobStatus | undefined;
1268
1271
  CreationTime: Date | undefined;
1269
1272
  CompletionTime?: Date;
1270
1273
  LastModifiedTime: Date | undefined;
@@ -1299,7 +1302,7 @@ export declare const LabelingJobStatus: {
1299
1302
  export type LabelingJobStatus =
1300
1303
  (typeof LabelingJobStatus)[keyof typeof LabelingJobStatus];
1301
1304
  export interface DescribeLabelingJobResponse {
1302
- LabelingJobStatus: LabelingJobStatus | string | undefined;
1305
+ LabelingJobStatus: LabelingJobStatus | undefined;
1303
1306
  LabelCounters: LabelCounters | undefined;
1304
1307
  FailureReason?: string;
1305
1308
  CreationTime: Date | undefined;
@@ -1381,13 +1384,13 @@ export interface DescribeModelCardResponse {
1381
1384
  ModelCardName: string | undefined;
1382
1385
  ModelCardVersion: number | undefined;
1383
1386
  Content: string | undefined;
1384
- ModelCardStatus: ModelCardStatus | string | undefined;
1387
+ ModelCardStatus: ModelCardStatus | undefined;
1385
1388
  SecurityConfig?: ModelCardSecurityConfig;
1386
1389
  CreationTime: Date | undefined;
1387
1390
  CreatedBy: UserContext | undefined;
1388
1391
  LastModifiedTime?: Date;
1389
1392
  LastModifiedBy?: UserContext;
1390
- ModelCardProcessingStatus?: ModelCardProcessingStatus | string;
1393
+ ModelCardProcessingStatus?: ModelCardProcessingStatus;
1391
1394
  }
1392
1395
  export interface DescribeModelCardExportJobRequest {
1393
1396
  ModelCardExportJobArn: string | undefined;
@@ -1405,7 +1408,7 @@ export type ModelCardExportJobStatus =
1405
1408
  export interface DescribeModelCardExportJobResponse {
1406
1409
  ModelCardExportJobName: string | undefined;
1407
1410
  ModelCardExportJobArn: string | undefined;
1408
- Status: ModelCardExportJobStatus | string | undefined;
1411
+ Status: ModelCardExportJobStatus | undefined;
1409
1412
  ModelCardName: string | undefined;
1410
1413
  ModelCardVersion: number | undefined;
1411
1414
  OutputConfig: ModelCardExportOutputConfig | undefined;
@@ -1445,7 +1448,7 @@ export type DetailedModelPackageStatus =
1445
1448
  (typeof DetailedModelPackageStatus)[keyof typeof DetailedModelPackageStatus];
1446
1449
  export interface ModelPackageStatusItem {
1447
1450
  Name: string | undefined;
1448
- Status: DetailedModelPackageStatus | string | undefined;
1451
+ Status: DetailedModelPackageStatus | undefined;
1449
1452
  FailureReason?: string;
1450
1453
  }
1451
1454
  export interface ModelPackageStatusDetails {
@@ -1462,10 +1465,10 @@ export interface DescribeModelPackageOutput {
1462
1465
  InferenceSpecification?: InferenceSpecification;
1463
1466
  SourceAlgorithmSpecification?: SourceAlgorithmSpecification;
1464
1467
  ValidationSpecification?: ModelPackageValidationSpecification;
1465
- ModelPackageStatus: ModelPackageStatus | string | undefined;
1468
+ ModelPackageStatus: ModelPackageStatus | undefined;
1466
1469
  ModelPackageStatusDetails: ModelPackageStatusDetails | undefined;
1467
1470
  CertifyForMarketplace?: boolean;
1468
- ModelApprovalStatus?: ModelApprovalStatus | string;
1471
+ ModelApprovalStatus?: ModelApprovalStatus;
1469
1472
  CreatedBy?: UserContext;
1470
1473
  MetadataProperties?: MetadataProperties;
1471
1474
  ModelMetrics?: ModelMetrics;
@@ -1478,7 +1481,7 @@ export interface DescribeModelPackageOutput {
1478
1481
  Task?: string;
1479
1482
  SamplePayloadUrl?: string;
1480
1483
  AdditionalInferenceSpecifications?: AdditionalInferenceSpecificationDefinition[];
1481
- SkipModelValidation?: SkipModelValidation | string;
1484
+ SkipModelValidation?: SkipModelValidation;
1482
1485
  }
1483
1486
  export interface DescribeModelPackageGroupInput {
1484
1487
  ModelPackageGroupName: string | undefined;
@@ -1499,7 +1502,7 @@ export interface DescribeModelPackageGroupOutput {
1499
1502
  ModelPackageGroupDescription?: string;
1500
1503
  CreationTime: Date | undefined;
1501
1504
  CreatedBy: UserContext | undefined;
1502
- ModelPackageGroupStatus: ModelPackageGroupStatus | string | undefined;
1505
+ ModelPackageGroupStatus: ModelPackageGroupStatus | undefined;
1503
1506
  }
1504
1507
  export interface DescribeModelQualityJobDefinitionRequest {
1505
1508
  JobDefinitionName: string | undefined;
@@ -1536,12 +1539,12 @@ export interface MonitoringExecutionSummary {
1536
1539
  ScheduledTime: Date | undefined;
1537
1540
  CreationTime: Date | undefined;
1538
1541
  LastModifiedTime: Date | undefined;
1539
- MonitoringExecutionStatus: ExecutionStatus | string | undefined;
1542
+ MonitoringExecutionStatus: ExecutionStatus | undefined;
1540
1543
  ProcessingJobArn?: string;
1541
1544
  EndpointName?: string;
1542
1545
  FailureReason?: string;
1543
1546
  MonitoringJobDefinitionName?: string;
1544
- MonitoringType?: MonitoringType | string;
1547
+ MonitoringType?: MonitoringType;
1545
1548
  }
1546
1549
  export declare const ScheduleStatus: {
1547
1550
  readonly FAILED: "Failed";
@@ -1554,8 +1557,8 @@ export type ScheduleStatus =
1554
1557
  export interface DescribeMonitoringScheduleResponse {
1555
1558
  MonitoringScheduleArn: string | undefined;
1556
1559
  MonitoringScheduleName: string | undefined;
1557
- MonitoringScheduleStatus: ScheduleStatus | string | undefined;
1558
- MonitoringType?: MonitoringType | string;
1560
+ MonitoringScheduleStatus: ScheduleStatus | undefined;
1561
+ MonitoringType?: MonitoringType;
1559
1562
  FailureReason?: string;
1560
1563
  CreationTime: Date | undefined;
1561
1564
  LastModifiedTime: Date | undefined;
@@ -1580,10 +1583,10 @@ export type NotebookInstanceStatus =
1580
1583
  export interface DescribeNotebookInstanceOutput {
1581
1584
  NotebookInstanceArn?: string;
1582
1585
  NotebookInstanceName?: string;
1583
- NotebookInstanceStatus?: NotebookInstanceStatus | string;
1586
+ NotebookInstanceStatus?: NotebookInstanceStatus;
1584
1587
  FailureReason?: string;
1585
1588
  Url?: string;
1586
- InstanceType?: _InstanceType | string;
1589
+ InstanceType?: _InstanceType;
1587
1590
  SubnetId?: string;
1588
1591
  SecurityGroups?: string[];
1589
1592
  RoleArn?: string;
@@ -1592,12 +1595,12 @@ export interface DescribeNotebookInstanceOutput {
1592
1595
  LastModifiedTime?: Date;
1593
1596
  CreationTime?: Date;
1594
1597
  NotebookInstanceLifecycleConfigName?: string;
1595
- DirectInternetAccess?: DirectInternetAccess | string;
1598
+ DirectInternetAccess?: DirectInternetAccess;
1596
1599
  VolumeSizeInGB?: number;
1597
- AcceleratorTypes?: (NotebookInstanceAcceleratorType | string)[];
1600
+ AcceleratorTypes?: NotebookInstanceAcceleratorType[];
1598
1601
  DefaultCodeRepository?: string;
1599
1602
  AdditionalCodeRepositories?: string[];
1600
- RootAccess?: RootAccess | string;
1603
+ RootAccess?: RootAccess;
1601
1604
  PlatformIdentifier?: string;
1602
1605
  InstanceMetadataServiceConfiguration?: InstanceMetadataServiceConfiguration;
1603
1606
  }
@@ -1627,7 +1630,7 @@ export interface DescribePipelineResponse {
1627
1630
  PipelineDefinition?: string;
1628
1631
  PipelineDescription?: string;
1629
1632
  RoleArn?: string;
1630
- PipelineStatus?: PipelineStatus | string;
1633
+ PipelineStatus?: PipelineStatus;
1631
1634
  CreationTime?: Date;
1632
1635
  LastModifiedTime?: Date;
1633
1636
  LastRunTime?: Date;
@@ -1669,7 +1672,7 @@ export interface DescribePipelineExecutionResponse {
1669
1672
  PipelineArn?: string;
1670
1673
  PipelineExecutionArn?: string;
1671
1674
  PipelineExecutionDisplayName?: string;
1672
- PipelineExecutionStatus?: PipelineExecutionStatus | string;
1675
+ PipelineExecutionStatus?: PipelineExecutionStatus;
1673
1676
  PipelineExecutionDescription?: string;
1674
1677
  PipelineExperimentConfig?: PipelineExperimentConfig;
1675
1678
  FailureReason?: string;
@@ -1704,7 +1707,7 @@ export interface DescribeProcessingJobResponse {
1704
1707
  RoleArn?: string;
1705
1708
  ExperimentConfig?: ExperimentConfig;
1706
1709
  ProcessingJobArn: string | undefined;
1707
- ProcessingJobStatus: ProcessingJobStatus | string | undefined;
1710
+ ProcessingJobStatus: ProcessingJobStatus | undefined;
1708
1711
  ExitMessage?: string;
1709
1712
  FailureReason?: string;
1710
1713
  ProcessingEndTime?: Date;
@@ -1744,7 +1747,7 @@ export interface DescribeProjectOutput {
1744
1747
  | ServiceCatalogProvisioningDetails
1745
1748
  | undefined;
1746
1749
  ServiceCatalogProvisionedProductDetails?: ServiceCatalogProvisionedProductDetails;
1747
- ProjectStatus: ProjectStatus | string | undefined;
1750
+ ProjectStatus: ProjectStatus | undefined;
1748
1751
  CreatedBy?: UserContext;
1749
1752
  CreationTime: Date | undefined;
1750
1753
  LastModifiedTime?: Date;
@@ -1769,7 +1772,7 @@ export interface DescribeSpaceResponse {
1769
1772
  SpaceArn?: string;
1770
1773
  SpaceName?: string;
1771
1774
  HomeEfsFileSystemUid?: string;
1772
- Status?: SpaceStatus | string;
1775
+ Status?: SpaceStatus;
1773
1776
  LastModifiedTime?: Date;
1774
1777
  CreationTime?: Date;
1775
1778
  FailureReason?: string;
@@ -1784,7 +1787,7 @@ export interface DescribeStudioLifecycleConfigResponse {
1784
1787
  CreationTime?: Date;
1785
1788
  LastModifiedTime?: Date;
1786
1789
  StudioLifecycleConfigContent?: string;
1787
- StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType | string;
1790
+ StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
1788
1791
  }
1789
1792
  export interface DescribeSubscribedWorkteamRequest {
1790
1793
  WorkteamArn: string | undefined;
@@ -1810,7 +1813,7 @@ export interface MetricData {
1810
1813
  export interface ProfilerRuleEvaluationStatus {
1811
1814
  RuleConfigurationName?: string;
1812
1815
  RuleEvaluationJobArn?: string;
1813
- RuleEvaluationStatus?: RuleEvaluationStatus | string;
1816
+ RuleEvaluationStatus?: RuleEvaluationStatus;
1814
1817
  StatusDetails?: string;
1815
1818
  LastModifiedTime?: Date;
1816
1819
  }
@@ -1841,7 +1844,7 @@ export declare const SecondaryStatus: {
1841
1844
  export type SecondaryStatus =
1842
1845
  (typeof SecondaryStatus)[keyof typeof SecondaryStatus];
1843
1846
  export interface SecondaryStatusTransition {
1844
- Status: SecondaryStatus | string | undefined;
1847
+ Status: SecondaryStatus | undefined;
1845
1848
  StartTime: Date | undefined;
1846
1849
  EndTime?: Date;
1847
1850
  StatusMessage?: string;
@@ -1855,7 +1858,7 @@ export declare const WarmPoolResourceStatus: {
1855
1858
  export type WarmPoolResourceStatus =
1856
1859
  (typeof WarmPoolResourceStatus)[keyof typeof WarmPoolResourceStatus];
1857
1860
  export interface WarmPoolStatus {
1858
- Status: WarmPoolResourceStatus | string | undefined;
1861
+ Status: WarmPoolResourceStatus | undefined;
1859
1862
  ResourceRetainedBillableTimeInSeconds?: number;
1860
1863
  ReusedByJob?: string;
1861
1864
  }
@@ -1866,8 +1869,8 @@ export interface DescribeTrainingJobResponse {
1866
1869
  LabelingJobArn?: string;
1867
1870
  AutoMLJobArn?: string;
1868
1871
  ModelArtifacts: ModelArtifacts | undefined;
1869
- TrainingJobStatus: TrainingJobStatus | string | undefined;
1870
- SecondaryStatus: SecondaryStatus | string | undefined;
1872
+ TrainingJobStatus: TrainingJobStatus | undefined;
1873
+ SecondaryStatus: SecondaryStatus | undefined;
1871
1874
  FailureReason?: string;
1872
1875
  HyperParameters?: Record<string, string>;
1873
1876
  AlgorithmSpecification: AlgorithmSpecification | undefined;
@@ -1897,7 +1900,7 @@ export interface DescribeTrainingJobResponse {
1897
1900
  ProfilerConfig?: ProfilerConfig;
1898
1901
  ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
1899
1902
  ProfilerRuleEvaluationStatuses?: ProfilerRuleEvaluationStatus[];
1900
- ProfilingStatus?: ProfilingStatus | string;
1903
+ ProfilingStatus?: ProfilingStatus;
1901
1904
  RetryStrategy?: RetryStrategy;
1902
1905
  Environment?: Record<string, string>;
1903
1906
  WarmPoolStatus?: WarmPoolStatus;
@@ -1917,13 +1920,13 @@ export type TransformJobStatus =
1917
1920
  export interface DescribeTransformJobResponse {
1918
1921
  TransformJobName: string | undefined;
1919
1922
  TransformJobArn: string | undefined;
1920
- TransformJobStatus: TransformJobStatus | string | undefined;
1923
+ TransformJobStatus: TransformJobStatus | undefined;
1921
1924
  FailureReason?: string;
1922
1925
  ModelName: string | undefined;
1923
1926
  MaxConcurrentTransforms?: number;
1924
1927
  ModelClientConfig?: ModelClientConfig;
1925
1928
  MaxPayloadInMB?: number;
1926
- BatchStrategy?: BatchStrategy | string;
1929
+ BatchStrategy?: BatchStrategy;
1927
1930
  Environment?: Record<string, string>;
1928
1931
  TransformInput: TransformInput | undefined;
1929
1932
  TransformOutput?: TransformOutput;
@@ -2014,7 +2017,7 @@ export interface DescribeUserProfileResponse {
2014
2017
  UserProfileArn?: string;
2015
2018
  UserProfileName?: string;
2016
2019
  HomeEfsFileSystemUid?: string;
2017
- Status?: UserProfileStatus | string;
2020
+ Status?: UserProfileStatus;
2018
2021
  LastModifiedTime?: Date;
2019
2022
  CreationTime?: Date;
2020
2023
  FailureReason?: string;
@@ -2059,7 +2062,7 @@ export interface Workforce {
2059
2062
  OidcConfig?: OidcConfigForResponse;
2060
2063
  CreateDate?: Date;
2061
2064
  WorkforceVpcConfig?: WorkforceVpcConfigResponse;
2062
- Status?: WorkforceStatus | string;
2065
+ Status?: WorkforceStatus;
2063
2066
  FailureReason?: string;
2064
2067
  }
2065
2068
  export interface DescribeWorkforceResponse {
@@ -2116,7 +2119,7 @@ export interface DeviceDeploymentSummary {
2116
2119
  DeviceFleetName?: string;
2117
2120
  DeviceName: string | undefined;
2118
2121
  DeviceArn: string | undefined;
2119
- DeviceDeploymentStatus?: DeviceDeploymentStatus | string;
2122
+ DeviceDeploymentStatus?: DeviceDeploymentStatus;
2120
2123
  DeviceDeploymentStatusMessage?: string;
2121
2124
  Description?: string;
2122
2125
  DeploymentStartTime?: Date;
@@ -2166,7 +2169,7 @@ export interface DomainDetails {
2166
2169
  DomainArn?: string;
2167
2170
  DomainId?: string;
2168
2171
  DomainName?: string;
2169
- Status?: DomainStatus | string;
2172
+ Status?: DomainStatus;
2170
2173
  CreationTime?: Date;
2171
2174
  LastModifiedTime?: Date;
2172
2175
  Url?: string;
@@ -2179,7 +2182,7 @@ export interface RStudioServerProDomainSettingsForUpdate {
2179
2182
  }
2180
2183
  export interface DomainSettingsForUpdate {
2181
2184
  RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
2182
- ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | string;
2185
+ ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
2183
2186
  SecurityGroupIds?: string[];
2184
2187
  }
2185
2188
  export interface PredefinedMetricSpecification {
@@ -2244,7 +2247,7 @@ export interface DynamicScalingConfiguration {
2244
2247
  export interface Edge {
2245
2248
  SourceArn?: string;
2246
2249
  DestinationArn?: string;
2247
- AssociationType?: AssociationEdgeType | string;
2250
+ AssociationType?: AssociationEdgeType;
2248
2251
  }
2249
2252
  export interface EdgeDeploymentPlanSummary {
2250
2253
  EdgeDeploymentPlanArn: string | undefined;
@@ -2267,7 +2270,7 @@ export interface EdgeModelStat {
2267
2270
  export interface EdgePackagingJobSummary {
2268
2271
  EdgePackagingJobArn: string | undefined;
2269
2272
  EdgePackagingJobName: string | undefined;
2270
- EdgePackagingJobStatus: EdgePackagingJobStatus | string | undefined;
2273
+ EdgePackagingJobStatus: EdgePackagingJobStatus | undefined;
2271
2274
  CompilationJobName?: string;
2272
2275
  ModelName?: string;
2273
2276
  ModelVersion?: string;
@@ -2285,8 +2288,8 @@ export interface EnableSagemakerServicecatalogPortfolioOutput {}
2285
2288
  export interface MonitoringSchedule {
2286
2289
  MonitoringScheduleArn?: string;
2287
2290
  MonitoringScheduleName?: string;
2288
- MonitoringScheduleStatus?: ScheduleStatus | string;
2289
- MonitoringType?: MonitoringType | string;
2291
+ MonitoringScheduleStatus?: ScheduleStatus;
2292
+ MonitoringType?: MonitoringType;
2290
2293
  FailureReason?: string;
2291
2294
  CreationTime?: Date;
2292
2295
  LastModifiedTime?: Date;
@@ -2301,7 +2304,7 @@ export interface Endpoint {
2301
2304
  EndpointConfigName: string | undefined;
2302
2305
  ProductionVariants?: ProductionVariantSummary[];
2303
2306
  DataCaptureConfig?: DataCaptureConfigSummary;
2304
- EndpointStatus: EndpointStatus | string | undefined;
2307
+ EndpointStatus: EndpointStatus | undefined;
2305
2308
  FailureReason?: string;
2306
2309
  CreationTime: Date | undefined;
2307
2310
  LastModifiedTime: Date | undefined;
@@ -2315,18 +2318,6 @@ export declare const EndpointConfigSortKey: {
2315
2318
  };
2316
2319
  export type EndpointConfigSortKey =
2317
2320
  (typeof EndpointConfigSortKey)[keyof typeof EndpointConfigSortKey];
2318
- export interface EndpointConfigSummary {
2319
- EndpointConfigName: string | undefined;
2320
- EndpointConfigArn: string | undefined;
2321
- CreationTime: Date | undefined;
2322
- }
2323
- export declare const EndpointSortKey: {
2324
- readonly CreationTime: "CreationTime";
2325
- readonly Name: "Name";
2326
- readonly Status: "Status";
2327
- };
2328
- export type EndpointSortKey =
2329
- (typeof EndpointSortKey)[keyof typeof EndpointSortKey];
2330
2321
  export declare const DescribeModelCardResponseFilterSensitiveLog: (
2331
2322
  obj: DescribeModelCardResponse
2332
2323
  ) => any;