@aws-sdk/client-sagemaker 3.428.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.
@@ -84,7 +84,7 @@ export type EdgePresetDeploymentType =
84
84
  export interface EdgeOutputConfig {
85
85
  S3OutputLocation: string | undefined;
86
86
  KmsKeyId?: string;
87
- PresetDeploymentType?: EdgePresetDeploymentType | string;
87
+ PresetDeploymentType?: EdgePresetDeploymentType;
88
88
  PresetDeploymentConfig?: string;
89
89
  }
90
90
  export interface CreateDeviceFleetRequest {
@@ -133,8 +133,8 @@ export declare const RStudioServerProUserGroup: {
133
133
  export type RStudioServerProUserGroup =
134
134
  (typeof RStudioServerProUserGroup)[keyof typeof RStudioServerProUserGroup];
135
135
  export interface RStudioServerProAppSettings {
136
- AccessStatus?: RStudioServerProAccessStatus | string;
137
- UserGroup?: RStudioServerProUserGroup | string;
136
+ AccessStatus?: RStudioServerProAccessStatus;
137
+ UserGroup?: RStudioServerProUserGroup;
138
138
  }
139
139
  export declare const NotebookOutputOption: {
140
140
  readonly Allowed: "Allowed";
@@ -143,7 +143,7 @@ export declare const NotebookOutputOption: {
143
143
  export type NotebookOutputOption =
144
144
  (typeof NotebookOutputOption)[keyof typeof NotebookOutputOption];
145
145
  export interface SharingSettings {
146
- NotebookOutputOption?: NotebookOutputOption | string;
146
+ NotebookOutputOption?: NotebookOutputOption;
147
147
  S3OutputPath?: string;
148
148
  S3KmsKeyId?: string;
149
149
  }
@@ -176,19 +176,19 @@ export interface RStudioServerProDomainSettings {
176
176
  export interface DomainSettings {
177
177
  SecurityGroupIds?: string[];
178
178
  RStudioServerProDomainSettings?: RStudioServerProDomainSettings;
179
- ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | string;
179
+ ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
180
180
  }
181
181
  export interface CreateDomainRequest {
182
182
  DomainName: string | undefined;
183
- AuthMode: AuthMode | string | undefined;
183
+ AuthMode: AuthMode | undefined;
184
184
  DefaultUserSettings: UserSettings | undefined;
185
185
  SubnetIds: string[] | undefined;
186
186
  VpcId: string | undefined;
187
187
  Tags?: Tag[];
188
- AppNetworkAccessType?: AppNetworkAccessType | string;
188
+ AppNetworkAccessType?: AppNetworkAccessType;
189
189
  HomeEfsFileSystemKmsKeyId?: string;
190
190
  KmsKeyId?: string;
191
- AppSecurityGroupManagement?: AppSecurityGroupManagement | string;
191
+ AppSecurityGroupManagement?: AppSecurityGroupManagement;
192
192
  DomainSettings?: DomainSettings;
193
193
  DefaultSpaceSettings?: DefaultSpaceSettings;
194
194
  }
@@ -207,7 +207,7 @@ export declare const FailureHandlingPolicy: {
207
207
  export type FailureHandlingPolicy =
208
208
  (typeof FailureHandlingPolicy)[keyof typeof FailureHandlingPolicy];
209
209
  export interface EdgeDeploymentConfig {
210
- FailureHandlingPolicy: FailureHandlingPolicy | string | undefined;
210
+ FailureHandlingPolicy: FailureHandlingPolicy | undefined;
211
211
  }
212
212
  export declare const DeviceSubsetType: {
213
213
  readonly NameContains: "NAMECONTAINS";
@@ -217,7 +217,7 @@ export declare const DeviceSubsetType: {
217
217
  export type DeviceSubsetType =
218
218
  (typeof DeviceSubsetType)[keyof typeof DeviceSubsetType];
219
219
  export interface DeviceSelectionConfig {
220
- DeviceSubsetType: DeviceSubsetType | string | undefined;
220
+ DeviceSubsetType: DeviceSubsetType | undefined;
221
221
  Percentage?: number;
222
222
  DeviceNames?: string[];
223
223
  DeviceNameContains?: string;
@@ -305,9 +305,9 @@ export interface ProductionVariant {
305
305
  VariantName: string | undefined;
306
306
  ModelName: string | undefined;
307
307
  InitialInstanceCount?: number;
308
- InstanceType?: ProductionVariantInstanceType | string;
308
+ InstanceType?: ProductionVariantInstanceType;
309
309
  InitialVariantWeight?: number;
310
- AcceleratorType?: ProductionVariantAcceleratorType | string;
310
+ AcceleratorType?: ProductionVariantAcceleratorType;
311
311
  CoreDumpConfig?: ProductionVariantCoreDumpConfig;
312
312
  ServerlessConfig?: ProductionVariantServerlessConfig;
313
313
  VolumeSizeInGB?: number;
@@ -345,8 +345,8 @@ export declare const FeatureType: {
345
345
  export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
346
346
  export interface FeatureDefinition {
347
347
  FeatureName?: string;
348
- FeatureType?: FeatureType | string;
349
- CollectionType?: CollectionType | string;
348
+ FeatureType?: FeatureType;
349
+ CollectionType?: CollectionType;
350
350
  CollectionConfig?: CollectionConfig;
351
351
  }
352
352
  export interface DataCatalogConfig {
@@ -368,7 +368,7 @@ export interface OfflineStoreConfig {
368
368
  S3StorageConfig: S3StorageConfig | undefined;
369
369
  DisableGlueTableCreation?: boolean;
370
370
  DataCatalogConfig?: DataCatalogConfig;
371
- TableFormat?: TableFormat | string;
371
+ TableFormat?: TableFormat;
372
372
  }
373
373
  export interface OnlineStoreSecurityConfig {
374
374
  KmsKeyId?: string;
@@ -388,14 +388,14 @@ export declare const TtlDurationUnit: {
388
388
  export type TtlDurationUnit =
389
389
  (typeof TtlDurationUnit)[keyof typeof TtlDurationUnit];
390
390
  export interface TtlDuration {
391
- Unit?: TtlDurationUnit | string;
391
+ Unit?: TtlDurationUnit;
392
392
  Value?: number;
393
393
  }
394
394
  export interface OnlineStoreConfig {
395
395
  SecurityConfig?: OnlineStoreSecurityConfig;
396
396
  EnableOnlineStore?: boolean;
397
397
  TtlDuration?: TtlDuration;
398
- StorageType?: StorageType | string;
398
+ StorageType?: StorageType;
399
399
  }
400
400
  export interface CreateFeatureGroupRequest {
401
401
  FeatureGroupName: string | undefined;
@@ -441,7 +441,6 @@ export interface HumanLoopConfig {
441
441
  export interface HumanLoopRequestSource {
442
442
  AwsManagedHumanLoopRequestSource:
443
443
  | AwsManagedHumanLoopRequestSource
444
- | string
445
444
  | undefined;
446
445
  }
447
446
  export interface FlowDefinitionOutputConfig {
@@ -489,7 +488,7 @@ export interface IntegerParameterRange {
489
488
  Name: string | undefined;
490
489
  MinValue: string | undefined;
491
490
  MaxValue: string | undefined;
492
- ScalingType?: HyperParameterScalingType | string;
491
+ ScalingType?: HyperParameterScalingType;
493
492
  }
494
493
  export interface ParameterRanges {
495
494
  IntegerParameterRanges?: IntegerParameterRange[];
@@ -529,18 +528,18 @@ export interface TuningJobCompletionCriteria {
529
528
  ConvergenceDetected?: ConvergenceDetected;
530
529
  }
531
530
  export interface HyperParameterTuningJobConfig {
532
- Strategy: HyperParameterTuningJobStrategyType | string | undefined;
531
+ Strategy: HyperParameterTuningJobStrategyType | undefined;
533
532
  StrategyConfig?: HyperParameterTuningJobStrategyConfig;
534
533
  HyperParameterTuningJobObjective?: HyperParameterTuningJobObjective;
535
534
  ResourceLimits: ResourceLimits | undefined;
536
535
  ParameterRanges?: ParameterRanges;
537
- TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType | string;
536
+ TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType;
538
537
  TuningJobCompletionCriteria?: TuningJobCompletionCriteria;
539
538
  RandomSeed?: number;
540
539
  }
541
540
  export interface HyperParameterAlgorithmSpecification {
542
541
  TrainingImage?: string;
543
- TrainingInputMode: TrainingInputMode | string | undefined;
542
+ TrainingInputMode: TrainingInputMode | undefined;
544
543
  AlgorithmName?: string;
545
544
  MetricDefinitions?: MetricDefinition[];
546
545
  }
@@ -550,16 +549,16 @@ export declare const HyperParameterTuningAllocationStrategy: {
550
549
  export type HyperParameterTuningAllocationStrategy =
551
550
  (typeof HyperParameterTuningAllocationStrategy)[keyof typeof HyperParameterTuningAllocationStrategy];
552
551
  export interface HyperParameterTuningInstanceConfig {
553
- InstanceType: TrainingInstanceType | string | undefined;
552
+ InstanceType: TrainingInstanceType | undefined;
554
553
  InstanceCount: number | undefined;
555
554
  VolumeSizeInGB: number | undefined;
556
555
  }
557
556
  export interface HyperParameterTuningResourceConfig {
558
- InstanceType?: TrainingInstanceType | string;
557
+ InstanceType?: TrainingInstanceType;
559
558
  InstanceCount?: number;
560
559
  VolumeSizeInGB?: number;
561
560
  VolumeKmsKeyId?: string;
562
- AllocationStrategy?: HyperParameterTuningAllocationStrategy | string;
561
+ AllocationStrategy?: HyperParameterTuningAllocationStrategy;
563
562
  InstanceConfigs?: HyperParameterTuningInstanceConfig[];
564
563
  }
565
564
  export interface RetryStrategy {
@@ -596,7 +595,7 @@ export type HyperParameterTuningJobWarmStartType =
596
595
  (typeof HyperParameterTuningJobWarmStartType)[keyof typeof HyperParameterTuningJobWarmStartType];
597
596
  export interface HyperParameterTuningJobWarmStartConfig {
598
597
  ParentHyperParameterTuningJobs: ParentHyperParameterTuningJob[] | undefined;
599
- WarmStartType: HyperParameterTuningJobWarmStartType | string | undefined;
598
+ WarmStartType: HyperParameterTuningJobWarmStartType | undefined;
600
599
  }
601
600
  export interface CreateHyperParameterTuningJobRequest {
602
601
  HyperParameterTuningJobName: string | undefined;
@@ -644,11 +643,11 @@ export interface CreateImageVersionRequest {
644
643
  ClientToken?: string;
645
644
  ImageName: string | undefined;
646
645
  Aliases?: string[];
647
- VendorGuidance?: VendorGuidance | string;
648
- JobType?: JobType | string;
646
+ VendorGuidance?: VendorGuidance;
647
+ JobType?: JobType;
649
648
  MLFramework?: string;
650
649
  ProgrammingLang?: string;
651
- Processor?: Processor | string;
650
+ Processor?: Processor;
652
651
  Horovod?: boolean;
653
652
  ReleaseNotes?: string;
654
653
  }
@@ -744,11 +743,11 @@ export declare const _InstanceType: {
744
743
  };
745
744
  export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
746
745
  export interface RealTimeInferenceConfig {
747
- InstanceType: _InstanceType | string | undefined;
746
+ InstanceType: _InstanceType | undefined;
748
747
  InstanceCount: number | undefined;
749
748
  }
750
749
  export interface ModelInfrastructureConfig {
751
- InfrastructureType: ModelInfrastructureType | string | undefined;
750
+ InfrastructureType: ModelInfrastructureType | undefined;
752
751
  RealTimeInferenceConfig: RealTimeInferenceConfig | undefined;
753
752
  }
754
753
  export interface ModelVariantConfig {
@@ -775,7 +774,7 @@ export type InferenceExperimentType =
775
774
  (typeof InferenceExperimentType)[keyof typeof InferenceExperimentType];
776
775
  export interface CreateInferenceExperimentRequest {
777
776
  Name: string | undefined;
778
- Type: InferenceExperimentType | string | undefined;
777
+ Type: InferenceExperimentType | undefined;
779
778
  Schedule?: InferenceExperimentSchedule;
780
779
  Description?: string;
781
780
  RoleArn: string | undefined;
@@ -808,14 +807,14 @@ export interface RecommendationJobContainerConfig {
808
807
  NearestModelName?: string;
809
808
  SupportedInstanceTypes?: string[];
810
809
  DataInputConfig?: string;
811
- SupportedEndpointType?: RecommendationJobSupportedEndpointType | string;
810
+ SupportedEndpointType?: RecommendationJobSupportedEndpointType;
812
811
  SupportedResponseMIMETypes?: string[];
813
812
  }
814
813
  export interface EnvironmentParameterRanges {
815
814
  CategoricalParameterRanges?: CategoricalParameter[];
816
815
  }
817
816
  export interface EndpointInputConfiguration {
818
- InstanceType?: ProductionVariantInstanceType | string;
817
+ InstanceType?: ProductionVariantInstanceType;
819
818
  InferenceSpecificationName?: string;
820
819
  EnvironmentParameterRanges?: EnvironmentParameterRanges;
821
820
  ServerlessConfig?: ProductionVariantServerlessConfig;
@@ -843,7 +842,7 @@ export declare const TrafficType: {
843
842
  };
844
843
  export type TrafficType = (typeof TrafficType)[keyof typeof TrafficType];
845
844
  export interface TrafficPattern {
846
- TrafficType?: TrafficType | string;
845
+ TrafficType?: TrafficType;
847
846
  Phases?: Phase[];
848
847
  Stairs?: Stairs;
849
848
  }
@@ -889,11 +888,11 @@ export interface ModelLatencyThreshold {
889
888
  export interface RecommendationJobStoppingConditions {
890
889
  MaxInvocations?: number;
891
890
  ModelLatencyThresholds?: ModelLatencyThreshold[];
892
- FlatInvocations?: FlatInvocations | string;
891
+ FlatInvocations?: FlatInvocations;
893
892
  }
894
893
  export interface CreateInferenceRecommendationsJobRequest {
895
894
  JobName: string | undefined;
896
- JobType: RecommendationJobType | string | undefined;
895
+ JobType: RecommendationJobType | undefined;
897
896
  RoleArn: string | undefined;
898
897
  InputConfig: RecommendationJobInputConfig | undefined;
899
898
  JobDescription?: string;
@@ -923,7 +922,7 @@ export interface HumanTaskConfig {
923
922
  PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice;
924
923
  }
925
924
  export interface LabelingJobDataAttributes {
926
- ContentClassifiers?: (ContentClassifier | string)[];
925
+ ContentClassifiers?: ContentClassifier[];
927
926
  }
928
927
  export interface LabelingJobS3DataSource {
929
928
  ManifestS3Uri: string | undefined;
@@ -979,7 +978,7 @@ export declare const InferenceExecutionMode: {
979
978
  export type InferenceExecutionMode =
980
979
  (typeof InferenceExecutionMode)[keyof typeof InferenceExecutionMode];
981
980
  export interface InferenceExecutionConfig {
982
- Mode: InferenceExecutionMode | string | undefined;
981
+ Mode: InferenceExecutionMode | undefined;
983
982
  }
984
983
  export interface CreateModelInput {
985
984
  ModelName: string | undefined;
@@ -1041,7 +1040,7 @@ export interface CreateModelCardRequest {
1041
1040
  ModelCardName: string | undefined;
1042
1041
  SecurityConfig?: ModelCardSecurityConfig;
1043
1042
  Content: string | undefined;
1044
- ModelCardStatus: ModelCardStatus | string | undefined;
1043
+ ModelCardStatus: ModelCardStatus | undefined;
1045
1044
  Tags?: Tag[];
1046
1045
  }
1047
1046
  export interface CreateModelCardResponse {
@@ -1164,7 +1163,7 @@ export interface CreateModelPackageInput {
1164
1163
  SourceAlgorithmSpecification?: SourceAlgorithmSpecification;
1165
1164
  CertifyForMarketplace?: boolean;
1166
1165
  Tags?: Tag[];
1167
- ModelApprovalStatus?: ModelApprovalStatus | string;
1166
+ ModelApprovalStatus?: ModelApprovalStatus;
1168
1167
  MetadataProperties?: MetadataProperties;
1169
1168
  ModelMetrics?: ModelMetrics;
1170
1169
  ClientToken?: string;
@@ -1174,7 +1173,7 @@ export interface CreateModelPackageInput {
1174
1173
  Task?: string;
1175
1174
  SamplePayloadUrl?: string;
1176
1175
  AdditionalInferenceSpecifications?: AdditionalInferenceSpecificationDefinition[];
1177
- SkipModelValidation?: SkipModelValidation | string;
1176
+ SkipModelValidation?: SkipModelValidation;
1178
1177
  }
1179
1178
  export interface CreateModelPackageOutput {
1180
1179
  ModelPackageArn: string | undefined;
@@ -1200,7 +1199,7 @@ export interface ModelQualityAppSpecification {
1200
1199
  ContainerArguments?: string[];
1201
1200
  RecordPreprocessorSourceUri?: string;
1202
1201
  PostAnalyticsProcessorSourceUri?: string;
1203
- ProblemType?: MonitoringProblemType | string;
1202
+ ProblemType?: MonitoringProblemType;
1204
1203
  Environment?: Record<string, string>;
1205
1204
  }
1206
1205
  export interface ModelQualityBaselineConfig {
@@ -1276,7 +1275,7 @@ export interface MonitoringScheduleConfig {
1276
1275
  ScheduleConfig?: ScheduleConfig;
1277
1276
  MonitoringJobDefinition?: MonitoringJobDefinition;
1278
1277
  MonitoringJobDefinitionName?: string;
1279
- MonitoringType?: MonitoringType | string;
1278
+ MonitoringType?: MonitoringType;
1280
1279
  }
1281
1280
  export interface CreateMonitoringScheduleRequest {
1282
1281
  MonitoringScheduleName: string | undefined;
@@ -1312,19 +1311,19 @@ export declare const RootAccess: {
1312
1311
  export type RootAccess = (typeof RootAccess)[keyof typeof RootAccess];
1313
1312
  export interface CreateNotebookInstanceInput {
1314
1313
  NotebookInstanceName: string | undefined;
1315
- InstanceType: _InstanceType | string | undefined;
1314
+ InstanceType: _InstanceType | undefined;
1316
1315
  SubnetId?: string;
1317
1316
  SecurityGroupIds?: string[];
1318
1317
  RoleArn: string | undefined;
1319
1318
  KmsKeyId?: string;
1320
1319
  Tags?: Tag[];
1321
1320
  LifecycleConfigName?: string;
1322
- DirectInternetAccess?: DirectInternetAccess | string;
1321
+ DirectInternetAccess?: DirectInternetAccess;
1323
1322
  VolumeSizeInGB?: number;
1324
- AcceleratorTypes?: (NotebookInstanceAcceleratorType | string)[];
1323
+ AcceleratorTypes?: NotebookInstanceAcceleratorType[];
1325
1324
  DefaultCodeRepository?: string;
1326
1325
  AdditionalCodeRepositories?: string[];
1327
- RootAccess?: RootAccess | string;
1326
+ RootAccess?: RootAccess;
1328
1327
  PlatformIdentifier?: string;
1329
1328
  InstanceMetadataServiceConfiguration?: InstanceMetadataServiceConfiguration;
1330
1329
  }
@@ -1421,15 +1420,15 @@ export interface RedshiftDatasetDefinition {
1421
1420
  ClusterRoleArn: string | undefined;
1422
1421
  OutputS3Uri: string | undefined;
1423
1422
  KmsKeyId?: string;
1424
- OutputFormat: RedshiftResultFormat | string | undefined;
1425
- OutputCompression?: RedshiftResultCompressionType | string;
1423
+ OutputFormat: RedshiftResultFormat | undefined;
1424
+ OutputCompression?: RedshiftResultCompressionType;
1426
1425
  }
1427
1426
  export interface DatasetDefinition {
1428
1427
  AthenaDatasetDefinition?: AthenaDatasetDefinition;
1429
1428
  RedshiftDatasetDefinition?: RedshiftDatasetDefinition;
1430
1429
  LocalPath?: string;
1431
- DataDistributionType?: DataDistributionType | string;
1432
- InputMode?: InputMode | string;
1430
+ DataDistributionType?: DataDistributionType;
1431
+ InputMode?: InputMode;
1433
1432
  }
1434
1433
  export declare const ProcessingS3CompressionType: {
1435
1434
  readonly GZIP: "Gzip";
@@ -1446,10 +1445,10 @@ export type ProcessingS3DataType =
1446
1445
  export interface ProcessingS3Input {
1447
1446
  S3Uri: string | undefined;
1448
1447
  LocalPath?: string;
1449
- S3DataType: ProcessingS3DataType | string | undefined;
1450
- S3InputMode?: ProcessingS3InputMode | string;
1451
- S3DataDistributionType?: ProcessingS3DataDistributionType | string;
1452
- S3CompressionType?: ProcessingS3CompressionType | string;
1448
+ S3DataType: ProcessingS3DataType | undefined;
1449
+ S3InputMode?: ProcessingS3InputMode;
1450
+ S3DataDistributionType?: ProcessingS3DataDistributionType;
1451
+ S3CompressionType?: ProcessingS3CompressionType;
1453
1452
  }
1454
1453
  export interface ProcessingInput {
1455
1454
  InputName: string | undefined;
@@ -1463,7 +1462,7 @@ export interface ProcessingFeatureStoreOutput {
1463
1462
  export interface ProcessingS3Output {
1464
1463
  S3Uri: string | undefined;
1465
1464
  LocalPath: string | undefined;
1466
- S3UploadMode: ProcessingS3UploadMode | string | undefined;
1465
+ S3UploadMode: ProcessingS3UploadMode | undefined;
1467
1466
  }
1468
1467
  export interface ProcessingOutput {
1469
1468
  OutputName: string | undefined;
@@ -1477,7 +1476,7 @@ export interface ProcessingOutputConfig {
1477
1476
  }
1478
1477
  export interface ProcessingClusterConfig {
1479
1478
  InstanceCount: number | undefined;
1480
- InstanceType: ProcessingInstanceType | string | undefined;
1479
+ InstanceType: ProcessingInstanceType | undefined;
1481
1480
  VolumeSizeInGB: number | undefined;
1482
1481
  VolumeKmsKeyId?: string;
1483
1482
  }
@@ -1547,10 +1546,7 @@ export type StudioLifecycleConfigAppType =
1547
1546
  export interface CreateStudioLifecycleConfigRequest {
1548
1547
  StudioLifecycleConfigName: string | undefined;
1549
1548
  StudioLifecycleConfigContent: string | undefined;
1550
- StudioLifecycleConfigAppType:
1551
- | StudioLifecycleConfigAppType
1552
- | string
1553
- | undefined;
1549
+ StudioLifecycleConfigAppType: StudioLifecycleConfigAppType | undefined;
1554
1550
  Tags?: Tag[];
1555
1551
  }
1556
1552
  export interface CreateStudioLifecycleConfigResponse {
@@ -1567,7 +1563,7 @@ export interface DebugRuleConfiguration {
1567
1563
  LocalPath?: string;
1568
1564
  S3OutputPath?: string;
1569
1565
  RuleEvaluatorImage: string | undefined;
1570
- InstanceType?: ProcessingInstanceType | string;
1566
+ InstanceType?: ProcessingInstanceType;
1571
1567
  VolumeSizeInGB?: number;
1572
1568
  RuleParameters?: Record<string, string>;
1573
1569
  }
@@ -1582,7 +1578,7 @@ export interface ProfilerRuleConfiguration {
1582
1578
  LocalPath?: string;
1583
1579
  S3OutputPath?: string;
1584
1580
  RuleEvaluatorImage: string | undefined;
1585
- InstanceType?: ProcessingInstanceType | string;
1581
+ InstanceType?: ProcessingInstanceType;
1586
1582
  VolumeSizeInGB?: number;
1587
1583
  RuleParameters?: Record<string, string>;
1588
1584
  }
@@ -1625,7 +1621,7 @@ export type JoinSource = (typeof JoinSource)[keyof typeof JoinSource];
1625
1621
  export interface DataProcessing {
1626
1622
  InputFilter?: string;
1627
1623
  OutputFilter?: string;
1628
- JoinSource?: JoinSource | string;
1624
+ JoinSource?: JoinSource;
1629
1625
  }
1630
1626
  export interface ModelClientConfig {
1631
1627
  InvocationsTimeoutInSeconds?: number;
@@ -1637,7 +1633,7 @@ export interface CreateTransformJobRequest {
1637
1633
  MaxConcurrentTransforms?: number;
1638
1634
  ModelClientConfig?: ModelClientConfig;
1639
1635
  MaxPayloadInMB?: number;
1640
- BatchStrategy?: BatchStrategy | string;
1636
+ BatchStrategy?: BatchStrategy;
1641
1637
  Environment?: Record<string, string>;
1642
1638
  TransformInput: TransformInput | undefined;
1643
1639
  TransformOutput: TransformOutput | undefined;
@@ -1704,7 +1700,7 @@ export declare const TrialComponentPrimaryStatus: {
1704
1700
  export type TrialComponentPrimaryStatus =
1705
1701
  (typeof TrialComponentPrimaryStatus)[keyof typeof TrialComponentPrimaryStatus];
1706
1702
  export interface TrialComponentStatus {
1707
- PrimaryStatus?: TrialComponentPrimaryStatus | string;
1703
+ PrimaryStatus?: TrialComponentPrimaryStatus;
1708
1704
  Message?: string;
1709
1705
  }
1710
1706
  export interface CreateTrialComponentRequest {
@@ -1800,11 +1796,11 @@ export type Statistic = (typeof Statistic)[keyof typeof Statistic];
1800
1796
  export interface CustomizedMetricSpecification {
1801
1797
  MetricName?: string;
1802
1798
  Namespace?: string;
1803
- Statistic?: Statistic | string;
1799
+ Statistic?: Statistic;
1804
1800
  }
1805
1801
  export interface DataCaptureConfigSummary {
1806
1802
  EnableCapture: boolean | undefined;
1807
- CaptureStatus: CaptureStatus | string | undefined;
1803
+ CaptureStatus: CaptureStatus | undefined;
1808
1804
  CurrentSamplingPercentage: number | undefined;
1809
1805
  DestinationS3Uri: string | undefined;
1810
1806
  KmsKeyId: string | undefined;
@@ -1822,7 +1818,7 @@ export type RuleEvaluationStatus =
1822
1818
  export interface DebugRuleEvaluationStatus {
1823
1819
  RuleConfigurationName?: string;
1824
1820
  RuleEvaluationJobArn?: string;
1825
- RuleEvaluationStatus?: RuleEvaluationStatus | string;
1821
+ RuleEvaluationStatus?: RuleEvaluationStatus;
1826
1822
  StatusDetails?: string;
1827
1823
  LastModifiedTime?: Date;
1828
1824
  }
@@ -1838,7 +1834,7 @@ export interface DeleteAlgorithmInput {
1838
1834
  export interface DeleteAppRequest {
1839
1835
  DomainId: string | undefined;
1840
1836
  UserProfileName?: string;
1841
- AppType: AppType | string | undefined;
1837
+ AppType: AppType | undefined;
1842
1838
  AppName: string | undefined;
1843
1839
  SpaceName?: string;
1844
1840
  }