@aws-sdk/client-sagemaker 3.687.0 → 3.691.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.
@@ -90,70 +90,70 @@ import {
90
90
  import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
91
91
  export interface CreateAlgorithmInput {
92
92
  AlgorithmName: string | undefined;
93
- AlgorithmDescription?: string;
93
+ AlgorithmDescription?: string | undefined;
94
94
  TrainingSpecification: TrainingSpecification | undefined;
95
- InferenceSpecification?: InferenceSpecification;
96
- ValidationSpecification?: AlgorithmValidationSpecification;
97
- CertifyForMarketplace?: boolean;
98
- Tags?: Tag[];
95
+ InferenceSpecification?: InferenceSpecification | undefined;
96
+ ValidationSpecification?: AlgorithmValidationSpecification | undefined;
97
+ CertifyForMarketplace?: boolean | undefined;
98
+ Tags?: Tag[] | undefined;
99
99
  }
100
100
  export interface CreateAlgorithmOutput {
101
101
  AlgorithmArn: string | undefined;
102
102
  }
103
103
  export interface CreateAppRequest {
104
104
  DomainId: string | undefined;
105
- UserProfileName?: string;
106
- SpaceName?: string;
105
+ UserProfileName?: string | undefined;
106
+ SpaceName?: string | undefined;
107
107
  AppType: AppType | undefined;
108
108
  AppName: string | undefined;
109
- Tags?: Tag[];
110
- ResourceSpec?: ResourceSpec;
109
+ Tags?: Tag[] | undefined;
110
+ ResourceSpec?: ResourceSpec | undefined;
111
111
  }
112
112
  export interface CreateAppResponse {
113
- AppArn?: string;
113
+ AppArn?: string | undefined;
114
114
  }
115
115
  export declare class ResourceInUse extends __BaseException {
116
116
  readonly name: "ResourceInUse";
117
117
  readonly $fault: "client";
118
- Message?: string;
118
+ Message?: string | undefined;
119
119
  constructor(opts: __ExceptionOptionType<ResourceInUse, __BaseException>);
120
120
  }
121
121
  export interface CreateAppImageConfigRequest {
122
122
  AppImageConfigName: string | undefined;
123
- Tags?: Tag[];
124
- KernelGatewayImageConfig?: KernelGatewayImageConfig;
125
- JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
126
- CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
123
+ Tags?: Tag[] | undefined;
124
+ KernelGatewayImageConfig?: KernelGatewayImageConfig | undefined;
125
+ JupyterLabAppImageConfig?: JupyterLabAppImageConfig | undefined;
126
+ CodeEditorAppImageConfig?: CodeEditorAppImageConfig | undefined;
127
127
  }
128
128
  export interface CreateAppImageConfigResponse {
129
- AppImageConfigArn?: string;
129
+ AppImageConfigArn?: string | undefined;
130
130
  }
131
131
  export interface CreateArtifactRequest {
132
- ArtifactName?: string;
132
+ ArtifactName?: string | undefined;
133
133
  Source: ArtifactSource | undefined;
134
134
  ArtifactType: string | undefined;
135
- Properties?: Record<string, string>;
136
- MetadataProperties?: MetadataProperties;
137
- Tags?: Tag[];
135
+ Properties?: Record<string, string> | undefined;
136
+ MetadataProperties?: MetadataProperties | undefined;
137
+ Tags?: Tag[] | undefined;
138
138
  }
139
139
  export interface CreateArtifactResponse {
140
- ArtifactArn?: string;
140
+ ArtifactArn?: string | undefined;
141
141
  }
142
142
  export interface ModelDeployConfig {
143
- AutoGenerateEndpointName?: boolean;
144
- EndpointName?: string;
143
+ AutoGenerateEndpointName?: boolean | undefined;
144
+ EndpointName?: string | undefined;
145
145
  }
146
146
  export interface CreateAutoMLJobRequest {
147
147
  AutoMLJobName: string | undefined;
148
148
  InputDataConfig: AutoMLChannel[] | undefined;
149
149
  OutputDataConfig: AutoMLOutputDataConfig | undefined;
150
- ProblemType?: ProblemType;
151
- AutoMLJobObjective?: AutoMLJobObjective;
152
- AutoMLJobConfig?: AutoMLJobConfig;
150
+ ProblemType?: ProblemType | undefined;
151
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
152
+ AutoMLJobConfig?: AutoMLJobConfig | undefined;
153
153
  RoleArn: string | undefined;
154
- GenerateCandidateDefinitionsOnly?: boolean;
155
- Tags?: Tag[];
156
- ModelDeployConfig?: ModelDeployConfig;
154
+ GenerateCandidateDefinitionsOnly?: boolean | undefined;
155
+ Tags?: Tag[] | undefined;
156
+ ModelDeployConfig?: ModelDeployConfig | undefined;
157
157
  }
158
158
  export interface CreateAutoMLJobResponse {
159
159
  AutoMLJobArn: string | undefined;
@@ -164,12 +164,12 @@ export interface CreateAutoMLJobV2Request {
164
164
  OutputDataConfig: AutoMLOutputDataConfig | undefined;
165
165
  AutoMLProblemTypeConfig: AutoMLProblemTypeConfig | undefined;
166
166
  RoleArn: string | undefined;
167
- Tags?: Tag[];
168
- SecurityConfig?: AutoMLSecurityConfig;
169
- AutoMLJobObjective?: AutoMLJobObjective;
170
- ModelDeployConfig?: ModelDeployConfig;
171
- DataSplitConfig?: AutoMLDataSplitConfig;
172
- AutoMLComputeConfig?: AutoMLComputeConfig;
167
+ Tags?: Tag[] | undefined;
168
+ SecurityConfig?: AutoMLSecurityConfig | undefined;
169
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
170
+ ModelDeployConfig?: ModelDeployConfig | undefined;
171
+ DataSplitConfig?: AutoMLDataSplitConfig | undefined;
172
+ AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
173
173
  }
174
174
  export interface CreateAutoMLJobV2Response {
175
175
  AutoMLJobArn: string | undefined;
@@ -177,10 +177,10 @@ export interface CreateAutoMLJobV2Response {
177
177
  export interface CreateClusterRequest {
178
178
  ClusterName: string | undefined;
179
179
  InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
180
- VpcConfig?: VpcConfig;
181
- Tags?: Tag[];
182
- Orchestrator?: ClusterOrchestrator;
183
- NodeRecovery?: ClusterNodeRecovery;
180
+ VpcConfig?: VpcConfig | undefined;
181
+ Tags?: Tag[] | undefined;
182
+ Orchestrator?: ClusterOrchestrator | undefined;
183
+ NodeRecovery?: ClusterNodeRecovery | undefined;
184
184
  }
185
185
  export interface CreateClusterResponse {
186
186
  ClusterArn: string | undefined;
@@ -188,7 +188,7 @@ export interface CreateClusterResponse {
188
188
  export interface CreateCodeRepositoryInput {
189
189
  CodeRepositoryName: string | undefined;
190
190
  GitConfig: GitConfig | undefined;
191
- Tags?: Tag[];
191
+ Tags?: Tag[] | undefined;
192
192
  }
193
193
  export interface CreateCodeRepositoryOutput {
194
194
  CodeRepositoryArn: string | undefined;
@@ -207,21 +207,21 @@ export declare const Framework: {
207
207
  export type Framework = (typeof Framework)[keyof typeof Framework];
208
208
  export interface InputConfig {
209
209
  S3Uri: string | undefined;
210
- DataInputConfig?: string;
210
+ DataInputConfig?: string | undefined;
211
211
  Framework: Framework | undefined;
212
- FrameworkVersion?: string;
212
+ FrameworkVersion?: string | undefined;
213
213
  }
214
214
  export interface TargetPlatform {
215
215
  Os: TargetPlatformOs | undefined;
216
216
  Arch: TargetPlatformArch | undefined;
217
- Accelerator?: TargetPlatformAccelerator;
217
+ Accelerator?: TargetPlatformAccelerator | undefined;
218
218
  }
219
219
  export interface OutputConfig {
220
220
  S3OutputLocation: string | undefined;
221
- TargetDevice?: TargetDevice;
222
- TargetPlatform?: TargetPlatform;
223
- CompilerOptions?: string;
224
- KmsKeyId?: string;
221
+ TargetDevice?: TargetDevice | undefined;
222
+ TargetPlatform?: TargetPlatform | undefined;
223
+ CompilerOptions?: string | undefined;
224
+ KmsKeyId?: string | undefined;
225
225
  }
226
226
  export interface NeoVpcConfig {
227
227
  SecurityGroupIds: string[] | undefined;
@@ -230,12 +230,12 @@ export interface NeoVpcConfig {
230
230
  export interface CreateCompilationJobRequest {
231
231
  CompilationJobName: string | undefined;
232
232
  RoleArn: string | undefined;
233
- ModelPackageVersionArn?: string;
234
- InputConfig?: InputConfig;
233
+ ModelPackageVersionArn?: string | undefined;
234
+ InputConfig?: InputConfig | undefined;
235
235
  OutputConfig: OutputConfig | undefined;
236
- VpcConfig?: NeoVpcConfig;
236
+ VpcConfig?: NeoVpcConfig | undefined;
237
237
  StoppingCondition: StoppingCondition | undefined;
238
- Tags?: Tag[];
238
+ Tags?: Tag[] | undefined;
239
239
  }
240
240
  export interface CreateCompilationJobResponse {
241
241
  CompilationJobArn: string | undefined;
@@ -244,48 +244,48 @@ export interface CreateContextRequest {
244
244
  ContextName: string | undefined;
245
245
  Source: ContextSource | undefined;
246
246
  ContextType: string | undefined;
247
- Description?: string;
248
- Properties?: Record<string, string>;
249
- Tags?: Tag[];
247
+ Description?: string | undefined;
248
+ Properties?: Record<string, string> | undefined;
249
+ Tags?: Tag[] | undefined;
250
250
  }
251
251
  export interface CreateContextResponse {
252
- ContextArn?: string;
252
+ ContextArn?: string | undefined;
253
253
  }
254
254
  export interface DataQualityAppSpecification {
255
255
  ImageUri: string | undefined;
256
- ContainerEntrypoint?: string[];
257
- ContainerArguments?: string[];
258
- RecordPreprocessorSourceUri?: string;
259
- PostAnalyticsProcessorSourceUri?: string;
260
- Environment?: Record<string, string>;
256
+ ContainerEntrypoint?: string[] | undefined;
257
+ ContainerArguments?: string[] | undefined;
258
+ RecordPreprocessorSourceUri?: string | undefined;
259
+ PostAnalyticsProcessorSourceUri?: string | undefined;
260
+ Environment?: Record<string, string> | undefined;
261
261
  }
262
262
  export interface MonitoringConstraintsResource {
263
- S3Uri?: string;
263
+ S3Uri?: string | undefined;
264
264
  }
265
265
  export interface MonitoringStatisticsResource {
266
- S3Uri?: string;
266
+ S3Uri?: string | undefined;
267
267
  }
268
268
  export interface DataQualityBaselineConfig {
269
- BaseliningJobName?: string;
270
- ConstraintsResource?: MonitoringConstraintsResource;
271
- StatisticsResource?: MonitoringStatisticsResource;
269
+ BaseliningJobName?: string | undefined;
270
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
271
+ StatisticsResource?: MonitoringStatisticsResource | undefined;
272
272
  }
273
273
  export interface EndpointInput {
274
274
  EndpointName: string | undefined;
275
275
  LocalPath: string | undefined;
276
- S3InputMode?: ProcessingS3InputMode;
277
- S3DataDistributionType?: ProcessingS3DataDistributionType;
278
- FeaturesAttribute?: string;
279
- InferenceAttribute?: string;
280
- ProbabilityAttribute?: string;
281
- ProbabilityThresholdAttribute?: number;
282
- StartTimeOffset?: string;
283
- EndTimeOffset?: string;
284
- ExcludeFeaturesAttribute?: string;
276
+ S3InputMode?: ProcessingS3InputMode | undefined;
277
+ S3DataDistributionType?: ProcessingS3DataDistributionType | undefined;
278
+ FeaturesAttribute?: string | undefined;
279
+ InferenceAttribute?: string | undefined;
280
+ ProbabilityAttribute?: string | undefined;
281
+ ProbabilityThresholdAttribute?: number | undefined;
282
+ StartTimeOffset?: string | undefined;
283
+ EndTimeOffset?: string | undefined;
284
+ ExcludeFeaturesAttribute?: string | undefined;
285
285
  }
286
286
  export interface DataQualityJobInput {
287
- EndpointInput?: EndpointInput;
288
- BatchTransformInput?: BatchTransformInput;
287
+ EndpointInput?: EndpointInput | undefined;
288
+ BatchTransformInput?: BatchTransformInput | undefined;
289
289
  }
290
290
  export declare const ProcessingS3UploadMode: {
291
291
  readonly CONTINUOUS: "Continuous";
@@ -296,14 +296,14 @@ export type ProcessingS3UploadMode =
296
296
  export interface MonitoringS3Output {
297
297
  S3Uri: string | undefined;
298
298
  LocalPath: string | undefined;
299
- S3UploadMode?: ProcessingS3UploadMode;
299
+ S3UploadMode?: ProcessingS3UploadMode | undefined;
300
300
  }
301
301
  export interface MonitoringOutput {
302
302
  S3Output: MonitoringS3Output | undefined;
303
303
  }
304
304
  export interface MonitoringOutputConfig {
305
305
  MonitoringOutputs: MonitoringOutput[] | undefined;
306
- KmsKeyId?: string;
306
+ KmsKeyId?: string | undefined;
307
307
  }
308
308
  export declare const ProcessingInstanceType: {
309
309
  readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
@@ -373,30 +373,30 @@ export interface MonitoringClusterConfig {
373
373
  InstanceCount: number | undefined;
374
374
  InstanceType: ProcessingInstanceType | undefined;
375
375
  VolumeSizeInGB: number | undefined;
376
- VolumeKmsKeyId?: string;
376
+ VolumeKmsKeyId?: string | undefined;
377
377
  }
378
378
  export interface MonitoringResources {
379
379
  ClusterConfig: MonitoringClusterConfig | undefined;
380
380
  }
381
381
  export interface MonitoringNetworkConfig {
382
- EnableInterContainerTrafficEncryption?: boolean;
383
- EnableNetworkIsolation?: boolean;
384
- VpcConfig?: VpcConfig;
382
+ EnableInterContainerTrafficEncryption?: boolean | undefined;
383
+ EnableNetworkIsolation?: boolean | undefined;
384
+ VpcConfig?: VpcConfig | undefined;
385
385
  }
386
386
  export interface MonitoringStoppingCondition {
387
387
  MaxRuntimeInSeconds: number | undefined;
388
388
  }
389
389
  export interface CreateDataQualityJobDefinitionRequest {
390
390
  JobDefinitionName: string | undefined;
391
- DataQualityBaselineConfig?: DataQualityBaselineConfig;
391
+ DataQualityBaselineConfig?: DataQualityBaselineConfig | undefined;
392
392
  DataQualityAppSpecification: DataQualityAppSpecification | undefined;
393
393
  DataQualityJobInput: DataQualityJobInput | undefined;
394
394
  DataQualityJobOutputConfig: MonitoringOutputConfig | undefined;
395
395
  JobResources: MonitoringResources | undefined;
396
- NetworkConfig?: MonitoringNetworkConfig;
396
+ NetworkConfig?: MonitoringNetworkConfig | undefined;
397
397
  RoleArn: string | undefined;
398
- StoppingCondition?: MonitoringStoppingCondition;
399
- Tags?: Tag[];
398
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
399
+ Tags?: Tag[] | undefined;
400
400
  }
401
401
  export interface CreateDataQualityJobDefinitionResponse {
402
402
  JobDefinitionArn: string | undefined;
@@ -408,21 +408,21 @@ export type EdgePresetDeploymentType =
408
408
  (typeof EdgePresetDeploymentType)[keyof typeof EdgePresetDeploymentType];
409
409
  export interface EdgeOutputConfig {
410
410
  S3OutputLocation: string | undefined;
411
- KmsKeyId?: string;
412
- PresetDeploymentType?: EdgePresetDeploymentType;
413
- PresetDeploymentConfig?: string;
411
+ KmsKeyId?: string | undefined;
412
+ PresetDeploymentType?: EdgePresetDeploymentType | undefined;
413
+ PresetDeploymentConfig?: string | undefined;
414
414
  }
415
415
  export interface CreateDeviceFleetRequest {
416
416
  DeviceFleetName: string | undefined;
417
- RoleArn?: string;
418
- Description?: string;
417
+ RoleArn?: string | undefined;
418
+ Description?: string | undefined;
419
419
  OutputConfig: EdgeOutputConfig | undefined;
420
- Tags?: Tag[];
421
- EnableIotRoleAlias?: boolean;
420
+ Tags?: Tag[] | undefined;
421
+ EnableIotRoleAlias?: boolean | undefined;
422
422
  }
423
423
  export interface EFSFileSystemConfig {
424
424
  FileSystemId: string | undefined;
425
- FileSystemPath?: string;
425
+ FileSystemPath?: string | undefined;
426
426
  }
427
427
  export type CustomFileSystemConfig =
428
428
  | CustomFileSystemConfig.EFSFileSystemConfigMember
@@ -447,48 +447,48 @@ export interface CustomPosixUserConfig {
447
447
  Gid: number | undefined;
448
448
  }
449
449
  export interface EmrSettings {
450
- AssumableRoleArns?: string[];
451
- ExecutionRoleArns?: string[];
450
+ AssumableRoleArns?: string[] | undefined;
451
+ ExecutionRoleArns?: string[] | undefined;
452
452
  }
453
453
  export interface JupyterLabAppSettings {
454
- DefaultResourceSpec?: ResourceSpec;
455
- CustomImages?: CustomImage[];
456
- LifecycleConfigArns?: string[];
457
- CodeRepositories?: CodeRepository[];
458
- AppLifecycleManagement?: AppLifecycleManagement;
459
- EmrSettings?: EmrSettings;
460
- BuiltInLifecycleConfigArn?: string;
454
+ DefaultResourceSpec?: ResourceSpec | undefined;
455
+ CustomImages?: CustomImage[] | undefined;
456
+ LifecycleConfigArns?: string[] | undefined;
457
+ CodeRepositories?: CodeRepository[] | undefined;
458
+ AppLifecycleManagement?: AppLifecycleManagement | undefined;
459
+ EmrSettings?: EmrSettings | undefined;
460
+ BuiltInLifecycleConfigArn?: string | undefined;
461
461
  }
462
462
  export interface JupyterServerAppSettings {
463
- DefaultResourceSpec?: ResourceSpec;
464
- LifecycleConfigArns?: string[];
465
- CodeRepositories?: CodeRepository[];
463
+ DefaultResourceSpec?: ResourceSpec | undefined;
464
+ LifecycleConfigArns?: string[] | undefined;
465
+ CodeRepositories?: CodeRepository[] | undefined;
466
466
  }
467
467
  export interface KernelGatewayAppSettings {
468
- DefaultResourceSpec?: ResourceSpec;
469
- CustomImages?: CustomImage[];
470
- LifecycleConfigArns?: string[];
468
+ DefaultResourceSpec?: ResourceSpec | undefined;
469
+ CustomImages?: CustomImage[] | undefined;
470
+ LifecycleConfigArns?: string[] | undefined;
471
471
  }
472
472
  export interface DefaultEbsStorageSettings {
473
473
  DefaultEbsVolumeSizeInGb: number | undefined;
474
474
  MaximumEbsVolumeSizeInGb: number | undefined;
475
475
  }
476
476
  export interface DefaultSpaceStorageSettings {
477
- DefaultEbsStorageSettings?: DefaultEbsStorageSettings;
477
+ DefaultEbsStorageSettings?: DefaultEbsStorageSettings | undefined;
478
478
  }
479
479
  export interface DefaultSpaceSettings {
480
- ExecutionRole?: string;
481
- SecurityGroups?: string[];
482
- JupyterServerAppSettings?: JupyterServerAppSettings;
483
- KernelGatewayAppSettings?: KernelGatewayAppSettings;
484
- JupyterLabAppSettings?: JupyterLabAppSettings;
485
- SpaceStorageSettings?: DefaultSpaceStorageSettings;
486
- CustomPosixUserConfig?: CustomPosixUserConfig;
487
- CustomFileSystemConfigs?: CustomFileSystemConfig[];
480
+ ExecutionRole?: string | undefined;
481
+ SecurityGroups?: string[] | undefined;
482
+ JupyterServerAppSettings?: JupyterServerAppSettings | undefined;
483
+ KernelGatewayAppSettings?: KernelGatewayAppSettings | undefined;
484
+ JupyterLabAppSettings?: JupyterLabAppSettings | undefined;
485
+ SpaceStorageSettings?: DefaultSpaceStorageSettings | undefined;
486
+ CustomPosixUserConfig?: CustomPosixUserConfig | undefined;
487
+ CustomFileSystemConfigs?: CustomFileSystemConfig[] | undefined;
488
488
  }
489
489
  export interface RSessionAppSettings {
490
- DefaultResourceSpec?: ResourceSpec;
491
- CustomImages?: CustomImage[];
490
+ DefaultResourceSpec?: ResourceSpec | undefined;
491
+ CustomImages?: CustomImage[] | undefined;
492
492
  }
493
493
  export declare const RStudioServerProAccessStatus: {
494
494
  readonly Disabled: "DISABLED";
@@ -503,8 +503,8 @@ export declare const RStudioServerProUserGroup: {
503
503
  export type RStudioServerProUserGroup =
504
504
  (typeof RStudioServerProUserGroup)[keyof typeof RStudioServerProUserGroup];
505
505
  export interface RStudioServerProAppSettings {
506
- AccessStatus?: RStudioServerProAccessStatus;
507
- UserGroup?: RStudioServerProUserGroup;
506
+ AccessStatus?: RStudioServerProAccessStatus | undefined;
507
+ UserGroup?: RStudioServerProUserGroup | undefined;
508
508
  }
509
509
  export declare const NotebookOutputOption: {
510
510
  readonly Allowed: "Allowed";
@@ -513,9 +513,9 @@ export declare const NotebookOutputOption: {
513
513
  export type NotebookOutputOption =
514
514
  (typeof NotebookOutputOption)[keyof typeof NotebookOutputOption];
515
515
  export interface SharingSettings {
516
- NotebookOutputOption?: NotebookOutputOption;
517
- S3OutputPath?: string;
518
- S3KmsKeyId?: string;
516
+ NotebookOutputOption?: NotebookOutputOption | undefined;
517
+ S3OutputPath?: string | undefined;
518
+ S3KmsKeyId?: string | undefined;
519
519
  }
520
520
  export declare const StudioWebPortal: {
521
521
  readonly Disabled: "DISABLED";
@@ -547,41 +547,41 @@ export declare const SageMakerImageName: {
547
547
  export type SageMakerImageName =
548
548
  (typeof SageMakerImageName)[keyof typeof SageMakerImageName];
549
549
  export interface HiddenSageMakerImage {
550
- SageMakerImageName?: SageMakerImageName;
551
- VersionAliases?: string[];
550
+ SageMakerImageName?: SageMakerImageName | undefined;
551
+ VersionAliases?: string[] | undefined;
552
552
  }
553
553
  export interface StudioWebPortalSettings {
554
- HiddenMlTools?: MlTools[];
555
- HiddenAppTypes?: AppType[];
556
- HiddenInstanceTypes?: AppInstanceType[];
557
- HiddenSageMakerImageVersionAliases?: HiddenSageMakerImage[];
554
+ HiddenMlTools?: MlTools[] | undefined;
555
+ HiddenAppTypes?: AppType[] | undefined;
556
+ HiddenInstanceTypes?: AppInstanceType[] | undefined;
557
+ HiddenSageMakerImageVersionAliases?: HiddenSageMakerImage[] | undefined;
558
558
  }
559
559
  export interface TensorBoardAppSettings {
560
- DefaultResourceSpec?: ResourceSpec;
560
+ DefaultResourceSpec?: ResourceSpec | undefined;
561
561
  }
562
562
  export interface UserSettings {
563
- ExecutionRole?: string;
564
- SecurityGroups?: string[];
565
- SharingSettings?: SharingSettings;
566
- JupyterServerAppSettings?: JupyterServerAppSettings;
567
- KernelGatewayAppSettings?: KernelGatewayAppSettings;
568
- TensorBoardAppSettings?: TensorBoardAppSettings;
569
- RStudioServerProAppSettings?: RStudioServerProAppSettings;
570
- RSessionAppSettings?: RSessionAppSettings;
571
- CanvasAppSettings?: CanvasAppSettings;
572
- CodeEditorAppSettings?: CodeEditorAppSettings;
573
- JupyterLabAppSettings?: JupyterLabAppSettings;
574
- SpaceStorageSettings?: DefaultSpaceStorageSettings;
575
- DefaultLandingUri?: string;
576
- StudioWebPortal?: StudioWebPortal;
577
- CustomPosixUserConfig?: CustomPosixUserConfig;
578
- CustomFileSystemConfigs?: CustomFileSystemConfig[];
579
- StudioWebPortalSettings?: StudioWebPortalSettings;
580
- AutoMountHomeEFS?: AutoMountHomeEFS;
563
+ ExecutionRole?: string | undefined;
564
+ SecurityGroups?: string[] | undefined;
565
+ SharingSettings?: SharingSettings | undefined;
566
+ JupyterServerAppSettings?: JupyterServerAppSettings | undefined;
567
+ KernelGatewayAppSettings?: KernelGatewayAppSettings | undefined;
568
+ TensorBoardAppSettings?: TensorBoardAppSettings | undefined;
569
+ RStudioServerProAppSettings?: RStudioServerProAppSettings | undefined;
570
+ RSessionAppSettings?: RSessionAppSettings | undefined;
571
+ CanvasAppSettings?: CanvasAppSettings | undefined;
572
+ CodeEditorAppSettings?: CodeEditorAppSettings | undefined;
573
+ JupyterLabAppSettings?: JupyterLabAppSettings | undefined;
574
+ SpaceStorageSettings?: DefaultSpaceStorageSettings | undefined;
575
+ DefaultLandingUri?: string | undefined;
576
+ StudioWebPortal?: StudioWebPortal | undefined;
577
+ CustomPosixUserConfig?: CustomPosixUserConfig | undefined;
578
+ CustomFileSystemConfigs?: CustomFileSystemConfig[] | undefined;
579
+ StudioWebPortalSettings?: StudioWebPortalSettings | undefined;
580
+ AutoMountHomeEFS?: AutoMountHomeEFS | undefined;
581
581
  }
582
582
  export interface DockerSettings {
583
- EnableDockerAccess?: FeatureStatus;
584
- VpcOnlyTrustedAccounts?: string[];
583
+ EnableDockerAccess?: FeatureStatus | undefined;
584
+ VpcOnlyTrustedAccounts?: string[] | undefined;
585
585
  }
586
586
  export declare const ExecutionRoleIdentityConfig: {
587
587
  readonly DISABLED: "DISABLED";
@@ -591,16 +591,16 @@ export type ExecutionRoleIdentityConfig =
591
591
  (typeof ExecutionRoleIdentityConfig)[keyof typeof ExecutionRoleIdentityConfig];
592
592
  export interface RStudioServerProDomainSettings {
593
593
  DomainExecutionRoleArn: string | undefined;
594
- RStudioConnectUrl?: string;
595
- RStudioPackageManagerUrl?: string;
596
- DefaultResourceSpec?: ResourceSpec;
594
+ RStudioConnectUrl?: string | undefined;
595
+ RStudioPackageManagerUrl?: string | undefined;
596
+ DefaultResourceSpec?: ResourceSpec | undefined;
597
597
  }
598
598
  export interface DomainSettings {
599
- SecurityGroupIds?: string[];
600
- RStudioServerProDomainSettings?: RStudioServerProDomainSettings;
601
- ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
602
- DockerSettings?: DockerSettings;
603
- AmazonQSettings?: AmazonQSettings;
599
+ SecurityGroupIds?: string[] | undefined;
600
+ RStudioServerProDomainSettings?: RStudioServerProDomainSettings | undefined;
601
+ ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | undefined;
602
+ DockerSettings?: DockerSettings | undefined;
603
+ AmazonQSettings?: AmazonQSettings | undefined;
604
604
  }
605
605
  export declare const TagPropagation: {
606
606
  readonly DISABLED: "DISABLED";
@@ -612,20 +612,20 @@ export interface CreateDomainRequest {
612
612
  DomainName: string | undefined;
613
613
  AuthMode: AuthMode | undefined;
614
614
  DefaultUserSettings: UserSettings | undefined;
615
- DomainSettings?: DomainSettings;
615
+ DomainSettings?: DomainSettings | undefined;
616
616
  SubnetIds: string[] | undefined;
617
617
  VpcId: string | undefined;
618
- Tags?: Tag[];
619
- AppNetworkAccessType?: AppNetworkAccessType;
620
- HomeEfsFileSystemKmsKeyId?: string;
621
- KmsKeyId?: string;
622
- AppSecurityGroupManagement?: AppSecurityGroupManagement;
623
- TagPropagation?: TagPropagation;
624
- DefaultSpaceSettings?: DefaultSpaceSettings;
618
+ Tags?: Tag[] | undefined;
619
+ AppNetworkAccessType?: AppNetworkAccessType | undefined;
620
+ HomeEfsFileSystemKmsKeyId?: string | undefined;
621
+ KmsKeyId?: string | undefined;
622
+ AppSecurityGroupManagement?: AppSecurityGroupManagement | undefined;
623
+ TagPropagation?: TagPropagation | undefined;
624
+ DefaultSpaceSettings?: DefaultSpaceSettings | undefined;
625
625
  }
626
626
  export interface CreateDomainResponse {
627
- DomainArn?: string;
628
- Url?: string;
627
+ DomainArn?: string | undefined;
628
+ Url?: string | undefined;
629
629
  }
630
630
  export interface EdgeDeploymentModelConfig {
631
631
  ModelHandle: string | undefined;
@@ -649,21 +649,21 @@ export type DeviceSubsetType =
649
649
  (typeof DeviceSubsetType)[keyof typeof DeviceSubsetType];
650
650
  export interface DeviceSelectionConfig {
651
651
  DeviceSubsetType: DeviceSubsetType | undefined;
652
- Percentage?: number;
653
- DeviceNames?: string[];
654
- DeviceNameContains?: string;
652
+ Percentage?: number | undefined;
653
+ DeviceNames?: string[] | undefined;
654
+ DeviceNameContains?: string | undefined;
655
655
  }
656
656
  export interface DeploymentStage {
657
657
  StageName: string | undefined;
658
658
  DeviceSelectionConfig: DeviceSelectionConfig | undefined;
659
- DeploymentConfig?: EdgeDeploymentConfig;
659
+ DeploymentConfig?: EdgeDeploymentConfig | undefined;
660
660
  }
661
661
  export interface CreateEdgeDeploymentPlanRequest {
662
662
  EdgeDeploymentPlanName: string | undefined;
663
663
  ModelConfigs: EdgeDeploymentModelConfig[] | undefined;
664
664
  DeviceFleetName: string | undefined;
665
- Stages?: DeploymentStage[];
666
- Tags?: Tag[];
665
+ Stages?: DeploymentStage[] | undefined;
666
+ Tags?: Tag[] | undefined;
667
667
  }
668
668
  export interface CreateEdgeDeploymentPlanResponse {
669
669
  EdgeDeploymentPlanArn: string | undefined;
@@ -679,39 +679,39 @@ export interface CreateEdgePackagingJobRequest {
679
679
  ModelVersion: string | undefined;
680
680
  RoleArn: string | undefined;
681
681
  OutputConfig: EdgeOutputConfig | undefined;
682
- ResourceKey?: string;
683
- Tags?: Tag[];
682
+ ResourceKey?: string | undefined;
683
+ Tags?: Tag[] | undefined;
684
684
  }
685
685
  export interface RollingUpdatePolicy {
686
686
  MaximumBatchSize: CapacitySize | undefined;
687
687
  WaitIntervalInSeconds: number | undefined;
688
- MaximumExecutionTimeoutInSeconds?: number;
689
- RollbackMaximumBatchSize?: CapacitySize;
688
+ MaximumExecutionTimeoutInSeconds?: number | undefined;
689
+ RollbackMaximumBatchSize?: CapacitySize | undefined;
690
690
  }
691
691
  export interface DeploymentConfig {
692
- BlueGreenUpdatePolicy?: BlueGreenUpdatePolicy;
693
- RollingUpdatePolicy?: RollingUpdatePolicy;
694
- AutoRollbackConfiguration?: AutoRollbackConfig;
692
+ BlueGreenUpdatePolicy?: BlueGreenUpdatePolicy | undefined;
693
+ RollingUpdatePolicy?: RollingUpdatePolicy | undefined;
694
+ AutoRollbackConfiguration?: AutoRollbackConfig | undefined;
695
695
  }
696
696
  export interface CreateEndpointInput {
697
697
  EndpointName: string | undefined;
698
698
  EndpointConfigName: string | undefined;
699
- DeploymentConfig?: DeploymentConfig;
700
- Tags?: Tag[];
699
+ DeploymentConfig?: DeploymentConfig | undefined;
700
+ Tags?: Tag[] | undefined;
701
701
  }
702
702
  export interface CreateEndpointOutput {
703
703
  EndpointArn: string | undefined;
704
704
  }
705
705
  export interface DataCaptureConfig {
706
- EnableCapture?: boolean;
706
+ EnableCapture?: boolean | undefined;
707
707
  InitialSamplingPercentage: number | undefined;
708
708
  DestinationS3Uri: string | undefined;
709
- KmsKeyId?: string;
709
+ KmsKeyId?: string | undefined;
710
710
  CaptureOptions: CaptureOption[] | undefined;
711
- CaptureContentTypeHeader?: CaptureContentTypeHeader;
711
+ CaptureContentTypeHeader?: CaptureContentTypeHeader | undefined;
712
712
  }
713
713
  export interface ExplainerConfig {
714
- ClarifyExplainerConfig?: ClarifyExplainerConfig;
714
+ ClarifyExplainerConfig?: ClarifyExplainerConfig | undefined;
715
715
  }
716
716
  export declare const ProductionVariantAcceleratorType: {
717
717
  readonly ML_EIA1_LARGE: "ml.eia1.large";
@@ -725,7 +725,7 @@ export type ProductionVariantAcceleratorType =
725
725
  (typeof ProductionVariantAcceleratorType)[keyof typeof ProductionVariantAcceleratorType];
726
726
  export interface ProductionVariantCoreDumpConfig {
727
727
  DestinationS3Uri: string | undefined;
728
- KmsKeyId?: string;
728
+ KmsKeyId?: string | undefined;
729
729
  }
730
730
  export declare const ProductionVariantInferenceAmiVersion: {
731
731
  readonly AL2_GPU_2: "al2-ami-sagemaker-inference-gpu-2";
@@ -739,9 +739,9 @@ export declare const ManagedInstanceScalingStatus: {
739
739
  export type ManagedInstanceScalingStatus =
740
740
  (typeof ManagedInstanceScalingStatus)[keyof typeof ManagedInstanceScalingStatus];
741
741
  export interface ProductionVariantManagedInstanceScaling {
742
- Status?: ManagedInstanceScalingStatus;
743
- MinInstanceCount?: number;
744
- MaxInstanceCount?: number;
742
+ Status?: ManagedInstanceScalingStatus | undefined;
743
+ MinInstanceCount?: number | undefined;
744
+ MaxInstanceCount?: number | undefined;
745
745
  }
746
746
  export declare const RoutingStrategy: {
747
747
  readonly LEAST_OUTSTANDING_REQUESTS: "LEAST_OUTSTANDING_REQUESTS";
@@ -755,49 +755,49 @@ export interface ProductionVariantRoutingConfig {
755
755
  export interface ProductionVariantServerlessConfig {
756
756
  MemorySizeInMB: number | undefined;
757
757
  MaxConcurrency: number | undefined;
758
- ProvisionedConcurrency?: number;
758
+ ProvisionedConcurrency?: number | undefined;
759
759
  }
760
760
  export interface ProductionVariant {
761
761
  VariantName: string | undefined;
762
- ModelName?: string;
763
- InitialInstanceCount?: number;
764
- InstanceType?: ProductionVariantInstanceType;
765
- InitialVariantWeight?: number;
766
- AcceleratorType?: ProductionVariantAcceleratorType;
767
- CoreDumpConfig?: ProductionVariantCoreDumpConfig;
768
- ServerlessConfig?: ProductionVariantServerlessConfig;
769
- VolumeSizeInGB?: number;
770
- ModelDataDownloadTimeoutInSeconds?: number;
771
- ContainerStartupHealthCheckTimeoutInSeconds?: number;
772
- EnableSSMAccess?: boolean;
773
- ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
774
- RoutingConfig?: ProductionVariantRoutingConfig;
775
- InferenceAmiVersion?: ProductionVariantInferenceAmiVersion;
762
+ ModelName?: string | undefined;
763
+ InitialInstanceCount?: number | undefined;
764
+ InstanceType?: ProductionVariantInstanceType | undefined;
765
+ InitialVariantWeight?: number | undefined;
766
+ AcceleratorType?: ProductionVariantAcceleratorType | undefined;
767
+ CoreDumpConfig?: ProductionVariantCoreDumpConfig | undefined;
768
+ ServerlessConfig?: ProductionVariantServerlessConfig | undefined;
769
+ VolumeSizeInGB?: number | undefined;
770
+ ModelDataDownloadTimeoutInSeconds?: number | undefined;
771
+ ContainerStartupHealthCheckTimeoutInSeconds?: number | undefined;
772
+ EnableSSMAccess?: boolean | undefined;
773
+ ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling | undefined;
774
+ RoutingConfig?: ProductionVariantRoutingConfig | undefined;
775
+ InferenceAmiVersion?: ProductionVariantInferenceAmiVersion | undefined;
776
776
  }
777
777
  export interface CreateEndpointConfigInput {
778
778
  EndpointConfigName: string | undefined;
779
779
  ProductionVariants: ProductionVariant[] | undefined;
780
- DataCaptureConfig?: DataCaptureConfig;
781
- Tags?: Tag[];
782
- KmsKeyId?: string;
783
- AsyncInferenceConfig?: AsyncInferenceConfig;
784
- ExplainerConfig?: ExplainerConfig;
785
- ShadowProductionVariants?: ProductionVariant[];
786
- ExecutionRoleArn?: string;
787
- VpcConfig?: VpcConfig;
788
- EnableNetworkIsolation?: boolean;
780
+ DataCaptureConfig?: DataCaptureConfig | undefined;
781
+ Tags?: Tag[] | undefined;
782
+ KmsKeyId?: string | undefined;
783
+ AsyncInferenceConfig?: AsyncInferenceConfig | undefined;
784
+ ExplainerConfig?: ExplainerConfig | undefined;
785
+ ShadowProductionVariants?: ProductionVariant[] | undefined;
786
+ ExecutionRoleArn?: string | undefined;
787
+ VpcConfig?: VpcConfig | undefined;
788
+ EnableNetworkIsolation?: boolean | undefined;
789
789
  }
790
790
  export interface CreateEndpointConfigOutput {
791
791
  EndpointConfigArn: string | undefined;
792
792
  }
793
793
  export interface CreateExperimentRequest {
794
794
  ExperimentName: string | undefined;
795
- DisplayName?: string;
796
- Description?: string;
797
- Tags?: Tag[];
795
+ DisplayName?: string | undefined;
796
+ Description?: string | undefined;
797
+ Tags?: Tag[] | undefined;
798
798
  }
799
799
  export interface CreateExperimentResponse {
800
- ExperimentArn?: string;
800
+ ExperimentArn?: string | undefined;
801
801
  }
802
802
  export declare const FeatureType: {
803
803
  readonly FRACTIONAL: "Fractional";
@@ -808,8 +808,8 @@ export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
808
808
  export interface FeatureDefinition {
809
809
  FeatureName: string | undefined;
810
810
  FeatureType: FeatureType | undefined;
811
- CollectionType?: CollectionType;
812
- CollectionConfig?: CollectionConfig;
811
+ CollectionType?: CollectionType | undefined;
812
+ CollectionConfig?: CollectionConfig | undefined;
813
813
  }
814
814
  export interface DataCatalogConfig {
815
815
  TableName: string | undefined;
@@ -818,8 +818,8 @@ export interface DataCatalogConfig {
818
818
  }
819
819
  export interface S3StorageConfig {
820
820
  S3Uri: string | undefined;
821
- KmsKeyId?: string;
822
- ResolvedOutputS3Uri?: string;
821
+ KmsKeyId?: string | undefined;
822
+ ResolvedOutputS3Uri?: string | undefined;
823
823
  }
824
824
  export declare const TableFormat: {
825
825
  readonly DEFAULT: "Default";
@@ -829,12 +829,12 @@ export declare const TableFormat: {
829
829
  export type TableFormat = (typeof TableFormat)[keyof typeof TableFormat];
830
830
  export interface OfflineStoreConfig {
831
831
  S3StorageConfig: S3StorageConfig | undefined;
832
- DisableGlueTableCreation?: boolean;
833
- DataCatalogConfig?: DataCatalogConfig;
834
- TableFormat?: TableFormat;
832
+ DisableGlueTableCreation?: boolean | undefined;
833
+ DataCatalogConfig?: DataCatalogConfig | undefined;
834
+ TableFormat?: TableFormat | undefined;
835
835
  }
836
836
  export interface OnlineStoreSecurityConfig {
837
- KmsKeyId?: string;
837
+ KmsKeyId?: string | undefined;
838
838
  }
839
839
  export declare const StorageType: {
840
840
  readonly IN_MEMORY: "InMemory";
@@ -851,14 +851,14 @@ export declare const TtlDurationUnit: {
851
851
  export type TtlDurationUnit =
852
852
  (typeof TtlDurationUnit)[keyof typeof TtlDurationUnit];
853
853
  export interface TtlDuration {
854
- Unit?: TtlDurationUnit;
855
- Value?: number;
854
+ Unit?: TtlDurationUnit | undefined;
855
+ Value?: number | undefined;
856
856
  }
857
857
  export interface OnlineStoreConfig {
858
- SecurityConfig?: OnlineStoreSecurityConfig;
859
- EnableOnlineStore?: boolean;
860
- TtlDuration?: TtlDuration;
861
- StorageType?: StorageType;
858
+ SecurityConfig?: OnlineStoreSecurityConfig | undefined;
859
+ EnableOnlineStore?: boolean | undefined;
860
+ TtlDuration?: TtlDuration | undefined;
861
+ StorageType?: StorageType | undefined;
862
862
  }
863
863
  export declare const ThroughputMode: {
864
864
  readonly ON_DEMAND: "OnDemand";
@@ -868,20 +868,20 @@ export type ThroughputMode =
868
868
  (typeof ThroughputMode)[keyof typeof ThroughputMode];
869
869
  export interface ThroughputConfig {
870
870
  ThroughputMode: ThroughputMode | undefined;
871
- ProvisionedReadCapacityUnits?: number;
872
- ProvisionedWriteCapacityUnits?: number;
871
+ ProvisionedReadCapacityUnits?: number | undefined;
872
+ ProvisionedWriteCapacityUnits?: number | undefined;
873
873
  }
874
874
  export interface CreateFeatureGroupRequest {
875
875
  FeatureGroupName: string | undefined;
876
876
  RecordIdentifierFeatureName: string | undefined;
877
877
  EventTimeFeatureName: string | undefined;
878
878
  FeatureDefinitions: FeatureDefinition[] | undefined;
879
- OnlineStoreConfig?: OnlineStoreConfig;
880
- OfflineStoreConfig?: OfflineStoreConfig;
881
- ThroughputConfig?: ThroughputConfig;
882
- RoleArn?: string;
883
- Description?: string;
884
- Tags?: Tag[];
879
+ OnlineStoreConfig?: OnlineStoreConfig | undefined;
880
+ OfflineStoreConfig?: OfflineStoreConfig | undefined;
881
+ ThroughputConfig?: ThroughputConfig | undefined;
882
+ RoleArn?: string | undefined;
883
+ Description?: string | undefined;
884
+ Tags?: Tag[] | undefined;
885
885
  }
886
886
  export interface CreateFeatureGroupResponse {
887
887
  FeatureGroupArn: string | undefined;
@@ -895,12 +895,12 @@ export interface HumanLoopActivationConfig {
895
895
  | undefined;
896
896
  }
897
897
  export interface USD {
898
- Dollars?: number;
899
- Cents?: number;
900
- TenthFractionsOfACent?: number;
898
+ Dollars?: number | undefined;
899
+ Cents?: number | undefined;
900
+ TenthFractionsOfACent?: number | undefined;
901
901
  }
902
902
  export interface PublicWorkforceTaskPrice {
903
- AmountInUsd?: USD;
903
+ AmountInUsd?: USD | undefined;
904
904
  }
905
905
  export interface HumanLoopConfig {
906
906
  WorkteamArn: string | undefined;
@@ -908,10 +908,10 @@ export interface HumanLoopConfig {
908
908
  TaskTitle: string | undefined;
909
909
  TaskDescription: string | undefined;
910
910
  TaskCount: number | undefined;
911
- TaskAvailabilityLifetimeInSeconds?: number;
912
- TaskTimeLimitInSeconds?: number;
913
- TaskKeywords?: string[];
914
- PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice;
911
+ TaskAvailabilityLifetimeInSeconds?: number | undefined;
912
+ TaskTimeLimitInSeconds?: number | undefined;
913
+ TaskKeywords?: string[] | undefined;
914
+ PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice | undefined;
915
915
  }
916
916
  export interface HumanLoopRequestSource {
917
917
  AwsManagedHumanLoopRequestSource:
@@ -920,30 +920,30 @@ export interface HumanLoopRequestSource {
920
920
  }
921
921
  export interface FlowDefinitionOutputConfig {
922
922
  S3OutputPath: string | undefined;
923
- KmsKeyId?: string;
923
+ KmsKeyId?: string | undefined;
924
924
  }
925
925
  export interface CreateFlowDefinitionRequest {
926
926
  FlowDefinitionName: string | undefined;
927
- HumanLoopRequestSource?: HumanLoopRequestSource;
928
- HumanLoopActivationConfig?: HumanLoopActivationConfig;
929
- HumanLoopConfig?: HumanLoopConfig;
927
+ HumanLoopRequestSource?: HumanLoopRequestSource | undefined;
928
+ HumanLoopActivationConfig?: HumanLoopActivationConfig | undefined;
929
+ HumanLoopConfig?: HumanLoopConfig | undefined;
930
930
  OutputConfig: FlowDefinitionOutputConfig | undefined;
931
931
  RoleArn: string | undefined;
932
- Tags?: Tag[];
932
+ Tags?: Tag[] | undefined;
933
933
  }
934
934
  export interface CreateFlowDefinitionResponse {
935
935
  FlowDefinitionArn: string | undefined;
936
936
  }
937
937
  export interface HubS3StorageConfig {
938
- S3OutputPath?: string;
938
+ S3OutputPath?: string | undefined;
939
939
  }
940
940
  export interface CreateHubRequest {
941
941
  HubName: string | undefined;
942
942
  HubDescription: string | undefined;
943
- HubDisplayName?: string;
944
- HubSearchKeywords?: string[];
945
- S3StorageConfig?: HubS3StorageConfig;
946
- Tags?: Tag[];
943
+ HubDisplayName?: string | undefined;
944
+ HubSearchKeywords?: string[] | undefined;
945
+ S3StorageConfig?: HubS3StorageConfig | undefined;
946
+ Tags?: Tag[] | undefined;
947
947
  }
948
948
  export interface CreateHubResponse {
949
949
  HubArn: string | undefined;
@@ -951,9 +951,9 @@ export interface CreateHubResponse {
951
951
  export interface CreateHubContentReferenceRequest {
952
952
  HubName: string | undefined;
953
953
  SageMakerPublicHubContentArn: string | undefined;
954
- HubContentName?: string;
955
- MinVersion?: string;
956
- Tags?: Tag[];
954
+ HubContentName?: string | undefined;
955
+ MinVersion?: string | undefined;
956
+ Tags?: Tag[] | undefined;
957
957
  }
958
958
  export interface CreateHubContentReferenceResponse {
959
959
  HubArn: string | undefined;
@@ -965,7 +965,7 @@ export interface UiTemplate {
965
965
  export interface CreateHumanTaskUiRequest {
966
966
  HumanTaskUiName: string | undefined;
967
967
  UiTemplate: UiTemplate | undefined;
968
- Tags?: Tag[];
968
+ Tags?: Tag[] | undefined;
969
969
  }
970
970
  export interface CreateHumanTaskUiResponse {
971
971
  HumanTaskUiArn: string | undefined;
@@ -974,18 +974,18 @@ export interface IntegerParameterRange {
974
974
  Name: string | undefined;
975
975
  MinValue: string | undefined;
976
976
  MaxValue: string | undefined;
977
- ScalingType?: HyperParameterScalingType;
977
+ ScalingType?: HyperParameterScalingType | undefined;
978
978
  }
979
979
  export interface ParameterRanges {
980
- IntegerParameterRanges?: IntegerParameterRange[];
981
- ContinuousParameterRanges?: ContinuousParameterRange[];
982
- CategoricalParameterRanges?: CategoricalParameterRange[];
983
- AutoParameters?: AutoParameter[];
980
+ IntegerParameterRanges?: IntegerParameterRange[] | undefined;
981
+ ContinuousParameterRanges?: ContinuousParameterRange[] | undefined;
982
+ CategoricalParameterRanges?: CategoricalParameterRange[] | undefined;
983
+ AutoParameters?: AutoParameter[] | undefined;
984
984
  }
985
985
  export interface ResourceLimits {
986
- MaxNumberOfTrainingJobs?: number;
986
+ MaxNumberOfTrainingJobs?: number | undefined;
987
987
  MaxParallelTrainingJobs: number | undefined;
988
- MaxRuntimeInSeconds?: number;
988
+ MaxRuntimeInSeconds?: number | undefined;
989
989
  }
990
990
  export declare const HyperParameterTuningJobStrategyType: {
991
991
  readonly BAYESIAN: "Bayesian";
@@ -996,11 +996,11 @@ export declare const HyperParameterTuningJobStrategyType: {
996
996
  export type HyperParameterTuningJobStrategyType =
997
997
  (typeof HyperParameterTuningJobStrategyType)[keyof typeof HyperParameterTuningJobStrategyType];
998
998
  export interface HyperbandStrategyConfig {
999
- MinResource?: number;
1000
- MaxResource?: number;
999
+ MinResource?: number | undefined;
1000
+ MaxResource?: number | undefined;
1001
1001
  }
1002
1002
  export interface HyperParameterTuningJobStrategyConfig {
1003
- HyperbandStrategyConfig?: HyperbandStrategyConfig;
1003
+ HyperbandStrategyConfig?: HyperbandStrategyConfig | undefined;
1004
1004
  }
1005
1005
  export declare const TrainingJobEarlyStoppingType: {
1006
1006
  readonly AUTO: "Auto";
@@ -1009,25 +1009,27 @@ export declare const TrainingJobEarlyStoppingType: {
1009
1009
  export type TrainingJobEarlyStoppingType =
1010
1010
  (typeof TrainingJobEarlyStoppingType)[keyof typeof TrainingJobEarlyStoppingType];
1011
1011
  export interface TuningJobCompletionCriteria {
1012
- TargetObjectiveMetricValue?: number;
1013
- BestObjectiveNotImproving?: BestObjectiveNotImproving;
1014
- ConvergenceDetected?: ConvergenceDetected;
1012
+ TargetObjectiveMetricValue?: number | undefined;
1013
+ BestObjectiveNotImproving?: BestObjectiveNotImproving | undefined;
1014
+ ConvergenceDetected?: ConvergenceDetected | undefined;
1015
1015
  }
1016
1016
  export interface HyperParameterTuningJobConfig {
1017
1017
  Strategy: HyperParameterTuningJobStrategyType | undefined;
1018
- StrategyConfig?: HyperParameterTuningJobStrategyConfig;
1019
- HyperParameterTuningJobObjective?: HyperParameterTuningJobObjective;
1018
+ StrategyConfig?: HyperParameterTuningJobStrategyConfig | undefined;
1019
+ HyperParameterTuningJobObjective?:
1020
+ | HyperParameterTuningJobObjective
1021
+ | undefined;
1020
1022
  ResourceLimits: ResourceLimits | undefined;
1021
- ParameterRanges?: ParameterRanges;
1022
- TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType;
1023
- TuningJobCompletionCriteria?: TuningJobCompletionCriteria;
1024
- RandomSeed?: number;
1023
+ ParameterRanges?: ParameterRanges | undefined;
1024
+ TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType | undefined;
1025
+ TuningJobCompletionCriteria?: TuningJobCompletionCriteria | undefined;
1026
+ RandomSeed?: number | undefined;
1025
1027
  }
1026
1028
  export interface HyperParameterAlgorithmSpecification {
1027
- TrainingImage?: string;
1029
+ TrainingImage?: string | undefined;
1028
1030
  TrainingInputMode: TrainingInputMode | undefined;
1029
- AlgorithmName?: string;
1030
- MetricDefinitions?: MetricDefinition[];
1031
+ AlgorithmName?: string | undefined;
1032
+ MetricDefinitions?: MetricDefinition[] | undefined;
1031
1033
  }
1032
1034
  export declare const HyperParameterTuningAllocationStrategy: {
1033
1035
  readonly PRIORITIZED: "Prioritized";
@@ -1040,38 +1042,40 @@ export interface HyperParameterTuningInstanceConfig {
1040
1042
  VolumeSizeInGB: number | undefined;
1041
1043
  }
1042
1044
  export interface HyperParameterTuningResourceConfig {
1043
- InstanceType?: TrainingInstanceType;
1044
- InstanceCount?: number;
1045
- VolumeSizeInGB?: number;
1046
- VolumeKmsKeyId?: string;
1047
- AllocationStrategy?: HyperParameterTuningAllocationStrategy;
1048
- InstanceConfigs?: HyperParameterTuningInstanceConfig[];
1045
+ InstanceType?: TrainingInstanceType | undefined;
1046
+ InstanceCount?: number | undefined;
1047
+ VolumeSizeInGB?: number | undefined;
1048
+ VolumeKmsKeyId?: string | undefined;
1049
+ AllocationStrategy?: HyperParameterTuningAllocationStrategy | undefined;
1050
+ InstanceConfigs?: HyperParameterTuningInstanceConfig[] | undefined;
1049
1051
  }
1050
1052
  export interface RetryStrategy {
1051
1053
  MaximumRetryAttempts: number | undefined;
1052
1054
  }
1053
1055
  export interface HyperParameterTrainingJobDefinition {
1054
- DefinitionName?: string;
1055
- TuningObjective?: HyperParameterTuningJobObjective;
1056
- HyperParameterRanges?: ParameterRanges;
1057
- StaticHyperParameters?: Record<string, string>;
1056
+ DefinitionName?: string | undefined;
1057
+ TuningObjective?: HyperParameterTuningJobObjective | undefined;
1058
+ HyperParameterRanges?: ParameterRanges | undefined;
1059
+ StaticHyperParameters?: Record<string, string> | undefined;
1058
1060
  AlgorithmSpecification: HyperParameterAlgorithmSpecification | undefined;
1059
1061
  RoleArn: string | undefined;
1060
- InputDataConfig?: Channel[];
1061
- VpcConfig?: VpcConfig;
1062
+ InputDataConfig?: Channel[] | undefined;
1063
+ VpcConfig?: VpcConfig | undefined;
1062
1064
  OutputDataConfig: OutputDataConfig | undefined;
1063
- ResourceConfig?: ResourceConfig;
1064
- HyperParameterTuningResourceConfig?: HyperParameterTuningResourceConfig;
1065
+ ResourceConfig?: ResourceConfig | undefined;
1066
+ HyperParameterTuningResourceConfig?:
1067
+ | HyperParameterTuningResourceConfig
1068
+ | undefined;
1065
1069
  StoppingCondition: StoppingCondition | undefined;
1066
- EnableNetworkIsolation?: boolean;
1067
- EnableInterContainerTrafficEncryption?: boolean;
1068
- EnableManagedSpotTraining?: boolean;
1069
- CheckpointConfig?: CheckpointConfig;
1070
- RetryStrategy?: RetryStrategy;
1071
- Environment?: Record<string, string>;
1070
+ EnableNetworkIsolation?: boolean | undefined;
1071
+ EnableInterContainerTrafficEncryption?: boolean | undefined;
1072
+ EnableManagedSpotTraining?: boolean | undefined;
1073
+ CheckpointConfig?: CheckpointConfig | undefined;
1074
+ RetryStrategy?: RetryStrategy | undefined;
1075
+ Environment?: Record<string, string> | undefined;
1072
1076
  }
1073
1077
  export interface ParentHyperParameterTuningJob {
1074
- HyperParameterTuningJobName?: string;
1078
+ HyperParameterTuningJobName?: string | undefined;
1075
1079
  }
1076
1080
  export declare const HyperParameterTuningJobWarmStartType: {
1077
1081
  readonly IDENTICAL_DATA_AND_ALGORITHM: "IdenticalDataAndAlgorithm";
@@ -1086,24 +1090,24 @@ export interface HyperParameterTuningJobWarmStartConfig {
1086
1090
  export interface CreateHyperParameterTuningJobRequest {
1087
1091
  HyperParameterTuningJobName: string | undefined;
1088
1092
  HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
1089
- TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
1090
- TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
1091
- WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
1092
- Tags?: Tag[];
1093
- Autotune?: Autotune;
1093
+ TrainingJobDefinition?: HyperParameterTrainingJobDefinition | undefined;
1094
+ TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[] | undefined;
1095
+ WarmStartConfig?: HyperParameterTuningJobWarmStartConfig | undefined;
1096
+ Tags?: Tag[] | undefined;
1097
+ Autotune?: Autotune | undefined;
1094
1098
  }
1095
1099
  export interface CreateHyperParameterTuningJobResponse {
1096
1100
  HyperParameterTuningJobArn: string | undefined;
1097
1101
  }
1098
1102
  export interface CreateImageRequest {
1099
- Description?: string;
1100
- DisplayName?: string;
1103
+ Description?: string | undefined;
1104
+ DisplayName?: string | undefined;
1101
1105
  ImageName: string | undefined;
1102
1106
  RoleArn: string | undefined;
1103
- Tags?: Tag[];
1107
+ Tags?: Tag[] | undefined;
1104
1108
  }
1105
1109
  export interface CreateImageResponse {
1106
- ImageArn?: string;
1110
+ ImageArn?: string | undefined;
1107
1111
  }
1108
1112
  export declare const JobType: {
1109
1113
  readonly INFERENCE: "INFERENCE";
@@ -1126,42 +1130,42 @@ export type VendorGuidance =
1126
1130
  (typeof VendorGuidance)[keyof typeof VendorGuidance];
1127
1131
  export interface CreateImageVersionRequest {
1128
1132
  BaseImage: string | undefined;
1129
- ClientToken?: string;
1133
+ ClientToken?: string | undefined;
1130
1134
  ImageName: string | undefined;
1131
- Aliases?: string[];
1132
- VendorGuidance?: VendorGuidance;
1133
- JobType?: JobType;
1134
- MLFramework?: string;
1135
- ProgrammingLang?: string;
1136
- Processor?: Processor;
1137
- Horovod?: boolean;
1138
- ReleaseNotes?: string;
1135
+ Aliases?: string[] | undefined;
1136
+ VendorGuidance?: VendorGuidance | undefined;
1137
+ JobType?: JobType | undefined;
1138
+ MLFramework?: string | undefined;
1139
+ ProgrammingLang?: string | undefined;
1140
+ Processor?: Processor | undefined;
1141
+ Horovod?: boolean | undefined;
1142
+ ReleaseNotes?: string | undefined;
1139
1143
  }
1140
1144
  export interface CreateImageVersionResponse {
1141
- ImageVersionArn?: string;
1145
+ ImageVersionArn?: string | undefined;
1142
1146
  }
1143
1147
  export interface InferenceComponentRuntimeConfig {
1144
1148
  CopyCount: number | undefined;
1145
1149
  }
1146
1150
  export interface InferenceComponentComputeResourceRequirements {
1147
- NumberOfCpuCoresRequired?: number;
1148
- NumberOfAcceleratorDevicesRequired?: number;
1151
+ NumberOfCpuCoresRequired?: number | undefined;
1152
+ NumberOfAcceleratorDevicesRequired?: number | undefined;
1149
1153
  MinMemoryRequiredInMb: number | undefined;
1150
- MaxMemoryRequiredInMb?: number;
1154
+ MaxMemoryRequiredInMb?: number | undefined;
1151
1155
  }
1152
1156
  export interface InferenceComponentContainerSpecification {
1153
- Image?: string;
1154
- ArtifactUrl?: string;
1155
- Environment?: Record<string, string>;
1157
+ Image?: string | undefined;
1158
+ ArtifactUrl?: string | undefined;
1159
+ Environment?: Record<string, string> | undefined;
1156
1160
  }
1157
1161
  export interface InferenceComponentStartupParameters {
1158
- ModelDataDownloadTimeoutInSeconds?: number;
1159
- ContainerStartupHealthCheckTimeoutInSeconds?: number;
1162
+ ModelDataDownloadTimeoutInSeconds?: number | undefined;
1163
+ ContainerStartupHealthCheckTimeoutInSeconds?: number | undefined;
1160
1164
  }
1161
1165
  export interface InferenceComponentSpecification {
1162
- ModelName?: string;
1163
- Container?: InferenceComponentContainerSpecification;
1164
- StartupParameters?: InferenceComponentStartupParameters;
1166
+ ModelName?: string | undefined;
1167
+ Container?: InferenceComponentContainerSpecification | undefined;
1168
+ StartupParameters?: InferenceComponentStartupParameters | undefined;
1165
1169
  ComputeResourceRequirements:
1166
1170
  | InferenceComponentComputeResourceRequirements
1167
1171
  | undefined;
@@ -1172,15 +1176,15 @@ export interface CreateInferenceComponentInput {
1172
1176
  VariantName: string | undefined;
1173
1177
  Specification: InferenceComponentSpecification | undefined;
1174
1178
  RuntimeConfig: InferenceComponentRuntimeConfig | undefined;
1175
- Tags?: Tag[];
1179
+ Tags?: Tag[] | undefined;
1176
1180
  }
1177
1181
  export interface CreateInferenceComponentOutput {
1178
1182
  InferenceComponentArn: string | undefined;
1179
1183
  }
1180
1184
  export interface InferenceExperimentDataStorageConfig {
1181
1185
  Destination: string | undefined;
1182
- KmsKey?: string;
1183
- ContentType?: CaptureContentTypeHeader;
1186
+ KmsKey?: string | undefined;
1187
+ ContentType?: CaptureContentTypeHeader | undefined;
1184
1188
  }
1185
1189
  export declare const ModelInfrastructureType: {
1186
1190
  readonly REAL_TIME_INFERENCE: "RealTimeInference";
@@ -1369,8 +1373,8 @@ export interface ModelVariantConfig {
1369
1373
  InfrastructureConfig: ModelInfrastructureConfig | undefined;
1370
1374
  }
1371
1375
  export interface InferenceExperimentSchedule {
1372
- StartTime?: Date;
1373
- EndTime?: Date;
1376
+ StartTime?: Date | undefined;
1377
+ EndTime?: Date | undefined;
1374
1378
  }
1375
1379
  export interface ShadowModelVariantConfig {
1376
1380
  ShadowModelVariantName: string | undefined;
@@ -1388,22 +1392,22 @@ export type InferenceExperimentType =
1388
1392
  export interface CreateInferenceExperimentRequest {
1389
1393
  Name: string | undefined;
1390
1394
  Type: InferenceExperimentType | undefined;
1391
- Schedule?: InferenceExperimentSchedule;
1392
- Description?: string;
1395
+ Schedule?: InferenceExperimentSchedule | undefined;
1396
+ Description?: string | undefined;
1393
1397
  RoleArn: string | undefined;
1394
1398
  EndpointName: string | undefined;
1395
1399
  ModelVariants: ModelVariantConfig[] | undefined;
1396
- DataStorageConfig?: InferenceExperimentDataStorageConfig;
1400
+ DataStorageConfig?: InferenceExperimentDataStorageConfig | undefined;
1397
1401
  ShadowModeConfig: ShadowModeConfig | undefined;
1398
- KmsKey?: string;
1399
- Tags?: Tag[];
1402
+ KmsKey?: string | undefined;
1403
+ Tags?: Tag[] | undefined;
1400
1404
  }
1401
1405
  export interface CreateInferenceExperimentResponse {
1402
1406
  InferenceExperimentArn: string | undefined;
1403
1407
  }
1404
1408
  export interface RecommendationJobPayloadConfig {
1405
- SamplePayloadUrl?: string;
1406
- SupportedContentTypes?: string[];
1409
+ SamplePayloadUrl?: string | undefined;
1410
+ SupportedContentTypes?: string[] | undefined;
1407
1411
  }
1408
1412
  export declare const RecommendationJobSupportedEndpointType: {
1409
1413
  readonly REALTIME: "RealTime";
@@ -1412,42 +1416,42 @@ export declare const RecommendationJobSupportedEndpointType: {
1412
1416
  export type RecommendationJobSupportedEndpointType =
1413
1417
  (typeof RecommendationJobSupportedEndpointType)[keyof typeof RecommendationJobSupportedEndpointType];
1414
1418
  export interface RecommendationJobContainerConfig {
1415
- Domain?: string;
1416
- Task?: string;
1417
- Framework?: string;
1418
- FrameworkVersion?: string;
1419
- PayloadConfig?: RecommendationJobPayloadConfig;
1420
- NearestModelName?: string;
1421
- SupportedInstanceTypes?: string[];
1422
- SupportedEndpointType?: RecommendationJobSupportedEndpointType;
1423
- DataInputConfig?: string;
1424
- SupportedResponseMIMETypes?: string[];
1419
+ Domain?: string | undefined;
1420
+ Task?: string | undefined;
1421
+ Framework?: string | undefined;
1422
+ FrameworkVersion?: string | undefined;
1423
+ PayloadConfig?: RecommendationJobPayloadConfig | undefined;
1424
+ NearestModelName?: string | undefined;
1425
+ SupportedInstanceTypes?: string[] | undefined;
1426
+ SupportedEndpointType?: RecommendationJobSupportedEndpointType | undefined;
1427
+ DataInputConfig?: string | undefined;
1428
+ SupportedResponseMIMETypes?: string[] | undefined;
1425
1429
  }
1426
1430
  export interface EnvironmentParameterRanges {
1427
- CategoricalParameterRanges?: CategoricalParameter[];
1431
+ CategoricalParameterRanges?: CategoricalParameter[] | undefined;
1428
1432
  }
1429
1433
  export interface EndpointInputConfiguration {
1430
- InstanceType?: ProductionVariantInstanceType;
1431
- ServerlessConfig?: ProductionVariantServerlessConfig;
1432
- InferenceSpecificationName?: string;
1433
- EnvironmentParameterRanges?: EnvironmentParameterRanges;
1434
+ InstanceType?: ProductionVariantInstanceType | undefined;
1435
+ ServerlessConfig?: ProductionVariantServerlessConfig | undefined;
1436
+ InferenceSpecificationName?: string | undefined;
1437
+ EnvironmentParameterRanges?: EnvironmentParameterRanges | undefined;
1434
1438
  }
1435
1439
  export interface EndpointInfo {
1436
- EndpointName?: string;
1440
+ EndpointName?: string | undefined;
1437
1441
  }
1438
1442
  export interface RecommendationJobResourceLimit {
1439
- MaxNumberOfTests?: number;
1440
- MaxParallelOfTests?: number;
1443
+ MaxNumberOfTests?: number | undefined;
1444
+ MaxParallelOfTests?: number | undefined;
1441
1445
  }
1442
1446
  export interface Phase {
1443
- InitialNumberOfUsers?: number;
1444
- SpawnRate?: number;
1445
- DurationInSeconds?: number;
1447
+ InitialNumberOfUsers?: number | undefined;
1448
+ SpawnRate?: number | undefined;
1449
+ DurationInSeconds?: number | undefined;
1446
1450
  }
1447
1451
  export interface Stairs {
1448
- DurationInSeconds?: number;
1449
- NumberOfSteps?: number;
1450
- UsersPerStep?: number;
1452
+ DurationInSeconds?: number | undefined;
1453
+ NumberOfSteps?: number | undefined;
1454
+ UsersPerStep?: number | undefined;
1451
1455
  }
1452
1456
  export declare const TrafficType: {
1453
1457
  readonly PHASES: "PHASES";
@@ -1455,25 +1459,25 @@ export declare const TrafficType: {
1455
1459
  };
1456
1460
  export type TrafficType = (typeof TrafficType)[keyof typeof TrafficType];
1457
1461
  export interface TrafficPattern {
1458
- TrafficType?: TrafficType;
1459
- Phases?: Phase[];
1460
- Stairs?: Stairs;
1462
+ TrafficType?: TrafficType | undefined;
1463
+ Phases?: Phase[] | undefined;
1464
+ Stairs?: Stairs | undefined;
1461
1465
  }
1462
1466
  export interface RecommendationJobVpcConfig {
1463
1467
  SecurityGroupIds: string[] | undefined;
1464
1468
  Subnets: string[] | undefined;
1465
1469
  }
1466
1470
  export interface RecommendationJobInputConfig {
1467
- ModelPackageVersionArn?: string;
1468
- ModelName?: string;
1469
- JobDurationInSeconds?: number;
1470
- TrafficPattern?: TrafficPattern;
1471
- ResourceLimit?: RecommendationJobResourceLimit;
1472
- EndpointConfigurations?: EndpointInputConfiguration[];
1473
- VolumeKmsKeyId?: string;
1474
- ContainerConfig?: RecommendationJobContainerConfig;
1475
- Endpoints?: EndpointInfo[];
1476
- VpcConfig?: RecommendationJobVpcConfig;
1471
+ ModelPackageVersionArn?: string | undefined;
1472
+ ModelName?: string | undefined;
1473
+ JobDurationInSeconds?: number | undefined;
1474
+ TrafficPattern?: TrafficPattern | undefined;
1475
+ ResourceLimit?: RecommendationJobResourceLimit | undefined;
1476
+ EndpointConfigurations?: EndpointInputConfiguration[] | undefined;
1477
+ VolumeKmsKeyId?: string | undefined;
1478
+ ContainerConfig?: RecommendationJobContainerConfig | undefined;
1479
+ Endpoints?: EndpointInfo[] | undefined;
1480
+ VpcConfig?: RecommendationJobVpcConfig | undefined;
1477
1481
  }
1478
1482
  export declare const RecommendationJobType: {
1479
1483
  readonly ADVANCED: "Advanced";
@@ -1482,11 +1486,11 @@ export declare const RecommendationJobType: {
1482
1486
  export type RecommendationJobType =
1483
1487
  (typeof RecommendationJobType)[keyof typeof RecommendationJobType];
1484
1488
  export interface RecommendationJobCompiledOutputConfig {
1485
- S3OutputUri?: string;
1489
+ S3OutputUri?: string | undefined;
1486
1490
  }
1487
1491
  export interface RecommendationJobOutputConfig {
1488
- KmsKeyId?: string;
1489
- CompiledOutputConfig?: RecommendationJobCompiledOutputConfig;
1492
+ KmsKeyId?: string | undefined;
1493
+ CompiledOutputConfig?: RecommendationJobCompiledOutputConfig | undefined;
1490
1494
  }
1491
1495
  export declare const FlatInvocations: {
1492
1496
  readonly CONTINUE: "Continue";
@@ -1495,47 +1499,47 @@ export declare const FlatInvocations: {
1495
1499
  export type FlatInvocations =
1496
1500
  (typeof FlatInvocations)[keyof typeof FlatInvocations];
1497
1501
  export interface ModelLatencyThreshold {
1498
- Percentile?: string;
1499
- ValueInMilliseconds?: number;
1502
+ Percentile?: string | undefined;
1503
+ ValueInMilliseconds?: number | undefined;
1500
1504
  }
1501
1505
  export interface RecommendationJobStoppingConditions {
1502
- MaxInvocations?: number;
1503
- ModelLatencyThresholds?: ModelLatencyThreshold[];
1504
- FlatInvocations?: FlatInvocations;
1506
+ MaxInvocations?: number | undefined;
1507
+ ModelLatencyThresholds?: ModelLatencyThreshold[] | undefined;
1508
+ FlatInvocations?: FlatInvocations | undefined;
1505
1509
  }
1506
1510
  export interface CreateInferenceRecommendationsJobRequest {
1507
1511
  JobName: string | undefined;
1508
1512
  JobType: RecommendationJobType | undefined;
1509
1513
  RoleArn: string | undefined;
1510
1514
  InputConfig: RecommendationJobInputConfig | undefined;
1511
- JobDescription?: string;
1512
- StoppingConditions?: RecommendationJobStoppingConditions;
1513
- OutputConfig?: RecommendationJobOutputConfig;
1514
- Tags?: Tag[];
1515
+ JobDescription?: string | undefined;
1516
+ StoppingConditions?: RecommendationJobStoppingConditions | undefined;
1517
+ OutputConfig?: RecommendationJobOutputConfig | undefined;
1518
+ Tags?: Tag[] | undefined;
1515
1519
  }
1516
1520
  export interface CreateInferenceRecommendationsJobResponse {
1517
1521
  JobArn: string | undefined;
1518
1522
  }
1519
1523
  export interface UiConfig {
1520
- UiTemplateS3Uri?: string;
1521
- HumanTaskUiArn?: string;
1524
+ UiTemplateS3Uri?: string | undefined;
1525
+ HumanTaskUiArn?: string | undefined;
1522
1526
  }
1523
1527
  export interface HumanTaskConfig {
1524
1528
  WorkteamArn: string | undefined;
1525
1529
  UiConfig: UiConfig | undefined;
1526
- PreHumanTaskLambdaArn?: string;
1527
- TaskKeywords?: string[];
1530
+ PreHumanTaskLambdaArn?: string | undefined;
1531
+ TaskKeywords?: string[] | undefined;
1528
1532
  TaskTitle: string | undefined;
1529
1533
  TaskDescription: string | undefined;
1530
1534
  NumberOfHumanWorkersPerDataObject: number | undefined;
1531
1535
  TaskTimeLimitInSeconds: number | undefined;
1532
- TaskAvailabilityLifetimeInSeconds?: number;
1533
- MaxConcurrentTaskCount?: number;
1534
- AnnotationConsolidationConfig?: AnnotationConsolidationConfig;
1535
- PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice;
1536
+ TaskAvailabilityLifetimeInSeconds?: number | undefined;
1537
+ MaxConcurrentTaskCount?: number | undefined;
1538
+ AnnotationConsolidationConfig?: AnnotationConsolidationConfig | undefined;
1539
+ PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice | undefined;
1536
1540
  }
1537
1541
  export interface LabelingJobDataAttributes {
1538
- ContentClassifiers?: ContentClassifier[];
1542
+ ContentClassifiers?: ContentClassifier[] | undefined;
1539
1543
  }
1540
1544
  export interface LabelingJobS3DataSource {
1541
1545
  ManifestS3Uri: string | undefined;
@@ -1544,30 +1548,30 @@ export interface LabelingJobSnsDataSource {
1544
1548
  SnsTopicArn: string | undefined;
1545
1549
  }
1546
1550
  export interface LabelingJobDataSource {
1547
- S3DataSource?: LabelingJobS3DataSource;
1548
- SnsDataSource?: LabelingJobSnsDataSource;
1551
+ S3DataSource?: LabelingJobS3DataSource | undefined;
1552
+ SnsDataSource?: LabelingJobSnsDataSource | undefined;
1549
1553
  }
1550
1554
  export interface LabelingJobInputConfig {
1551
1555
  DataSource: LabelingJobDataSource | undefined;
1552
- DataAttributes?: LabelingJobDataAttributes;
1556
+ DataAttributes?: LabelingJobDataAttributes | undefined;
1553
1557
  }
1554
1558
  export interface LabelingJobResourceConfig {
1555
- VolumeKmsKeyId?: string;
1556
- VpcConfig?: VpcConfig;
1559
+ VolumeKmsKeyId?: string | undefined;
1560
+ VpcConfig?: VpcConfig | undefined;
1557
1561
  }
1558
1562
  export interface LabelingJobAlgorithmsConfig {
1559
1563
  LabelingJobAlgorithmSpecificationArn: string | undefined;
1560
- InitialActiveLearningModelArn?: string;
1561
- LabelingJobResourceConfig?: LabelingJobResourceConfig;
1564
+ InitialActiveLearningModelArn?: string | undefined;
1565
+ LabelingJobResourceConfig?: LabelingJobResourceConfig | undefined;
1562
1566
  }
1563
1567
  export interface LabelingJobOutputConfig {
1564
1568
  S3OutputPath: string | undefined;
1565
- KmsKeyId?: string;
1566
- SnsTopicArn?: string;
1569
+ KmsKeyId?: string | undefined;
1570
+ SnsTopicArn?: string | undefined;
1567
1571
  }
1568
1572
  export interface LabelingJobStoppingConditions {
1569
- MaxHumanLabeledObjectCount?: number;
1570
- MaxPercentageOfInputDatasetLabeled?: number;
1573
+ MaxHumanLabeledObjectCount?: number | undefined;
1574
+ MaxPercentageOfInputDatasetLabeled?: number | undefined;
1571
1575
  }
1572
1576
  export interface CreateLabelingJobRequest {
1573
1577
  LabelingJobName: string | undefined;
@@ -1575,11 +1579,11 @@ export interface CreateLabelingJobRequest {
1575
1579
  InputConfig: LabelingJobInputConfig | undefined;
1576
1580
  OutputConfig: LabelingJobOutputConfig | undefined;
1577
1581
  RoleArn: string | undefined;
1578
- LabelCategoryConfigS3Uri?: string;
1579
- StoppingConditions?: LabelingJobStoppingConditions;
1580
- LabelingJobAlgorithmsConfig?: LabelingJobAlgorithmsConfig;
1582
+ LabelCategoryConfigS3Uri?: string | undefined;
1583
+ StoppingConditions?: LabelingJobStoppingConditions | undefined;
1584
+ LabelingJobAlgorithmsConfig?: LabelingJobAlgorithmsConfig | undefined;
1581
1585
  HumanTaskConfig: HumanTaskConfig | undefined;
1582
- Tags?: Tag[];
1586
+ Tags?: Tag[] | undefined;
1583
1587
  }
1584
1588
  export interface CreateLabelingJobResponse {
1585
1589
  LabelingJobArn: string | undefined;
@@ -1594,15 +1598,15 @@ export type TrackingServerSize =
1594
1598
  export interface CreateMlflowTrackingServerRequest {
1595
1599
  TrackingServerName: string | undefined;
1596
1600
  ArtifactStoreUri: string | undefined;
1597
- TrackingServerSize?: TrackingServerSize;
1598
- MlflowVersion?: string;
1601
+ TrackingServerSize?: TrackingServerSize | undefined;
1602
+ MlflowVersion?: string | undefined;
1599
1603
  RoleArn: string | undefined;
1600
- AutomaticModelRegistration?: boolean;
1601
- WeeklyMaintenanceWindowStart?: string;
1602
- Tags?: Tag[];
1604
+ AutomaticModelRegistration?: boolean | undefined;
1605
+ WeeklyMaintenanceWindowStart?: string | undefined;
1606
+ Tags?: Tag[] | undefined;
1603
1607
  }
1604
1608
  export interface CreateMlflowTrackingServerResponse {
1605
- TrackingServerArn?: string;
1609
+ TrackingServerArn?: string | undefined;
1606
1610
  }
1607
1611
  export declare const InferenceExecutionMode: {
1608
1612
  readonly DIRECT: "Direct";
@@ -1615,13 +1619,13 @@ export interface InferenceExecutionConfig {
1615
1619
  }
1616
1620
  export interface CreateModelInput {
1617
1621
  ModelName: string | undefined;
1618
- PrimaryContainer?: ContainerDefinition;
1619
- Containers?: ContainerDefinition[];
1620
- InferenceExecutionConfig?: InferenceExecutionConfig;
1621
- ExecutionRoleArn?: string;
1622
- Tags?: Tag[];
1623
- VpcConfig?: VpcConfig;
1624
- EnableNetworkIsolation?: boolean;
1622
+ PrimaryContainer?: ContainerDefinition | undefined;
1623
+ Containers?: ContainerDefinition[] | undefined;
1624
+ InferenceExecutionConfig?: InferenceExecutionConfig | undefined;
1625
+ ExecutionRoleArn?: string | undefined;
1626
+ Tags?: Tag[] | undefined;
1627
+ VpcConfig?: VpcConfig | undefined;
1628
+ EnableNetworkIsolation?: boolean | undefined;
1625
1629
  }
1626
1630
  export interface CreateModelOutput {
1627
1631
  ModelArn: string | undefined;
@@ -1629,31 +1633,31 @@ export interface CreateModelOutput {
1629
1633
  export interface ModelBiasAppSpecification {
1630
1634
  ImageUri: string | undefined;
1631
1635
  ConfigUri: string | undefined;
1632
- Environment?: Record<string, string>;
1636
+ Environment?: Record<string, string> | undefined;
1633
1637
  }
1634
1638
  export interface ModelBiasBaselineConfig {
1635
- BaseliningJobName?: string;
1636
- ConstraintsResource?: MonitoringConstraintsResource;
1639
+ BaseliningJobName?: string | undefined;
1640
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
1637
1641
  }
1638
1642
  export interface MonitoringGroundTruthS3Input {
1639
- S3Uri?: string;
1643
+ S3Uri?: string | undefined;
1640
1644
  }
1641
1645
  export interface ModelBiasJobInput {
1642
- EndpointInput?: EndpointInput;
1643
- BatchTransformInput?: BatchTransformInput;
1646
+ EndpointInput?: EndpointInput | undefined;
1647
+ BatchTransformInput?: BatchTransformInput | undefined;
1644
1648
  GroundTruthS3Input: MonitoringGroundTruthS3Input | undefined;
1645
1649
  }
1646
1650
  export interface CreateModelBiasJobDefinitionRequest {
1647
1651
  JobDefinitionName: string | undefined;
1648
- ModelBiasBaselineConfig?: ModelBiasBaselineConfig;
1652
+ ModelBiasBaselineConfig?: ModelBiasBaselineConfig | undefined;
1649
1653
  ModelBiasAppSpecification: ModelBiasAppSpecification | undefined;
1650
1654
  ModelBiasJobInput: ModelBiasJobInput | undefined;
1651
1655
  ModelBiasJobOutputConfig: MonitoringOutputConfig | undefined;
1652
1656
  JobResources: MonitoringResources | undefined;
1653
- NetworkConfig?: MonitoringNetworkConfig;
1657
+ NetworkConfig?: MonitoringNetworkConfig | undefined;
1654
1658
  RoleArn: string | undefined;
1655
- StoppingCondition?: MonitoringStoppingCondition;
1656
- Tags?: Tag[];
1659
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
1660
+ Tags?: Tag[] | undefined;
1657
1661
  }
1658
1662
  export interface CreateModelBiasJobDefinitionResponse {
1659
1663
  JobDefinitionArn: string | undefined;
@@ -1667,14 +1671,14 @@ export declare const ModelCardStatus: {
1667
1671
  export type ModelCardStatus =
1668
1672
  (typeof ModelCardStatus)[keyof typeof ModelCardStatus];
1669
1673
  export interface ModelCardSecurityConfig {
1670
- KmsKeyId?: string;
1674
+ KmsKeyId?: string | undefined;
1671
1675
  }
1672
1676
  export interface CreateModelCardRequest {
1673
1677
  ModelCardName: string | undefined;
1674
- SecurityConfig?: ModelCardSecurityConfig;
1678
+ SecurityConfig?: ModelCardSecurityConfig | undefined;
1675
1679
  Content: string | undefined;
1676
1680
  ModelCardStatus: ModelCardStatus | undefined;
1677
- Tags?: Tag[];
1681
+ Tags?: Tag[] | undefined;
1678
1682
  }
1679
1683
  export interface CreateModelCardResponse {
1680
1684
  ModelCardArn: string | undefined;
@@ -1684,7 +1688,7 @@ export interface ModelCardExportOutputConfig {
1684
1688
  }
1685
1689
  export interface CreateModelCardExportJobRequest {
1686
1690
  ModelCardName: string | undefined;
1687
- ModelCardVersion?: number;
1691
+ ModelCardVersion?: number | undefined;
1688
1692
  ModelCardExportJobName: string | undefined;
1689
1693
  OutputConfig: ModelCardExportOutputConfig | undefined;
1690
1694
  }
@@ -1694,86 +1698,88 @@ export interface CreateModelCardExportJobResponse {
1694
1698
  export interface ModelExplainabilityAppSpecification {
1695
1699
  ImageUri: string | undefined;
1696
1700
  ConfigUri: string | undefined;
1697
- Environment?: Record<string, string>;
1701
+ Environment?: Record<string, string> | undefined;
1698
1702
  }
1699
1703
  export interface ModelExplainabilityBaselineConfig {
1700
- BaseliningJobName?: string;
1701
- ConstraintsResource?: MonitoringConstraintsResource;
1704
+ BaseliningJobName?: string | undefined;
1705
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
1702
1706
  }
1703
1707
  export interface ModelExplainabilityJobInput {
1704
- EndpointInput?: EndpointInput;
1705
- BatchTransformInput?: BatchTransformInput;
1708
+ EndpointInput?: EndpointInput | undefined;
1709
+ BatchTransformInput?: BatchTransformInput | undefined;
1706
1710
  }
1707
1711
  export interface CreateModelExplainabilityJobDefinitionRequest {
1708
1712
  JobDefinitionName: string | undefined;
1709
- ModelExplainabilityBaselineConfig?: ModelExplainabilityBaselineConfig;
1713
+ ModelExplainabilityBaselineConfig?:
1714
+ | ModelExplainabilityBaselineConfig
1715
+ | undefined;
1710
1716
  ModelExplainabilityAppSpecification:
1711
1717
  | ModelExplainabilityAppSpecification
1712
1718
  | undefined;
1713
1719
  ModelExplainabilityJobInput: ModelExplainabilityJobInput | undefined;
1714
1720
  ModelExplainabilityJobOutputConfig: MonitoringOutputConfig | undefined;
1715
1721
  JobResources: MonitoringResources | undefined;
1716
- NetworkConfig?: MonitoringNetworkConfig;
1722
+ NetworkConfig?: MonitoringNetworkConfig | undefined;
1717
1723
  RoleArn: string | undefined;
1718
- StoppingCondition?: MonitoringStoppingCondition;
1719
- Tags?: Tag[];
1724
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
1725
+ Tags?: Tag[] | undefined;
1720
1726
  }
1721
1727
  export interface CreateModelExplainabilityJobDefinitionResponse {
1722
1728
  JobDefinitionArn: string | undefined;
1723
1729
  }
1724
1730
  export interface FileSource {
1725
- ContentType?: string;
1726
- ContentDigest?: string;
1731
+ ContentType?: string | undefined;
1732
+ ContentDigest?: string | undefined;
1727
1733
  S3Uri: string | undefined;
1728
1734
  }
1729
1735
  export interface DriftCheckBias {
1730
- ConfigFile?: FileSource;
1731
- PreTrainingConstraints?: MetricsSource;
1732
- PostTrainingConstraints?: MetricsSource;
1736
+ ConfigFile?: FileSource | undefined;
1737
+ PreTrainingConstraints?: MetricsSource | undefined;
1738
+ PostTrainingConstraints?: MetricsSource | undefined;
1733
1739
  }
1734
1740
  export interface DriftCheckExplainability {
1735
- Constraints?: MetricsSource;
1736
- ConfigFile?: FileSource;
1741
+ Constraints?: MetricsSource | undefined;
1742
+ ConfigFile?: FileSource | undefined;
1737
1743
  }
1738
1744
  export interface DriftCheckModelDataQuality {
1739
- Statistics?: MetricsSource;
1740
- Constraints?: MetricsSource;
1745
+ Statistics?: MetricsSource | undefined;
1746
+ Constraints?: MetricsSource | undefined;
1741
1747
  }
1742
1748
  export interface DriftCheckModelQuality {
1743
- Statistics?: MetricsSource;
1744
- Constraints?: MetricsSource;
1749
+ Statistics?: MetricsSource | undefined;
1750
+ Constraints?: MetricsSource | undefined;
1745
1751
  }
1746
1752
  export interface DriftCheckBaselines {
1747
- Bias?: DriftCheckBias;
1748
- Explainability?: DriftCheckExplainability;
1749
- ModelQuality?: DriftCheckModelQuality;
1750
- ModelDataQuality?: DriftCheckModelDataQuality;
1753
+ Bias?: DriftCheckBias | undefined;
1754
+ Explainability?: DriftCheckExplainability | undefined;
1755
+ ModelQuality?: DriftCheckModelQuality | undefined;
1756
+ ModelDataQuality?: DriftCheckModelDataQuality | undefined;
1751
1757
  }
1752
1758
  export interface ModelPackageModelCard {
1753
- ModelCardContent?: string;
1754
- ModelCardStatus?: ModelCardStatus;
1759
+ ModelCardContent?: string | undefined;
1760
+ ModelCardStatus?: ModelCardStatus | undefined;
1755
1761
  }
1756
1762
  export interface ModelLifeCycle {
1757
1763
  Stage: string | undefined;
1758
1764
  StageStatus: string | undefined;
1759
- StageDescription?: string;
1765
+ StageDescription?: string | undefined;
1760
1766
  }
1761
1767
  export interface Explainability {
1762
- Report?: MetricsSource;
1768
+ Report?: MetricsSource | undefined;
1763
1769
  }
1764
1770
  export interface ModelDataQuality {
1765
- Statistics?: MetricsSource;
1766
- Constraints?: MetricsSource;
1771
+ Statistics?: MetricsSource | undefined;
1772
+ Constraints?: MetricsSource | undefined;
1767
1773
  }
1768
1774
  export interface ModelQuality {
1769
- Statistics?: MetricsSource;
1770
- Constraints?: MetricsSource;
1775
+ Statistics?: MetricsSource | undefined;
1776
+ Constraints?: MetricsSource | undefined;
1771
1777
  }
1772
1778
  export interface ModelMetrics {
1773
- ModelQuality?: ModelQuality;
1774
- ModelDataQuality?: ModelDataQuality;
1775
- Bias?: Bias;
1776
- Explainability?: Explainability;
1779
+ ModelQuality?: ModelQuality | undefined;
1780
+ ModelDataQuality?: ModelDataQuality | undefined;
1781
+ Bias?: Bias | undefined;
1782
+ Explainability?: Explainability | undefined;
1777
1783
  }
1778
1784
  export interface ModelPackageSecurityConfig {
1779
1785
  KmsKeyId: string | undefined;
@@ -1785,8 +1791,8 @@ export declare const SkipModelValidation: {
1785
1791
  export type SkipModelValidation =
1786
1792
  (typeof SkipModelValidation)[keyof typeof SkipModelValidation];
1787
1793
  export interface SourceAlgorithm {
1788
- ModelDataUrl?: string;
1789
- ModelDataSource?: ModelDataSource;
1794
+ ModelDataUrl?: string | undefined;
1795
+ ModelDataSource?: ModelDataSource | undefined;
1790
1796
  AlgorithmName: string | undefined;
1791
1797
  }
1792
1798
  export interface SourceAlgorithmSpecification {
@@ -1801,37 +1807,39 @@ export interface ModelPackageValidationSpecification {
1801
1807
  ValidationProfiles: ModelPackageValidationProfile[] | undefined;
1802
1808
  }
1803
1809
  export interface CreateModelPackageInput {
1804
- ModelPackageName?: string;
1805
- ModelPackageGroupName?: string;
1806
- ModelPackageDescription?: string;
1807
- InferenceSpecification?: InferenceSpecification;
1808
- ValidationSpecification?: ModelPackageValidationSpecification;
1809
- SourceAlgorithmSpecification?: SourceAlgorithmSpecification;
1810
- CertifyForMarketplace?: boolean;
1811
- Tags?: Tag[];
1812
- ModelApprovalStatus?: ModelApprovalStatus;
1813
- MetadataProperties?: MetadataProperties;
1814
- ModelMetrics?: ModelMetrics;
1815
- ClientToken?: string;
1816
- Domain?: string;
1817
- Task?: string;
1818
- SamplePayloadUrl?: string;
1819
- CustomerMetadataProperties?: Record<string, string>;
1820
- DriftCheckBaselines?: DriftCheckBaselines;
1821
- AdditionalInferenceSpecifications?: AdditionalInferenceSpecificationDefinition[];
1822
- SkipModelValidation?: SkipModelValidation;
1823
- SourceUri?: string;
1824
- SecurityConfig?: ModelPackageSecurityConfig;
1825
- ModelCard?: ModelPackageModelCard;
1826
- ModelLifeCycle?: ModelLifeCycle;
1810
+ ModelPackageName?: string | undefined;
1811
+ ModelPackageGroupName?: string | undefined;
1812
+ ModelPackageDescription?: string | undefined;
1813
+ InferenceSpecification?: InferenceSpecification | undefined;
1814
+ ValidationSpecification?: ModelPackageValidationSpecification | undefined;
1815
+ SourceAlgorithmSpecification?: SourceAlgorithmSpecification | undefined;
1816
+ CertifyForMarketplace?: boolean | undefined;
1817
+ Tags?: Tag[] | undefined;
1818
+ ModelApprovalStatus?: ModelApprovalStatus | undefined;
1819
+ MetadataProperties?: MetadataProperties | undefined;
1820
+ ModelMetrics?: ModelMetrics | undefined;
1821
+ ClientToken?: string | undefined;
1822
+ Domain?: string | undefined;
1823
+ Task?: string | undefined;
1824
+ SamplePayloadUrl?: string | undefined;
1825
+ CustomerMetadataProperties?: Record<string, string> | undefined;
1826
+ DriftCheckBaselines?: DriftCheckBaselines | undefined;
1827
+ AdditionalInferenceSpecifications?:
1828
+ | AdditionalInferenceSpecificationDefinition[]
1829
+ | undefined;
1830
+ SkipModelValidation?: SkipModelValidation | undefined;
1831
+ SourceUri?: string | undefined;
1832
+ SecurityConfig?: ModelPackageSecurityConfig | undefined;
1833
+ ModelCard?: ModelPackageModelCard | undefined;
1834
+ ModelLifeCycle?: ModelLifeCycle | undefined;
1827
1835
  }
1828
1836
  export interface CreateModelPackageOutput {
1829
1837
  ModelPackageArn: string | undefined;
1830
1838
  }
1831
1839
  export interface CreateModelPackageGroupInput {
1832
1840
  ModelPackageGroupName: string | undefined;
1833
- ModelPackageGroupDescription?: string;
1834
- Tags?: Tag[];
1841
+ ModelPackageGroupDescription?: string | undefined;
1842
+ Tags?: Tag[] | undefined;
1835
1843
  }
1836
1844
  export interface CreateModelPackageGroupOutput {
1837
1845
  ModelPackageGroupArn: string | undefined;
@@ -1845,67 +1853,67 @@ export type MonitoringProblemType =
1845
1853
  (typeof MonitoringProblemType)[keyof typeof MonitoringProblemType];
1846
1854
  export interface ModelQualityAppSpecification {
1847
1855
  ImageUri: string | undefined;
1848
- ContainerEntrypoint?: string[];
1849
- ContainerArguments?: string[];
1850
- RecordPreprocessorSourceUri?: string;
1851
- PostAnalyticsProcessorSourceUri?: string;
1852
- ProblemType?: MonitoringProblemType;
1853
- Environment?: Record<string, string>;
1856
+ ContainerEntrypoint?: string[] | undefined;
1857
+ ContainerArguments?: string[] | undefined;
1858
+ RecordPreprocessorSourceUri?: string | undefined;
1859
+ PostAnalyticsProcessorSourceUri?: string | undefined;
1860
+ ProblemType?: MonitoringProblemType | undefined;
1861
+ Environment?: Record<string, string> | undefined;
1854
1862
  }
1855
1863
  export interface ModelQualityBaselineConfig {
1856
- BaseliningJobName?: string;
1857
- ConstraintsResource?: MonitoringConstraintsResource;
1864
+ BaseliningJobName?: string | undefined;
1865
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
1858
1866
  }
1859
1867
  export interface ModelQualityJobInput {
1860
- EndpointInput?: EndpointInput;
1861
- BatchTransformInput?: BatchTransformInput;
1868
+ EndpointInput?: EndpointInput | undefined;
1869
+ BatchTransformInput?: BatchTransformInput | undefined;
1862
1870
  GroundTruthS3Input: MonitoringGroundTruthS3Input | undefined;
1863
1871
  }
1864
1872
  export interface CreateModelQualityJobDefinitionRequest {
1865
1873
  JobDefinitionName: string | undefined;
1866
- ModelQualityBaselineConfig?: ModelQualityBaselineConfig;
1874
+ ModelQualityBaselineConfig?: ModelQualityBaselineConfig | undefined;
1867
1875
  ModelQualityAppSpecification: ModelQualityAppSpecification | undefined;
1868
1876
  ModelQualityJobInput: ModelQualityJobInput | undefined;
1869
1877
  ModelQualityJobOutputConfig: MonitoringOutputConfig | undefined;
1870
1878
  JobResources: MonitoringResources | undefined;
1871
- NetworkConfig?: MonitoringNetworkConfig;
1879
+ NetworkConfig?: MonitoringNetworkConfig | undefined;
1872
1880
  RoleArn: string | undefined;
1873
- StoppingCondition?: MonitoringStoppingCondition;
1874
- Tags?: Tag[];
1881
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
1882
+ Tags?: Tag[] | undefined;
1875
1883
  }
1876
1884
  export interface CreateModelQualityJobDefinitionResponse {
1877
1885
  JobDefinitionArn: string | undefined;
1878
1886
  }
1879
1887
  export interface MonitoringBaselineConfig {
1880
- BaseliningJobName?: string;
1881
- ConstraintsResource?: MonitoringConstraintsResource;
1882
- StatisticsResource?: MonitoringStatisticsResource;
1888
+ BaseliningJobName?: string | undefined;
1889
+ ConstraintsResource?: MonitoringConstraintsResource | undefined;
1890
+ StatisticsResource?: MonitoringStatisticsResource | undefined;
1883
1891
  }
1884
1892
  export interface MonitoringAppSpecification {
1885
1893
  ImageUri: string | undefined;
1886
- ContainerEntrypoint?: string[];
1887
- ContainerArguments?: string[];
1888
- RecordPreprocessorSourceUri?: string;
1889
- PostAnalyticsProcessorSourceUri?: string;
1894
+ ContainerEntrypoint?: string[] | undefined;
1895
+ ContainerArguments?: string[] | undefined;
1896
+ RecordPreprocessorSourceUri?: string | undefined;
1897
+ PostAnalyticsProcessorSourceUri?: string | undefined;
1890
1898
  }
1891
1899
  export interface MonitoringInput {
1892
- EndpointInput?: EndpointInput;
1893
- BatchTransformInput?: BatchTransformInput;
1900
+ EndpointInput?: EndpointInput | undefined;
1901
+ BatchTransformInput?: BatchTransformInput | undefined;
1894
1902
  }
1895
1903
  export interface NetworkConfig {
1896
- EnableInterContainerTrafficEncryption?: boolean;
1897
- EnableNetworkIsolation?: boolean;
1898
- VpcConfig?: VpcConfig;
1904
+ EnableInterContainerTrafficEncryption?: boolean | undefined;
1905
+ EnableNetworkIsolation?: boolean | undefined;
1906
+ VpcConfig?: VpcConfig | undefined;
1899
1907
  }
1900
1908
  export interface MonitoringJobDefinition {
1901
- BaselineConfig?: MonitoringBaselineConfig;
1909
+ BaselineConfig?: MonitoringBaselineConfig | undefined;
1902
1910
  MonitoringInputs: MonitoringInput[] | undefined;
1903
1911
  MonitoringOutputConfig: MonitoringOutputConfig | undefined;
1904
1912
  MonitoringResources: MonitoringResources | undefined;
1905
1913
  MonitoringAppSpecification: MonitoringAppSpecification | undefined;
1906
- StoppingCondition?: MonitoringStoppingCondition;
1907
- Environment?: Record<string, string>;
1908
- NetworkConfig?: NetworkConfig;
1914
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
1915
+ Environment?: Record<string, string> | undefined;
1916
+ NetworkConfig?: NetworkConfig | undefined;
1909
1917
  RoleArn: string | undefined;
1910
1918
  }
1911
1919
  export declare const MonitoringType: {
@@ -1918,19 +1926,19 @@ export type MonitoringType =
1918
1926
  (typeof MonitoringType)[keyof typeof MonitoringType];
1919
1927
  export interface ScheduleConfig {
1920
1928
  ScheduleExpression: string | undefined;
1921
- DataAnalysisStartTime?: string;
1922
- DataAnalysisEndTime?: string;
1929
+ DataAnalysisStartTime?: string | undefined;
1930
+ DataAnalysisEndTime?: string | undefined;
1923
1931
  }
1924
1932
  export interface MonitoringScheduleConfig {
1925
- ScheduleConfig?: ScheduleConfig;
1926
- MonitoringJobDefinition?: MonitoringJobDefinition;
1927
- MonitoringJobDefinitionName?: string;
1928
- MonitoringType?: MonitoringType;
1933
+ ScheduleConfig?: ScheduleConfig | undefined;
1934
+ MonitoringJobDefinition?: MonitoringJobDefinition | undefined;
1935
+ MonitoringJobDefinitionName?: string | undefined;
1936
+ MonitoringType?: MonitoringType | undefined;
1929
1937
  }
1930
1938
  export interface CreateMonitoringScheduleRequest {
1931
1939
  MonitoringScheduleName: string | undefined;
1932
1940
  MonitoringScheduleConfig: MonitoringScheduleConfig | undefined;
1933
- Tags?: Tag[];
1941
+ Tags?: Tag[] | undefined;
1934
1942
  }
1935
1943
  export interface CreateMonitoringScheduleResponse {
1936
1944
  MonitoringScheduleArn: string | undefined;
@@ -1962,34 +1970,36 @@ export type RootAccess = (typeof RootAccess)[keyof typeof RootAccess];
1962
1970
  export interface CreateNotebookInstanceInput {
1963
1971
  NotebookInstanceName: string | undefined;
1964
1972
  InstanceType: _InstanceType | undefined;
1965
- SubnetId?: string;
1966
- SecurityGroupIds?: string[];
1973
+ SubnetId?: string | undefined;
1974
+ SecurityGroupIds?: string[] | undefined;
1967
1975
  RoleArn: string | undefined;
1968
- KmsKeyId?: string;
1969
- Tags?: Tag[];
1970
- LifecycleConfigName?: string;
1971
- DirectInternetAccess?: DirectInternetAccess;
1972
- VolumeSizeInGB?: number;
1973
- AcceleratorTypes?: NotebookInstanceAcceleratorType[];
1974
- DefaultCodeRepository?: string;
1975
- AdditionalCodeRepositories?: string[];
1976
- RootAccess?: RootAccess;
1977
- PlatformIdentifier?: string;
1978
- InstanceMetadataServiceConfiguration?: InstanceMetadataServiceConfiguration;
1976
+ KmsKeyId?: string | undefined;
1977
+ Tags?: Tag[] | undefined;
1978
+ LifecycleConfigName?: string | undefined;
1979
+ DirectInternetAccess?: DirectInternetAccess | undefined;
1980
+ VolumeSizeInGB?: number | undefined;
1981
+ AcceleratorTypes?: NotebookInstanceAcceleratorType[] | undefined;
1982
+ DefaultCodeRepository?: string | undefined;
1983
+ AdditionalCodeRepositories?: string[] | undefined;
1984
+ RootAccess?: RootAccess | undefined;
1985
+ PlatformIdentifier?: string | undefined;
1986
+ InstanceMetadataServiceConfiguration?:
1987
+ | InstanceMetadataServiceConfiguration
1988
+ | undefined;
1979
1989
  }
1980
1990
  export interface CreateNotebookInstanceOutput {
1981
- NotebookInstanceArn?: string;
1991
+ NotebookInstanceArn?: string | undefined;
1982
1992
  }
1983
1993
  export interface NotebookInstanceLifecycleHook {
1984
- Content?: string;
1994
+ Content?: string | undefined;
1985
1995
  }
1986
1996
  export interface CreateNotebookInstanceLifecycleConfigInput {
1987
1997
  NotebookInstanceLifecycleConfigName: string | undefined;
1988
- OnCreate?: NotebookInstanceLifecycleHook[];
1989
- OnStart?: NotebookInstanceLifecycleHook[];
1998
+ OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
1999
+ OnStart?: NotebookInstanceLifecycleHook[] | undefined;
1990
2000
  }
1991
2001
  export interface CreateNotebookInstanceLifecycleConfigOutput {
1992
- NotebookInstanceLifecycleConfigArn?: string;
2002
+ NotebookInstanceLifecycleConfigArn?: string | undefined;
1993
2003
  }
1994
2004
  export declare const OptimizationJobDeploymentInstanceType: {
1995
2005
  readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
@@ -2025,19 +2035,19 @@ export interface OptimizationModelAccessConfig {
2025
2035
  AcceptEula: boolean | undefined;
2026
2036
  }
2027
2037
  export interface OptimizationJobModelSourceS3 {
2028
- S3Uri?: string;
2029
- ModelAccessConfig?: OptimizationModelAccessConfig;
2038
+ S3Uri?: string | undefined;
2039
+ ModelAccessConfig?: OptimizationModelAccessConfig | undefined;
2030
2040
  }
2031
2041
  export interface OptimizationJobModelSource {
2032
- S3?: OptimizationJobModelSourceS3;
2042
+ S3?: OptimizationJobModelSourceS3 | undefined;
2033
2043
  }
2034
2044
  export interface ModelCompilationConfig {
2035
- Image?: string;
2036
- OverrideEnvironment?: Record<string, string>;
2045
+ Image?: string | undefined;
2046
+ OverrideEnvironment?: Record<string, string> | undefined;
2037
2047
  }
2038
2048
  export interface ModelQuantizationConfig {
2039
- Image?: string;
2040
- OverrideEnvironment?: Record<string, string>;
2049
+ Image?: string | undefined;
2050
+ OverrideEnvironment?: Record<string, string> | undefined;
2041
2051
  }
2042
2052
  export type OptimizationConfig =
2043
2053
  | OptimizationConfig.ModelCompilationConfigMember
@@ -2067,7 +2077,7 @@ export declare namespace OptimizationConfig {
2067
2077
  const visit: <T>(value: OptimizationConfig, visitor: Visitor<T>) => T;
2068
2078
  }
2069
2079
  export interface OptimizationJobOutputConfig {
2070
- KmsKeyId?: string;
2080
+ KmsKeyId?: string | undefined;
2071
2081
  S3OutputLocation: string | undefined;
2072
2082
  }
2073
2083
  export interface OptimizationVpcConfig {
@@ -2079,12 +2089,12 @@ export interface CreateOptimizationJobRequest {
2079
2089
  RoleArn: string | undefined;
2080
2090
  ModelSource: OptimizationJobModelSource | undefined;
2081
2091
  DeploymentInstanceType: OptimizationJobDeploymentInstanceType | undefined;
2082
- OptimizationEnvironment?: Record<string, string>;
2092
+ OptimizationEnvironment?: Record<string, string> | undefined;
2083
2093
  OptimizationConfigs: OptimizationConfig[] | undefined;
2084
2094
  OutputConfig: OptimizationJobOutputConfig | undefined;
2085
2095
  StoppingCondition: StoppingCondition | undefined;
2086
- Tags?: Tag[];
2087
- VpcConfig?: OptimizationVpcConfig;
2096
+ Tags?: Tag[] | undefined;
2097
+ VpcConfig?: OptimizationVpcConfig | undefined;
2088
2098
  }
2089
2099
  export declare const CreateModelCardRequestFilterSensitiveLog: (
2090
2100
  obj: CreateModelCardRequest