@aws-sdk/client-sagemaker 3.686.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.
@@ -141,53 +141,53 @@ export interface ParallelismConfiguration {
141
141
  export interface PipelineDefinitionS3Location {
142
142
  Bucket: string | undefined;
143
143
  ObjectKey: string | undefined;
144
- VersionId?: string;
144
+ VersionId?: string | undefined;
145
145
  }
146
146
  export interface CreatePipelineRequest {
147
147
  PipelineName: string | undefined;
148
- PipelineDisplayName?: string;
149
- PipelineDefinition?: string;
150
- PipelineDefinitionS3Location?: PipelineDefinitionS3Location;
151
- PipelineDescription?: string;
152
- ClientRequestToken?: string;
148
+ PipelineDisplayName?: string | undefined;
149
+ PipelineDefinition?: string | undefined;
150
+ PipelineDefinitionS3Location?: PipelineDefinitionS3Location | undefined;
151
+ PipelineDescription?: string | undefined;
152
+ ClientRequestToken?: string | undefined;
153
153
  RoleArn: string | undefined;
154
- Tags?: Tag[];
155
- ParallelismConfiguration?: ParallelismConfiguration;
154
+ Tags?: Tag[] | undefined;
155
+ ParallelismConfiguration?: ParallelismConfiguration | undefined;
156
156
  }
157
157
  export interface CreatePipelineResponse {
158
- PipelineArn?: string;
158
+ PipelineArn?: string | undefined;
159
159
  }
160
160
  export interface CreatePresignedDomainUrlRequest {
161
161
  DomainId: string | undefined;
162
162
  UserProfileName: string | undefined;
163
- SessionExpirationDurationInSeconds?: number;
164
- ExpiresInSeconds?: number;
165
- SpaceName?: string;
166
- LandingUri?: string;
163
+ SessionExpirationDurationInSeconds?: number | undefined;
164
+ ExpiresInSeconds?: number | undefined;
165
+ SpaceName?: string | undefined;
166
+ LandingUri?: string | undefined;
167
167
  }
168
168
  export interface CreatePresignedDomainUrlResponse {
169
- AuthorizedUrl?: string;
169
+ AuthorizedUrl?: string | undefined;
170
170
  }
171
171
  export interface CreatePresignedMlflowTrackingServerUrlRequest {
172
172
  TrackingServerName: string | undefined;
173
- ExpiresInSeconds?: number;
174
- SessionExpirationDurationInSeconds?: number;
173
+ ExpiresInSeconds?: number | undefined;
174
+ SessionExpirationDurationInSeconds?: number | undefined;
175
175
  }
176
176
  export interface CreatePresignedMlflowTrackingServerUrlResponse {
177
- AuthorizedUrl?: string;
177
+ AuthorizedUrl?: string | undefined;
178
178
  }
179
179
  export interface CreatePresignedNotebookInstanceUrlInput {
180
180
  NotebookInstanceName: string | undefined;
181
- SessionExpirationDurationInSeconds?: number;
181
+ SessionExpirationDurationInSeconds?: number | undefined;
182
182
  }
183
183
  export interface CreatePresignedNotebookInstanceUrlOutput {
184
- AuthorizedUrl?: string;
184
+ AuthorizedUrl?: string | undefined;
185
185
  }
186
186
  export interface ExperimentConfig {
187
- ExperimentName?: string;
188
- TrialName?: string;
189
- TrialComponentDisplayName?: string;
190
- RunName?: string;
187
+ ExperimentName?: string | undefined;
188
+ TrialName?: string | undefined;
189
+ TrialComponentDisplayName?: string | undefined;
190
+ RunName?: string | undefined;
191
191
  }
192
192
  export declare const DataDistributionType: {
193
193
  readonly FULLYREPLICATED: "FullyReplicated";
@@ -222,16 +222,16 @@ export interface RedshiftDatasetDefinition {
222
222
  QueryString: string | undefined;
223
223
  ClusterRoleArn: string | undefined;
224
224
  OutputS3Uri: string | undefined;
225
- KmsKeyId?: string;
225
+ KmsKeyId?: string | undefined;
226
226
  OutputFormat: RedshiftResultFormat | undefined;
227
- OutputCompression?: RedshiftResultCompressionType;
227
+ OutputCompression?: RedshiftResultCompressionType | undefined;
228
228
  }
229
229
  export interface DatasetDefinition {
230
- AthenaDatasetDefinition?: AthenaDatasetDefinition;
231
- RedshiftDatasetDefinition?: RedshiftDatasetDefinition;
232
- LocalPath?: string;
233
- DataDistributionType?: DataDistributionType;
234
- InputMode?: InputMode;
230
+ AthenaDatasetDefinition?: AthenaDatasetDefinition | undefined;
231
+ RedshiftDatasetDefinition?: RedshiftDatasetDefinition | undefined;
232
+ LocalPath?: string | undefined;
233
+ DataDistributionType?: DataDistributionType | undefined;
234
+ InputMode?: InputMode | undefined;
235
235
  }
236
236
  export declare const ProcessingS3CompressionType: {
237
237
  readonly GZIP: "Gzip";
@@ -247,41 +247,41 @@ export type ProcessingS3DataType =
247
247
  (typeof ProcessingS3DataType)[keyof typeof ProcessingS3DataType];
248
248
  export interface ProcessingS3Input {
249
249
  S3Uri: string | undefined;
250
- LocalPath?: string;
250
+ LocalPath?: string | undefined;
251
251
  S3DataType: ProcessingS3DataType | undefined;
252
- S3InputMode?: ProcessingS3InputMode;
253
- S3DataDistributionType?: ProcessingS3DataDistributionType;
254
- S3CompressionType?: ProcessingS3CompressionType;
252
+ S3InputMode?: ProcessingS3InputMode | undefined;
253
+ S3DataDistributionType?: ProcessingS3DataDistributionType | undefined;
254
+ S3CompressionType?: ProcessingS3CompressionType | undefined;
255
255
  }
256
256
  export interface ProcessingInput {
257
257
  InputName: string | undefined;
258
- AppManaged?: boolean;
259
- S3Input?: ProcessingS3Input;
260
- DatasetDefinition?: DatasetDefinition;
258
+ AppManaged?: boolean | undefined;
259
+ S3Input?: ProcessingS3Input | undefined;
260
+ DatasetDefinition?: DatasetDefinition | undefined;
261
261
  }
262
262
  export interface ProcessingFeatureStoreOutput {
263
263
  FeatureGroupName: string | undefined;
264
264
  }
265
265
  export interface ProcessingS3Output {
266
266
  S3Uri: string | undefined;
267
- LocalPath?: string;
267
+ LocalPath?: string | undefined;
268
268
  S3UploadMode: ProcessingS3UploadMode | undefined;
269
269
  }
270
270
  export interface ProcessingOutput {
271
271
  OutputName: string | undefined;
272
- S3Output?: ProcessingS3Output;
273
- FeatureStoreOutput?: ProcessingFeatureStoreOutput;
274
- AppManaged?: boolean;
272
+ S3Output?: ProcessingS3Output | undefined;
273
+ FeatureStoreOutput?: ProcessingFeatureStoreOutput | undefined;
274
+ AppManaged?: boolean | undefined;
275
275
  }
276
276
  export interface ProcessingOutputConfig {
277
277
  Outputs: ProcessingOutput[] | undefined;
278
- KmsKeyId?: string;
278
+ KmsKeyId?: string | undefined;
279
279
  }
280
280
  export interface ProcessingClusterConfig {
281
281
  InstanceCount: number | undefined;
282
282
  InstanceType: ProcessingInstanceType | undefined;
283
283
  VolumeSizeInGB: number | undefined;
284
- VolumeKmsKeyId?: string;
284
+ VolumeKmsKeyId?: string | undefined;
285
285
  }
286
286
  export interface ProcessingResources {
287
287
  ClusterConfig: ProcessingClusterConfig | undefined;
@@ -290,38 +290,38 @@ export interface ProcessingStoppingCondition {
290
290
  MaxRuntimeInSeconds: number | undefined;
291
291
  }
292
292
  export interface CreateProcessingJobRequest {
293
- ProcessingInputs?: ProcessingInput[];
294
- ProcessingOutputConfig?: ProcessingOutputConfig;
293
+ ProcessingInputs?: ProcessingInput[] | undefined;
294
+ ProcessingOutputConfig?: ProcessingOutputConfig | undefined;
295
295
  ProcessingJobName: string | undefined;
296
296
  ProcessingResources: ProcessingResources | undefined;
297
- StoppingCondition?: ProcessingStoppingCondition;
297
+ StoppingCondition?: ProcessingStoppingCondition | undefined;
298
298
  AppSpecification: AppSpecification | undefined;
299
- Environment?: Record<string, string>;
300
- NetworkConfig?: NetworkConfig;
299
+ Environment?: Record<string, string> | undefined;
300
+ NetworkConfig?: NetworkConfig | undefined;
301
301
  RoleArn: string | undefined;
302
- Tags?: Tag[];
303
- ExperimentConfig?: ExperimentConfig;
302
+ Tags?: Tag[] | undefined;
303
+ ExperimentConfig?: ExperimentConfig | undefined;
304
304
  }
305
305
  export interface CreateProcessingJobResponse {
306
306
  ProcessingJobArn: string | undefined;
307
307
  }
308
308
  export interface ProvisioningParameter {
309
- Key?: string;
310
- Value?: string;
309
+ Key?: string | undefined;
310
+ Value?: string | undefined;
311
311
  }
312
312
  export interface ServiceCatalogProvisioningDetails {
313
313
  ProductId: string | undefined;
314
- ProvisioningArtifactId?: string;
315
- PathId?: string;
316
- ProvisioningParameters?: ProvisioningParameter[];
314
+ ProvisioningArtifactId?: string | undefined;
315
+ PathId?: string | undefined;
316
+ ProvisioningParameters?: ProvisioningParameter[] | undefined;
317
317
  }
318
318
  export interface CreateProjectInput {
319
319
  ProjectName: string | undefined;
320
- ProjectDescription?: string;
320
+ ProjectDescription?: string | undefined;
321
321
  ServiceCatalogProvisioningDetails:
322
322
  | ServiceCatalogProvisioningDetails
323
323
  | undefined;
324
- Tags?: Tag[];
324
+ Tags?: Tag[] | undefined;
325
325
  }
326
326
  export interface CreateProjectOutput {
327
327
  ProjectArn: string | undefined;
@@ -331,14 +331,14 @@ export interface OwnershipSettings {
331
331
  OwnerUserProfileName: string | undefined;
332
332
  }
333
333
  export interface SpaceIdleSettings {
334
- IdleTimeoutInMinutes?: number;
334
+ IdleTimeoutInMinutes?: number | undefined;
335
335
  }
336
336
  export interface SpaceAppLifecycleManagement {
337
- IdleSettings?: SpaceIdleSettings;
337
+ IdleSettings?: SpaceIdleSettings | undefined;
338
338
  }
339
339
  export interface SpaceCodeEditorAppSettings {
340
- DefaultResourceSpec?: ResourceSpec;
341
- AppLifecycleManagement?: SpaceAppLifecycleManagement;
340
+ DefaultResourceSpec?: ResourceSpec | undefined;
341
+ AppLifecycleManagement?: SpaceAppLifecycleManagement | undefined;
342
342
  }
343
343
  export interface EFSFileSystem {
344
344
  FileSystemId: string | undefined;
@@ -362,24 +362,24 @@ export declare namespace CustomFileSystem {
362
362
  const visit: <T>(value: CustomFileSystem, visitor: Visitor<T>) => T;
363
363
  }
364
364
  export interface SpaceJupyterLabAppSettings {
365
- DefaultResourceSpec?: ResourceSpec;
366
- CodeRepositories?: CodeRepository[];
367
- AppLifecycleManagement?: SpaceAppLifecycleManagement;
365
+ DefaultResourceSpec?: ResourceSpec | undefined;
366
+ CodeRepositories?: CodeRepository[] | undefined;
367
+ AppLifecycleManagement?: SpaceAppLifecycleManagement | undefined;
368
368
  }
369
369
  export interface EbsStorageSettings {
370
370
  EbsVolumeSizeInGb: number | undefined;
371
371
  }
372
372
  export interface SpaceStorageSettings {
373
- EbsStorageSettings?: EbsStorageSettings;
373
+ EbsStorageSettings?: EbsStorageSettings | undefined;
374
374
  }
375
375
  export interface SpaceSettings {
376
- JupyterServerAppSettings?: JupyterServerAppSettings;
377
- KernelGatewayAppSettings?: KernelGatewayAppSettings;
378
- CodeEditorAppSettings?: SpaceCodeEditorAppSettings;
379
- JupyterLabAppSettings?: SpaceJupyterLabAppSettings;
380
- AppType?: AppType;
381
- SpaceStorageSettings?: SpaceStorageSettings;
382
- CustomFileSystems?: CustomFileSystem[];
376
+ JupyterServerAppSettings?: JupyterServerAppSettings | undefined;
377
+ KernelGatewayAppSettings?: KernelGatewayAppSettings | undefined;
378
+ CodeEditorAppSettings?: SpaceCodeEditorAppSettings | undefined;
379
+ JupyterLabAppSettings?: SpaceJupyterLabAppSettings | undefined;
380
+ AppType?: AppType | undefined;
381
+ SpaceStorageSettings?: SpaceStorageSettings | undefined;
382
+ CustomFileSystems?: CustomFileSystem[] | undefined;
383
383
  }
384
384
  export declare const SharingType: {
385
385
  readonly Private: "Private";
@@ -392,14 +392,14 @@ export interface SpaceSharingSettings {
392
392
  export interface CreateSpaceRequest {
393
393
  DomainId: string | undefined;
394
394
  SpaceName: string | undefined;
395
- Tags?: Tag[];
396
- SpaceSettings?: SpaceSettings;
397
- OwnershipSettings?: OwnershipSettings;
398
- SpaceSharingSettings?: SpaceSharingSettings;
399
- SpaceDisplayName?: string;
395
+ Tags?: Tag[] | undefined;
396
+ SpaceSettings?: SpaceSettings | undefined;
397
+ OwnershipSettings?: OwnershipSettings | undefined;
398
+ SpaceSharingSettings?: SpaceSharingSettings | undefined;
399
+ SpaceDisplayName?: string | undefined;
400
400
  }
401
401
  export interface CreateSpaceResponse {
402
- SpaceArn?: string;
402
+ SpaceArn?: string | undefined;
403
403
  }
404
404
  export declare const StudioLifecycleConfigAppType: {
405
405
  readonly CodeEditor: "CodeEditor";
@@ -413,80 +413,80 @@ export interface CreateStudioLifecycleConfigRequest {
413
413
  StudioLifecycleConfigName: string | undefined;
414
414
  StudioLifecycleConfigContent: string | undefined;
415
415
  StudioLifecycleConfigAppType: StudioLifecycleConfigAppType | undefined;
416
- Tags?: Tag[];
416
+ Tags?: Tag[] | undefined;
417
417
  }
418
418
  export interface CreateStudioLifecycleConfigResponse {
419
- StudioLifecycleConfigArn?: string;
419
+ StudioLifecycleConfigArn?: string | undefined;
420
420
  }
421
421
  export interface DebugHookConfig {
422
- LocalPath?: string;
422
+ LocalPath?: string | undefined;
423
423
  S3OutputPath: string | undefined;
424
- HookParameters?: Record<string, string>;
425
- CollectionConfigurations?: CollectionConfiguration[];
424
+ HookParameters?: Record<string, string> | undefined;
425
+ CollectionConfigurations?: CollectionConfiguration[] | undefined;
426
426
  }
427
427
  export interface DebugRuleConfiguration {
428
428
  RuleConfigurationName: string | undefined;
429
- LocalPath?: string;
430
- S3OutputPath?: string;
429
+ LocalPath?: string | undefined;
430
+ S3OutputPath?: string | undefined;
431
431
  RuleEvaluatorImage: string | undefined;
432
- InstanceType?: ProcessingInstanceType;
433
- VolumeSizeInGB?: number;
434
- RuleParameters?: Record<string, string>;
432
+ InstanceType?: ProcessingInstanceType | undefined;
433
+ VolumeSizeInGB?: number | undefined;
434
+ RuleParameters?: Record<string, string> | undefined;
435
435
  }
436
436
  export interface InfraCheckConfig {
437
- EnableInfraCheck?: boolean;
437
+ EnableInfraCheck?: boolean | undefined;
438
438
  }
439
439
  export interface ProfilerConfig {
440
- S3OutputPath?: string;
441
- ProfilingIntervalInMilliseconds?: number;
442
- ProfilingParameters?: Record<string, string>;
443
- DisableProfiler?: boolean;
440
+ S3OutputPath?: string | undefined;
441
+ ProfilingIntervalInMilliseconds?: number | undefined;
442
+ ProfilingParameters?: Record<string, string> | undefined;
443
+ DisableProfiler?: boolean | undefined;
444
444
  }
445
445
  export interface ProfilerRuleConfiguration {
446
446
  RuleConfigurationName: string | undefined;
447
- LocalPath?: string;
448
- S3OutputPath?: string;
447
+ LocalPath?: string | undefined;
448
+ S3OutputPath?: string | undefined;
449
449
  RuleEvaluatorImage: string | undefined;
450
- InstanceType?: ProcessingInstanceType;
451
- VolumeSizeInGB?: number;
452
- RuleParameters?: Record<string, string>;
450
+ InstanceType?: ProcessingInstanceType | undefined;
451
+ VolumeSizeInGB?: number | undefined;
452
+ RuleParameters?: Record<string, string> | undefined;
453
453
  }
454
454
  export interface RemoteDebugConfig {
455
- EnableRemoteDebug?: boolean;
455
+ EnableRemoteDebug?: boolean | undefined;
456
456
  }
457
457
  export interface SessionChainingConfig {
458
- EnableSessionTagChaining?: boolean;
458
+ EnableSessionTagChaining?: boolean | undefined;
459
459
  }
460
460
  export interface TensorBoardOutputConfig {
461
- LocalPath?: string;
461
+ LocalPath?: string | undefined;
462
462
  S3OutputPath: string | undefined;
463
463
  }
464
464
  export interface CreateTrainingJobRequest {
465
465
  TrainingJobName: string | undefined;
466
- HyperParameters?: Record<string, string>;
466
+ HyperParameters?: Record<string, string> | undefined;
467
467
  AlgorithmSpecification: AlgorithmSpecification | undefined;
468
468
  RoleArn: string | undefined;
469
- InputDataConfig?: Channel[];
469
+ InputDataConfig?: Channel[] | undefined;
470
470
  OutputDataConfig: OutputDataConfig | undefined;
471
471
  ResourceConfig: ResourceConfig | undefined;
472
- VpcConfig?: VpcConfig;
472
+ VpcConfig?: VpcConfig | undefined;
473
473
  StoppingCondition: StoppingCondition | undefined;
474
- Tags?: Tag[];
475
- EnableNetworkIsolation?: boolean;
476
- EnableInterContainerTrafficEncryption?: boolean;
477
- EnableManagedSpotTraining?: boolean;
478
- CheckpointConfig?: CheckpointConfig;
479
- DebugHookConfig?: DebugHookConfig;
480
- DebugRuleConfigurations?: DebugRuleConfiguration[];
481
- TensorBoardOutputConfig?: TensorBoardOutputConfig;
482
- ExperimentConfig?: ExperimentConfig;
483
- ProfilerConfig?: ProfilerConfig;
484
- ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
485
- Environment?: Record<string, string>;
486
- RetryStrategy?: RetryStrategy;
487
- RemoteDebugConfig?: RemoteDebugConfig;
488
- InfraCheckConfig?: InfraCheckConfig;
489
- SessionChainingConfig?: SessionChainingConfig;
474
+ Tags?: Tag[] | undefined;
475
+ EnableNetworkIsolation?: boolean | undefined;
476
+ EnableInterContainerTrafficEncryption?: boolean | undefined;
477
+ EnableManagedSpotTraining?: boolean | undefined;
478
+ CheckpointConfig?: CheckpointConfig | undefined;
479
+ DebugHookConfig?: DebugHookConfig | undefined;
480
+ DebugRuleConfigurations?: DebugRuleConfiguration[] | undefined;
481
+ TensorBoardOutputConfig?: TensorBoardOutputConfig | undefined;
482
+ ExperimentConfig?: ExperimentConfig | undefined;
483
+ ProfilerConfig?: ProfilerConfig | undefined;
484
+ ProfilerRuleConfigurations?: ProfilerRuleConfiguration[] | undefined;
485
+ Environment?: Record<string, string> | undefined;
486
+ RetryStrategy?: RetryStrategy | undefined;
487
+ RemoteDebugConfig?: RemoteDebugConfig | undefined;
488
+ InfraCheckConfig?: InfraCheckConfig | undefined;
489
+ SessionChainingConfig?: SessionChainingConfig | undefined;
490
490
  }
491
491
  export interface CreateTrainingJobResponse {
492
492
  TrainingJobArn: string | undefined;
@@ -497,45 +497,45 @@ export declare const JoinSource: {
497
497
  };
498
498
  export type JoinSource = (typeof JoinSource)[keyof typeof JoinSource];
499
499
  export interface DataProcessing {
500
- InputFilter?: string;
501
- OutputFilter?: string;
502
- JoinSource?: JoinSource;
500
+ InputFilter?: string | undefined;
501
+ OutputFilter?: string | undefined;
502
+ JoinSource?: JoinSource | undefined;
503
503
  }
504
504
  export interface ModelClientConfig {
505
- InvocationsTimeoutInSeconds?: number;
506
- InvocationsMaxRetries?: number;
505
+ InvocationsTimeoutInSeconds?: number | undefined;
506
+ InvocationsMaxRetries?: number | undefined;
507
507
  }
508
508
  export interface CreateTransformJobRequest {
509
509
  TransformJobName: string | undefined;
510
510
  ModelName: string | undefined;
511
- MaxConcurrentTransforms?: number;
512
- ModelClientConfig?: ModelClientConfig;
513
- MaxPayloadInMB?: number;
514
- BatchStrategy?: BatchStrategy;
515
- Environment?: Record<string, string>;
511
+ MaxConcurrentTransforms?: number | undefined;
512
+ ModelClientConfig?: ModelClientConfig | undefined;
513
+ MaxPayloadInMB?: number | undefined;
514
+ BatchStrategy?: BatchStrategy | undefined;
515
+ Environment?: Record<string, string> | undefined;
516
516
  TransformInput: TransformInput | undefined;
517
517
  TransformOutput: TransformOutput | undefined;
518
- DataCaptureConfig?: BatchDataCaptureConfig;
518
+ DataCaptureConfig?: BatchDataCaptureConfig | undefined;
519
519
  TransformResources: TransformResources | undefined;
520
- DataProcessing?: DataProcessing;
521
- Tags?: Tag[];
522
- ExperimentConfig?: ExperimentConfig;
520
+ DataProcessing?: DataProcessing | undefined;
521
+ Tags?: Tag[] | undefined;
522
+ ExperimentConfig?: ExperimentConfig | undefined;
523
523
  }
524
524
  export interface CreateTransformJobResponse {
525
525
  TransformJobArn: string | undefined;
526
526
  }
527
527
  export interface CreateTrialRequest {
528
528
  TrialName: string | undefined;
529
- DisplayName?: string;
529
+ DisplayName?: string | undefined;
530
530
  ExperimentName: string | undefined;
531
- MetadataProperties?: MetadataProperties;
532
- Tags?: Tag[];
531
+ MetadataProperties?: MetadataProperties | undefined;
532
+ Tags?: Tag[] | undefined;
533
533
  }
534
534
  export interface CreateTrialResponse {
535
- TrialArn?: string;
535
+ TrialArn?: string | undefined;
536
536
  }
537
537
  export interface TrialComponentArtifact {
538
- MediaType?: string;
538
+ MediaType?: string | undefined;
539
539
  Value: string | undefined;
540
540
  }
541
541
  export type TrialComponentParameterValue =
@@ -578,34 +578,34 @@ export declare const TrialComponentPrimaryStatus: {
578
578
  export type TrialComponentPrimaryStatus =
579
579
  (typeof TrialComponentPrimaryStatus)[keyof typeof TrialComponentPrimaryStatus];
580
580
  export interface TrialComponentStatus {
581
- PrimaryStatus?: TrialComponentPrimaryStatus;
582
- Message?: string;
581
+ PrimaryStatus?: TrialComponentPrimaryStatus | undefined;
582
+ Message?: string | undefined;
583
583
  }
584
584
  export interface CreateTrialComponentRequest {
585
585
  TrialComponentName: string | undefined;
586
- DisplayName?: string;
587
- Status?: TrialComponentStatus;
588
- StartTime?: Date;
589
- EndTime?: Date;
590
- Parameters?: Record<string, TrialComponentParameterValue>;
591
- InputArtifacts?: Record<string, TrialComponentArtifact>;
592
- OutputArtifacts?: Record<string, TrialComponentArtifact>;
593
- MetadataProperties?: MetadataProperties;
594
- Tags?: Tag[];
586
+ DisplayName?: string | undefined;
587
+ Status?: TrialComponentStatus | undefined;
588
+ StartTime?: Date | undefined;
589
+ EndTime?: Date | undefined;
590
+ Parameters?: Record<string, TrialComponentParameterValue> | undefined;
591
+ InputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
592
+ OutputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
593
+ MetadataProperties?: MetadataProperties | undefined;
594
+ Tags?: Tag[] | undefined;
595
595
  }
596
596
  export interface CreateTrialComponentResponse {
597
- TrialComponentArn?: string;
597
+ TrialComponentArn?: string | undefined;
598
598
  }
599
599
  export interface CreateUserProfileRequest {
600
600
  DomainId: string | undefined;
601
601
  UserProfileName: string | undefined;
602
- SingleSignOnUserIdentifier?: string;
603
- SingleSignOnUserValue?: string;
604
- Tags?: Tag[];
605
- UserSettings?: UserSettings;
602
+ SingleSignOnUserIdentifier?: string | undefined;
603
+ SingleSignOnUserValue?: string | undefined;
604
+ Tags?: Tag[] | undefined;
605
+ UserSettings?: UserSettings | undefined;
606
606
  }
607
607
  export interface CreateUserProfileResponse {
608
- UserProfileArn?: string;
608
+ UserProfileArn?: string | undefined;
609
609
  }
610
610
  export interface OidcConfig {
611
611
  ClientId: string | undefined;
@@ -616,37 +616,37 @@ export interface OidcConfig {
616
616
  UserInfoEndpoint: string | undefined;
617
617
  LogoutEndpoint: string | undefined;
618
618
  JwksUri: string | undefined;
619
- Scope?: string;
620
- AuthenticationRequestExtraParams?: Record<string, string>;
619
+ Scope?: string | undefined;
620
+ AuthenticationRequestExtraParams?: Record<string, string> | undefined;
621
621
  }
622
622
  export interface SourceIpConfig {
623
623
  Cidrs: string[] | undefined;
624
624
  }
625
625
  export interface WorkforceVpcConfigRequest {
626
- VpcId?: string;
627
- SecurityGroupIds?: string[];
628
- Subnets?: string[];
626
+ VpcId?: string | undefined;
627
+ SecurityGroupIds?: string[] | undefined;
628
+ Subnets?: string[] | undefined;
629
629
  }
630
630
  export interface CreateWorkforceRequest {
631
- CognitoConfig?: CognitoConfig;
632
- OidcConfig?: OidcConfig;
633
- SourceIpConfig?: SourceIpConfig;
631
+ CognitoConfig?: CognitoConfig | undefined;
632
+ OidcConfig?: OidcConfig | undefined;
633
+ SourceIpConfig?: SourceIpConfig | undefined;
634
634
  WorkforceName: string | undefined;
635
- Tags?: Tag[];
636
- WorkforceVpcConfig?: WorkforceVpcConfigRequest;
635
+ Tags?: Tag[] | undefined;
636
+ WorkforceVpcConfig?: WorkforceVpcConfigRequest | undefined;
637
637
  }
638
638
  export interface CreateWorkforceResponse {
639
639
  WorkforceArn: string | undefined;
640
640
  }
641
641
  export interface OidcMemberDefinition {
642
- Groups?: string[];
642
+ Groups?: string[] | undefined;
643
643
  }
644
644
  export interface MemberDefinition {
645
- CognitoMemberDefinition?: CognitoMemberDefinition;
646
- OidcMemberDefinition?: OidcMemberDefinition;
645
+ CognitoMemberDefinition?: CognitoMemberDefinition | undefined;
646
+ OidcMemberDefinition?: OidcMemberDefinition | undefined;
647
647
  }
648
648
  export interface NotificationConfiguration {
649
- NotificationTopicArn?: string;
649
+ NotificationTopicArn?: string | undefined;
650
650
  }
651
651
  export declare const EnabledOrDisabled: {
652
652
  readonly Disabled: "Disabled";
@@ -655,26 +655,26 @@ export declare const EnabledOrDisabled: {
655
655
  export type EnabledOrDisabled =
656
656
  (typeof EnabledOrDisabled)[keyof typeof EnabledOrDisabled];
657
657
  export interface IamPolicyConstraints {
658
- SourceIp?: EnabledOrDisabled;
659
- VpcSourceIp?: EnabledOrDisabled;
658
+ SourceIp?: EnabledOrDisabled | undefined;
659
+ VpcSourceIp?: EnabledOrDisabled | undefined;
660
660
  }
661
661
  export interface S3Presign {
662
- IamPolicyConstraints?: IamPolicyConstraints;
662
+ IamPolicyConstraints?: IamPolicyConstraints | undefined;
663
663
  }
664
664
  export interface WorkerAccessConfiguration {
665
- S3Presign?: S3Presign;
665
+ S3Presign?: S3Presign | undefined;
666
666
  }
667
667
  export interface CreateWorkteamRequest {
668
668
  WorkteamName: string | undefined;
669
- WorkforceName?: string;
669
+ WorkforceName?: string | undefined;
670
670
  MemberDefinitions: MemberDefinition[] | undefined;
671
671
  Description: string | undefined;
672
- NotificationConfiguration?: NotificationConfiguration;
673
- WorkerAccessConfiguration?: WorkerAccessConfiguration;
674
- Tags?: Tag[];
672
+ NotificationConfiguration?: NotificationConfiguration | undefined;
673
+ WorkerAccessConfiguration?: WorkerAccessConfiguration | undefined;
674
+ Tags?: Tag[] | undefined;
675
675
  }
676
676
  export interface CreateWorkteamResponse {
677
- WorkteamArn?: string;
677
+ WorkteamArn?: string | undefined;
678
678
  }
679
679
  export declare const CrossAccountFilterOption: {
680
680
  readonly CROSS_ACCOUNT: "CrossAccount";
@@ -691,9 +691,9 @@ export declare const Statistic: {
691
691
  };
692
692
  export type Statistic = (typeof Statistic)[keyof typeof Statistic];
693
693
  export interface CustomizedMetricSpecification {
694
- MetricName?: string;
695
- Namespace?: string;
696
- Statistic?: Statistic;
694
+ MetricName?: string | undefined;
695
+ Namespace?: string | undefined;
696
+ Statistic?: Statistic | undefined;
697
697
  }
698
698
  export interface DataCaptureConfigSummary {
699
699
  EnableCapture: boolean | undefined;
@@ -713,25 +713,25 @@ export declare const RuleEvaluationStatus: {
713
713
  export type RuleEvaluationStatus =
714
714
  (typeof RuleEvaluationStatus)[keyof typeof RuleEvaluationStatus];
715
715
  export interface DebugRuleEvaluationStatus {
716
- RuleConfigurationName?: string;
717
- RuleEvaluationJobArn?: string;
718
- RuleEvaluationStatus?: RuleEvaluationStatus;
719
- StatusDetails?: string;
720
- LastModifiedTime?: Date;
716
+ RuleConfigurationName?: string | undefined;
717
+ RuleEvaluationJobArn?: string | undefined;
718
+ RuleEvaluationStatus?: RuleEvaluationStatus | undefined;
719
+ StatusDetails?: string | undefined;
720
+ LastModifiedTime?: Date | undefined;
721
721
  }
722
722
  export interface DeleteActionRequest {
723
723
  ActionName: string | undefined;
724
724
  }
725
725
  export interface DeleteActionResponse {
726
- ActionArn?: string;
726
+ ActionArn?: string | undefined;
727
727
  }
728
728
  export interface DeleteAlgorithmInput {
729
729
  AlgorithmName: string | undefined;
730
730
  }
731
731
  export interface DeleteAppRequest {
732
732
  DomainId: string | undefined;
733
- UserProfileName?: string;
734
- SpaceName?: string;
733
+ UserProfileName?: string | undefined;
734
+ SpaceName?: string | undefined;
735
735
  AppType: AppType | undefined;
736
736
  AppName: string | undefined;
737
737
  }
@@ -739,19 +739,19 @@ export interface DeleteAppImageConfigRequest {
739
739
  AppImageConfigName: string | undefined;
740
740
  }
741
741
  export interface DeleteArtifactRequest {
742
- ArtifactArn?: string;
743
- Source?: ArtifactSource;
742
+ ArtifactArn?: string | undefined;
743
+ Source?: ArtifactSource | undefined;
744
744
  }
745
745
  export interface DeleteArtifactResponse {
746
- ArtifactArn?: string;
746
+ ArtifactArn?: string | undefined;
747
747
  }
748
748
  export interface DeleteAssociationRequest {
749
749
  SourceArn: string | undefined;
750
750
  DestinationArn: string | undefined;
751
751
  }
752
752
  export interface DeleteAssociationResponse {
753
- SourceArn?: string;
754
- DestinationArn?: string;
753
+ SourceArn?: string | undefined;
754
+ DestinationArn?: string | undefined;
755
755
  }
756
756
  export interface DeleteClusterRequest {
757
757
  ClusterName: string | undefined;
@@ -769,7 +769,7 @@ export interface DeleteContextRequest {
769
769
  ContextName: string | undefined;
770
770
  }
771
771
  export interface DeleteContextResponse {
772
- ContextArn?: string;
772
+ ContextArn?: string | undefined;
773
773
  }
774
774
  export interface DeleteDataQualityJobDefinitionRequest {
775
775
  JobDefinitionName: string | undefined;
@@ -783,11 +783,11 @@ export declare const RetentionType: {
783
783
  };
784
784
  export type RetentionType = (typeof RetentionType)[keyof typeof RetentionType];
785
785
  export interface RetentionPolicy {
786
- HomeEfsFileSystem?: RetentionType;
786
+ HomeEfsFileSystem?: RetentionType | undefined;
787
787
  }
788
788
  export interface DeleteDomainRequest {
789
789
  DomainId: string | undefined;
790
- RetentionPolicy?: RetentionPolicy;
790
+ RetentionPolicy?: RetentionPolicy | undefined;
791
791
  }
792
792
  export interface DeleteEdgeDeploymentPlanRequest {
793
793
  EdgeDeploymentPlanName: string | undefined;
@@ -806,7 +806,7 @@ export interface DeleteExperimentRequest {
806
806
  ExperimentName: string | undefined;
807
807
  }
808
808
  export interface DeleteExperimentResponse {
809
- ExperimentArn?: string;
809
+ ExperimentArn?: string | undefined;
810
810
  }
811
811
  export interface DeleteFeatureGroupRequest {
812
812
  FeatureGroupName: string | undefined;
@@ -849,8 +849,8 @@ export interface DeleteImageRequest {
849
849
  export interface DeleteImageResponse {}
850
850
  export interface DeleteImageVersionRequest {
851
851
  ImageName: string | undefined;
852
- Version?: number;
853
- Alias?: string;
852
+ Version?: number | undefined;
853
+ Alias?: string | undefined;
854
854
  }
855
855
  export interface DeleteImageVersionResponse {}
856
856
  export interface DeleteInferenceComponentInput {
@@ -866,7 +866,7 @@ export interface DeleteMlflowTrackingServerRequest {
866
866
  TrackingServerName: string | undefined;
867
867
  }
868
868
  export interface DeleteMlflowTrackingServerResponse {
869
- TrackingServerArn?: string;
869
+ TrackingServerArn?: string | undefined;
870
870
  }
871
871
  export interface DeleteModelInput {
872
872
  ModelName: string | undefined;
@@ -906,10 +906,10 @@ export interface DeleteOptimizationJobRequest {
906
906
  }
907
907
  export interface DeletePipelineRequest {
908
908
  PipelineName: string | undefined;
909
- ClientRequestToken?: string;
909
+ ClientRequestToken?: string | undefined;
910
910
  }
911
911
  export interface DeletePipelineResponse {
912
- PipelineArn?: string;
912
+ PipelineArn?: string | undefined;
913
913
  }
914
914
  export interface DeleteProjectInput {
915
915
  ProjectName: string | undefined;
@@ -930,13 +930,13 @@ export interface DeleteTrialRequest {
930
930
  TrialName: string | undefined;
931
931
  }
932
932
  export interface DeleteTrialResponse {
933
- TrialArn?: string;
933
+ TrialArn?: string | undefined;
934
934
  }
935
935
  export interface DeleteTrialComponentRequest {
936
936
  TrialComponentName: string | undefined;
937
937
  }
938
938
  export interface DeleteTrialComponentResponse {
939
- TrialComponentArn?: string;
939
+ TrialComponentArn?: string | undefined;
940
940
  }
941
941
  export interface DeleteUserProfileRequest {
942
942
  DomainId: string | undefined;
@@ -953,14 +953,14 @@ export interface DeleteWorkteamResponse {
953
953
  Success: boolean | undefined;
954
954
  }
955
955
  export interface DeployedImage {
956
- SpecifiedImage?: string;
957
- ResolvedImage?: string;
958
- ResolutionTime?: Date;
956
+ SpecifiedImage?: string | undefined;
957
+ ResolvedImage?: string | undefined;
958
+ ResolutionTime?: Date | undefined;
959
959
  }
960
960
  export interface RealTimeInferenceRecommendation {
961
961
  RecommendationId: string | undefined;
962
962
  InstanceType: ProductionVariantInstanceType | undefined;
963
- Environment?: Record<string, string>;
963
+ Environment?: Record<string, string> | undefined;
964
964
  }
965
965
  export declare const RecommendationStatus: {
966
966
  readonly COMPLETED: "COMPLETED";
@@ -972,7 +972,9 @@ export type RecommendationStatus =
972
972
  (typeof RecommendationStatus)[keyof typeof RecommendationStatus];
973
973
  export interface DeploymentRecommendation {
974
974
  RecommendationStatus: RecommendationStatus | undefined;
975
- RealTimeInferenceRecommendations?: RealTimeInferenceRecommendation[];
975
+ RealTimeInferenceRecommendations?:
976
+ | RealTimeInferenceRecommendation[]
977
+ | undefined;
976
978
  }
977
979
  export declare const StageStatus: {
978
980
  readonly Creating: "CREATING";
@@ -990,8 +992,8 @@ export interface EdgeDeploymentStatus {
990
992
  EdgeDeploymentSuccessInStage: number | undefined;
991
993
  EdgeDeploymentPendingInStage: number | undefined;
992
994
  EdgeDeploymentFailedInStage: number | undefined;
993
- EdgeDeploymentStatusMessage?: string;
994
- EdgeDeploymentStageStartTime?: Date;
995
+ EdgeDeploymentStatusMessage?: string | undefined;
996
+ EdgeDeploymentStageStartTime?: Date | undefined;
995
997
  }
996
998
  export interface DeploymentStageStatusSummary {
997
999
  StageName: string | undefined;
@@ -1004,25 +1006,25 @@ export interface DeregisterDevicesRequest {
1004
1006
  DeviceNames: string[] | undefined;
1005
1007
  }
1006
1008
  export interface DerivedInformation {
1007
- DerivedDataInputConfig?: string;
1009
+ DerivedDataInputConfig?: string | undefined;
1008
1010
  }
1009
1011
  export interface DescribeActionRequest {
1010
1012
  ActionName: string | undefined;
1011
1013
  }
1012
1014
  export interface DescribeActionResponse {
1013
- ActionName?: string;
1014
- ActionArn?: string;
1015
- Source?: ActionSource;
1016
- ActionType?: string;
1017
- Description?: string;
1018
- Status?: ActionStatus;
1019
- Properties?: Record<string, string>;
1020
- CreationTime?: Date;
1021
- CreatedBy?: UserContext;
1022
- LastModifiedTime?: Date;
1023
- LastModifiedBy?: UserContext;
1024
- MetadataProperties?: MetadataProperties;
1025
- LineageGroupArn?: string;
1015
+ ActionName?: string | undefined;
1016
+ ActionArn?: string | undefined;
1017
+ Source?: ActionSource | undefined;
1018
+ ActionType?: string | undefined;
1019
+ Description?: string | undefined;
1020
+ Status?: ActionStatus | undefined;
1021
+ Properties?: Record<string, string> | undefined;
1022
+ CreationTime?: Date | undefined;
1023
+ CreatedBy?: UserContext | undefined;
1024
+ LastModifiedTime?: Date | undefined;
1025
+ LastModifiedBy?: UserContext | undefined;
1026
+ MetadataProperties?: MetadataProperties | undefined;
1027
+ LineageGroupArn?: string | undefined;
1026
1028
  }
1027
1029
  export interface DescribeAlgorithmInput {
1028
1030
  AlgorithmName: string | undefined;
@@ -1030,76 +1032,76 @@ export interface DescribeAlgorithmInput {
1030
1032
  export interface DescribeAlgorithmOutput {
1031
1033
  AlgorithmName: string | undefined;
1032
1034
  AlgorithmArn: string | undefined;
1033
- AlgorithmDescription?: string;
1035
+ AlgorithmDescription?: string | undefined;
1034
1036
  CreationTime: Date | undefined;
1035
1037
  TrainingSpecification: TrainingSpecification | undefined;
1036
- InferenceSpecification?: InferenceSpecification;
1037
- ValidationSpecification?: AlgorithmValidationSpecification;
1038
+ InferenceSpecification?: InferenceSpecification | undefined;
1039
+ ValidationSpecification?: AlgorithmValidationSpecification | undefined;
1038
1040
  AlgorithmStatus: AlgorithmStatus | undefined;
1039
1041
  AlgorithmStatusDetails: AlgorithmStatusDetails | undefined;
1040
- ProductId?: string;
1041
- CertifyForMarketplace?: boolean;
1042
+ ProductId?: string | undefined;
1043
+ CertifyForMarketplace?: boolean | undefined;
1042
1044
  }
1043
1045
  export interface DescribeAppRequest {
1044
1046
  DomainId: string | undefined;
1045
- UserProfileName?: string;
1046
- SpaceName?: string;
1047
+ UserProfileName?: string | undefined;
1048
+ SpaceName?: string | undefined;
1047
1049
  AppType: AppType | undefined;
1048
1050
  AppName: string | undefined;
1049
1051
  }
1050
1052
  export interface DescribeAppResponse {
1051
- AppArn?: string;
1052
- AppType?: AppType;
1053
- AppName?: string;
1054
- DomainId?: string;
1055
- UserProfileName?: string;
1056
- SpaceName?: string;
1057
- Status?: AppStatus;
1058
- LastHealthCheckTimestamp?: Date;
1059
- LastUserActivityTimestamp?: Date;
1060
- CreationTime?: Date;
1061
- FailureReason?: string;
1062
- ResourceSpec?: ResourceSpec;
1063
- BuiltInLifecycleConfigArn?: string;
1053
+ AppArn?: string | undefined;
1054
+ AppType?: AppType | undefined;
1055
+ AppName?: string | undefined;
1056
+ DomainId?: string | undefined;
1057
+ UserProfileName?: string | undefined;
1058
+ SpaceName?: string | undefined;
1059
+ Status?: AppStatus | undefined;
1060
+ LastHealthCheckTimestamp?: Date | undefined;
1061
+ LastUserActivityTimestamp?: Date | undefined;
1062
+ CreationTime?: Date | undefined;
1063
+ FailureReason?: string | undefined;
1064
+ ResourceSpec?: ResourceSpec | undefined;
1065
+ BuiltInLifecycleConfigArn?: string | undefined;
1064
1066
  }
1065
1067
  export interface DescribeAppImageConfigRequest {
1066
1068
  AppImageConfigName: string | undefined;
1067
1069
  }
1068
1070
  export interface DescribeAppImageConfigResponse {
1069
- AppImageConfigArn?: string;
1070
- AppImageConfigName?: string;
1071
- CreationTime?: Date;
1072
- LastModifiedTime?: Date;
1073
- KernelGatewayImageConfig?: KernelGatewayImageConfig;
1074
- JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
1075
- CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
1071
+ AppImageConfigArn?: string | undefined;
1072
+ AppImageConfigName?: string | undefined;
1073
+ CreationTime?: Date | undefined;
1074
+ LastModifiedTime?: Date | undefined;
1075
+ KernelGatewayImageConfig?: KernelGatewayImageConfig | undefined;
1076
+ JupyterLabAppImageConfig?: JupyterLabAppImageConfig | undefined;
1077
+ CodeEditorAppImageConfig?: CodeEditorAppImageConfig | undefined;
1076
1078
  }
1077
1079
  export interface DescribeArtifactRequest {
1078
1080
  ArtifactArn: string | undefined;
1079
1081
  }
1080
1082
  export interface DescribeArtifactResponse {
1081
- ArtifactName?: string;
1082
- ArtifactArn?: string;
1083
- Source?: ArtifactSource;
1084
- ArtifactType?: string;
1085
- Properties?: Record<string, string>;
1086
- CreationTime?: Date;
1087
- CreatedBy?: UserContext;
1088
- LastModifiedTime?: Date;
1089
- LastModifiedBy?: UserContext;
1090
- MetadataProperties?: MetadataProperties;
1091
- LineageGroupArn?: string;
1083
+ ArtifactName?: string | undefined;
1084
+ ArtifactArn?: string | undefined;
1085
+ Source?: ArtifactSource | undefined;
1086
+ ArtifactType?: string | undefined;
1087
+ Properties?: Record<string, string> | undefined;
1088
+ CreationTime?: Date | undefined;
1089
+ CreatedBy?: UserContext | undefined;
1090
+ LastModifiedTime?: Date | undefined;
1091
+ LastModifiedBy?: UserContext | undefined;
1092
+ MetadataProperties?: MetadataProperties | undefined;
1093
+ LineageGroupArn?: string | undefined;
1092
1094
  }
1093
1095
  export interface DescribeAutoMLJobRequest {
1094
1096
  AutoMLJobName: string | undefined;
1095
1097
  }
1096
1098
  export interface ModelDeployResult {
1097
- EndpointName?: string;
1099
+ EndpointName?: string | undefined;
1098
1100
  }
1099
1101
  export interface ResolvedAttributes {
1100
- AutoMLJobObjective?: AutoMLJobObjective;
1101
- ProblemType?: ProblemType;
1102
- CompletionCriteria?: AutoMLJobCompletionCriteria;
1102
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
1103
+ ProblemType?: ProblemType | undefined;
1104
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
1103
1105
  }
1104
1106
  export interface DescribeAutoMLJobResponse {
1105
1107
  AutoMLJobName: string | undefined;
@@ -1107,22 +1109,22 @@ export interface DescribeAutoMLJobResponse {
1107
1109
  InputDataConfig: AutoMLChannel[] | undefined;
1108
1110
  OutputDataConfig: AutoMLOutputDataConfig | undefined;
1109
1111
  RoleArn: string | undefined;
1110
- AutoMLJobObjective?: AutoMLJobObjective;
1111
- ProblemType?: ProblemType;
1112
- AutoMLJobConfig?: AutoMLJobConfig;
1112
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
1113
+ ProblemType?: ProblemType | undefined;
1114
+ AutoMLJobConfig?: AutoMLJobConfig | undefined;
1113
1115
  CreationTime: Date | undefined;
1114
- EndTime?: Date;
1116
+ EndTime?: Date | undefined;
1115
1117
  LastModifiedTime: Date | undefined;
1116
- FailureReason?: string;
1117
- PartialFailureReasons?: AutoMLPartialFailureReason[];
1118
- BestCandidate?: AutoMLCandidate;
1118
+ FailureReason?: string | undefined;
1119
+ PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
1120
+ BestCandidate?: AutoMLCandidate | undefined;
1119
1121
  AutoMLJobStatus: AutoMLJobStatus | undefined;
1120
1122
  AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
1121
- GenerateCandidateDefinitionsOnly?: boolean;
1122
- AutoMLJobArtifacts?: AutoMLJobArtifacts;
1123
- ResolvedAttributes?: ResolvedAttributes;
1124
- ModelDeployConfig?: ModelDeployConfig;
1125
- ModelDeployResult?: ModelDeployResult;
1123
+ GenerateCandidateDefinitionsOnly?: boolean | undefined;
1124
+ AutoMLJobArtifacts?: AutoMLJobArtifacts | undefined;
1125
+ ResolvedAttributes?: ResolvedAttributes | undefined;
1126
+ ModelDeployConfig?: ModelDeployConfig | undefined;
1127
+ ModelDeployResult?: ModelDeployResult | undefined;
1126
1128
  }
1127
1129
  export interface DescribeAutoMLJobV2Request {
1128
1130
  AutoMLJobName: string | undefined;
@@ -1133,38 +1135,38 @@ export interface DescribeAutoMLJobV2Response {
1133
1135
  AutoMLJobInputDataConfig: AutoMLJobChannel[] | undefined;
1134
1136
  OutputDataConfig: AutoMLOutputDataConfig | undefined;
1135
1137
  RoleArn: string | undefined;
1136
- AutoMLJobObjective?: AutoMLJobObjective;
1137
- AutoMLProblemTypeConfig?: AutoMLProblemTypeConfig;
1138
- AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName;
1138
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
1139
+ AutoMLProblemTypeConfig?: AutoMLProblemTypeConfig | undefined;
1140
+ AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName | undefined;
1139
1141
  CreationTime: Date | undefined;
1140
- EndTime?: Date;
1142
+ EndTime?: Date | undefined;
1141
1143
  LastModifiedTime: Date | undefined;
1142
- FailureReason?: string;
1143
- PartialFailureReasons?: AutoMLPartialFailureReason[];
1144
- BestCandidate?: AutoMLCandidate;
1144
+ FailureReason?: string | undefined;
1145
+ PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
1146
+ BestCandidate?: AutoMLCandidate | undefined;
1145
1147
  AutoMLJobStatus: AutoMLJobStatus | undefined;
1146
1148
  AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
1147
- AutoMLJobArtifacts?: AutoMLJobArtifacts;
1148
- ResolvedAttributes?: AutoMLResolvedAttributes;
1149
- ModelDeployConfig?: ModelDeployConfig;
1150
- ModelDeployResult?: ModelDeployResult;
1151
- DataSplitConfig?: AutoMLDataSplitConfig;
1152
- SecurityConfig?: AutoMLSecurityConfig;
1153
- AutoMLComputeConfig?: AutoMLComputeConfig;
1149
+ AutoMLJobArtifacts?: AutoMLJobArtifacts | undefined;
1150
+ ResolvedAttributes?: AutoMLResolvedAttributes | undefined;
1151
+ ModelDeployConfig?: ModelDeployConfig | undefined;
1152
+ ModelDeployResult?: ModelDeployResult | undefined;
1153
+ DataSplitConfig?: AutoMLDataSplitConfig | undefined;
1154
+ SecurityConfig?: AutoMLSecurityConfig | undefined;
1155
+ AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
1154
1156
  }
1155
1157
  export interface DescribeClusterRequest {
1156
1158
  ClusterName: string | undefined;
1157
1159
  }
1158
1160
  export interface DescribeClusterResponse {
1159
1161
  ClusterArn: string | undefined;
1160
- ClusterName?: string;
1162
+ ClusterName?: string | undefined;
1161
1163
  ClusterStatus: ClusterStatus | undefined;
1162
- CreationTime?: Date;
1163
- FailureMessage?: string;
1164
+ CreationTime?: Date | undefined;
1165
+ FailureMessage?: string | undefined;
1164
1166
  InstanceGroups: ClusterInstanceGroupDetails[] | undefined;
1165
- VpcConfig?: VpcConfig;
1166
- Orchestrator?: ClusterOrchestrator;
1167
- NodeRecovery?: ClusterNodeRecovery;
1167
+ VpcConfig?: VpcConfig | undefined;
1168
+ Orchestrator?: ClusterOrchestrator | undefined;
1169
+ NodeRecovery?: ClusterNodeRecovery | undefined;
1168
1170
  }
1169
1171
  export interface DescribeClusterNodeRequest {
1170
1172
  ClusterName: string | undefined;
@@ -1181,7 +1183,7 @@ export interface DescribeCodeRepositoryOutput {
1181
1183
  CodeRepositoryArn: string | undefined;
1182
1184
  CreationTime: Date | undefined;
1183
1185
  LastModifiedTime: Date | undefined;
1184
- GitConfig?: GitConfig;
1186
+ GitConfig?: GitConfig | undefined;
1185
1187
  }
1186
1188
  export interface DescribeCompilationJobRequest {
1187
1189
  CompilationJobName: string | undefined;
@@ -1190,43 +1192,43 @@ export interface ModelArtifacts {
1190
1192
  S3ModelArtifacts: string | undefined;
1191
1193
  }
1192
1194
  export interface ModelDigests {
1193
- ArtifactDigest?: string;
1195
+ ArtifactDigest?: string | undefined;
1194
1196
  }
1195
1197
  export interface DescribeCompilationJobResponse {
1196
1198
  CompilationJobName: string | undefined;
1197
1199
  CompilationJobArn: string | undefined;
1198
1200
  CompilationJobStatus: CompilationJobStatus | undefined;
1199
- CompilationStartTime?: Date;
1200
- CompilationEndTime?: Date;
1201
+ CompilationStartTime?: Date | undefined;
1202
+ CompilationEndTime?: Date | undefined;
1201
1203
  StoppingCondition: StoppingCondition | undefined;
1202
- InferenceImage?: string;
1203
- ModelPackageVersionArn?: string;
1204
+ InferenceImage?: string | undefined;
1205
+ ModelPackageVersionArn?: string | undefined;
1204
1206
  CreationTime: Date | undefined;
1205
1207
  LastModifiedTime: Date | undefined;
1206
1208
  FailureReason: string | undefined;
1207
1209
  ModelArtifacts: ModelArtifacts | undefined;
1208
- ModelDigests?: ModelDigests;
1210
+ ModelDigests?: ModelDigests | undefined;
1209
1211
  RoleArn: string | undefined;
1210
1212
  InputConfig: InputConfig | undefined;
1211
1213
  OutputConfig: OutputConfig | undefined;
1212
- VpcConfig?: NeoVpcConfig;
1213
- DerivedInformation?: DerivedInformation;
1214
+ VpcConfig?: NeoVpcConfig | undefined;
1215
+ DerivedInformation?: DerivedInformation | undefined;
1214
1216
  }
1215
1217
  export interface DescribeContextRequest {
1216
1218
  ContextName: string | undefined;
1217
1219
  }
1218
1220
  export interface DescribeContextResponse {
1219
- ContextName?: string;
1220
- ContextArn?: string;
1221
- Source?: ContextSource;
1222
- ContextType?: string;
1223
- Description?: string;
1224
- Properties?: Record<string, string>;
1225
- CreationTime?: Date;
1226
- CreatedBy?: UserContext;
1227
- LastModifiedTime?: Date;
1228
- LastModifiedBy?: UserContext;
1229
- LineageGroupArn?: string;
1221
+ ContextName?: string | undefined;
1222
+ ContextArn?: string | undefined;
1223
+ Source?: ContextSource | undefined;
1224
+ ContextType?: string | undefined;
1225
+ Description?: string | undefined;
1226
+ Properties?: Record<string, string> | undefined;
1227
+ CreationTime?: Date | undefined;
1228
+ CreatedBy?: UserContext | undefined;
1229
+ LastModifiedTime?: Date | undefined;
1230
+ LastModifiedBy?: UserContext | undefined;
1231
+ LineageGroupArn?: string | undefined;
1230
1232
  }
1231
1233
  export interface DescribeDataQualityJobDefinitionRequest {
1232
1234
  JobDefinitionName: string | undefined;
@@ -1235,38 +1237,38 @@ export interface DescribeDataQualityJobDefinitionResponse {
1235
1237
  JobDefinitionArn: string | undefined;
1236
1238
  JobDefinitionName: string | undefined;
1237
1239
  CreationTime: Date | undefined;
1238
- DataQualityBaselineConfig?: DataQualityBaselineConfig;
1240
+ DataQualityBaselineConfig?: DataQualityBaselineConfig | undefined;
1239
1241
  DataQualityAppSpecification: DataQualityAppSpecification | undefined;
1240
1242
  DataQualityJobInput: DataQualityJobInput | undefined;
1241
1243
  DataQualityJobOutputConfig: MonitoringOutputConfig | undefined;
1242
1244
  JobResources: MonitoringResources | undefined;
1243
- NetworkConfig?: MonitoringNetworkConfig;
1245
+ NetworkConfig?: MonitoringNetworkConfig | undefined;
1244
1246
  RoleArn: string | undefined;
1245
- StoppingCondition?: MonitoringStoppingCondition;
1247
+ StoppingCondition?: MonitoringStoppingCondition | undefined;
1246
1248
  }
1247
1249
  export interface DescribeDeviceRequest {
1248
- NextToken?: string;
1250
+ NextToken?: string | undefined;
1249
1251
  DeviceName: string | undefined;
1250
1252
  DeviceFleetName: string | undefined;
1251
1253
  }
1252
1254
  export interface EdgeModel {
1253
1255
  ModelName: string | undefined;
1254
1256
  ModelVersion: string | undefined;
1255
- LatestSampleTime?: Date;
1256
- LatestInference?: Date;
1257
+ LatestSampleTime?: Date | undefined;
1258
+ LatestInference?: Date | undefined;
1257
1259
  }
1258
1260
  export interface DescribeDeviceResponse {
1259
- DeviceArn?: string;
1261
+ DeviceArn?: string | undefined;
1260
1262
  DeviceName: string | undefined;
1261
- Description?: string;
1263
+ Description?: string | undefined;
1262
1264
  DeviceFleetName: string | undefined;
1263
- IotThingName?: string;
1265
+ IotThingName?: string | undefined;
1264
1266
  RegistrationTime: Date | undefined;
1265
- LatestHeartbeat?: Date;
1266
- Models?: EdgeModel[];
1267
- MaxModels?: number;
1268
- NextToken?: string;
1269
- AgentVersion?: string;
1267
+ LatestHeartbeat?: Date | undefined;
1268
+ Models?: EdgeModel[] | undefined;
1269
+ MaxModels?: number | undefined;
1270
+ NextToken?: string | undefined;
1271
+ AgentVersion?: string | undefined;
1270
1272
  }
1271
1273
  export interface DescribeDeviceFleetRequest {
1272
1274
  DeviceFleetName: string | undefined;
@@ -1275,11 +1277,11 @@ export interface DescribeDeviceFleetResponse {
1275
1277
  DeviceFleetName: string | undefined;
1276
1278
  DeviceFleetArn: string | undefined;
1277
1279
  OutputConfig: EdgeOutputConfig | undefined;
1278
- Description?: string;
1280
+ Description?: string | undefined;
1279
1281
  CreationTime: Date | undefined;
1280
1282
  LastModifiedTime: Date | undefined;
1281
- RoleArn?: string;
1282
- IotRoleAlias?: string;
1283
+ RoleArn?: string | undefined;
1284
+ IotRoleAlias?: string | undefined;
1283
1285
  }
1284
1286
  export interface DescribeDomainRequest {
1285
1287
  DomainId: string | undefined;
@@ -1295,47 +1297,47 @@ export declare const DomainStatus: {
1295
1297
  };
1296
1298
  export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
1297
1299
  export interface DescribeDomainResponse {
1298
- DomainArn?: string;
1299
- DomainId?: string;
1300
- DomainName?: string;
1301
- HomeEfsFileSystemId?: string;
1302
- SingleSignOnManagedApplicationInstanceId?: string;
1303
- SingleSignOnApplicationArn?: string;
1304
- Status?: DomainStatus;
1305
- CreationTime?: Date;
1306
- LastModifiedTime?: Date;
1307
- FailureReason?: string;
1308
- SecurityGroupIdForDomainBoundary?: string;
1309
- AuthMode?: AuthMode;
1310
- DefaultUserSettings?: UserSettings;
1311
- DomainSettings?: DomainSettings;
1312
- AppNetworkAccessType?: AppNetworkAccessType;
1313
- HomeEfsFileSystemKmsKeyId?: string;
1314
- SubnetIds?: string[];
1315
- Url?: string;
1316
- VpcId?: string;
1317
- KmsKeyId?: string;
1318
- AppSecurityGroupManagement?: AppSecurityGroupManagement;
1319
- TagPropagation?: TagPropagation;
1320
- DefaultSpaceSettings?: DefaultSpaceSettings;
1300
+ DomainArn?: string | undefined;
1301
+ DomainId?: string | undefined;
1302
+ DomainName?: string | undefined;
1303
+ HomeEfsFileSystemId?: string | undefined;
1304
+ SingleSignOnManagedApplicationInstanceId?: string | undefined;
1305
+ SingleSignOnApplicationArn?: string | undefined;
1306
+ Status?: DomainStatus | undefined;
1307
+ CreationTime?: Date | undefined;
1308
+ LastModifiedTime?: Date | undefined;
1309
+ FailureReason?: string | undefined;
1310
+ SecurityGroupIdForDomainBoundary?: string | undefined;
1311
+ AuthMode?: AuthMode | undefined;
1312
+ DefaultUserSettings?: UserSettings | undefined;
1313
+ DomainSettings?: DomainSettings | undefined;
1314
+ AppNetworkAccessType?: AppNetworkAccessType | undefined;
1315
+ HomeEfsFileSystemKmsKeyId?: string | undefined;
1316
+ SubnetIds?: string[] | undefined;
1317
+ Url?: string | undefined;
1318
+ VpcId?: string | undefined;
1319
+ KmsKeyId?: string | undefined;
1320
+ AppSecurityGroupManagement?: AppSecurityGroupManagement | undefined;
1321
+ TagPropagation?: TagPropagation | undefined;
1322
+ DefaultSpaceSettings?: DefaultSpaceSettings | undefined;
1321
1323
  }
1322
1324
  export interface DescribeEdgeDeploymentPlanRequest {
1323
1325
  EdgeDeploymentPlanName: string | undefined;
1324
- NextToken?: string;
1325
- MaxResults?: number;
1326
+ NextToken?: string | undefined;
1327
+ MaxResults?: number | undefined;
1326
1328
  }
1327
1329
  export interface DescribeEdgeDeploymentPlanResponse {
1328
1330
  EdgeDeploymentPlanArn: string | undefined;
1329
1331
  EdgeDeploymentPlanName: string | undefined;
1330
1332
  ModelConfigs: EdgeDeploymentModelConfig[] | undefined;
1331
1333
  DeviceFleetName: string | undefined;
1332
- EdgeDeploymentSuccess?: number;
1333
- EdgeDeploymentPending?: number;
1334
- EdgeDeploymentFailed?: number;
1334
+ EdgeDeploymentSuccess?: number | undefined;
1335
+ EdgeDeploymentPending?: number | undefined;
1336
+ EdgeDeploymentFailed?: number | undefined;
1335
1337
  Stages: DeploymentStageStatusSummary[] | undefined;
1336
- NextToken?: string;
1337
- CreationTime?: Date;
1338
- LastModifiedTime?: Date;
1338
+ NextToken?: string | undefined;
1339
+ CreationTime?: Date | undefined;
1340
+ LastModifiedTime?: Date | undefined;
1339
1341
  }
1340
1342
  export interface DescribeEdgePackagingJobRequest {
1341
1343
  EdgePackagingJobName: string | undefined;
@@ -1358,26 +1360,26 @@ export type EdgePresetDeploymentStatus =
1358
1360
  (typeof EdgePresetDeploymentStatus)[keyof typeof EdgePresetDeploymentStatus];
1359
1361
  export interface EdgePresetDeploymentOutput {
1360
1362
  Type: EdgePresetDeploymentType | undefined;
1361
- Artifact?: string;
1362
- Status?: EdgePresetDeploymentStatus;
1363
- StatusMessage?: string;
1363
+ Artifact?: string | undefined;
1364
+ Status?: EdgePresetDeploymentStatus | undefined;
1365
+ StatusMessage?: string | undefined;
1364
1366
  }
1365
1367
  export interface DescribeEdgePackagingJobResponse {
1366
1368
  EdgePackagingJobArn: string | undefined;
1367
1369
  EdgePackagingJobName: string | undefined;
1368
- CompilationJobName?: string;
1369
- ModelName?: string;
1370
- ModelVersion?: string;
1371
- RoleArn?: string;
1372
- OutputConfig?: EdgeOutputConfig;
1373
- ResourceKey?: string;
1370
+ CompilationJobName?: string | undefined;
1371
+ ModelName?: string | undefined;
1372
+ ModelVersion?: string | undefined;
1373
+ RoleArn?: string | undefined;
1374
+ OutputConfig?: EdgeOutputConfig | undefined;
1375
+ ResourceKey?: string | undefined;
1374
1376
  EdgePackagingJobStatus: EdgePackagingJobStatus | undefined;
1375
- EdgePackagingJobStatusMessage?: string;
1376
- CreationTime?: Date;
1377
- LastModifiedTime?: Date;
1378
- ModelArtifact?: string;
1379
- ModelSignature?: string;
1380
- PresetDeploymentOutput?: EdgePresetDeploymentOutput;
1377
+ EdgePackagingJobStatusMessage?: string | undefined;
1378
+ CreationTime?: Date | undefined;
1379
+ LastModifiedTime?: Date | undefined;
1380
+ ModelArtifact?: string | undefined;
1381
+ ModelSignature?: string | undefined;
1382
+ PresetDeploymentOutput?: EdgePresetDeploymentOutput | undefined;
1381
1383
  }
1382
1384
  export interface DescribeEndpointInput {
1383
1385
  EndpointName: string | undefined;
@@ -1405,58 +1407,58 @@ export declare const VariantStatus: {
1405
1407
  export type VariantStatus = (typeof VariantStatus)[keyof typeof VariantStatus];
1406
1408
  export interface ProductionVariantStatus {
1407
1409
  Status: VariantStatus | undefined;
1408
- StatusMessage?: string;
1409
- StartTime?: Date;
1410
+ StatusMessage?: string | undefined;
1411
+ StartTime?: Date | undefined;
1410
1412
  }
1411
1413
  export interface PendingProductionVariantSummary {
1412
1414
  VariantName: string | undefined;
1413
- DeployedImages?: DeployedImage[];
1414
- CurrentWeight?: number;
1415
- DesiredWeight?: number;
1416
- CurrentInstanceCount?: number;
1417
- DesiredInstanceCount?: number;
1418
- InstanceType?: ProductionVariantInstanceType;
1419
- AcceleratorType?: ProductionVariantAcceleratorType;
1420
- VariantStatus?: ProductionVariantStatus[];
1421
- CurrentServerlessConfig?: ProductionVariantServerlessConfig;
1422
- DesiredServerlessConfig?: ProductionVariantServerlessConfig;
1423
- ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
1424
- RoutingConfig?: ProductionVariantRoutingConfig;
1415
+ DeployedImages?: DeployedImage[] | undefined;
1416
+ CurrentWeight?: number | undefined;
1417
+ DesiredWeight?: number | undefined;
1418
+ CurrentInstanceCount?: number | undefined;
1419
+ DesiredInstanceCount?: number | undefined;
1420
+ InstanceType?: ProductionVariantInstanceType | undefined;
1421
+ AcceleratorType?: ProductionVariantAcceleratorType | undefined;
1422
+ VariantStatus?: ProductionVariantStatus[] | undefined;
1423
+ CurrentServerlessConfig?: ProductionVariantServerlessConfig | undefined;
1424
+ DesiredServerlessConfig?: ProductionVariantServerlessConfig | undefined;
1425
+ ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling | undefined;
1426
+ RoutingConfig?: ProductionVariantRoutingConfig | undefined;
1425
1427
  }
1426
1428
  export interface PendingDeploymentSummary {
1427
1429
  EndpointConfigName: string | undefined;
1428
- ProductionVariants?: PendingProductionVariantSummary[];
1429
- StartTime?: Date;
1430
- ShadowProductionVariants?: PendingProductionVariantSummary[];
1430
+ ProductionVariants?: PendingProductionVariantSummary[] | undefined;
1431
+ StartTime?: Date | undefined;
1432
+ ShadowProductionVariants?: PendingProductionVariantSummary[] | undefined;
1431
1433
  }
1432
1434
  export interface ProductionVariantSummary {
1433
1435
  VariantName: string | undefined;
1434
- DeployedImages?: DeployedImage[];
1435
- CurrentWeight?: number;
1436
- DesiredWeight?: number;
1437
- CurrentInstanceCount?: number;
1438
- DesiredInstanceCount?: number;
1439
- VariantStatus?: ProductionVariantStatus[];
1440
- CurrentServerlessConfig?: ProductionVariantServerlessConfig;
1441
- DesiredServerlessConfig?: ProductionVariantServerlessConfig;
1442
- ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
1443
- RoutingConfig?: ProductionVariantRoutingConfig;
1436
+ DeployedImages?: DeployedImage[] | undefined;
1437
+ CurrentWeight?: number | undefined;
1438
+ DesiredWeight?: number | undefined;
1439
+ CurrentInstanceCount?: number | undefined;
1440
+ DesiredInstanceCount?: number | undefined;
1441
+ VariantStatus?: ProductionVariantStatus[] | undefined;
1442
+ CurrentServerlessConfig?: ProductionVariantServerlessConfig | undefined;
1443
+ DesiredServerlessConfig?: ProductionVariantServerlessConfig | undefined;
1444
+ ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling | undefined;
1445
+ RoutingConfig?: ProductionVariantRoutingConfig | undefined;
1444
1446
  }
1445
1447
  export interface DescribeEndpointOutput {
1446
1448
  EndpointName: string | undefined;
1447
1449
  EndpointArn: string | undefined;
1448
- EndpointConfigName?: string;
1449
- ProductionVariants?: ProductionVariantSummary[];
1450
- DataCaptureConfig?: DataCaptureConfigSummary;
1450
+ EndpointConfigName?: string | undefined;
1451
+ ProductionVariants?: ProductionVariantSummary[] | undefined;
1452
+ DataCaptureConfig?: DataCaptureConfigSummary | undefined;
1451
1453
  EndpointStatus: EndpointStatus | undefined;
1452
- FailureReason?: string;
1454
+ FailureReason?: string | undefined;
1453
1455
  CreationTime: Date | undefined;
1454
1456
  LastModifiedTime: Date | undefined;
1455
- LastDeploymentConfig?: DeploymentConfig;
1456
- AsyncInferenceConfig?: AsyncInferenceConfig;
1457
- PendingDeploymentSummary?: PendingDeploymentSummary;
1458
- ExplainerConfig?: ExplainerConfig;
1459
- ShadowProductionVariants?: ProductionVariantSummary[];
1457
+ LastDeploymentConfig?: DeploymentConfig | undefined;
1458
+ AsyncInferenceConfig?: AsyncInferenceConfig | undefined;
1459
+ PendingDeploymentSummary?: PendingDeploymentSummary | undefined;
1460
+ ExplainerConfig?: ExplainerConfig | undefined;
1461
+ ShadowProductionVariants?: ProductionVariantSummary[] | undefined;
1460
1462
  }
1461
1463
  export interface DescribeEndpointConfigInput {
1462
1464
  EndpointConfigName: string | undefined;
@@ -1465,37 +1467,37 @@ export interface DescribeEndpointConfigOutput {
1465
1467
  EndpointConfigName: string | undefined;
1466
1468
  EndpointConfigArn: string | undefined;
1467
1469
  ProductionVariants: ProductionVariant[] | undefined;
1468
- DataCaptureConfig?: DataCaptureConfig;
1469
- KmsKeyId?: string;
1470
+ DataCaptureConfig?: DataCaptureConfig | undefined;
1471
+ KmsKeyId?: string | undefined;
1470
1472
  CreationTime: Date | undefined;
1471
- AsyncInferenceConfig?: AsyncInferenceConfig;
1472
- ExplainerConfig?: ExplainerConfig;
1473
- ShadowProductionVariants?: ProductionVariant[];
1474
- ExecutionRoleArn?: string;
1475
- VpcConfig?: VpcConfig;
1476
- EnableNetworkIsolation?: boolean;
1473
+ AsyncInferenceConfig?: AsyncInferenceConfig | undefined;
1474
+ ExplainerConfig?: ExplainerConfig | undefined;
1475
+ ShadowProductionVariants?: ProductionVariant[] | undefined;
1476
+ ExecutionRoleArn?: string | undefined;
1477
+ VpcConfig?: VpcConfig | undefined;
1478
+ EnableNetworkIsolation?: boolean | undefined;
1477
1479
  }
1478
1480
  export interface DescribeExperimentRequest {
1479
1481
  ExperimentName: string | undefined;
1480
1482
  }
1481
1483
  export interface ExperimentSource {
1482
1484
  SourceArn: string | undefined;
1483
- SourceType?: string;
1485
+ SourceType?: string | undefined;
1484
1486
  }
1485
1487
  export interface DescribeExperimentResponse {
1486
- ExperimentName?: string;
1487
- ExperimentArn?: string;
1488
- DisplayName?: string;
1489
- Source?: ExperimentSource;
1490
- Description?: string;
1491
- CreationTime?: Date;
1492
- CreatedBy?: UserContext;
1493
- LastModifiedTime?: Date;
1494
- LastModifiedBy?: UserContext;
1488
+ ExperimentName?: string | undefined;
1489
+ ExperimentArn?: string | undefined;
1490
+ DisplayName?: string | undefined;
1491
+ Source?: ExperimentSource | undefined;
1492
+ Description?: string | undefined;
1493
+ CreationTime?: Date | undefined;
1494
+ CreatedBy?: UserContext | undefined;
1495
+ LastModifiedTime?: Date | undefined;
1496
+ LastModifiedBy?: UserContext | undefined;
1495
1497
  }
1496
1498
  export interface DescribeFeatureGroupRequest {
1497
1499
  FeatureGroupName: string | undefined;
1498
- NextToken?: string;
1500
+ NextToken?: string | undefined;
1499
1501
  }
1500
1502
  export declare const FeatureGroupStatus: {
1501
1503
  readonly CREATED: "Created";
@@ -1515,7 +1517,7 @@ export type LastUpdateStatusValue =
1515
1517
  (typeof LastUpdateStatusValue)[keyof typeof LastUpdateStatusValue];
1516
1518
  export interface LastUpdateStatus {
1517
1519
  Status: LastUpdateStatusValue | undefined;
1518
- FailureReason?: string;
1520
+ FailureReason?: string | undefined;
1519
1521
  }
1520
1522
  export declare const OfflineStoreStatusValue: {
1521
1523
  readonly ACTIVE: "Active";
@@ -1526,12 +1528,12 @@ export type OfflineStoreStatusValue =
1526
1528
  (typeof OfflineStoreStatusValue)[keyof typeof OfflineStoreStatusValue];
1527
1529
  export interface OfflineStoreStatus {
1528
1530
  Status: OfflineStoreStatusValue | undefined;
1529
- BlockedReason?: string;
1531
+ BlockedReason?: string | undefined;
1530
1532
  }
1531
1533
  export interface ThroughputConfigDescription {
1532
1534
  ThroughputMode: ThroughputMode | undefined;
1533
- ProvisionedReadCapacityUnits?: number;
1534
- ProvisionedWriteCapacityUnits?: number;
1535
+ ProvisionedReadCapacityUnits?: number | undefined;
1536
+ ProvisionedWriteCapacityUnits?: number | undefined;
1535
1537
  }
1536
1538
  export interface DescribeFeatureGroupResponse {
1537
1539
  FeatureGroupArn: string | undefined;
@@ -1540,26 +1542,26 @@ export interface DescribeFeatureGroupResponse {
1540
1542
  EventTimeFeatureName: string | undefined;
1541
1543
  FeatureDefinitions: FeatureDefinition[] | undefined;
1542
1544
  CreationTime: Date | undefined;
1543
- LastModifiedTime?: Date;
1544
- OnlineStoreConfig?: OnlineStoreConfig;
1545
- OfflineStoreConfig?: OfflineStoreConfig;
1546
- ThroughputConfig?: ThroughputConfigDescription;
1547
- RoleArn?: string;
1548
- FeatureGroupStatus?: FeatureGroupStatus;
1549
- OfflineStoreStatus?: OfflineStoreStatus;
1550
- LastUpdateStatus?: LastUpdateStatus;
1551
- FailureReason?: string;
1552
- Description?: string;
1545
+ LastModifiedTime?: Date | undefined;
1546
+ OnlineStoreConfig?: OnlineStoreConfig | undefined;
1547
+ OfflineStoreConfig?: OfflineStoreConfig | undefined;
1548
+ ThroughputConfig?: ThroughputConfigDescription | undefined;
1549
+ RoleArn?: string | undefined;
1550
+ FeatureGroupStatus?: FeatureGroupStatus | undefined;
1551
+ OfflineStoreStatus?: OfflineStoreStatus | undefined;
1552
+ LastUpdateStatus?: LastUpdateStatus | undefined;
1553
+ FailureReason?: string | undefined;
1554
+ Description?: string | undefined;
1553
1555
  NextToken: string | undefined;
1554
- OnlineStoreTotalSizeBytes?: number;
1556
+ OnlineStoreTotalSizeBytes?: number | undefined;
1555
1557
  }
1556
1558
  export interface DescribeFeatureMetadataRequest {
1557
1559
  FeatureGroupName: string | undefined;
1558
1560
  FeatureName: string | undefined;
1559
1561
  }
1560
1562
  export interface FeatureParameter {
1561
- Key?: string;
1562
- Value?: string;
1563
+ Key?: string | undefined;
1564
+ Value?: string | undefined;
1563
1565
  }
1564
1566
  export interface DescribeFeatureMetadataResponse {
1565
1567
  FeatureGroupArn: string | undefined;
@@ -1568,8 +1570,8 @@ export interface DescribeFeatureMetadataResponse {
1568
1570
  FeatureType: FeatureType | undefined;
1569
1571
  CreationTime: Date | undefined;
1570
1572
  LastModifiedTime: Date | undefined;
1571
- Description?: string;
1572
- Parameters?: FeatureParameter[];
1573
+ Description?: string | undefined;
1574
+ Parameters?: FeatureParameter[] | undefined;
1573
1575
  }
1574
1576
  export interface DescribeFlowDefinitionRequest {
1575
1577
  FlowDefinitionName: string | undefined;
@@ -1587,12 +1589,12 @@ export interface DescribeFlowDefinitionResponse {
1587
1589
  FlowDefinitionName: string | undefined;
1588
1590
  FlowDefinitionStatus: FlowDefinitionStatus | undefined;
1589
1591
  CreationTime: Date | undefined;
1590
- HumanLoopRequestSource?: HumanLoopRequestSource;
1591
- HumanLoopActivationConfig?: HumanLoopActivationConfig;
1592
- HumanLoopConfig?: HumanLoopConfig;
1592
+ HumanLoopRequestSource?: HumanLoopRequestSource | undefined;
1593
+ HumanLoopActivationConfig?: HumanLoopActivationConfig | undefined;
1594
+ HumanLoopConfig?: HumanLoopConfig | undefined;
1593
1595
  OutputConfig: FlowDefinitionOutputConfig | undefined;
1594
1596
  RoleArn: string | undefined;
1595
- FailureReason?: string;
1597
+ FailureReason?: string | undefined;
1596
1598
  }
1597
1599
  export interface DescribeHubRequest {
1598
1600
  HubName: string | undefined;
@@ -1610,12 +1612,12 @@ export type HubStatus = (typeof HubStatus)[keyof typeof HubStatus];
1610
1612
  export interface DescribeHubResponse {
1611
1613
  HubName: string | undefined;
1612
1614
  HubArn: string | undefined;
1613
- HubDisplayName?: string;
1614
- HubDescription?: string;
1615
- HubSearchKeywords?: string[];
1616
- S3StorageConfig?: HubS3StorageConfig;
1615
+ HubDisplayName?: string | undefined;
1616
+ HubDescription?: string | undefined;
1617
+ HubSearchKeywords?: string[] | undefined;
1618
+ S3StorageConfig?: HubS3StorageConfig | undefined;
1617
1619
  HubStatus: HubStatus | undefined;
1618
- FailureReason?: string;
1620
+ FailureReason?: string | undefined;
1619
1621
  CreationTime: Date | undefined;
1620
1622
  LastModifiedTime: Date | undefined;
1621
1623
  }
@@ -1623,11 +1625,11 @@ export interface DescribeHubContentRequest {
1623
1625
  HubName: string | undefined;
1624
1626
  HubContentType: HubContentType | undefined;
1625
1627
  HubContentName: string | undefined;
1626
- HubContentVersion?: string;
1628
+ HubContentVersion?: string | undefined;
1627
1629
  }
1628
1630
  export interface HubContentDependency {
1629
- DependencyOriginPath?: string;
1630
- DependencyCopyPath?: string;
1631
+ DependencyOriginPath?: string | undefined;
1632
+ DependencyCopyPath?: string | undefined;
1631
1633
  }
1632
1634
  export declare const HubContentStatus: {
1633
1635
  readonly AVAILABLE: "Available";
@@ -1652,17 +1654,17 @@ export interface DescribeHubContentResponse {
1652
1654
  DocumentSchemaVersion: string | undefined;
1653
1655
  HubName: string | undefined;
1654
1656
  HubArn: string | undefined;
1655
- HubContentDisplayName?: string;
1656
- HubContentDescription?: string;
1657
- HubContentMarkdown?: string;
1657
+ HubContentDisplayName?: string | undefined;
1658
+ HubContentDescription?: string | undefined;
1659
+ HubContentMarkdown?: string | undefined;
1658
1660
  HubContentDocument: string | undefined;
1659
- SageMakerPublicHubContentArn?: string;
1660
- ReferenceMinVersion?: string;
1661
- SupportStatus?: HubContentSupportStatus;
1662
- HubContentSearchKeywords?: string[];
1663
- HubContentDependencies?: HubContentDependency[];
1661
+ SageMakerPublicHubContentArn?: string | undefined;
1662
+ ReferenceMinVersion?: string | undefined;
1663
+ SupportStatus?: HubContentSupportStatus | undefined;
1664
+ HubContentSearchKeywords?: string[] | undefined;
1665
+ HubContentDependencies?: HubContentDependency[] | undefined;
1664
1666
  HubContentStatus: HubContentStatus | undefined;
1665
- FailureReason?: string;
1667
+ FailureReason?: string | undefined;
1666
1668
  CreationTime: Date | undefined;
1667
1669
  }
1668
1670
  export interface DescribeHumanTaskUiRequest {
@@ -1675,13 +1677,13 @@ export declare const HumanTaskUiStatus: {
1675
1677
  export type HumanTaskUiStatus =
1676
1678
  (typeof HumanTaskUiStatus)[keyof typeof HumanTaskUiStatus];
1677
1679
  export interface UiTemplateInfo {
1678
- Url?: string;
1679
- ContentSha256?: string;
1680
+ Url?: string | undefined;
1681
+ ContentSha256?: string | undefined;
1680
1682
  }
1681
1683
  export interface DescribeHumanTaskUiResponse {
1682
1684
  HumanTaskUiArn: string | undefined;
1683
1685
  HumanTaskUiName: string | undefined;
1684
- HumanTaskUiStatus?: HumanTaskUiStatus;
1686
+ HumanTaskUiStatus?: HumanTaskUiStatus | undefined;
1685
1687
  CreationTime: Date | undefined;
1686
1688
  UiTemplate: UiTemplateInfo | undefined;
1687
1689
  }
@@ -1689,7 +1691,7 @@ export interface DescribeHyperParameterTuningJobRequest {
1689
1691
  HyperParameterTuningJobName: string | undefined;
1690
1692
  }
1691
1693
  export interface FinalHyperParameterTuningJobObjectiveMetric {
1692
- Type?: HyperParameterTuningJobObjectiveType;
1694
+ Type?: HyperParameterTuningJobObjectiveType | undefined;
1693
1695
  MetricName: string | undefined;
1694
1696
  Value: number | undefined;
1695
1697
  }
@@ -1703,21 +1705,23 @@ export declare const TrainingJobStatus: {
1703
1705
  export type TrainingJobStatus =
1704
1706
  (typeof TrainingJobStatus)[keyof typeof TrainingJobStatus];
1705
1707
  export interface HyperParameterTrainingJobSummary {
1706
- TrainingJobDefinitionName?: string;
1708
+ TrainingJobDefinitionName?: string | undefined;
1707
1709
  TrainingJobName: string | undefined;
1708
1710
  TrainingJobArn: string | undefined;
1709
- TuningJobName?: string;
1711
+ TuningJobName?: string | undefined;
1710
1712
  CreationTime: Date | undefined;
1711
- TrainingStartTime?: Date;
1712
- TrainingEndTime?: Date;
1713
+ TrainingStartTime?: Date | undefined;
1714
+ TrainingEndTime?: Date | undefined;
1713
1715
  TrainingJobStatus: TrainingJobStatus | undefined;
1714
1716
  TunedHyperParameters: Record<string, string> | undefined;
1715
- FailureReason?: string;
1716
- FinalHyperParameterTuningJobObjectiveMetric?: FinalHyperParameterTuningJobObjectiveMetric;
1717
- ObjectiveStatus?: ObjectiveStatus;
1717
+ FailureReason?: string | undefined;
1718
+ FinalHyperParameterTuningJobObjectiveMetric?:
1719
+ | FinalHyperParameterTuningJobObjectiveMetric
1720
+ | undefined;
1721
+ ObjectiveStatus?: ObjectiveStatus | undefined;
1718
1722
  }
1719
1723
  export interface HyperParameterTuningJobConsumedResources {
1720
- RuntimeInSeconds?: number;
1724
+ RuntimeInSeconds?: number | undefined;
1721
1725
  }
1722
1726
  export declare const HyperParameterTuningJobStatus: {
1723
1727
  readonly COMPLETED: "Completed";
@@ -1731,40 +1735,42 @@ export declare const HyperParameterTuningJobStatus: {
1731
1735
  export type HyperParameterTuningJobStatus =
1732
1736
  (typeof HyperParameterTuningJobStatus)[keyof typeof HyperParameterTuningJobStatus];
1733
1737
  export interface ObjectiveStatusCounters {
1734
- Succeeded?: number;
1735
- Pending?: number;
1736
- Failed?: number;
1738
+ Succeeded?: number | undefined;
1739
+ Pending?: number | undefined;
1740
+ Failed?: number | undefined;
1737
1741
  }
1738
1742
  export interface TrainingJobStatusCounters {
1739
- Completed?: number;
1740
- InProgress?: number;
1741
- RetryableError?: number;
1742
- NonRetryableError?: number;
1743
- Stopped?: number;
1743
+ Completed?: number | undefined;
1744
+ InProgress?: number | undefined;
1745
+ RetryableError?: number | undefined;
1746
+ NonRetryableError?: number | undefined;
1747
+ Stopped?: number | undefined;
1744
1748
  }
1745
1749
  export interface HyperParameterTuningJobCompletionDetails {
1746
- NumberOfTrainingJobsObjectiveNotImproving?: number;
1747
- ConvergenceDetectedTime?: Date;
1750
+ NumberOfTrainingJobsObjectiveNotImproving?: number | undefined;
1751
+ ConvergenceDetectedTime?: Date | undefined;
1748
1752
  }
1749
1753
  export interface DescribeHyperParameterTuningJobResponse {
1750
1754
  HyperParameterTuningJobName: string | undefined;
1751
1755
  HyperParameterTuningJobArn: string | undefined;
1752
1756
  HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
1753
- TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
1754
- TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
1757
+ TrainingJobDefinition?: HyperParameterTrainingJobDefinition | undefined;
1758
+ TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[] | undefined;
1755
1759
  HyperParameterTuningJobStatus: HyperParameterTuningJobStatus | undefined;
1756
1760
  CreationTime: Date | undefined;
1757
- HyperParameterTuningEndTime?: Date;
1758
- LastModifiedTime?: Date;
1761
+ HyperParameterTuningEndTime?: Date | undefined;
1762
+ LastModifiedTime?: Date | undefined;
1759
1763
  TrainingJobStatusCounters: TrainingJobStatusCounters | undefined;
1760
1764
  ObjectiveStatusCounters: ObjectiveStatusCounters | undefined;
1761
- BestTrainingJob?: HyperParameterTrainingJobSummary;
1762
- OverallBestTrainingJob?: HyperParameterTrainingJobSummary;
1763
- WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
1764
- Autotune?: Autotune;
1765
- FailureReason?: string;
1766
- TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails;
1767
- ConsumedResources?: HyperParameterTuningJobConsumedResources;
1765
+ BestTrainingJob?: HyperParameterTrainingJobSummary | undefined;
1766
+ OverallBestTrainingJob?: HyperParameterTrainingJobSummary | undefined;
1767
+ WarmStartConfig?: HyperParameterTuningJobWarmStartConfig | undefined;
1768
+ Autotune?: Autotune | undefined;
1769
+ FailureReason?: string | undefined;
1770
+ TuningJobCompletionDetails?:
1771
+ | HyperParameterTuningJobCompletionDetails
1772
+ | undefined;
1773
+ ConsumedResources?: HyperParameterTuningJobConsumedResources | undefined;
1768
1774
  }
1769
1775
  export interface DescribeImageRequest {
1770
1776
  ImageName: string | undefined;
@@ -1780,20 +1786,20 @@ export declare const ImageStatus: {
1780
1786
  };
1781
1787
  export type ImageStatus = (typeof ImageStatus)[keyof typeof ImageStatus];
1782
1788
  export interface DescribeImageResponse {
1783
- CreationTime?: Date;
1784
- Description?: string;
1785
- DisplayName?: string;
1786
- FailureReason?: string;
1787
- ImageArn?: string;
1788
- ImageName?: string;
1789
- ImageStatus?: ImageStatus;
1790
- LastModifiedTime?: Date;
1791
- RoleArn?: string;
1789
+ CreationTime?: Date | undefined;
1790
+ Description?: string | undefined;
1791
+ DisplayName?: string | undefined;
1792
+ FailureReason?: string | undefined;
1793
+ ImageArn?: string | undefined;
1794
+ ImageName?: string | undefined;
1795
+ ImageStatus?: ImageStatus | undefined;
1796
+ LastModifiedTime?: Date | undefined;
1797
+ RoleArn?: string | undefined;
1792
1798
  }
1793
1799
  export interface DescribeImageVersionRequest {
1794
1800
  ImageName: string | undefined;
1795
- Version?: number;
1796
- Alias?: string;
1801
+ Version?: number | undefined;
1802
+ Alias?: string | undefined;
1797
1803
  }
1798
1804
  export declare const ImageVersionStatus: {
1799
1805
  readonly CREATED: "CREATED";
@@ -1805,22 +1811,22 @@ export declare const ImageVersionStatus: {
1805
1811
  export type ImageVersionStatus =
1806
1812
  (typeof ImageVersionStatus)[keyof typeof ImageVersionStatus];
1807
1813
  export interface DescribeImageVersionResponse {
1808
- BaseImage?: string;
1809
- ContainerImage?: string;
1810
- CreationTime?: Date;
1811
- FailureReason?: string;
1812
- ImageArn?: string;
1813
- ImageVersionArn?: string;
1814
- ImageVersionStatus?: ImageVersionStatus;
1815
- LastModifiedTime?: Date;
1816
- Version?: number;
1817
- VendorGuidance?: VendorGuidance;
1818
- JobType?: JobType;
1819
- MLFramework?: string;
1820
- ProgrammingLang?: string;
1821
- Processor?: Processor;
1822
- Horovod?: boolean;
1823
- ReleaseNotes?: string;
1814
+ BaseImage?: string | undefined;
1815
+ ContainerImage?: string | undefined;
1816
+ CreationTime?: Date | undefined;
1817
+ FailureReason?: string | undefined;
1818
+ ImageArn?: string | undefined;
1819
+ ImageVersionArn?: string | undefined;
1820
+ ImageVersionStatus?: ImageVersionStatus | undefined;
1821
+ LastModifiedTime?: Date | undefined;
1822
+ Version?: number | undefined;
1823
+ VendorGuidance?: VendorGuidance | undefined;
1824
+ JobType?: JobType | undefined;
1825
+ MLFramework?: string | undefined;
1826
+ ProgrammingLang?: string | undefined;
1827
+ Processor?: Processor | undefined;
1828
+ Horovod?: boolean | undefined;
1829
+ ReleaseNotes?: string | undefined;
1824
1830
  }
1825
1831
  export interface DescribeInferenceComponentInput {
1826
1832
  InferenceComponentName: string | undefined;
@@ -1835,41 +1841,43 @@ export declare const InferenceComponentStatus: {
1835
1841
  export type InferenceComponentStatus =
1836
1842
  (typeof InferenceComponentStatus)[keyof typeof InferenceComponentStatus];
1837
1843
  export interface InferenceComponentRuntimeConfigSummary {
1838
- DesiredCopyCount?: number;
1839
- CurrentCopyCount?: number;
1844
+ DesiredCopyCount?: number | undefined;
1845
+ CurrentCopyCount?: number | undefined;
1840
1846
  }
1841
1847
  export interface InferenceComponentContainerSpecificationSummary {
1842
- DeployedImage?: DeployedImage;
1843
- ArtifactUrl?: string;
1844
- Environment?: Record<string, string>;
1848
+ DeployedImage?: DeployedImage | undefined;
1849
+ ArtifactUrl?: string | undefined;
1850
+ Environment?: Record<string, string> | undefined;
1845
1851
  }
1846
1852
  export interface InferenceComponentSpecificationSummary {
1847
- ModelName?: string;
1848
- Container?: InferenceComponentContainerSpecificationSummary;
1849
- StartupParameters?: InferenceComponentStartupParameters;
1850
- ComputeResourceRequirements?: InferenceComponentComputeResourceRequirements;
1853
+ ModelName?: string | undefined;
1854
+ Container?: InferenceComponentContainerSpecificationSummary | undefined;
1855
+ StartupParameters?: InferenceComponentStartupParameters | undefined;
1856
+ ComputeResourceRequirements?:
1857
+ | InferenceComponentComputeResourceRequirements
1858
+ | undefined;
1851
1859
  }
1852
1860
  export interface DescribeInferenceComponentOutput {
1853
1861
  InferenceComponentName: string | undefined;
1854
1862
  InferenceComponentArn: string | undefined;
1855
1863
  EndpointName: string | undefined;
1856
1864
  EndpointArn: string | undefined;
1857
- VariantName?: string;
1858
- FailureReason?: string;
1859
- Specification?: InferenceComponentSpecificationSummary;
1860
- RuntimeConfig?: InferenceComponentRuntimeConfigSummary;
1865
+ VariantName?: string | undefined;
1866
+ FailureReason?: string | undefined;
1867
+ Specification?: InferenceComponentSpecificationSummary | undefined;
1868
+ RuntimeConfig?: InferenceComponentRuntimeConfigSummary | undefined;
1861
1869
  CreationTime: Date | undefined;
1862
1870
  LastModifiedTime: Date | undefined;
1863
- InferenceComponentStatus?: InferenceComponentStatus;
1871
+ InferenceComponentStatus?: InferenceComponentStatus | undefined;
1864
1872
  }
1865
1873
  export interface DescribeInferenceExperimentRequest {
1866
1874
  Name: string | undefined;
1867
1875
  }
1868
1876
  export interface EndpointMetadata {
1869
1877
  EndpointName: string | undefined;
1870
- EndpointConfigName?: string;
1871
- EndpointStatus?: EndpointStatus;
1872
- FailureReason?: string;
1878
+ EndpointConfigName?: string | undefined;
1879
+ EndpointStatus?: EndpointStatus | undefined;
1880
+ FailureReason?: string | undefined;
1873
1881
  }
1874
1882
  export declare const ModelVariantStatus: {
1875
1883
  readonly CREATING: "Creating";
@@ -1902,19 +1910,19 @@ export interface DescribeInferenceExperimentResponse {
1902
1910
  Arn: string | undefined;
1903
1911
  Name: string | undefined;
1904
1912
  Type: InferenceExperimentType | undefined;
1905
- Schedule?: InferenceExperimentSchedule;
1913
+ Schedule?: InferenceExperimentSchedule | undefined;
1906
1914
  Status: InferenceExperimentStatus | undefined;
1907
- StatusReason?: string;
1908
- Description?: string;
1909
- CreationTime?: Date;
1910
- CompletionTime?: Date;
1911
- LastModifiedTime?: Date;
1912
- RoleArn?: string;
1915
+ StatusReason?: string | undefined;
1916
+ Description?: string | undefined;
1917
+ CreationTime?: Date | undefined;
1918
+ CompletionTime?: Date | undefined;
1919
+ LastModifiedTime?: Date | undefined;
1920
+ RoleArn?: string | undefined;
1913
1921
  EndpointMetadata: EndpointMetadata | undefined;
1914
1922
  ModelVariants: ModelVariantConfigSummary[] | undefined;
1915
- DataStorageConfig?: InferenceExperimentDataStorageConfig;
1916
- ShadowModeConfig?: ShadowModeConfig;
1917
- KmsKey?: string;
1923
+ DataStorageConfig?: InferenceExperimentDataStorageConfig | undefined;
1924
+ ShadowModeConfig?: ShadowModeConfig | undefined;
1925
+ KmsKey?: string | undefined;
1918
1926
  }
1919
1927
  export interface DescribeInferenceRecommendationsJobRequest {
1920
1928
  JobName: string | undefined;
@@ -1930,18 +1938,18 @@ export interface EndpointPerformance {
1930
1938
  export interface EndpointOutputConfiguration {
1931
1939
  EndpointName: string | undefined;
1932
1940
  VariantName: string | undefined;
1933
- InstanceType?: ProductionVariantInstanceType;
1934
- InitialInstanceCount?: number;
1935
- ServerlessConfig?: ProductionVariantServerlessConfig;
1941
+ InstanceType?: ProductionVariantInstanceType | undefined;
1942
+ InitialInstanceCount?: number | undefined;
1943
+ ServerlessConfig?: ProductionVariantServerlessConfig | undefined;
1936
1944
  }
1937
1945
  export interface RecommendationMetrics {
1938
- CostPerHour?: number;
1939
- CostPerInference?: number;
1940
- MaxInvocations?: number;
1941
- ModelLatency?: number;
1942
- CpuUtilization?: number;
1943
- MemoryUtilization?: number;
1944
- ModelSetupTime?: number;
1946
+ CostPerHour?: number | undefined;
1947
+ CostPerInference?: number | undefined;
1948
+ MaxInvocations?: number | undefined;
1949
+ ModelLatency?: number | undefined;
1950
+ CpuUtilization?: number | undefined;
1951
+ MemoryUtilization?: number | undefined;
1952
+ ModelSetupTime?: number | undefined;
1945
1953
  }
1946
1954
  export interface EnvironmentParameter {
1947
1955
  Key: string | undefined;
@@ -1949,17 +1957,17 @@ export interface EnvironmentParameter {
1949
1957
  Value: string | undefined;
1950
1958
  }
1951
1959
  export interface ModelConfiguration {
1952
- InferenceSpecificationName?: string;
1953
- EnvironmentParameters?: EnvironmentParameter[];
1954
- CompilationJobName?: string;
1960
+ InferenceSpecificationName?: string | undefined;
1961
+ EnvironmentParameters?: EnvironmentParameter[] | undefined;
1962
+ CompilationJobName?: string | undefined;
1955
1963
  }
1956
1964
  export interface InferenceRecommendation {
1957
- RecommendationId?: string;
1958
- Metrics?: RecommendationMetrics;
1965
+ RecommendationId?: string | undefined;
1966
+ Metrics?: RecommendationMetrics | undefined;
1959
1967
  EndpointConfiguration: EndpointOutputConfiguration | undefined;
1960
1968
  ModelConfiguration: ModelConfiguration | undefined;
1961
- InvocationEndTime?: Date;
1962
- InvocationStartTime?: Date;
1969
+ InvocationEndTime?: Date | undefined;
1970
+ InvocationStartTime?: Date | undefined;
1963
1971
  }
1964
1972
  export declare const RecommendationJobStatus: {
1965
1973
  readonly COMPLETED: "COMPLETED";