@aws-sdk/client-sagemaker 3.428.0 → 3.430.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.
@@ -19,7 +19,7 @@ export interface ActionSummary {
19
19
  ActionName?: string;
20
20
  Source?: ActionSource;
21
21
  ActionType?: string;
22
- Status?: ActionStatus | string;
22
+ Status?: ActionStatus;
23
23
  CreationTime?: Date;
24
24
  LastModifiedTime?: Date;
25
25
  }
@@ -34,7 +34,7 @@ export type AssociationEdgeType =
34
34
  export interface AddAssociationRequest {
35
35
  SourceArn: string | undefined;
36
36
  DestinationArn: string | undefined;
37
- AssociationType?: AssociationEdgeType | string;
37
+ AssociationType?: AssociationEdgeType;
38
38
  }
39
39
  export interface AddAssociationResponse {
40
40
  SourceArn?: string;
@@ -66,9 +66,9 @@ export declare const AdditionalS3DataSourceDataType: {
66
66
  export type AdditionalS3DataSourceDataType =
67
67
  (typeof AdditionalS3DataSourceDataType)[keyof typeof AdditionalS3DataSourceDataType];
68
68
  export interface AdditionalS3DataSource {
69
- S3DataType: AdditionalS3DataSourceDataType | string | undefined;
69
+ S3DataType: AdditionalS3DataSourceDataType | undefined;
70
70
  S3Uri: string | undefined;
71
- CompressionType?: CompressionType | string;
71
+ CompressionType?: CompressionType;
72
72
  }
73
73
  export interface ModelInput {
74
74
  DataInputConfig: string | undefined;
@@ -278,11 +278,8 @@ export interface AdditionalInferenceSpecificationDefinition {
278
278
  Name: string | undefined;
279
279
  Description?: string;
280
280
  Containers: ModelPackageContainerDefinition[] | undefined;
281
- SupportedTransformInstanceTypes?: (TransformInstanceType | string)[];
282
- SupportedRealtimeInferenceInstanceTypes?: (
283
- | ProductionVariantInstanceType
284
- | string
285
- )[];
281
+ SupportedTransformInstanceTypes?: TransformInstanceType[];
282
+ SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[];
286
283
  SupportedContentTypes?: string[];
287
284
  SupportedResponseMIMETypes?: string[];
288
285
  }
@@ -333,10 +330,7 @@ export interface TrainingRepositoryAuthConfig {
333
330
  TrainingRepositoryCredentialsProviderArn: string | undefined;
334
331
  }
335
332
  export interface TrainingImageConfig {
336
- TrainingRepositoryAccessMode:
337
- | TrainingRepositoryAccessMode
338
- | string
339
- | undefined;
333
+ TrainingRepositoryAccessMode: TrainingRepositoryAccessMode | undefined;
340
334
  TrainingRepositoryAuthConfig?: TrainingRepositoryAuthConfig;
341
335
  }
342
336
  export declare const TrainingInputMode: {
@@ -349,7 +343,7 @@ export type TrainingInputMode =
349
343
  export interface AlgorithmSpecification {
350
344
  TrainingImage?: string;
351
345
  AlgorithmName?: string;
352
- TrainingInputMode: TrainingInputMode | string | undefined;
346
+ TrainingInputMode: TrainingInputMode | undefined;
353
347
  MetricDefinitions?: MetricDefinition[];
354
348
  EnableSageMakerMetricsTimeSeries?: boolean;
355
349
  ContainerEntrypoint?: string[];
@@ -375,7 +369,7 @@ export type DetailedAlgorithmStatus =
375
369
  (typeof DetailedAlgorithmStatus)[keyof typeof DetailedAlgorithmStatus];
376
370
  export interface AlgorithmStatusItem {
377
371
  Name: string | undefined;
378
- Status: DetailedAlgorithmStatus | string | undefined;
372
+ Status: DetailedAlgorithmStatus | undefined;
379
373
  FailureReason?: string;
380
374
  }
381
375
  export interface AlgorithmStatusDetails {
@@ -387,7 +381,7 @@ export interface AlgorithmSummary {
387
381
  AlgorithmArn: string | undefined;
388
382
  AlgorithmDescription?: string;
389
383
  CreationTime: Date | undefined;
390
- AlgorithmStatus: AlgorithmStatus | string | undefined;
384
+ AlgorithmStatus: AlgorithmStatus | undefined;
391
385
  }
392
386
  export declare const FileSystemAccessMode: {
393
387
  readonly RO: "ro";
@@ -403,8 +397,8 @@ export type FileSystemType =
403
397
  (typeof FileSystemType)[keyof typeof FileSystemType];
404
398
  export interface FileSystemDataSource {
405
399
  FileSystemId: string | undefined;
406
- FileSystemAccessMode: FileSystemAccessMode | string | undefined;
407
- FileSystemType: FileSystemType | string | undefined;
400
+ FileSystemAccessMode: FileSystemAccessMode | undefined;
401
+ FileSystemType: FileSystemType | undefined;
408
402
  DirectoryPath: string | undefined;
409
403
  }
410
404
  export declare const S3DataDistribution: {
@@ -420,9 +414,9 @@ export declare const S3DataType: {
420
414
  };
421
415
  export type S3DataType = (typeof S3DataType)[keyof typeof S3DataType];
422
416
  export interface S3DataSource {
423
- S3DataType: S3DataType | string | undefined;
417
+ S3DataType: S3DataType | undefined;
424
418
  S3Uri: string | undefined;
425
- S3DataDistributionType?: S3DataDistribution | string;
419
+ S3DataDistributionType?: S3DataDistribution;
426
420
  AttributeNames?: string[];
427
421
  InstanceGroupNames?: string[];
428
422
  }
@@ -442,9 +436,9 @@ export interface Channel {
442
436
  ChannelName: string | undefined;
443
437
  DataSource: DataSource | undefined;
444
438
  ContentType?: string;
445
- CompressionType?: CompressionType | string;
446
- RecordWrapperType?: RecordWrapper | string;
447
- InputMode?: TrainingInputMode | string;
439
+ CompressionType?: CompressionType;
440
+ RecordWrapperType?: RecordWrapper;
441
+ InputMode?: TrainingInputMode;
448
442
  ShuffleConfig?: ShuffleConfig;
449
443
  }
450
444
  export declare const OutputCompressionType: {
@@ -456,7 +450,7 @@ export type OutputCompressionType =
456
450
  export interface OutputDataConfig {
457
451
  KmsKeyId?: string;
458
452
  S3OutputPath: string | undefined;
459
- CompressionType?: OutputCompressionType | string;
453
+ CompressionType?: OutputCompressionType;
460
454
  }
461
455
  export declare const TrainingInstanceType: {
462
456
  readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
@@ -514,12 +508,12 @@ export declare const TrainingInstanceType: {
514
508
  export type TrainingInstanceType =
515
509
  (typeof TrainingInstanceType)[keyof typeof TrainingInstanceType];
516
510
  export interface InstanceGroup {
517
- InstanceType: TrainingInstanceType | string | undefined;
511
+ InstanceType: TrainingInstanceType | undefined;
518
512
  InstanceCount: number | undefined;
519
513
  InstanceGroupName: string | undefined;
520
514
  }
521
515
  export interface ResourceConfig {
522
- InstanceType?: TrainingInstanceType | string;
516
+ InstanceType?: TrainingInstanceType;
523
517
  InstanceCount?: number;
524
518
  VolumeSizeInGB: number | undefined;
525
519
  VolumeKmsKeyId?: string;
@@ -531,7 +525,7 @@ export interface StoppingCondition {
531
525
  MaxWaitTimeInSeconds?: number;
532
526
  }
533
527
  export interface TrainingJobDefinition {
534
- TrainingInputMode: TrainingInputMode | string | undefined;
528
+ TrainingInputMode: TrainingInputMode | undefined;
535
529
  HyperParameters?: Record<string, string>;
536
530
  InputDataConfig: Channel[] | undefined;
537
531
  OutputDataConfig: OutputDataConfig | undefined;
@@ -544,7 +538,7 @@ export declare const BatchStrategy: {
544
538
  };
545
539
  export type BatchStrategy = (typeof BatchStrategy)[keyof typeof BatchStrategy];
546
540
  export interface TransformS3DataSource {
547
- S3DataType: S3DataType | string | undefined;
541
+ S3DataType: S3DataType | undefined;
548
542
  S3Uri: string | undefined;
549
543
  }
550
544
  export interface TransformDataSource {
@@ -560,8 +554,8 @@ export type SplitType = (typeof SplitType)[keyof typeof SplitType];
560
554
  export interface TransformInput {
561
555
  DataSource: TransformDataSource | undefined;
562
556
  ContentType?: string;
563
- CompressionType?: CompressionType | string;
564
- SplitType?: SplitType | string;
557
+ CompressionType?: CompressionType;
558
+ SplitType?: SplitType;
565
559
  }
566
560
  export declare const AssemblyType: {
567
561
  readonly LINE: "Line";
@@ -571,18 +565,18 @@ export type AssemblyType = (typeof AssemblyType)[keyof typeof AssemblyType];
571
565
  export interface TransformOutput {
572
566
  S3OutputPath: string | undefined;
573
567
  Accept?: string;
574
- AssembleWith?: AssemblyType | string;
568
+ AssembleWith?: AssemblyType;
575
569
  KmsKeyId?: string;
576
570
  }
577
571
  export interface TransformResources {
578
- InstanceType: TransformInstanceType | string | undefined;
572
+ InstanceType: TransformInstanceType | undefined;
579
573
  InstanceCount: number | undefined;
580
574
  VolumeKmsKeyId?: string;
581
575
  }
582
576
  export interface TransformJobDefinition {
583
577
  MaxConcurrentTransforms?: number;
584
578
  MaxPayloadInMB?: number;
585
- BatchStrategy?: BatchStrategy | string;
579
+ BatchStrategy?: BatchStrategy;
586
580
  Environment?: Record<string, string>;
587
581
  TransformInput: TransformInput | undefined;
588
582
  TransformOutput: TransformOutput | undefined;
@@ -619,9 +613,9 @@ export type AppStatus = (typeof AppStatus)[keyof typeof AppStatus];
619
613
  export interface AppDetails {
620
614
  DomainId?: string;
621
615
  UserProfileName?: string;
622
- AppType?: AppType | string;
616
+ AppType?: AppType;
623
617
  AppName?: string;
624
- Status?: AppStatus | string;
618
+ Status?: AppStatus;
625
619
  CreationTime?: Date;
626
620
  SpaceName?: string;
627
621
  }
@@ -746,7 +740,7 @@ export declare const ArtifactSourceIdType: {
746
740
  export type ArtifactSourceIdType =
747
741
  (typeof ArtifactSourceIdType)[keyof typeof ArtifactSourceIdType];
748
742
  export interface ArtifactSourceType {
749
- SourceIdType: ArtifactSourceIdType | string | undefined;
743
+ SourceIdType: ArtifactSourceIdType | undefined;
750
744
  Value: string | undefined;
751
745
  }
752
746
  export interface ArtifactSource {
@@ -785,7 +779,7 @@ export interface AssociationSummary {
785
779
  DestinationArn?: string;
786
780
  SourceType?: string;
787
781
  DestinationType?: string;
788
- AssociationType?: AssociationEdgeType | string;
782
+ AssociationType?: AssociationEdgeType;
789
783
  SourceName?: string;
790
784
  DestinationName?: string;
791
785
  CreationTime?: Date;
@@ -803,7 +797,7 @@ export type AsyncNotificationTopicTypes =
803
797
  export interface AsyncInferenceNotificationConfig {
804
798
  SuccessTopic?: string;
805
799
  ErrorTopic?: string;
806
- IncludeInferenceResponseIn?: (AsyncNotificationTopicTypes | string)[];
800
+ IncludeInferenceResponseIn?: AsyncNotificationTopicTypes[];
807
801
  }
808
802
  export interface AsyncInferenceOutputConfig {
809
803
  KmsKeyId?: string;
@@ -838,8 +832,8 @@ export interface AthenaDatasetDefinition {
838
832
  WorkGroup?: string;
839
833
  OutputS3Uri: string | undefined;
840
834
  KmsKeyId?: string;
841
- OutputFormat: AthenaResultFormat | string | undefined;
842
- OutputCompression?: AthenaResultCompressionType | string;
835
+ OutputFormat: AthenaResultFormat | undefined;
836
+ OutputCompression?: AthenaResultCompressionType;
843
837
  }
844
838
  export declare const AuthMode: {
845
839
  readonly IAM: "IAM";
@@ -860,7 +854,7 @@ export declare const AutoMLAlgorithm: {
860
854
  export type AutoMLAlgorithm =
861
855
  (typeof AutoMLAlgorithm)[keyof typeof AutoMLAlgorithm];
862
856
  export interface AutoMLAlgorithmConfig {
863
- AutoMLAlgorithms: (AutoMLAlgorithm | string)[] | undefined;
857
+ AutoMLAlgorithms: AutoMLAlgorithm[] | undefined;
864
858
  }
865
859
  export interface CandidateArtifactLocations {
866
860
  Explainability: string | undefined;
@@ -919,10 +913,10 @@ export declare const AutoMLMetricExtendedEnum: {
919
913
  export type AutoMLMetricExtendedEnum =
920
914
  (typeof AutoMLMetricExtendedEnum)[keyof typeof AutoMLMetricExtendedEnum];
921
915
  export interface MetricDatum {
922
- MetricName?: AutoMLMetricEnum | string;
916
+ MetricName?: AutoMLMetricEnum;
923
917
  Value?: number;
924
- Set?: MetricSetSource | string;
925
- StandardMetricName?: AutoMLMetricExtendedEnum | string;
918
+ Set?: MetricSetSource;
919
+ StandardMetricName?: AutoMLMetricExtendedEnum;
926
920
  }
927
921
  export interface CandidateProperties {
928
922
  CandidateArtifactLocations?: CandidateArtifactLocations;
@@ -945,7 +939,7 @@ export declare const CandidateStepType: {
945
939
  export type CandidateStepType =
946
940
  (typeof CandidateStepType)[keyof typeof CandidateStepType];
947
941
  export interface AutoMLCandidateStep {
948
- CandidateStepType: CandidateStepType | string | undefined;
942
+ CandidateStepType: CandidateStepType | undefined;
949
943
  CandidateStepArn: string | undefined;
950
944
  CandidateStepName: string | undefined;
951
945
  }
@@ -956,10 +950,10 @@ export declare const AutoMLJobObjectiveType: {
956
950
  export type AutoMLJobObjectiveType =
957
951
  (typeof AutoMLJobObjectiveType)[keyof typeof AutoMLJobObjectiveType];
958
952
  export interface FinalAutoMLJobObjectiveMetric {
959
- Type?: AutoMLJobObjectiveType | string;
960
- MetricName: AutoMLMetricEnum | string | undefined;
953
+ Type?: AutoMLJobObjectiveType;
954
+ MetricName: AutoMLMetricEnum | undefined;
961
955
  Value: number | undefined;
962
- StandardMetricName?: AutoMLMetricEnum | string;
956
+ StandardMetricName?: AutoMLMetricEnum;
963
957
  }
964
958
  export declare const AutoMLProcessingUnit: {
965
959
  readonly CPU: "CPU";
@@ -982,16 +976,19 @@ export type ObjectiveStatus =
982
976
  export interface AutoMLCandidate {
983
977
  CandidateName: string | undefined;
984
978
  FinalAutoMLJobObjectiveMetric?: FinalAutoMLJobObjectiveMetric;
985
- ObjectiveStatus: ObjectiveStatus | string | undefined;
979
+ ObjectiveStatus: ObjectiveStatus | undefined;
986
980
  CandidateSteps: AutoMLCandidateStep[] | undefined;
987
- CandidateStatus: CandidateStatus | string | undefined;
981
+ CandidateStatus: CandidateStatus | undefined;
988
982
  InferenceContainers?: AutoMLContainerDefinition[];
989
983
  CreationTime: Date | undefined;
990
984
  EndTime?: Date;
991
985
  LastModifiedTime: Date | undefined;
992
986
  FailureReason?: string;
993
987
  CandidateProperties?: CandidateProperties;
994
- InferenceContainerDefinitions?: Record<string, AutoMLContainerDefinition[]>;
988
+ InferenceContainerDefinitions?: Record<
989
+ AutoMLProcessingUnit,
990
+ AutoMLContainerDefinition[]
991
+ >;
995
992
  }
996
993
  export interface AutoMLCandidateGenerationConfig {
997
994
  FeatureSpecificationS3Uri?: string;
@@ -1011,7 +1008,7 @@ export declare const AutoMLS3DataType: {
1011
1008
  export type AutoMLS3DataType =
1012
1009
  (typeof AutoMLS3DataType)[keyof typeof AutoMLS3DataType];
1013
1010
  export interface AutoMLS3DataSource {
1014
- S3DataType: AutoMLS3DataType | string | undefined;
1011
+ S3DataType: AutoMLS3DataType | undefined;
1015
1012
  S3Uri: string | undefined;
1016
1013
  }
1017
1014
  export interface AutoMLDataSource {
@@ -1019,10 +1016,10 @@ export interface AutoMLDataSource {
1019
1016
  }
1020
1017
  export interface AutoMLChannel {
1021
1018
  DataSource: AutoMLDataSource | undefined;
1022
- CompressionType?: CompressionType | string;
1019
+ CompressionType?: CompressionType;
1023
1020
  TargetAttributeName: string | undefined;
1024
1021
  ContentType?: string;
1025
- ChannelType?: AutoMLChannelType | string;
1022
+ ChannelType?: AutoMLChannelType;
1026
1023
  SampleWeightAttributeName?: string;
1027
1024
  }
1028
1025
  export interface AutoMLDataSplitConfig {
@@ -1033,9 +1030,9 @@ export interface AutoMLJobArtifacts {
1033
1030
  DataExplorationNotebookLocation?: string;
1034
1031
  }
1035
1032
  export interface AutoMLJobChannel {
1036
- ChannelType?: AutoMLChannelType | string;
1033
+ ChannelType?: AutoMLChannelType;
1037
1034
  ContentType?: string;
1038
- CompressionType?: CompressionType | string;
1035
+ CompressionType?: CompressionType;
1039
1036
  DataSource?: AutoMLDataSource;
1040
1037
  }
1041
1038
  export interface AutoMLJobCompletionCriteria {
@@ -1063,10 +1060,10 @@ export interface AutoMLJobConfig {
1063
1060
  SecurityConfig?: AutoMLSecurityConfig;
1064
1061
  DataSplitConfig?: AutoMLDataSplitConfig;
1065
1062
  CandidateGenerationConfig?: AutoMLCandidateGenerationConfig;
1066
- Mode?: AutoMLMode | string;
1063
+ Mode?: AutoMLMode;
1067
1064
  }
1068
1065
  export interface AutoMLJobObjective {
1069
- MetricName: AutoMLMetricEnum | string | undefined;
1066
+ MetricName: AutoMLMetricEnum | undefined;
1070
1067
  }
1071
1068
  export declare const AutoMLJobSecondaryStatus: {
1072
1069
  readonly ANALYZING_DATA: "AnalyzingData";
@@ -1109,8 +1106,8 @@ export interface AutoMLPartialFailureReason {
1109
1106
  export interface AutoMLJobSummary {
1110
1107
  AutoMLJobName: string | undefined;
1111
1108
  AutoMLJobArn: string | undefined;
1112
- AutoMLJobStatus: AutoMLJobStatus | string | undefined;
1113
- AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | string | undefined;
1109
+ AutoMLJobStatus: AutoMLJobStatus | undefined;
1110
+ AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
1114
1111
  CreationTime: Date | undefined;
1115
1112
  EndTime?: Date;
1116
1113
  LastModifiedTime: Date | undefined;
@@ -1137,9 +1134,9 @@ export interface TabularJobConfig {
1137
1134
  CandidateGenerationConfig?: CandidateGenerationConfig;
1138
1135
  CompletionCriteria?: AutoMLJobCompletionCriteria;
1139
1136
  FeatureSpecificationS3Uri?: string;
1140
- Mode?: AutoMLMode | string;
1137
+ Mode?: AutoMLMode;
1141
1138
  GenerateCandidateDefinitionsOnly?: boolean;
1142
- ProblemType?: ProblemType | string;
1139
+ ProblemType?: ProblemType;
1143
1140
  TargetAttributeName: string | undefined;
1144
1141
  SampleWeightAttributeName?: string;
1145
1142
  }
@@ -1169,8 +1166,8 @@ export declare const FillingType: {
1169
1166
  };
1170
1167
  export type FillingType = (typeof FillingType)[keyof typeof FillingType];
1171
1168
  export interface TimeSeriesTransformations {
1172
- Filling?: Record<string, Record<string, string>>;
1173
- Aggregation?: Record<string, AggregationTransformationValue | string>;
1169
+ Filling?: Record<string, Record<FillingType, string>>;
1170
+ Aggregation?: Record<string, AggregationTransformationValue>;
1174
1171
  }
1175
1172
  export interface TimeSeriesForecastingJobConfig {
1176
1173
  FeatureSpecificationS3Uri?: string;
@@ -1244,7 +1241,7 @@ export declare const AutoMLProblemTypeConfigName: {
1244
1241
  export type AutoMLProblemTypeConfigName =
1245
1242
  (typeof AutoMLProblemTypeConfigName)[keyof typeof AutoMLProblemTypeConfigName];
1246
1243
  export interface TabularResolvedAttributes {
1247
- ProblemType?: ProblemType | string;
1244
+ ProblemType?: ProblemType;
1248
1245
  }
1249
1246
  export type AutoMLProblemTypeResolvedAttributes =
1250
1247
  | AutoMLProblemTypeResolvedAttributes.TabularResolvedAttributesMember
@@ -1296,7 +1293,7 @@ export declare const AutotuneMode: {
1296
1293
  };
1297
1294
  export type AutotuneMode = (typeof AutotuneMode)[keyof typeof AutotuneMode];
1298
1295
  export interface Autotune {
1299
- Mode: AutotuneMode | string | undefined;
1296
+ Mode: AutotuneMode | undefined;
1300
1297
  }
1301
1298
  export declare const AwsManagedHumanLoopRequestSource: {
1302
1299
  readonly REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3: "AWS/Rekognition/DetectModerationLabels/Image/V3";
@@ -1318,11 +1315,8 @@ export interface BatchDescribeModelPackageError {
1318
1315
  }
1319
1316
  export interface InferenceSpecification {
1320
1317
  Containers: ModelPackageContainerDefinition[] | undefined;
1321
- SupportedTransformInstanceTypes?: (TransformInstanceType | string)[];
1322
- SupportedRealtimeInferenceInstanceTypes?: (
1323
- | ProductionVariantInstanceType
1324
- | string
1325
- )[];
1318
+ SupportedTransformInstanceTypes?: TransformInstanceType[];
1319
+ SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[];
1326
1320
  SupportedContentTypes: string[] | undefined;
1327
1321
  SupportedResponseMIMETypes: string[] | undefined;
1328
1322
  }
@@ -1349,8 +1343,8 @@ export interface BatchDescribeModelPackageSummary {
1349
1343
  ModelPackageDescription?: string;
1350
1344
  CreationTime: Date | undefined;
1351
1345
  InferenceSpecification: InferenceSpecification | undefined;
1352
- ModelPackageStatus: ModelPackageStatus | string | undefined;
1353
- ModelApprovalStatus?: ModelApprovalStatus | string;
1346
+ ModelPackageStatus: ModelPackageStatus | undefined;
1347
+ ModelApprovalStatus?: ModelApprovalStatus;
1354
1348
  }
1355
1349
  export interface BatchDescribeModelPackageOutput {
1356
1350
  ModelPackageSummaries?: Record<string, BatchDescribeModelPackageSummary>;
@@ -1387,8 +1381,8 @@ export interface BatchTransformInput {
1387
1381
  DataCapturedDestinationS3Uri: string | undefined;
1388
1382
  DatasetFormat: MonitoringDatasetFormat | undefined;
1389
1383
  LocalPath: string | undefined;
1390
- S3InputMode?: ProcessingS3InputMode | string;
1391
- S3DataDistributionType?: ProcessingS3DataDistributionType | string;
1384
+ S3InputMode?: ProcessingS3InputMode;
1385
+ S3DataDistributionType?: ProcessingS3DataDistributionType;
1392
1386
  FeaturesAttribute?: string;
1393
1387
  InferenceAttribute?: string;
1394
1388
  ProbabilityAttribute?: string;
@@ -1417,7 +1411,7 @@ export declare const CapacitySizeType: {
1417
1411
  export type CapacitySizeType =
1418
1412
  (typeof CapacitySizeType)[keyof typeof CapacitySizeType];
1419
1413
  export interface CapacitySize {
1420
- Type: CapacitySizeType | string | undefined;
1414
+ Type: CapacitySizeType | undefined;
1421
1415
  Value: number | undefined;
1422
1416
  }
1423
1417
  export declare const TrafficRoutingConfigType: {
@@ -1428,7 +1422,7 @@ export declare const TrafficRoutingConfigType: {
1428
1422
  export type TrafficRoutingConfigType =
1429
1423
  (typeof TrafficRoutingConfigType)[keyof typeof TrafficRoutingConfigType];
1430
1424
  export interface TrafficRoutingConfig {
1431
- Type: TrafficRoutingConfigType | string | undefined;
1425
+ Type: TrafficRoutingConfigType | undefined;
1432
1426
  WaitIntervalInSeconds: number | undefined;
1433
1427
  CanarySize?: CapacitySize;
1434
1428
  LinearStepSize?: CapacitySize;
@@ -1469,7 +1463,7 @@ export declare const FeatureStatus: {
1469
1463
  };
1470
1464
  export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
1471
1465
  export interface DirectDeploySettings {
1472
- Status?: FeatureStatus | string;
1466
+ Status?: FeatureStatus;
1473
1467
  }
1474
1468
  export declare const DataSourceName: {
1475
1469
  readonly SalesforceGenie: "SalesforceGenie";
@@ -1478,19 +1472,19 @@ export declare const DataSourceName: {
1478
1472
  export type DataSourceName =
1479
1473
  (typeof DataSourceName)[keyof typeof DataSourceName];
1480
1474
  export interface IdentityProviderOAuthSetting {
1481
- DataSourceName?: DataSourceName | string;
1482
- Status?: FeatureStatus | string;
1475
+ DataSourceName?: DataSourceName;
1476
+ Status?: FeatureStatus;
1483
1477
  SecretArn?: string;
1484
1478
  }
1485
1479
  export interface KendraSettings {
1486
- Status?: FeatureStatus | string;
1480
+ Status?: FeatureStatus;
1487
1481
  }
1488
1482
  export interface ModelRegisterSettings {
1489
- Status?: FeatureStatus | string;
1483
+ Status?: FeatureStatus;
1490
1484
  CrossAccountModelRegisterRoleArn?: string;
1491
1485
  }
1492
1486
  export interface TimeSeriesForecastingSettings {
1493
- Status?: FeatureStatus | string;
1487
+ Status?: FeatureStatus;
1494
1488
  AmazonForecastRoleArn?: string;
1495
1489
  }
1496
1490
  export interface WorkspaceSettings {
@@ -1515,7 +1509,7 @@ export declare const CaptureMode: {
1515
1509
  };
1516
1510
  export type CaptureMode = (typeof CaptureMode)[keyof typeof CaptureMode];
1517
1511
  export interface CaptureOption {
1518
- CaptureMode: CaptureMode | string | undefined;
1512
+ CaptureMode: CaptureMode | undefined;
1519
1513
  }
1520
1514
  export declare const CaptureStatus: {
1521
1515
  readonly STARTED: "Started";
@@ -1538,8 +1532,8 @@ export interface ChannelSpecification {
1538
1532
  Description?: string;
1539
1533
  IsRequired?: boolean;
1540
1534
  SupportedContentTypes: string[] | undefined;
1541
- SupportedCompressionTypes?: (CompressionType | string)[];
1542
- SupportedInputModes: (TrainingInputMode | string)[] | undefined;
1535
+ SupportedCompressionTypes?: CompressionType[];
1536
+ SupportedInputModes: TrainingInputMode[] | undefined;
1543
1537
  }
1544
1538
  export interface CheckpointConfig {
1545
1539
  S3Uri: string | undefined;
@@ -1573,7 +1567,7 @@ export interface ClarifyInferenceConfig {
1573
1567
  LabelAttribute?: string;
1574
1568
  LabelHeaders?: string[];
1575
1569
  FeatureHeaders?: string[];
1576
- FeatureTypes?: (ClarifyFeatureType | string)[];
1570
+ FeatureTypes?: ClarifyFeatureType[];
1577
1571
  }
1578
1572
  export interface ClarifyShapBaselineConfig {
1579
1573
  MimeType?: string;
@@ -1652,8 +1646,8 @@ export declare const ClarifyTextLanguage: {
1652
1646
  export type ClarifyTextLanguage =
1653
1647
  (typeof ClarifyTextLanguage)[keyof typeof ClarifyTextLanguage];
1654
1648
  export interface ClarifyTextConfig {
1655
- Language: ClarifyTextLanguage | string | undefined;
1656
- Granularity: ClarifyTextGranularity | string | undefined;
1649
+ Language: ClarifyTextLanguage | undefined;
1650
+ Granularity: ClarifyTextGranularity | undefined;
1657
1651
  }
1658
1652
  export interface ClarifyShapConfig {
1659
1653
  ShapBaselineConfig: ClarifyShapBaselineConfig | undefined;
@@ -1812,12 +1806,12 @@ export interface CompilationJobSummary {
1812
1806
  CreationTime: Date | undefined;
1813
1807
  CompilationStartTime?: Date;
1814
1808
  CompilationEndTime?: Date;
1815
- CompilationTargetDevice?: TargetDevice | string;
1816
- CompilationTargetPlatformOs?: TargetPlatformOs | string;
1817
- CompilationTargetPlatformArch?: TargetPlatformArch | string;
1818
- CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator | string;
1809
+ CompilationTargetDevice?: TargetDevice;
1810
+ CompilationTargetPlatformOs?: TargetPlatformOs;
1811
+ CompilationTargetPlatformArch?: TargetPlatformArch;
1812
+ CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator;
1819
1813
  LastModifiedTime?: Date;
1820
- CompilationJobStatus: CompilationJobStatus | string | undefined;
1814
+ CompilationJobStatus: CompilationJobStatus | undefined;
1821
1815
  }
1822
1816
  export declare const CompleteOnConvergence: {
1823
1817
  readonly DISABLED: "Disabled";
@@ -1832,7 +1826,7 @@ export declare const ConditionOutcome: {
1832
1826
  export type ConditionOutcome =
1833
1827
  (typeof ConditionOutcome)[keyof typeof ConditionOutcome];
1834
1828
  export interface ConditionStepMetadata {
1835
- Outcome?: ConditionOutcome | string;
1829
+ Outcome?: ConditionOutcome;
1836
1830
  }
1837
1831
  export declare class ConflictException extends __BaseException {
1838
1832
  readonly name: "ConflictException";
@@ -1850,7 +1844,7 @@ export interface RepositoryAuthConfig {
1850
1844
  RepositoryCredentialsProviderArn: string | undefined;
1851
1845
  }
1852
1846
  export interface ImageConfig {
1853
- RepositoryAccessMode: RepositoryAccessMode | string | undefined;
1847
+ RepositoryAccessMode: RepositoryAccessMode | undefined;
1854
1848
  RepositoryAuthConfig?: RepositoryAuthConfig;
1855
1849
  }
1856
1850
  export declare const ContainerMode: {
@@ -1872,8 +1866,8 @@ export type S3ModelDataType =
1872
1866
  (typeof S3ModelDataType)[keyof typeof S3ModelDataType];
1873
1867
  export interface S3ModelDataSource {
1874
1868
  S3Uri: string | undefined;
1875
- S3DataType: S3ModelDataType | string | undefined;
1876
- CompressionType: ModelCompressionType | string | undefined;
1869
+ S3DataType: S3ModelDataType | undefined;
1870
+ CompressionType: ModelCompressionType | undefined;
1877
1871
  }
1878
1872
  export interface ModelDataSource {
1879
1873
  S3DataSource: S3ModelDataSource | undefined;
@@ -1885,13 +1879,13 @@ export declare const ModelCacheSetting: {
1885
1879
  export type ModelCacheSetting =
1886
1880
  (typeof ModelCacheSetting)[keyof typeof ModelCacheSetting];
1887
1881
  export interface MultiModelConfig {
1888
- ModelCacheSetting?: ModelCacheSetting | string;
1882
+ ModelCacheSetting?: ModelCacheSetting;
1889
1883
  }
1890
1884
  export interface ContainerDefinition {
1891
1885
  ContainerHostname?: string;
1892
1886
  Image?: string;
1893
1887
  ImageConfig?: ImageConfig;
1894
- Mode?: ContainerMode | string;
1888
+ Mode?: ContainerMode;
1895
1889
  ModelDataUrl?: string;
1896
1890
  Environment?: Record<string, string>;
1897
1891
  ModelPackageName?: string;
@@ -1930,14 +1924,14 @@ export interface ContinuousParameterRange {
1930
1924
  Name: string | undefined;
1931
1925
  MinValue: string | undefined;
1932
1926
  MaxValue: string | undefined;
1933
- ScalingType?: HyperParameterScalingType | string;
1927
+ ScalingType?: HyperParameterScalingType;
1934
1928
  }
1935
1929
  export interface ContinuousParameterRangeSpecification {
1936
1930
  MinValue: string | undefined;
1937
1931
  MaxValue: string | undefined;
1938
1932
  }
1939
1933
  export interface ConvergenceDetected {
1940
- CompleteOnConvergence?: CompleteOnConvergence | string;
1934
+ CompleteOnConvergence?: CompleteOnConvergence;
1941
1935
  }
1942
1936
  export interface MetadataProperties {
1943
1937
  CommitId?: string;
@@ -1950,7 +1944,7 @@ export interface CreateActionRequest {
1950
1944
  Source: ActionSource | undefined;
1951
1945
  ActionType: string | undefined;
1952
1946
  Description?: string;
1953
- Status?: ActionStatus | string;
1947
+ Status?: ActionStatus;
1954
1948
  Properties?: Record<string, string>;
1955
1949
  MetadataProperties?: MetadataProperties;
1956
1950
  Tags?: Tag[];
@@ -1977,7 +1971,7 @@ export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
1977
1971
  export interface HyperParameterSpecification {
1978
1972
  Name: string | undefined;
1979
1973
  Description?: string;
1980
- Type: ParameterType | string | undefined;
1974
+ Type: ParameterType | undefined;
1981
1975
  Range?: ParameterRange;
1982
1976
  IsTunable?: boolean;
1983
1977
  IsRequired?: boolean;
@@ -1990,14 +1984,14 @@ export declare const HyperParameterTuningJobObjectiveType: {
1990
1984
  export type HyperParameterTuningJobObjectiveType =
1991
1985
  (typeof HyperParameterTuningJobObjectiveType)[keyof typeof HyperParameterTuningJobObjectiveType];
1992
1986
  export interface HyperParameterTuningJobObjective {
1993
- Type: HyperParameterTuningJobObjectiveType | string | undefined;
1987
+ Type: HyperParameterTuningJobObjectiveType | undefined;
1994
1988
  MetricName: string | undefined;
1995
1989
  }
1996
1990
  export interface TrainingSpecification {
1997
1991
  TrainingImage: string | undefined;
1998
1992
  TrainingImageDigest?: string;
1999
1993
  SupportedHyperParameters?: HyperParameterSpecification[];
2000
- SupportedTrainingInstanceTypes: (TrainingInstanceType | string)[] | undefined;
1994
+ SupportedTrainingInstanceTypes: TrainingInstanceType[] | undefined;
2001
1995
  SupportsDistributedTraining?: boolean;
2002
1996
  MetricDefinitions?: MetricDefinition[];
2003
1997
  TrainingChannels: ChannelSpecification[] | undefined;
@@ -2019,13 +2013,13 @@ export interface CreateAlgorithmOutput {
2019
2013
  export interface ResourceSpec {
2020
2014
  SageMakerImageArn?: string;
2021
2015
  SageMakerImageVersionArn?: string;
2022
- InstanceType?: AppInstanceType | string;
2016
+ InstanceType?: AppInstanceType;
2023
2017
  LifecycleConfigArn?: string;
2024
2018
  }
2025
2019
  export interface CreateAppRequest {
2026
2020
  DomainId: string | undefined;
2027
2021
  UserProfileName?: string;
2028
- AppType: AppType | string | undefined;
2022
+ AppType: AppType | undefined;
2029
2023
  AppName: string | undefined;
2030
2024
  Tags?: Tag[];
2031
2025
  ResourceSpec?: ResourceSpec;
@@ -2067,7 +2061,7 @@ export interface CreateAutoMLJobRequest {
2067
2061
  AutoMLJobName: string | undefined;
2068
2062
  InputDataConfig: AutoMLChannel[] | undefined;
2069
2063
  OutputDataConfig: AutoMLOutputDataConfig | undefined;
2070
- ProblemType?: ProblemType | string;
2064
+ ProblemType?: ProblemType;
2071
2065
  AutoMLJobObjective?: AutoMLJobObjective;
2072
2066
  AutoMLJobConfig?: AutoMLJobConfig;
2073
2067
  RoleArn: string | undefined;
@@ -2116,17 +2110,17 @@ export type Framework = (typeof Framework)[keyof typeof Framework];
2116
2110
  export interface InputConfig {
2117
2111
  S3Uri: string | undefined;
2118
2112
  DataInputConfig?: string;
2119
- Framework: Framework | string | undefined;
2113
+ Framework: Framework | undefined;
2120
2114
  FrameworkVersion?: string;
2121
2115
  }
2122
2116
  export interface TargetPlatform {
2123
- Os: TargetPlatformOs | string | undefined;
2124
- Arch: TargetPlatformArch | string | undefined;
2125
- Accelerator?: TargetPlatformAccelerator | string;
2117
+ Os: TargetPlatformOs | undefined;
2118
+ Arch: TargetPlatformArch | undefined;
2119
+ Accelerator?: TargetPlatformAccelerator;
2126
2120
  }
2127
2121
  export interface OutputConfig {
2128
2122
  S3OutputLocation: string | undefined;
2129
- TargetDevice?: TargetDevice | string;
2123
+ TargetDevice?: TargetDevice;
2130
2124
  TargetPlatform?: TargetPlatform;
2131
2125
  CompilerOptions?: string;
2132
2126
  KmsKeyId?: string;
@@ -2181,8 +2175,8 @@ export interface DataQualityBaselineConfig {
2181
2175
  export interface EndpointInput {
2182
2176
  EndpointName: string | undefined;
2183
2177
  LocalPath: string | undefined;
2184
- S3InputMode?: ProcessingS3InputMode | string;
2185
- S3DataDistributionType?: ProcessingS3DataDistributionType | string;
2178
+ S3InputMode?: ProcessingS3InputMode;
2179
+ S3DataDistributionType?: ProcessingS3DataDistributionType;
2186
2180
  FeaturesAttribute?: string;
2187
2181
  InferenceAttribute?: string;
2188
2182
  ProbabilityAttribute?: string;
@@ -2204,7 +2198,7 @@ export type ProcessingS3UploadMode =
2204
2198
  export interface MonitoringS3Output {
2205
2199
  S3Uri: string | undefined;
2206
2200
  LocalPath: string | undefined;
2207
- S3UploadMode?: ProcessingS3UploadMode | string;
2201
+ S3UploadMode?: ProcessingS3UploadMode;
2208
2202
  }
2209
2203
  export interface MonitoringOutput {
2210
2204
  S3Output: MonitoringS3Output | undefined;
@@ -2263,7 +2257,7 @@ export type ProcessingInstanceType =
2263
2257
  (typeof ProcessingInstanceType)[keyof typeof ProcessingInstanceType];
2264
2258
  export interface MonitoringClusterConfig {
2265
2259
  InstanceCount: number | undefined;
2266
- InstanceType: ProcessingInstanceType | string | undefined;
2260
+ InstanceType: ProcessingInstanceType | undefined;
2267
2261
  VolumeSizeInGB: number | undefined;
2268
2262
  VolumeKmsKeyId?: string;
2269
2263
  }