@aws-sdk/client-sagemaker 3.687.0 → 3.692.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist-cjs/index.js +12 -1
  2. package/dist-es/models/models_0.js +4 -0
  3. package/dist-es/models/models_1.js +7 -0
  4. package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +1 -1
  5. package/dist-types/commands/CreateAlgorithmCommand.d.ts +2 -2
  6. package/dist-types/commands/CreateInferenceExperimentCommand.d.ts +1 -1
  7. package/dist-types/commands/CreateModelPackageCommand.d.ts +3 -3
  8. package/dist-types/commands/CreateNotebookInstanceCommand.d.ts +1 -1
  9. package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeAlgorithmCommand.d.ts +2 -2
  11. package/dist-types/commands/DescribeInferenceExperimentCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeModelPackageCommand.d.ts +3 -3
  13. package/dist-types/commands/DescribeNotebookInstanceCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
  15. package/dist-types/commands/ListNotebookInstancesCommand.d.ts +1 -1
  16. package/dist-types/commands/SearchCommand.d.ts +4 -4
  17. package/dist-types/commands/StopInferenceExperimentCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateInferenceExperimentCommand.d.ts +1 -1
  19. package/dist-types/commands/UpdateModelPackageCommand.d.ts +2 -2
  20. package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +1 -1
  21. package/dist-types/models/models_0.d.ts +432 -428
  22. package/dist-types/models/models_1.d.ts +586 -579
  23. package/dist-types/models/models_2.d.ts +583 -583
  24. package/dist-types/models/models_3.d.ts +944 -944
  25. package/dist-types/models/models_4.d.ts +950 -950
  26. package/dist-types/models/models_5.d.ts +20 -20
  27. package/dist-types/ts3.4/models/models_0.d.ts +452 -433
  28. package/dist-types/ts3.4/models/models_1.d.ts +596 -579
  29. package/dist-types/ts3.4/models/models_2.d.ts +591 -583
  30. package/dist-types/ts3.4/models/models_3.d.ts +956 -944
  31. package/dist-types/ts3.4/models/models_4.d.ts +964 -950
  32. package/dist-types/ts3.4/models/models_5.d.ts +20 -20
  33. package/package.json +36 -36
@@ -2,8 +2,8 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
3
3
  export interface ActionSource {
4
4
  SourceUri: string | undefined;
5
- SourceType?: string;
6
- SourceId?: string;
5
+ SourceType?: string | undefined;
6
+ SourceId?: string | undefined;
7
7
  }
8
8
  export declare const ActionStatus: {
9
9
  readonly COMPLETED: "Completed";
@@ -15,13 +15,13 @@ export declare const ActionStatus: {
15
15
  };
16
16
  export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
17
17
  export interface ActionSummary {
18
- ActionArn?: string;
19
- ActionName?: string;
20
- Source?: ActionSource;
21
- ActionType?: string;
22
- Status?: ActionStatus;
23
- CreationTime?: Date;
24
- LastModifiedTime?: Date;
18
+ ActionArn?: string | undefined;
19
+ ActionName?: string | undefined;
20
+ Source?: ActionSource | undefined;
21
+ ActionType?: string | undefined;
22
+ Status?: ActionStatus | undefined;
23
+ CreationTime?: Date | undefined;
24
+ LastModifiedTime?: Date | undefined;
25
25
  }
26
26
  export declare const AssociationEdgeType: {
27
27
  readonly ASSOCIATED_WITH: "AssociatedWith";
@@ -35,16 +35,16 @@ export type AssociationEdgeType =
35
35
  export interface AddAssociationRequest {
36
36
  SourceArn: string | undefined;
37
37
  DestinationArn: string | undefined;
38
- AssociationType?: AssociationEdgeType;
38
+ AssociationType?: AssociationEdgeType | undefined;
39
39
  }
40
40
  export interface AddAssociationResponse {
41
- SourceArn?: string;
42
- DestinationArn?: string;
41
+ SourceArn?: string | undefined;
42
+ DestinationArn?: string | undefined;
43
43
  }
44
44
  export declare class ResourceLimitExceeded extends __BaseException {
45
45
  readonly name: "ResourceLimitExceeded";
46
46
  readonly $fault: "client";
47
- Message?: string;
47
+ Message?: string | undefined;
48
48
  constructor(
49
49
  opts: __ExceptionOptionType<ResourceLimitExceeded, __BaseException>
50
50
  );
@@ -52,7 +52,7 @@ export declare class ResourceLimitExceeded extends __BaseException {
52
52
  export declare class ResourceNotFound extends __BaseException {
53
53
  readonly name: "ResourceNotFound";
54
54
  readonly $fault: "client";
55
- Message?: string;
55
+ Message?: string | undefined;
56
56
  constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
57
57
  }
58
58
  export declare const CompressionType: {
@@ -70,7 +70,7 @@ export type AdditionalS3DataSourceDataType =
70
70
  export interface AdditionalS3DataSource {
71
71
  S3DataType: AdditionalS3DataSourceDataType | undefined;
72
72
  S3Uri: string | undefined;
73
- CompressionType?: CompressionType;
73
+ CompressionType?: CompressionType | undefined;
74
74
  }
75
75
  export declare const ModelCompressionType: {
76
76
  readonly Gzip: "Gzip";
@@ -94,29 +94,29 @@ export interface S3ModelDataSource {
94
94
  S3Uri: string | undefined;
95
95
  S3DataType: S3ModelDataType | undefined;
96
96
  CompressionType: ModelCompressionType | undefined;
97
- ModelAccessConfig?: ModelAccessConfig;
98
- HubAccessConfig?: InferenceHubAccessConfig;
99
- ManifestS3Uri?: string;
97
+ ModelAccessConfig?: ModelAccessConfig | undefined;
98
+ HubAccessConfig?: InferenceHubAccessConfig | undefined;
99
+ ManifestS3Uri?: string | undefined;
100
100
  }
101
101
  export interface ModelDataSource {
102
- S3DataSource?: S3ModelDataSource;
102
+ S3DataSource?: S3ModelDataSource | undefined;
103
103
  }
104
104
  export interface ModelInput {
105
105
  DataInputConfig: string | undefined;
106
106
  }
107
107
  export interface ModelPackageContainerDefinition {
108
- ContainerHostname?: string;
108
+ ContainerHostname?: string | undefined;
109
109
  Image: string | undefined;
110
- ImageDigest?: string;
111
- ModelDataUrl?: string;
112
- ModelDataSource?: ModelDataSource;
113
- ProductId?: string;
114
- Environment?: Record<string, string>;
115
- ModelInput?: ModelInput;
116
- Framework?: string;
117
- FrameworkVersion?: string;
118
- NearestModelName?: string;
119
- AdditionalS3DataSource?: AdditionalS3DataSource;
110
+ ImageDigest?: string | undefined;
111
+ ModelDataUrl?: string | undefined;
112
+ ModelDataSource?: ModelDataSource | undefined;
113
+ ProductId?: string | undefined;
114
+ Environment?: Record<string, string> | undefined;
115
+ ModelInput?: ModelInput | undefined;
116
+ Framework?: string | undefined;
117
+ FrameworkVersion?: string | undefined;
118
+ NearestModelName?: string | undefined;
119
+ AdditionalS3DataSource?: AdditionalS3DataSource | undefined;
120
120
  }
121
121
  export declare const ProductionVariantInstanceType: {
122
122
  readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
@@ -349,6 +349,10 @@ export declare const TransformInstanceType: {
349
349
  readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
350
350
  readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
351
351
  readonly ML_G5_XLARGE: "ml.g5.xlarge";
352
+ readonly ML_INF2_24XLARGE: "ml.inf2.24xlarge";
353
+ readonly ML_INF2_48XLARGE: "ml.inf2.48xlarge";
354
+ readonly ML_INF2_8XLARGE: "ml.inf2.8xlarge";
355
+ readonly ML_INF2_XLARGE: "ml.inf2.xlarge";
352
356
  readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
353
357
  readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
354
358
  readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
@@ -407,12 +411,14 @@ export type TransformInstanceType =
407
411
  (typeof TransformInstanceType)[keyof typeof TransformInstanceType];
408
412
  export interface AdditionalInferenceSpecificationDefinition {
409
413
  Name: string | undefined;
410
- Description?: string;
414
+ Description?: string | undefined;
411
415
  Containers: ModelPackageContainerDefinition[] | undefined;
412
- SupportedTransformInstanceTypes?: TransformInstanceType[];
413
- SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[];
414
- SupportedContentTypes?: string[];
415
- SupportedResponseMIMETypes?: string[];
416
+ SupportedTransformInstanceTypes?: TransformInstanceType[] | undefined;
417
+ SupportedRealtimeInferenceInstanceTypes?:
418
+ | ProductionVariantInstanceType[]
419
+ | undefined;
420
+ SupportedContentTypes?: string[] | undefined;
421
+ SupportedResponseMIMETypes?: string[] | undefined;
416
422
  }
417
423
  export interface AdditionalModelDataSource {
418
424
  ChannelName: string | undefined;
@@ -427,7 +433,7 @@ export interface AddTagsInput {
427
433
  Tags: Tag[] | undefined;
428
434
  }
429
435
  export interface AddTagsOutput {
430
- Tags?: Tag[];
436
+ Tags?: Tag[] | undefined;
431
437
  }
432
438
  export interface AgentVersion {
433
439
  Version: string | undefined;
@@ -443,7 +449,7 @@ export declare const AggregationTransformationValue: {
443
449
  export type AggregationTransformationValue =
444
450
  (typeof AggregationTransformationValue)[keyof typeof AggregationTransformationValue];
445
451
  export interface Alarm {
446
- AlarmName?: string;
452
+ AlarmName?: string | undefined;
447
453
  }
448
454
  export declare const AlgorithmSortBy: {
449
455
  readonly CREATION_TIME: "CreationTime";
@@ -466,7 +472,7 @@ export interface TrainingRepositoryAuthConfig {
466
472
  }
467
473
  export interface TrainingImageConfig {
468
474
  TrainingRepositoryAccessMode: TrainingRepositoryAccessMode | undefined;
469
- TrainingRepositoryAuthConfig?: TrainingRepositoryAuthConfig;
475
+ TrainingRepositoryAuthConfig?: TrainingRepositoryAuthConfig | undefined;
470
476
  }
471
477
  export declare const TrainingInputMode: {
472
478
  readonly FASTFILE: "FastFile";
@@ -476,14 +482,14 @@ export declare const TrainingInputMode: {
476
482
  export type TrainingInputMode =
477
483
  (typeof TrainingInputMode)[keyof typeof TrainingInputMode];
478
484
  export interface AlgorithmSpecification {
479
- TrainingImage?: string;
480
- AlgorithmName?: string;
485
+ TrainingImage?: string | undefined;
486
+ AlgorithmName?: string | undefined;
481
487
  TrainingInputMode: TrainingInputMode | undefined;
482
- MetricDefinitions?: MetricDefinition[];
483
- EnableSageMakerMetricsTimeSeries?: boolean;
484
- ContainerEntrypoint?: string[];
485
- ContainerArguments?: string[];
486
- TrainingImageConfig?: TrainingImageConfig;
488
+ MetricDefinitions?: MetricDefinition[] | undefined;
489
+ EnableSageMakerMetricsTimeSeries?: boolean | undefined;
490
+ ContainerEntrypoint?: string[] | undefined;
491
+ ContainerArguments?: string[] | undefined;
492
+ TrainingImageConfig?: TrainingImageConfig | undefined;
487
493
  }
488
494
  export declare const AlgorithmStatus: {
489
495
  readonly COMPLETED: "Completed";
@@ -505,16 +511,16 @@ export type DetailedAlgorithmStatus =
505
511
  export interface AlgorithmStatusItem {
506
512
  Name: string | undefined;
507
513
  Status: DetailedAlgorithmStatus | undefined;
508
- FailureReason?: string;
514
+ FailureReason?: string | undefined;
509
515
  }
510
516
  export interface AlgorithmStatusDetails {
511
- ValidationStatuses?: AlgorithmStatusItem[];
512
- ImageScanStatuses?: AlgorithmStatusItem[];
517
+ ValidationStatuses?: AlgorithmStatusItem[] | undefined;
518
+ ImageScanStatuses?: AlgorithmStatusItem[] | undefined;
513
519
  }
514
520
  export interface AlgorithmSummary {
515
521
  AlgorithmName: string | undefined;
516
522
  AlgorithmArn: string | undefined;
517
- AlgorithmDescription?: string;
523
+ AlgorithmDescription?: string | undefined;
518
524
  CreationTime: Date | undefined;
519
525
  AlgorithmStatus: AlgorithmStatus | undefined;
520
526
  }
@@ -551,13 +557,13 @@ export type S3DataType = (typeof S3DataType)[keyof typeof S3DataType];
551
557
  export interface S3DataSource {
552
558
  S3DataType: S3DataType | undefined;
553
559
  S3Uri: string | undefined;
554
- S3DataDistributionType?: S3DataDistribution;
555
- AttributeNames?: string[];
556
- InstanceGroupNames?: string[];
560
+ S3DataDistributionType?: S3DataDistribution | undefined;
561
+ AttributeNames?: string[] | undefined;
562
+ InstanceGroupNames?: string[] | undefined;
557
563
  }
558
564
  export interface DataSource {
559
- S3DataSource?: S3DataSource;
560
- FileSystemDataSource?: FileSystemDataSource;
565
+ S3DataSource?: S3DataSource | undefined;
566
+ FileSystemDataSource?: FileSystemDataSource | undefined;
561
567
  }
562
568
  export declare const RecordWrapper: {
563
569
  readonly NONE: "None";
@@ -570,11 +576,11 @@ export interface ShuffleConfig {
570
576
  export interface Channel {
571
577
  ChannelName: string | undefined;
572
578
  DataSource: DataSource | undefined;
573
- ContentType?: string;
574
- CompressionType?: CompressionType;
575
- RecordWrapperType?: RecordWrapper;
576
- InputMode?: TrainingInputMode;
577
- ShuffleConfig?: ShuffleConfig;
579
+ ContentType?: string | undefined;
580
+ CompressionType?: CompressionType | undefined;
581
+ RecordWrapperType?: RecordWrapper | undefined;
582
+ InputMode?: TrainingInputMode | undefined;
583
+ ShuffleConfig?: ShuffleConfig | undefined;
578
584
  }
579
585
  export declare const OutputCompressionType: {
580
586
  readonly GZIP: "GZIP";
@@ -583,9 +589,9 @@ export declare const OutputCompressionType: {
583
589
  export type OutputCompressionType =
584
590
  (typeof OutputCompressionType)[keyof typeof OutputCompressionType];
585
591
  export interface OutputDataConfig {
586
- KmsKeyId?: string;
592
+ KmsKeyId?: string | undefined;
587
593
  S3OutputPath: string | undefined;
588
- CompressionType?: OutputCompressionType;
594
+ CompressionType?: OutputCompressionType | undefined;
589
595
  }
590
596
  export declare const TrainingInstanceType: {
591
597
  readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
@@ -703,21 +709,21 @@ export interface InstanceGroup {
703
709
  InstanceGroupName: string | undefined;
704
710
  }
705
711
  export interface ResourceConfig {
706
- InstanceType?: TrainingInstanceType;
707
- InstanceCount?: number;
712
+ InstanceType?: TrainingInstanceType | undefined;
713
+ InstanceCount?: number | undefined;
708
714
  VolumeSizeInGB: number | undefined;
709
- VolumeKmsKeyId?: string;
710
- KeepAlivePeriodInSeconds?: number;
711
- InstanceGroups?: InstanceGroup[];
715
+ VolumeKmsKeyId?: string | undefined;
716
+ KeepAlivePeriodInSeconds?: number | undefined;
717
+ InstanceGroups?: InstanceGroup[] | undefined;
712
718
  }
713
719
  export interface StoppingCondition {
714
- MaxRuntimeInSeconds?: number;
715
- MaxWaitTimeInSeconds?: number;
716
- MaxPendingTimeInSeconds?: number;
720
+ MaxRuntimeInSeconds?: number | undefined;
721
+ MaxWaitTimeInSeconds?: number | undefined;
722
+ MaxPendingTimeInSeconds?: number | undefined;
717
723
  }
718
724
  export interface TrainingJobDefinition {
719
725
  TrainingInputMode: TrainingInputMode | undefined;
720
- HyperParameters?: Record<string, string>;
726
+ HyperParameters?: Record<string, string> | undefined;
721
727
  InputDataConfig: Channel[] | undefined;
722
728
  OutputDataConfig: OutputDataConfig | undefined;
723
729
  ResourceConfig: ResourceConfig | undefined;
@@ -744,9 +750,9 @@ export declare const SplitType: {
744
750
  export type SplitType = (typeof SplitType)[keyof typeof SplitType];
745
751
  export interface TransformInput {
746
752
  DataSource: TransformDataSource | undefined;
747
- ContentType?: string;
748
- CompressionType?: CompressionType;
749
- SplitType?: SplitType;
753
+ ContentType?: string | undefined;
754
+ CompressionType?: CompressionType | undefined;
755
+ SplitType?: SplitType | undefined;
750
756
  }
751
757
  export declare const AssemblyType: {
752
758
  readonly LINE: "Line";
@@ -755,20 +761,20 @@ export declare const AssemblyType: {
755
761
  export type AssemblyType = (typeof AssemblyType)[keyof typeof AssemblyType];
756
762
  export interface TransformOutput {
757
763
  S3OutputPath: string | undefined;
758
- Accept?: string;
759
- AssembleWith?: AssemblyType;
760
- KmsKeyId?: string;
764
+ Accept?: string | undefined;
765
+ AssembleWith?: AssemblyType | undefined;
766
+ KmsKeyId?: string | undefined;
761
767
  }
762
768
  export interface TransformResources {
763
769
  InstanceType: TransformInstanceType | undefined;
764
770
  InstanceCount: number | undefined;
765
- VolumeKmsKeyId?: string;
771
+ VolumeKmsKeyId?: string | undefined;
766
772
  }
767
773
  export interface TransformJobDefinition {
768
- MaxConcurrentTransforms?: number;
769
- MaxPayloadInMB?: number;
770
- BatchStrategy?: BatchStrategy;
771
- Environment?: Record<string, string>;
774
+ MaxConcurrentTransforms?: number | undefined;
775
+ MaxPayloadInMB?: number | undefined;
776
+ BatchStrategy?: BatchStrategy | undefined;
777
+ Environment?: Record<string, string> | undefined;
772
778
  TransformInput: TransformInput | undefined;
773
779
  TransformOutput: TransformOutput | undefined;
774
780
  TransformResources: TransformResources | undefined;
@@ -776,7 +782,7 @@ export interface TransformJobDefinition {
776
782
  export interface AlgorithmValidationProfile {
777
783
  ProfileName: string | undefined;
778
784
  TrainingJobDefinition: TrainingJobDefinition | undefined;
779
- TransformJobDefinition?: TransformJobDefinition;
785
+ TransformJobDefinition?: TransformJobDefinition | undefined;
780
786
  }
781
787
  export interface AlgorithmValidationSpecification {
782
788
  ValidationRole: string | undefined;
@@ -788,8 +794,8 @@ export declare const FeatureStatus: {
788
794
  };
789
795
  export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
790
796
  export interface AmazonQSettings {
791
- Status?: FeatureStatus;
792
- QProfileArn?: string;
797
+ Status?: FeatureStatus | undefined;
798
+ QProfileArn?: string | undefined;
793
799
  }
794
800
  export interface AnnotationConsolidationConfig {
795
801
  AnnotationConsolidationLambdaArn: string | undefined;
@@ -972,11 +978,11 @@ export declare const AppInstanceType: {
972
978
  export type AppInstanceType =
973
979
  (typeof AppInstanceType)[keyof typeof AppInstanceType];
974
980
  export interface ResourceSpec {
975
- SageMakerImageArn?: string;
976
- SageMakerImageVersionArn?: string;
977
- SageMakerImageVersionAlias?: string;
978
- InstanceType?: AppInstanceType;
979
- LifecycleConfigArn?: string;
981
+ SageMakerImageArn?: string | undefined;
982
+ SageMakerImageVersionArn?: string | undefined;
983
+ SageMakerImageVersionAlias?: string | undefined;
984
+ InstanceType?: AppInstanceType | undefined;
985
+ LifecycleConfigArn?: string | undefined;
980
986
  }
981
987
  export declare const AppStatus: {
982
988
  readonly Deleted: "Deleted";
@@ -987,49 +993,49 @@ export declare const AppStatus: {
987
993
  };
988
994
  export type AppStatus = (typeof AppStatus)[keyof typeof AppStatus];
989
995
  export interface AppDetails {
990
- DomainId?: string;
991
- UserProfileName?: string;
992
- SpaceName?: string;
993
- AppType?: AppType;
994
- AppName?: string;
995
- Status?: AppStatus;
996
- CreationTime?: Date;
997
- ResourceSpec?: ResourceSpec;
996
+ DomainId?: string | undefined;
997
+ UserProfileName?: string | undefined;
998
+ SpaceName?: string | undefined;
999
+ AppType?: AppType | undefined;
1000
+ AppName?: string | undefined;
1001
+ Status?: AppStatus | undefined;
1002
+ CreationTime?: Date | undefined;
1003
+ ResourceSpec?: ResourceSpec | undefined;
998
1004
  }
999
1005
  export interface ContainerConfig {
1000
- ContainerArguments?: string[];
1001
- ContainerEntrypoint?: string[];
1002
- ContainerEnvironmentVariables?: Record<string, string>;
1006
+ ContainerArguments?: string[] | undefined;
1007
+ ContainerEntrypoint?: string[] | undefined;
1008
+ ContainerEnvironmentVariables?: Record<string, string> | undefined;
1003
1009
  }
1004
1010
  export interface FileSystemConfig {
1005
- MountPath?: string;
1006
- DefaultUid?: number;
1007
- DefaultGid?: number;
1011
+ MountPath?: string | undefined;
1012
+ DefaultUid?: number | undefined;
1013
+ DefaultGid?: number | undefined;
1008
1014
  }
1009
1015
  export interface CodeEditorAppImageConfig {
1010
- FileSystemConfig?: FileSystemConfig;
1011
- ContainerConfig?: ContainerConfig;
1016
+ FileSystemConfig?: FileSystemConfig | undefined;
1017
+ ContainerConfig?: ContainerConfig | undefined;
1012
1018
  }
1013
1019
  export interface JupyterLabAppImageConfig {
1014
- FileSystemConfig?: FileSystemConfig;
1015
- ContainerConfig?: ContainerConfig;
1020
+ FileSystemConfig?: FileSystemConfig | undefined;
1021
+ ContainerConfig?: ContainerConfig | undefined;
1016
1022
  }
1017
1023
  export interface KernelSpec {
1018
1024
  Name: string | undefined;
1019
- DisplayName?: string;
1025
+ DisplayName?: string | undefined;
1020
1026
  }
1021
1027
  export interface KernelGatewayImageConfig {
1022
1028
  KernelSpecs: KernelSpec[] | undefined;
1023
- FileSystemConfig?: FileSystemConfig;
1029
+ FileSystemConfig?: FileSystemConfig | undefined;
1024
1030
  }
1025
1031
  export interface AppImageConfigDetails {
1026
- AppImageConfigArn?: string;
1027
- AppImageConfigName?: string;
1028
- CreationTime?: Date;
1029
- LastModifiedTime?: Date;
1030
- KernelGatewayImageConfig?: KernelGatewayImageConfig;
1031
- JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
1032
- CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
1032
+ AppImageConfigArn?: string | undefined;
1033
+ AppImageConfigName?: string | undefined;
1034
+ CreationTime?: Date | undefined;
1035
+ LastModifiedTime?: Date | undefined;
1036
+ KernelGatewayImageConfig?: KernelGatewayImageConfig | undefined;
1037
+ JupyterLabAppImageConfig?: JupyterLabAppImageConfig | undefined;
1038
+ CodeEditorAppImageConfig?: CodeEditorAppImageConfig | undefined;
1033
1039
  }
1034
1040
  export declare const AppImageConfigSortKey: {
1035
1041
  readonly CreationTime: "CreationTime";
@@ -1045,13 +1051,13 @@ export declare const LifecycleManagement: {
1045
1051
  export type LifecycleManagement =
1046
1052
  (typeof LifecycleManagement)[keyof typeof LifecycleManagement];
1047
1053
  export interface IdleSettings {
1048
- LifecycleManagement?: LifecycleManagement;
1049
- IdleTimeoutInMinutes?: number;
1050
- MinIdleTimeoutInMinutes?: number;
1051
- MaxIdleTimeoutInMinutes?: number;
1054
+ LifecycleManagement?: LifecycleManagement | undefined;
1055
+ IdleTimeoutInMinutes?: number | undefined;
1056
+ MinIdleTimeoutInMinutes?: number | undefined;
1057
+ MaxIdleTimeoutInMinutes?: number | undefined;
1052
1058
  }
1053
1059
  export interface AppLifecycleManagement {
1054
- IdleSettings?: IdleSettings;
1060
+ IdleSettings?: IdleSettings | undefined;
1055
1061
  }
1056
1062
  export declare const AppNetworkAccessType: {
1057
1063
  readonly PublicInternetOnly: "PublicInternetOnly";
@@ -1071,8 +1077,8 @@ export declare const AppSortKey: {
1071
1077
  export type AppSortKey = (typeof AppSortKey)[keyof typeof AppSortKey];
1072
1078
  export interface AppSpecification {
1073
1079
  ImageUri: string | undefined;
1074
- ContainerEntrypoint?: string[];
1075
- ContainerArguments?: string[];
1080
+ ContainerEntrypoint?: string[] | undefined;
1081
+ ContainerArguments?: string[] | undefined;
1076
1082
  }
1077
1083
  export declare const ArtifactSourceIdType: {
1078
1084
  readonly CUSTOM: "Custom";
@@ -1088,48 +1094,48 @@ export interface ArtifactSourceType {
1088
1094
  }
1089
1095
  export interface ArtifactSource {
1090
1096
  SourceUri: string | undefined;
1091
- SourceTypes?: ArtifactSourceType[];
1097
+ SourceTypes?: ArtifactSourceType[] | undefined;
1092
1098
  }
1093
1099
  export interface ArtifactSummary {
1094
- ArtifactArn?: string;
1095
- ArtifactName?: string;
1096
- Source?: ArtifactSource;
1097
- ArtifactType?: string;
1098
- CreationTime?: Date;
1099
- LastModifiedTime?: Date;
1100
+ ArtifactArn?: string | undefined;
1101
+ ArtifactName?: string | undefined;
1102
+ Source?: ArtifactSource | undefined;
1103
+ ArtifactType?: string | undefined;
1104
+ CreationTime?: Date | undefined;
1105
+ LastModifiedTime?: Date | undefined;
1100
1106
  }
1101
1107
  export interface AssociateTrialComponentRequest {
1102
1108
  TrialComponentName: string | undefined;
1103
1109
  TrialName: string | undefined;
1104
1110
  }
1105
1111
  export interface AssociateTrialComponentResponse {
1106
- TrialComponentArn?: string;
1107
- TrialArn?: string;
1112
+ TrialComponentArn?: string | undefined;
1113
+ TrialArn?: string | undefined;
1108
1114
  }
1109
1115
  export interface IamIdentity {
1110
- Arn?: string;
1111
- PrincipalId?: string;
1112
- SourceIdentity?: string;
1116
+ Arn?: string | undefined;
1117
+ PrincipalId?: string | undefined;
1118
+ SourceIdentity?: string | undefined;
1113
1119
  }
1114
1120
  export interface UserContext {
1115
- UserProfileArn?: string;
1116
- UserProfileName?: string;
1117
- DomainId?: string;
1118
- IamIdentity?: IamIdentity;
1121
+ UserProfileArn?: string | undefined;
1122
+ UserProfileName?: string | undefined;
1123
+ DomainId?: string | undefined;
1124
+ IamIdentity?: IamIdentity | undefined;
1119
1125
  }
1120
1126
  export interface AssociationSummary {
1121
- SourceArn?: string;
1122
- DestinationArn?: string;
1123
- SourceType?: string;
1124
- DestinationType?: string;
1125
- AssociationType?: AssociationEdgeType;
1126
- SourceName?: string;
1127
- DestinationName?: string;
1128
- CreationTime?: Date;
1129
- CreatedBy?: UserContext;
1127
+ SourceArn?: string | undefined;
1128
+ DestinationArn?: string | undefined;
1129
+ SourceType?: string | undefined;
1130
+ DestinationType?: string | undefined;
1131
+ AssociationType?: AssociationEdgeType | undefined;
1132
+ SourceName?: string | undefined;
1133
+ DestinationName?: string | undefined;
1134
+ CreationTime?: Date | undefined;
1135
+ CreatedBy?: UserContext | undefined;
1130
1136
  }
1131
1137
  export interface AsyncInferenceClientConfig {
1132
- MaxConcurrentInvocationsPerInstance?: number;
1138
+ MaxConcurrentInvocationsPerInstance?: number | undefined;
1133
1139
  }
1134
1140
  export declare const AsyncNotificationTopicTypes: {
1135
1141
  readonly ERROR_NOTIFICATION_TOPIC: "ERROR_NOTIFICATION_TOPIC";
@@ -1138,18 +1144,18 @@ export declare const AsyncNotificationTopicTypes: {
1138
1144
  export type AsyncNotificationTopicTypes =
1139
1145
  (typeof AsyncNotificationTopicTypes)[keyof typeof AsyncNotificationTopicTypes];
1140
1146
  export interface AsyncInferenceNotificationConfig {
1141
- SuccessTopic?: string;
1142
- ErrorTopic?: string;
1143
- IncludeInferenceResponseIn?: AsyncNotificationTopicTypes[];
1147
+ SuccessTopic?: string | undefined;
1148
+ ErrorTopic?: string | undefined;
1149
+ IncludeInferenceResponseIn?: AsyncNotificationTopicTypes[] | undefined;
1144
1150
  }
1145
1151
  export interface AsyncInferenceOutputConfig {
1146
- KmsKeyId?: string;
1147
- S3OutputPath?: string;
1148
- NotificationConfig?: AsyncInferenceNotificationConfig;
1149
- S3FailurePath?: string;
1152
+ KmsKeyId?: string | undefined;
1153
+ S3OutputPath?: string | undefined;
1154
+ NotificationConfig?: AsyncInferenceNotificationConfig | undefined;
1155
+ S3FailurePath?: string | undefined;
1150
1156
  }
1151
1157
  export interface AsyncInferenceConfig {
1152
- ClientConfig?: AsyncInferenceClientConfig;
1158
+ ClientConfig?: AsyncInferenceClientConfig | undefined;
1153
1159
  OutputConfig: AsyncInferenceOutputConfig | undefined;
1154
1160
  }
1155
1161
  export declare const AthenaResultCompressionType: {
@@ -1172,11 +1178,11 @@ export interface AthenaDatasetDefinition {
1172
1178
  Catalog: string | undefined;
1173
1179
  Database: string | undefined;
1174
1180
  QueryString: string | undefined;
1175
- WorkGroup?: string;
1181
+ WorkGroup?: string | undefined;
1176
1182
  OutputS3Uri: string | undefined;
1177
- KmsKeyId?: string;
1183
+ KmsKeyId?: string | undefined;
1178
1184
  OutputFormat: AthenaResultFormat | undefined;
1179
- OutputCompression?: AthenaResultCompressionType;
1185
+ OutputCompression?: AthenaResultCompressionType | undefined;
1180
1186
  }
1181
1187
  export declare const AuthMode: {
1182
1188
  readonly IAM: "IAM";
@@ -1207,8 +1213,8 @@ export interface AutoMLAlgorithmConfig {
1207
1213
  }
1208
1214
  export interface CandidateArtifactLocations {
1209
1215
  Explainability: string | undefined;
1210
- ModelInsights?: string;
1211
- BacktestResults?: string;
1216
+ ModelInsights?: string | undefined;
1217
+ BacktestResults?: string | undefined;
1212
1218
  }
1213
1219
  export declare const AutoMLMetricEnum: {
1214
1220
  readonly ACCURACY: "Accuracy";
@@ -1269,14 +1275,14 @@ export declare const AutoMLMetricExtendedEnum: {
1269
1275
  export type AutoMLMetricExtendedEnum =
1270
1276
  (typeof AutoMLMetricExtendedEnum)[keyof typeof AutoMLMetricExtendedEnum];
1271
1277
  export interface MetricDatum {
1272
- MetricName?: AutoMLMetricEnum;
1273
- StandardMetricName?: AutoMLMetricExtendedEnum;
1274
- Value?: number;
1275
- Set?: MetricSetSource;
1278
+ MetricName?: AutoMLMetricEnum | undefined;
1279
+ StandardMetricName?: AutoMLMetricExtendedEnum | undefined;
1280
+ Value?: number | undefined;
1281
+ Set?: MetricSetSource | undefined;
1276
1282
  }
1277
1283
  export interface CandidateProperties {
1278
- CandidateArtifactLocations?: CandidateArtifactLocations;
1279
- CandidateMetrics?: MetricDatum[];
1284
+ CandidateArtifactLocations?: CandidateArtifactLocations | undefined;
1285
+ CandidateMetrics?: MetricDatum[] | undefined;
1280
1286
  }
1281
1287
  export declare const CandidateStatus: {
1282
1288
  readonly COMPLETED: "Completed";
@@ -1306,10 +1312,10 @@ export declare const AutoMLJobObjectiveType: {
1306
1312
  export type AutoMLJobObjectiveType =
1307
1313
  (typeof AutoMLJobObjectiveType)[keyof typeof AutoMLJobObjectiveType];
1308
1314
  export interface FinalAutoMLJobObjectiveMetric {
1309
- Type?: AutoMLJobObjectiveType;
1315
+ Type?: AutoMLJobObjectiveType | undefined;
1310
1316
  MetricName: AutoMLMetricEnum | undefined;
1311
1317
  Value: number | undefined;
1312
- StandardMetricName?: AutoMLMetricEnum;
1318
+ StandardMetricName?: AutoMLMetricEnum | undefined;
1313
1319
  }
1314
1320
  export declare const AutoMLProcessingUnit: {
1315
1321
  readonly CPU: "CPU";
@@ -1320,7 +1326,7 @@ export type AutoMLProcessingUnit =
1320
1326
  export interface AutoMLContainerDefinition {
1321
1327
  Image: string | undefined;
1322
1328
  ModelDataUrl: string | undefined;
1323
- Environment?: Record<string, string>;
1329
+ Environment?: Record<string, string> | undefined;
1324
1330
  }
1325
1331
  export declare const ObjectiveStatus: {
1326
1332
  readonly Failed: "Failed";
@@ -1331,23 +1337,23 @@ export type ObjectiveStatus =
1331
1337
  (typeof ObjectiveStatus)[keyof typeof ObjectiveStatus];
1332
1338
  export interface AutoMLCandidate {
1333
1339
  CandidateName: string | undefined;
1334
- FinalAutoMLJobObjectiveMetric?: FinalAutoMLJobObjectiveMetric;
1340
+ FinalAutoMLJobObjectiveMetric?: FinalAutoMLJobObjectiveMetric | undefined;
1335
1341
  ObjectiveStatus: ObjectiveStatus | undefined;
1336
1342
  CandidateSteps: AutoMLCandidateStep[] | undefined;
1337
1343
  CandidateStatus: CandidateStatus | undefined;
1338
- InferenceContainers?: AutoMLContainerDefinition[];
1344
+ InferenceContainers?: AutoMLContainerDefinition[] | undefined;
1339
1345
  CreationTime: Date | undefined;
1340
- EndTime?: Date;
1346
+ EndTime?: Date | undefined;
1341
1347
  LastModifiedTime: Date | undefined;
1342
- FailureReason?: string;
1343
- CandidateProperties?: CandidateProperties;
1344
- InferenceContainerDefinitions?: Partial<
1345
- Record<AutoMLProcessingUnit, AutoMLContainerDefinition[]>
1346
- >;
1348
+ FailureReason?: string | undefined;
1349
+ CandidateProperties?: CandidateProperties | undefined;
1350
+ InferenceContainerDefinitions?:
1351
+ | Partial<Record<AutoMLProcessingUnit, AutoMLContainerDefinition[]>>
1352
+ | undefined;
1347
1353
  }
1348
1354
  export interface AutoMLCandidateGenerationConfig {
1349
- FeatureSpecificationS3Uri?: string;
1350
- AlgorithmsConfig?: AutoMLAlgorithmConfig[];
1355
+ FeatureSpecificationS3Uri?: string | undefined;
1356
+ AlgorithmsConfig?: AutoMLAlgorithmConfig[] | undefined;
1351
1357
  }
1352
1358
  export declare const AutoMLChannelType: {
1353
1359
  readonly TRAINING: "training";
@@ -1370,36 +1376,36 @@ export interface AutoMLDataSource {
1370
1376
  S3DataSource: AutoMLS3DataSource | undefined;
1371
1377
  }
1372
1378
  export interface AutoMLChannel {
1373
- DataSource?: AutoMLDataSource;
1374
- CompressionType?: CompressionType;
1379
+ DataSource?: AutoMLDataSource | undefined;
1380
+ CompressionType?: CompressionType | undefined;
1375
1381
  TargetAttributeName: string | undefined;
1376
- ContentType?: string;
1377
- ChannelType?: AutoMLChannelType;
1378
- SampleWeightAttributeName?: string;
1382
+ ContentType?: string | undefined;
1383
+ ChannelType?: AutoMLChannelType | undefined;
1384
+ SampleWeightAttributeName?: string | undefined;
1379
1385
  }
1380
1386
  export interface EmrServerlessComputeConfig {
1381
1387
  ExecutionRoleARN: string | undefined;
1382
1388
  }
1383
1389
  export interface AutoMLComputeConfig {
1384
- EmrServerlessComputeConfig?: EmrServerlessComputeConfig;
1390
+ EmrServerlessComputeConfig?: EmrServerlessComputeConfig | undefined;
1385
1391
  }
1386
1392
  export interface AutoMLDataSplitConfig {
1387
- ValidationFraction?: number;
1393
+ ValidationFraction?: number | undefined;
1388
1394
  }
1389
1395
  export interface AutoMLJobArtifacts {
1390
- CandidateDefinitionNotebookLocation?: string;
1391
- DataExplorationNotebookLocation?: string;
1396
+ CandidateDefinitionNotebookLocation?: string | undefined;
1397
+ DataExplorationNotebookLocation?: string | undefined;
1392
1398
  }
1393
1399
  export interface AutoMLJobChannel {
1394
- ChannelType?: AutoMLChannelType;
1395
- ContentType?: string;
1396
- CompressionType?: CompressionType;
1397
- DataSource?: AutoMLDataSource;
1400
+ ChannelType?: AutoMLChannelType | undefined;
1401
+ ContentType?: string | undefined;
1402
+ CompressionType?: CompressionType | undefined;
1403
+ DataSource?: AutoMLDataSource | undefined;
1398
1404
  }
1399
1405
  export interface AutoMLJobCompletionCriteria {
1400
- MaxCandidates?: number;
1401
- MaxRuntimePerTrainingJobInSeconds?: number;
1402
- MaxAutoMLJobRuntimeInSeconds?: number;
1406
+ MaxCandidates?: number | undefined;
1407
+ MaxRuntimePerTrainingJobInSeconds?: number | undefined;
1408
+ MaxAutoMLJobRuntimeInSeconds?: number | undefined;
1403
1409
  }
1404
1410
  export declare const AutoMLMode: {
1405
1411
  readonly AUTO: "AUTO";
@@ -1412,16 +1418,16 @@ export interface VpcConfig {
1412
1418
  Subnets: string[] | undefined;
1413
1419
  }
1414
1420
  export interface AutoMLSecurityConfig {
1415
- VolumeKmsKeyId?: string;
1416
- EnableInterContainerTrafficEncryption?: boolean;
1417
- VpcConfig?: VpcConfig;
1421
+ VolumeKmsKeyId?: string | undefined;
1422
+ EnableInterContainerTrafficEncryption?: boolean | undefined;
1423
+ VpcConfig?: VpcConfig | undefined;
1418
1424
  }
1419
1425
  export interface AutoMLJobConfig {
1420
- CompletionCriteria?: AutoMLJobCompletionCriteria;
1421
- SecurityConfig?: AutoMLSecurityConfig;
1422
- CandidateGenerationConfig?: AutoMLCandidateGenerationConfig;
1423
- DataSplitConfig?: AutoMLDataSplitConfig;
1424
- Mode?: AutoMLMode;
1426
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
1427
+ SecurityConfig?: AutoMLSecurityConfig | undefined;
1428
+ CandidateGenerationConfig?: AutoMLCandidateGenerationConfig | undefined;
1429
+ DataSplitConfig?: AutoMLDataSplitConfig | undefined;
1430
+ Mode?: AutoMLMode | undefined;
1425
1431
  }
1426
1432
  export interface AutoMLJobObjective {
1427
1433
  MetricName: AutoMLMetricEnum | undefined;
@@ -1459,10 +1465,10 @@ export declare const AutoMLJobStatus: {
1459
1465
  export type AutoMLJobStatus =
1460
1466
  (typeof AutoMLJobStatus)[keyof typeof AutoMLJobStatus];
1461
1467
  export interface AutoMLJobStepMetadata {
1462
- Arn?: string;
1468
+ Arn?: string | undefined;
1463
1469
  }
1464
1470
  export interface AutoMLPartialFailureReason {
1465
- PartialFailureMessage?: string;
1471
+ PartialFailureMessage?: string | undefined;
1466
1472
  }
1467
1473
  export interface AutoMLJobSummary {
1468
1474
  AutoMLJobName: string | undefined;
@@ -1470,20 +1476,20 @@ export interface AutoMLJobSummary {
1470
1476
  AutoMLJobStatus: AutoMLJobStatus | undefined;
1471
1477
  AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
1472
1478
  CreationTime: Date | undefined;
1473
- EndTime?: Date;
1479
+ EndTime?: Date | undefined;
1474
1480
  LastModifiedTime: Date | undefined;
1475
- FailureReason?: string;
1476
- PartialFailureReasons?: AutoMLPartialFailureReason[];
1481
+ FailureReason?: string | undefined;
1482
+ PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
1477
1483
  }
1478
1484
  export interface AutoMLOutputDataConfig {
1479
- KmsKeyId?: string;
1485
+ KmsKeyId?: string | undefined;
1480
1486
  S3OutputPath: string | undefined;
1481
1487
  }
1482
1488
  export interface ImageClassificationJobConfig {
1483
- CompletionCriteria?: AutoMLJobCompletionCriteria;
1489
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
1484
1490
  }
1485
1491
  export interface CandidateGenerationConfig {
1486
- AlgorithmsConfig?: AutoMLAlgorithmConfig[];
1492
+ AlgorithmsConfig?: AutoMLAlgorithmConfig[] | undefined;
1487
1493
  }
1488
1494
  export declare const ProblemType: {
1489
1495
  readonly BINARY_CLASSIFICATION: "BinaryClassification";
@@ -1492,34 +1498,34 @@ export declare const ProblemType: {
1492
1498
  };
1493
1499
  export type ProblemType = (typeof ProblemType)[keyof typeof ProblemType];
1494
1500
  export interface TabularJobConfig {
1495
- CandidateGenerationConfig?: CandidateGenerationConfig;
1496
- CompletionCriteria?: AutoMLJobCompletionCriteria;
1497
- FeatureSpecificationS3Uri?: string;
1498
- Mode?: AutoMLMode;
1499
- GenerateCandidateDefinitionsOnly?: boolean;
1500
- ProblemType?: ProblemType;
1501
+ CandidateGenerationConfig?: CandidateGenerationConfig | undefined;
1502
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
1503
+ FeatureSpecificationS3Uri?: string | undefined;
1504
+ Mode?: AutoMLMode | undefined;
1505
+ GenerateCandidateDefinitionsOnly?: boolean | undefined;
1506
+ ProblemType?: ProblemType | undefined;
1501
1507
  TargetAttributeName: string | undefined;
1502
- SampleWeightAttributeName?: string;
1508
+ SampleWeightAttributeName?: string | undefined;
1503
1509
  }
1504
1510
  export interface TextClassificationJobConfig {
1505
- CompletionCriteria?: AutoMLJobCompletionCriteria;
1511
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
1506
1512
  ContentColumn: string | undefined;
1507
1513
  TargetLabelColumn: string | undefined;
1508
1514
  }
1509
1515
  export interface TextGenerationJobConfig {
1510
- CompletionCriteria?: AutoMLJobCompletionCriteria;
1511
- BaseModelName?: string;
1512
- TextGenerationHyperParameters?: Record<string, string>;
1513
- ModelAccessConfig?: ModelAccessConfig;
1516
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
1517
+ BaseModelName?: string | undefined;
1518
+ TextGenerationHyperParameters?: Record<string, string> | undefined;
1519
+ ModelAccessConfig?: ModelAccessConfig | undefined;
1514
1520
  }
1515
1521
  export interface HolidayConfigAttributes {
1516
- CountryCode?: string;
1522
+ CountryCode?: string | undefined;
1517
1523
  }
1518
1524
  export interface TimeSeriesConfig {
1519
1525
  TargetAttributeName: string | undefined;
1520
1526
  TimestampAttributeName: string | undefined;
1521
1527
  ItemIdentifierAttributeName: string | undefined;
1522
- GroupingAttributeNames?: string[];
1528
+ GroupingAttributeNames?: string[] | undefined;
1523
1529
  }
1524
1530
  export declare const FillingType: {
1525
1531
  readonly Backfill: "backfill";
@@ -1533,19 +1539,19 @@ export declare const FillingType: {
1533
1539
  };
1534
1540
  export type FillingType = (typeof FillingType)[keyof typeof FillingType];
1535
1541
  export interface TimeSeriesTransformations {
1536
- Filling?: Record<string, Partial<Record<FillingType, string>>>;
1537
- Aggregation?: Record<string, AggregationTransformationValue>;
1542
+ Filling?: Record<string, Partial<Record<FillingType, string>>> | undefined;
1543
+ Aggregation?: Record<string, AggregationTransformationValue> | undefined;
1538
1544
  }
1539
1545
  export interface TimeSeriesForecastingJobConfig {
1540
- FeatureSpecificationS3Uri?: string;
1541
- CompletionCriteria?: AutoMLJobCompletionCriteria;
1546
+ FeatureSpecificationS3Uri?: string | undefined;
1547
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
1542
1548
  ForecastFrequency: string | undefined;
1543
1549
  ForecastHorizon: number | undefined;
1544
- ForecastQuantiles?: string[];
1545
- Transformations?: TimeSeriesTransformations;
1550
+ ForecastQuantiles?: string[] | undefined;
1551
+ Transformations?: TimeSeriesTransformations | undefined;
1546
1552
  TimeSeriesConfig: TimeSeriesConfig | undefined;
1547
- HolidayConfig?: HolidayConfigAttributes[];
1548
- CandidateGenerationConfig?: CandidateGenerationConfig;
1553
+ HolidayConfig?: HolidayConfigAttributes[] | undefined;
1554
+ CandidateGenerationConfig?: CandidateGenerationConfig | undefined;
1549
1555
  }
1550
1556
  export type AutoMLProblemTypeConfig =
1551
1557
  | AutoMLProblemTypeConfig.ImageClassificationJobConfigMember
@@ -1625,10 +1631,10 @@ export declare const AutoMLProblemTypeConfigName: {
1625
1631
  export type AutoMLProblemTypeConfigName =
1626
1632
  (typeof AutoMLProblemTypeConfigName)[keyof typeof AutoMLProblemTypeConfigName];
1627
1633
  export interface TabularResolvedAttributes {
1628
- ProblemType?: ProblemType;
1634
+ ProblemType?: ProblemType | undefined;
1629
1635
  }
1630
1636
  export interface TextGenerationResolvedAttributes {
1631
- BaseModelName?: string;
1637
+ BaseModelName?: string | undefined;
1632
1638
  }
1633
1639
  export type AutoMLProblemTypeResolvedAttributes =
1634
1640
  | AutoMLProblemTypeResolvedAttributes.TabularResolvedAttributesMember
@@ -1663,9 +1669,11 @@ export declare namespace AutoMLProblemTypeResolvedAttributes {
1663
1669
  ) => T;
1664
1670
  }
1665
1671
  export interface AutoMLResolvedAttributes {
1666
- AutoMLJobObjective?: AutoMLJobObjective;
1667
- CompletionCriteria?: AutoMLJobCompletionCriteria;
1668
- AutoMLProblemTypeResolvedAttributes?: AutoMLProblemTypeResolvedAttributes;
1672
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
1673
+ CompletionCriteria?: AutoMLJobCompletionCriteria | undefined;
1674
+ AutoMLProblemTypeResolvedAttributes?:
1675
+ | AutoMLProblemTypeResolvedAttributes
1676
+ | undefined;
1669
1677
  }
1670
1678
  export declare const AutoMLSortBy: {
1671
1679
  readonly CREATION_TIME: "CreationTime";
@@ -1691,7 +1699,7 @@ export interface AutoParameter {
1691
1699
  ValueHint: string | undefined;
1692
1700
  }
1693
1701
  export interface AutoRollbackConfig {
1694
- Alarms?: Alarm[];
1702
+ Alarms?: Alarm[] | undefined;
1695
1703
  }
1696
1704
  export declare const AutotuneMode: {
1697
1705
  readonly ENABLED: "Enabled";
@@ -1708,8 +1716,8 @@ export type AwsManagedHumanLoopRequestSource =
1708
1716
  (typeof AwsManagedHumanLoopRequestSource)[keyof typeof AwsManagedHumanLoopRequestSource];
1709
1717
  export interface BatchDataCaptureConfig {
1710
1718
  DestinationS3Uri: string | undefined;
1711
- KmsKeyId?: string;
1712
- GenerateInferenceId?: boolean;
1719
+ KmsKeyId?: string | undefined;
1720
+ GenerateInferenceId?: boolean | undefined;
1713
1721
  }
1714
1722
  export interface BatchDeleteClusterNodesRequest {
1715
1723
  ClusterName: string | undefined;
@@ -1728,8 +1736,8 @@ export interface BatchDeleteClusterNodesError {
1728
1736
  NodeId: string | undefined;
1729
1737
  }
1730
1738
  export interface BatchDeleteClusterNodesResponse {
1731
- Failed?: BatchDeleteClusterNodesError[];
1732
- Successful?: string[];
1739
+ Failed?: BatchDeleteClusterNodesError[] | undefined;
1740
+ Successful?: string[] | undefined;
1733
1741
  }
1734
1742
  export interface BatchDescribeModelPackageInput {
1735
1743
  ModelPackageArnList: string[] | undefined;
@@ -1740,10 +1748,12 @@ export interface BatchDescribeModelPackageError {
1740
1748
  }
1741
1749
  export interface InferenceSpecification {
1742
1750
  Containers: ModelPackageContainerDefinition[] | undefined;
1743
- SupportedTransformInstanceTypes?: TransformInstanceType[];
1744
- SupportedRealtimeInferenceInstanceTypes?: ProductionVariantInstanceType[];
1745
- SupportedContentTypes?: string[];
1746
- SupportedResponseMIMETypes?: string[];
1751
+ SupportedTransformInstanceTypes?: TransformInstanceType[] | undefined;
1752
+ SupportedRealtimeInferenceInstanceTypes?:
1753
+ | ProductionVariantInstanceType[]
1754
+ | undefined;
1755
+ SupportedContentTypes?: string[] | undefined;
1756
+ SupportedResponseMIMETypes?: string[] | undefined;
1747
1757
  }
1748
1758
  export declare const ModelApprovalStatus: {
1749
1759
  readonly APPROVED: "Approved";
@@ -1763,32 +1773,33 @@ export type ModelPackageStatus =
1763
1773
  (typeof ModelPackageStatus)[keyof typeof ModelPackageStatus];
1764
1774
  export interface BatchDescribeModelPackageSummary {
1765
1775
  ModelPackageGroupName: string | undefined;
1766
- ModelPackageVersion?: number;
1776
+ ModelPackageVersion?: number | undefined;
1767
1777
  ModelPackageArn: string | undefined;
1768
- ModelPackageDescription?: string;
1778
+ ModelPackageDescription?: string | undefined;
1769
1779
  CreationTime: Date | undefined;
1770
1780
  InferenceSpecification: InferenceSpecification | undefined;
1771
1781
  ModelPackageStatus: ModelPackageStatus | undefined;
1772
- ModelApprovalStatus?: ModelApprovalStatus;
1782
+ ModelApprovalStatus?: ModelApprovalStatus | undefined;
1773
1783
  }
1774
1784
  export interface BatchDescribeModelPackageOutput {
1775
- ModelPackageSummaries?: Record<string, BatchDescribeModelPackageSummary>;
1776
- BatchDescribeModelPackageErrorMap?: Record<
1777
- string,
1778
- BatchDescribeModelPackageError
1779
- >;
1785
+ ModelPackageSummaries?:
1786
+ | Record<string, BatchDescribeModelPackageSummary>
1787
+ | undefined;
1788
+ BatchDescribeModelPackageErrorMap?:
1789
+ | Record<string, BatchDescribeModelPackageError>
1790
+ | undefined;
1780
1791
  }
1781
1792
  export interface MonitoringCsvDatasetFormat {
1782
- Header?: boolean;
1793
+ Header?: boolean | undefined;
1783
1794
  }
1784
1795
  export interface MonitoringJsonDatasetFormat {
1785
- Line?: boolean;
1796
+ Line?: boolean | undefined;
1786
1797
  }
1787
1798
  export interface MonitoringParquetDatasetFormat {}
1788
1799
  export interface MonitoringDatasetFormat {
1789
- Csv?: MonitoringCsvDatasetFormat;
1790
- Json?: MonitoringJsonDatasetFormat;
1791
- Parquet?: MonitoringParquetDatasetFormat;
1800
+ Csv?: MonitoringCsvDatasetFormat | undefined;
1801
+ Json?: MonitoringJsonDatasetFormat | undefined;
1802
+ Parquet?: MonitoringParquetDatasetFormat | undefined;
1792
1803
  }
1793
1804
  export declare const ProcessingS3DataDistributionType: {
1794
1805
  readonly FULLYREPLICATED: "FullyReplicated";
@@ -1806,28 +1817,28 @@ export interface BatchTransformInput {
1806
1817
  DataCapturedDestinationS3Uri: string | undefined;
1807
1818
  DatasetFormat: MonitoringDatasetFormat | undefined;
1808
1819
  LocalPath: string | undefined;
1809
- S3InputMode?: ProcessingS3InputMode;
1810
- S3DataDistributionType?: ProcessingS3DataDistributionType;
1811
- FeaturesAttribute?: string;
1812
- InferenceAttribute?: string;
1813
- ProbabilityAttribute?: string;
1814
- ProbabilityThresholdAttribute?: number;
1815
- StartTimeOffset?: string;
1816
- EndTimeOffset?: string;
1817
- ExcludeFeaturesAttribute?: string;
1820
+ S3InputMode?: ProcessingS3InputMode | undefined;
1821
+ S3DataDistributionType?: ProcessingS3DataDistributionType | undefined;
1822
+ FeaturesAttribute?: string | undefined;
1823
+ InferenceAttribute?: string | undefined;
1824
+ ProbabilityAttribute?: string | undefined;
1825
+ ProbabilityThresholdAttribute?: number | undefined;
1826
+ StartTimeOffset?: string | undefined;
1827
+ EndTimeOffset?: string | undefined;
1828
+ ExcludeFeaturesAttribute?: string | undefined;
1818
1829
  }
1819
1830
  export interface BestObjectiveNotImproving {
1820
- MaxNumberOfTrainingJobsNotImproving?: number;
1831
+ MaxNumberOfTrainingJobsNotImproving?: number | undefined;
1821
1832
  }
1822
1833
  export interface MetricsSource {
1823
1834
  ContentType: string | undefined;
1824
- ContentDigest?: string;
1835
+ ContentDigest?: string | undefined;
1825
1836
  S3Uri: string | undefined;
1826
1837
  }
1827
1838
  export interface Bias {
1828
- Report?: MetricsSource;
1829
- PreTrainingReport?: MetricsSource;
1830
- PostTrainingReport?: MetricsSource;
1839
+ Report?: MetricsSource | undefined;
1840
+ PreTrainingReport?: MetricsSource | undefined;
1841
+ PostTrainingReport?: MetricsSource | undefined;
1831
1842
  }
1832
1843
  export declare const CapacitySizeType: {
1833
1844
  readonly CAPACITY_PERCENT: "CAPACITY_PERCENT";
@@ -1849,13 +1860,13 @@ export type TrafficRoutingConfigType =
1849
1860
  export interface TrafficRoutingConfig {
1850
1861
  Type: TrafficRoutingConfigType | undefined;
1851
1862
  WaitIntervalInSeconds: number | undefined;
1852
- CanarySize?: CapacitySize;
1853
- LinearStepSize?: CapacitySize;
1863
+ CanarySize?: CapacitySize | undefined;
1864
+ LinearStepSize?: CapacitySize | undefined;
1854
1865
  }
1855
1866
  export interface BlueGreenUpdatePolicy {
1856
1867
  TrafficRoutingConfiguration: TrafficRoutingConfig | undefined;
1857
- TerminationWaitInSeconds?: number;
1858
- MaximumExecutionTimeoutInSeconds?: number;
1868
+ TerminationWaitInSeconds?: number | undefined;
1869
+ MaximumExecutionTimeoutInSeconds?: number | undefined;
1859
1870
  }
1860
1871
  export declare const BooleanOperator: {
1861
1872
  readonly AND: "And";
@@ -1864,16 +1875,16 @@ export declare const BooleanOperator: {
1864
1875
  export type BooleanOperator =
1865
1876
  (typeof BooleanOperator)[keyof typeof BooleanOperator];
1866
1877
  export interface CacheHitResult {
1867
- SourcePipelineExecutionArn?: string;
1878
+ SourcePipelineExecutionArn?: string | undefined;
1868
1879
  }
1869
1880
  export interface OutputParameter {
1870
1881
  Name: string | undefined;
1871
1882
  Value: string | undefined;
1872
1883
  }
1873
1884
  export interface CallbackStepMetadata {
1874
- CallbackToken?: string;
1875
- SqsQueueUrl?: string;
1876
- OutputParameters?: OutputParameter[];
1885
+ CallbackToken?: string | undefined;
1886
+ SqsQueueUrl?: string | undefined;
1887
+ OutputParameters?: OutputParameter[] | undefined;
1877
1888
  }
1878
1889
  export declare const CandidateSortBy: {
1879
1890
  readonly CreationTime: "CreationTime";
@@ -1883,14 +1894,14 @@ export declare const CandidateSortBy: {
1883
1894
  export type CandidateSortBy =
1884
1895
  (typeof CandidateSortBy)[keyof typeof CandidateSortBy];
1885
1896
  export interface DirectDeploySettings {
1886
- Status?: FeatureStatus;
1897
+ Status?: FeatureStatus | undefined;
1887
1898
  }
1888
1899
  export interface EmrServerlessSettings {
1889
- ExecutionRoleArn?: string;
1890
- Status?: FeatureStatus;
1900
+ ExecutionRoleArn?: string | undefined;
1901
+ Status?: FeatureStatus | undefined;
1891
1902
  }
1892
1903
  export interface GenerativeAiSettings {
1893
- AmazonBedrockRoleArn?: string;
1904
+ AmazonBedrockRoleArn?: string | undefined;
1894
1905
  }
1895
1906
  export declare const DataSourceName: {
1896
1907
  readonly SalesforceGenie: "SalesforceGenie";
@@ -1899,38 +1910,38 @@ export declare const DataSourceName: {
1899
1910
  export type DataSourceName =
1900
1911
  (typeof DataSourceName)[keyof typeof DataSourceName];
1901
1912
  export interface IdentityProviderOAuthSetting {
1902
- DataSourceName?: DataSourceName;
1903
- Status?: FeatureStatus;
1904
- SecretArn?: string;
1913
+ DataSourceName?: DataSourceName | undefined;
1914
+ Status?: FeatureStatus | undefined;
1915
+ SecretArn?: string | undefined;
1905
1916
  }
1906
1917
  export interface KendraSettings {
1907
- Status?: FeatureStatus;
1918
+ Status?: FeatureStatus | undefined;
1908
1919
  }
1909
1920
  export interface ModelRegisterSettings {
1910
- Status?: FeatureStatus;
1911
- CrossAccountModelRegisterRoleArn?: string;
1921
+ Status?: FeatureStatus | undefined;
1922
+ CrossAccountModelRegisterRoleArn?: string | undefined;
1912
1923
  }
1913
1924
  export interface TimeSeriesForecastingSettings {
1914
- Status?: FeatureStatus;
1915
- AmazonForecastRoleArn?: string;
1925
+ Status?: FeatureStatus | undefined;
1926
+ AmazonForecastRoleArn?: string | undefined;
1916
1927
  }
1917
1928
  export interface WorkspaceSettings {
1918
- S3ArtifactPath?: string;
1919
- S3KmsKeyId?: string;
1929
+ S3ArtifactPath?: string | undefined;
1930
+ S3KmsKeyId?: string | undefined;
1920
1931
  }
1921
1932
  export interface CanvasAppSettings {
1922
- TimeSeriesForecastingSettings?: TimeSeriesForecastingSettings;
1923
- ModelRegisterSettings?: ModelRegisterSettings;
1924
- WorkspaceSettings?: WorkspaceSettings;
1925
- IdentityProviderOAuthSettings?: IdentityProviderOAuthSetting[];
1926
- DirectDeploySettings?: DirectDeploySettings;
1927
- KendraSettings?: KendraSettings;
1928
- GenerativeAiSettings?: GenerativeAiSettings;
1929
- EmrServerlessSettings?: EmrServerlessSettings;
1933
+ TimeSeriesForecastingSettings?: TimeSeriesForecastingSettings | undefined;
1934
+ ModelRegisterSettings?: ModelRegisterSettings | undefined;
1935
+ WorkspaceSettings?: WorkspaceSettings | undefined;
1936
+ IdentityProviderOAuthSettings?: IdentityProviderOAuthSetting[] | undefined;
1937
+ DirectDeploySettings?: DirectDeploySettings | undefined;
1938
+ KendraSettings?: KendraSettings | undefined;
1939
+ GenerativeAiSettings?: GenerativeAiSettings | undefined;
1940
+ EmrServerlessSettings?: EmrServerlessSettings | undefined;
1930
1941
  }
1931
1942
  export interface CaptureContentTypeHeader {
1932
- CsvContentTypes?: string[];
1933
- JsonContentTypes?: string[];
1943
+ CsvContentTypes?: string[] | undefined;
1944
+ JsonContentTypes?: string[] | undefined;
1934
1945
  }
1935
1946
  export declare const CaptureMode: {
1936
1947
  readonly INPUT: "Input";
@@ -1959,25 +1970,25 @@ export interface CategoricalParameterRangeSpecification {
1959
1970
  }
1960
1971
  export interface ChannelSpecification {
1961
1972
  Name: string | undefined;
1962
- Description?: string;
1963
- IsRequired?: boolean;
1973
+ Description?: string | undefined;
1974
+ IsRequired?: boolean | undefined;
1964
1975
  SupportedContentTypes: string[] | undefined;
1965
- SupportedCompressionTypes?: CompressionType[];
1976
+ SupportedCompressionTypes?: CompressionType[] | undefined;
1966
1977
  SupportedInputModes: TrainingInputMode[] | undefined;
1967
1978
  }
1968
1979
  export interface CheckpointConfig {
1969
1980
  S3Uri: string | undefined;
1970
- LocalPath?: string;
1981
+ LocalPath?: string | undefined;
1971
1982
  }
1972
1983
  export interface ClarifyCheckStepMetadata {
1973
- CheckType?: string;
1974
- BaselineUsedForDriftCheckConstraints?: string;
1975
- CalculatedBaselineConstraints?: string;
1976
- ModelPackageGroupName?: string;
1977
- ViolationReport?: string;
1978
- CheckJobArn?: string;
1979
- SkipCheck?: boolean;
1980
- RegisterNewBaseline?: boolean;
1984
+ CheckType?: string | undefined;
1985
+ BaselineUsedForDriftCheckConstraints?: string | undefined;
1986
+ CalculatedBaselineConstraints?: string | undefined;
1987
+ ModelPackageGroupName?: string | undefined;
1988
+ ViolationReport?: string | undefined;
1989
+ CheckJobArn?: string | undefined;
1990
+ SkipCheck?: boolean | undefined;
1991
+ RegisterNewBaseline?: boolean | undefined;
1981
1992
  }
1982
1993
  export declare const ClarifyFeatureType: {
1983
1994
  readonly CATEGORICAL: "categorical";
@@ -1987,22 +1998,22 @@ export declare const ClarifyFeatureType: {
1987
1998
  export type ClarifyFeatureType =
1988
1999
  (typeof ClarifyFeatureType)[keyof typeof ClarifyFeatureType];
1989
2000
  export interface ClarifyInferenceConfig {
1990
- FeaturesAttribute?: string;
1991
- ContentTemplate?: string;
1992
- MaxRecordCount?: number;
1993
- MaxPayloadInMB?: number;
1994
- ProbabilityIndex?: number;
1995
- LabelIndex?: number;
1996
- ProbabilityAttribute?: string;
1997
- LabelAttribute?: string;
1998
- LabelHeaders?: string[];
1999
- FeatureHeaders?: string[];
2000
- FeatureTypes?: ClarifyFeatureType[];
2001
+ FeaturesAttribute?: string | undefined;
2002
+ ContentTemplate?: string | undefined;
2003
+ MaxRecordCount?: number | undefined;
2004
+ MaxPayloadInMB?: number | undefined;
2005
+ ProbabilityIndex?: number | undefined;
2006
+ LabelIndex?: number | undefined;
2007
+ ProbabilityAttribute?: string | undefined;
2008
+ LabelAttribute?: string | undefined;
2009
+ LabelHeaders?: string[] | undefined;
2010
+ FeatureHeaders?: string[] | undefined;
2011
+ FeatureTypes?: ClarifyFeatureType[] | undefined;
2001
2012
  }
2002
2013
  export interface ClarifyShapBaselineConfig {
2003
- MimeType?: string;
2004
- ShapBaseline?: string;
2005
- ShapBaselineUri?: string;
2014
+ MimeType?: string | undefined;
2015
+ ShapBaseline?: string | undefined;
2016
+ ShapBaselineUri?: string | undefined;
2006
2017
  }
2007
2018
  export declare const ClarifyTextGranularity: {
2008
2019
  readonly PARAGRAPH: "paragraph";
@@ -2081,14 +2092,14 @@ export interface ClarifyTextConfig {
2081
2092
  }
2082
2093
  export interface ClarifyShapConfig {
2083
2094
  ShapBaselineConfig: ClarifyShapBaselineConfig | undefined;
2084
- NumberOfSamples?: number;
2085
- UseLogit?: boolean;
2086
- Seed?: number;
2087
- TextConfig?: ClarifyTextConfig;
2095
+ NumberOfSamples?: number | undefined;
2096
+ UseLogit?: boolean | undefined;
2097
+ Seed?: number | undefined;
2098
+ TextConfig?: ClarifyTextConfig | undefined;
2088
2099
  }
2089
2100
  export interface ClarifyExplainerConfig {
2090
- EnableExplanations?: string;
2091
- InferenceConfig?: ClarifyInferenceConfig;
2101
+ EnableExplanations?: string | undefined;
2102
+ InferenceConfig?: ClarifyInferenceConfig | undefined;
2092
2103
  ShapConfig: ClarifyShapConfig | undefined;
2093
2104
  }
2094
2105
  export interface ClusterEbsVolumeConfig {
@@ -2187,15 +2198,15 @@ export declare const DeepHealthCheckType: {
2187
2198
  export type DeepHealthCheckType =
2188
2199
  (typeof DeepHealthCheckType)[keyof typeof DeepHealthCheckType];
2189
2200
  export interface ClusterInstanceGroupDetails {
2190
- CurrentCount?: number;
2191
- TargetCount?: number;
2192
- InstanceGroupName?: string;
2193
- InstanceType?: ClusterInstanceType;
2194
- LifeCycleConfig?: ClusterLifeCycleConfig;
2195
- ExecutionRole?: string;
2196
- ThreadsPerCore?: number;
2197
- InstanceStorageConfigs?: ClusterInstanceStorageConfig[];
2198
- OnStartDeepHealthChecks?: DeepHealthCheckType[];
2201
+ CurrentCount?: number | undefined;
2202
+ TargetCount?: number | undefined;
2203
+ InstanceGroupName?: string | undefined;
2204
+ InstanceType?: ClusterInstanceType | undefined;
2205
+ LifeCycleConfig?: ClusterLifeCycleConfig | undefined;
2206
+ ExecutionRole?: string | undefined;
2207
+ ThreadsPerCore?: number | undefined;
2208
+ InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
2209
+ OnStartDeepHealthChecks?: DeepHealthCheckType[] | undefined;
2199
2210
  }
2200
2211
  export interface ClusterInstanceGroupSpecification {
2201
2212
  InstanceCount: number | undefined;
@@ -2203,13 +2214,13 @@ export interface ClusterInstanceGroupSpecification {
2203
2214
  InstanceType: ClusterInstanceType | undefined;
2204
2215
  LifeCycleConfig: ClusterLifeCycleConfig | undefined;
2205
2216
  ExecutionRole: string | undefined;
2206
- ThreadsPerCore?: number;
2207
- InstanceStorageConfigs?: ClusterInstanceStorageConfig[];
2208
- OnStartDeepHealthChecks?: DeepHealthCheckType[];
2217
+ ThreadsPerCore?: number | undefined;
2218
+ InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
2219
+ OnStartDeepHealthChecks?: DeepHealthCheckType[] | undefined;
2209
2220
  }
2210
2221
  export interface ClusterInstancePlacement {
2211
- AvailabilityZone?: string;
2212
- AvailabilityZoneId?: string;
2222
+ AvailabilityZone?: string | undefined;
2223
+ AvailabilityZoneId?: string | undefined;
2213
2224
  }
2214
2225
  export declare const ClusterInstanceStatus: {
2215
2226
  readonly DEEP_HEALTH_CHECK_IN_PROGRESS: "DeepHealthCheckInProgress";
@@ -2223,20 +2234,20 @@ export type ClusterInstanceStatus =
2223
2234
  (typeof ClusterInstanceStatus)[keyof typeof ClusterInstanceStatus];
2224
2235
  export interface ClusterInstanceStatusDetails {
2225
2236
  Status: ClusterInstanceStatus | undefined;
2226
- Message?: string;
2237
+ Message?: string | undefined;
2227
2238
  }
2228
2239
  export interface ClusterNodeDetails {
2229
- InstanceGroupName?: string;
2230
- InstanceId?: string;
2231
- InstanceStatus?: ClusterInstanceStatusDetails;
2232
- InstanceType?: ClusterInstanceType;
2233
- LaunchTime?: Date;
2234
- LifeCycleConfig?: ClusterLifeCycleConfig;
2235
- ThreadsPerCore?: number;
2236
- InstanceStorageConfigs?: ClusterInstanceStorageConfig[];
2237
- PrivatePrimaryIp?: string;
2238
- PrivateDnsHostname?: string;
2239
- Placement?: ClusterInstancePlacement;
2240
+ InstanceGroupName?: string | undefined;
2241
+ InstanceId?: string | undefined;
2242
+ InstanceStatus?: ClusterInstanceStatusDetails | undefined;
2243
+ InstanceType?: ClusterInstanceType | undefined;
2244
+ LaunchTime?: Date | undefined;
2245
+ LifeCycleConfig?: ClusterLifeCycleConfig | undefined;
2246
+ ThreadsPerCore?: number | undefined;
2247
+ InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
2248
+ PrivatePrimaryIp?: string | undefined;
2249
+ PrivateDnsHostname?: string | undefined;
2250
+ Placement?: ClusterInstancePlacement | undefined;
2240
2251
  }
2241
2252
  export declare const ClusterNodeRecovery: {
2242
2253
  readonly AUTOMATIC: "Automatic";
@@ -2280,15 +2291,15 @@ export interface ClusterSummary {
2280
2291
  }
2281
2292
  export interface CustomImage {
2282
2293
  ImageName: string | undefined;
2283
- ImageVersionNumber?: number;
2294
+ ImageVersionNumber?: number | undefined;
2284
2295
  AppImageConfigName: string | undefined;
2285
2296
  }
2286
2297
  export interface CodeEditorAppSettings {
2287
- DefaultResourceSpec?: ResourceSpec;
2288
- CustomImages?: CustomImage[];
2289
- LifecycleConfigArns?: string[];
2290
- AppLifecycleManagement?: AppLifecycleManagement;
2291
- BuiltInLifecycleConfigArn?: string;
2298
+ DefaultResourceSpec?: ResourceSpec | undefined;
2299
+ CustomImages?: CustomImage[] | undefined;
2300
+ LifecycleConfigArns?: string[] | undefined;
2301
+ AppLifecycleManagement?: AppLifecycleManagement | undefined;
2302
+ BuiltInLifecycleConfigArn?: string | undefined;
2292
2303
  }
2293
2304
  export interface CodeRepository {
2294
2305
  RepositoryUrl: string | undefined;
@@ -2308,15 +2319,15 @@ export type CodeRepositorySortOrder =
2308
2319
  (typeof CodeRepositorySortOrder)[keyof typeof CodeRepositorySortOrder];
2309
2320
  export interface GitConfig {
2310
2321
  RepositoryUrl: string | undefined;
2311
- Branch?: string;
2312
- SecretArn?: string;
2322
+ Branch?: string | undefined;
2323
+ SecretArn?: string | undefined;
2313
2324
  }
2314
2325
  export interface CodeRepositorySummary {
2315
2326
  CodeRepositoryName: string | undefined;
2316
2327
  CodeRepositoryArn: string | undefined;
2317
2328
  CreationTime: Date | undefined;
2318
2329
  LastModifiedTime: Date | undefined;
2319
- GitConfig?: GitConfig;
2330
+ GitConfig?: GitConfig | undefined;
2320
2331
  }
2321
2332
  export interface CognitoConfig {
2322
2333
  UserPool: string | undefined;
@@ -2349,8 +2360,8 @@ export declare namespace CollectionConfig {
2349
2360
  const visit: <T>(value: CollectionConfig, visitor: Visitor<T>) => T;
2350
2361
  }
2351
2362
  export interface CollectionConfiguration {
2352
- CollectionName?: string;
2353
- CollectionParameters?: Record<string, string>;
2363
+ CollectionName?: string | undefined;
2364
+ CollectionParameters?: Record<string, string> | undefined;
2354
2365
  }
2355
2366
  export declare const CollectionType: {
2356
2367
  readonly LIST: "List";
@@ -2436,13 +2447,13 @@ export interface CompilationJobSummary {
2436
2447
  CompilationJobName: string | undefined;
2437
2448
  CompilationJobArn: string | undefined;
2438
2449
  CreationTime: Date | undefined;
2439
- CompilationStartTime?: Date;
2440
- CompilationEndTime?: Date;
2441
- CompilationTargetDevice?: TargetDevice;
2442
- CompilationTargetPlatformOs?: TargetPlatformOs;
2443
- CompilationTargetPlatformArch?: TargetPlatformArch;
2444
- CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator;
2445
- LastModifiedTime?: Date;
2450
+ CompilationStartTime?: Date | undefined;
2451
+ CompilationEndTime?: Date | undefined;
2452
+ CompilationTargetDevice?: TargetDevice | undefined;
2453
+ CompilationTargetPlatformOs?: TargetPlatformOs | undefined;
2454
+ CompilationTargetPlatformArch?: TargetPlatformArch | undefined;
2455
+ CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator | undefined;
2456
+ LastModifiedTime?: Date | undefined;
2446
2457
  CompilationJobStatus: CompilationJobStatus | undefined;
2447
2458
  }
2448
2459
  export declare const CompleteOnConvergence: {
@@ -2458,12 +2469,12 @@ export declare const ConditionOutcome: {
2458
2469
  export type ConditionOutcome =
2459
2470
  (typeof ConditionOutcome)[keyof typeof ConditionOutcome];
2460
2471
  export interface ConditionStepMetadata {
2461
- Outcome?: ConditionOutcome;
2472
+ Outcome?: ConditionOutcome | undefined;
2462
2473
  }
2463
2474
  export declare class ConflictException extends __BaseException {
2464
2475
  readonly name: "ConflictException";
2465
2476
  readonly $fault: "client";
2466
- Message?: string;
2477
+ Message?: string | undefined;
2467
2478
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
2468
2479
  }
2469
2480
  export declare const RepositoryAccessMode: {
@@ -2477,7 +2488,7 @@ export interface RepositoryAuthConfig {
2477
2488
  }
2478
2489
  export interface ImageConfig {
2479
2490
  RepositoryAccessMode: RepositoryAccessMode | undefined;
2480
- RepositoryAuthConfig?: RepositoryAuthConfig;
2491
+ RepositoryAuthConfig?: RepositoryAuthConfig | undefined;
2481
2492
  }
2482
2493
  export declare const ContainerMode: {
2483
2494
  readonly MULTI_MODEL: "MultiModel";
@@ -2491,20 +2502,20 @@ export declare const ModelCacheSetting: {
2491
2502
  export type ModelCacheSetting =
2492
2503
  (typeof ModelCacheSetting)[keyof typeof ModelCacheSetting];
2493
2504
  export interface MultiModelConfig {
2494
- ModelCacheSetting?: ModelCacheSetting;
2505
+ ModelCacheSetting?: ModelCacheSetting | undefined;
2495
2506
  }
2496
2507
  export interface ContainerDefinition {
2497
- ContainerHostname?: string;
2498
- Image?: string;
2499
- ImageConfig?: ImageConfig;
2500
- Mode?: ContainerMode;
2501
- ModelDataUrl?: string;
2502
- ModelDataSource?: ModelDataSource;
2503
- AdditionalModelDataSources?: AdditionalModelDataSource[];
2504
- Environment?: Record<string, string>;
2505
- ModelPackageName?: string;
2506
- InferenceSpecificationName?: string;
2507
- MultiModelConfig?: MultiModelConfig;
2508
+ ContainerHostname?: string | undefined;
2509
+ Image?: string | undefined;
2510
+ ImageConfig?: ImageConfig | undefined;
2511
+ Mode?: ContainerMode | undefined;
2512
+ ModelDataUrl?: string | undefined;
2513
+ ModelDataSource?: ModelDataSource | undefined;
2514
+ AdditionalModelDataSources?: AdditionalModelDataSource[] | undefined;
2515
+ Environment?: Record<string, string> | undefined;
2516
+ ModelPackageName?: string | undefined;
2517
+ InferenceSpecificationName?: string | undefined;
2518
+ MultiModelConfig?: MultiModelConfig | undefined;
2508
2519
  }
2509
2520
  export declare const ContentClassifier: {
2510
2521
  readonly FREE_OF_ADULT_CONTENT: "FreeOfAdultContent";
@@ -2514,16 +2525,16 @@ export type ContentClassifier =
2514
2525
  (typeof ContentClassifier)[keyof typeof ContentClassifier];
2515
2526
  export interface ContextSource {
2516
2527
  SourceUri: string | undefined;
2517
- SourceType?: string;
2518
- SourceId?: string;
2528
+ SourceType?: string | undefined;
2529
+ SourceId?: string | undefined;
2519
2530
  }
2520
2531
  export interface ContextSummary {
2521
- ContextArn?: string;
2522
- ContextName?: string;
2523
- Source?: ContextSource;
2524
- ContextType?: string;
2525
- CreationTime?: Date;
2526
- LastModifiedTime?: Date;
2532
+ ContextArn?: string | undefined;
2533
+ ContextName?: string | undefined;
2534
+ Source?: ContextSource | undefined;
2535
+ ContextType?: string | undefined;
2536
+ CreationTime?: Date | undefined;
2537
+ LastModifiedTime?: Date | undefined;
2527
2538
  }
2528
2539
  export declare const HyperParameterScalingType: {
2529
2540
  readonly AUTO: "Auto";
@@ -2537,42 +2548,48 @@ export interface ContinuousParameterRange {
2537
2548
  Name: string | undefined;
2538
2549
  MinValue: string | undefined;
2539
2550
  MaxValue: string | undefined;
2540
- ScalingType?: HyperParameterScalingType;
2551
+ ScalingType?: HyperParameterScalingType | undefined;
2541
2552
  }
2542
2553
  export interface ContinuousParameterRangeSpecification {
2543
2554
  MinValue: string | undefined;
2544
2555
  MaxValue: string | undefined;
2545
2556
  }
2546
2557
  export interface ConvergenceDetected {
2547
- CompleteOnConvergence?: CompleteOnConvergence;
2558
+ CompleteOnConvergence?: CompleteOnConvergence | undefined;
2548
2559
  }
2549
2560
  export interface MetadataProperties {
2550
- CommitId?: string;
2551
- Repository?: string;
2552
- GeneratedBy?: string;
2553
- ProjectId?: string;
2561
+ CommitId?: string | undefined;
2562
+ Repository?: string | undefined;
2563
+ GeneratedBy?: string | undefined;
2564
+ ProjectId?: string | undefined;
2554
2565
  }
2555
2566
  export interface CreateActionRequest {
2556
2567
  ActionName: string | undefined;
2557
2568
  Source: ActionSource | undefined;
2558
2569
  ActionType: string | undefined;
2559
- Description?: string;
2560
- Status?: ActionStatus;
2561
- Properties?: Record<string, string>;
2562
- MetadataProperties?: MetadataProperties;
2563
- Tags?: Tag[];
2570
+ Description?: string | undefined;
2571
+ Status?: ActionStatus | undefined;
2572
+ Properties?: Record<string, string> | undefined;
2573
+ MetadataProperties?: MetadataProperties | undefined;
2574
+ Tags?: Tag[] | undefined;
2564
2575
  }
2565
2576
  export interface CreateActionResponse {
2566
- ActionArn?: string;
2577
+ ActionArn?: string | undefined;
2567
2578
  }
2568
2579
  export interface IntegerParameterRangeSpecification {
2569
2580
  MinValue: string | undefined;
2570
2581
  MaxValue: string | undefined;
2571
2582
  }
2572
2583
  export interface ParameterRange {
2573
- IntegerParameterRangeSpecification?: IntegerParameterRangeSpecification;
2574
- ContinuousParameterRangeSpecification?: ContinuousParameterRangeSpecification;
2575
- CategoricalParameterRangeSpecification?: CategoricalParameterRangeSpecification;
2584
+ IntegerParameterRangeSpecification?:
2585
+ | IntegerParameterRangeSpecification
2586
+ | undefined;
2587
+ ContinuousParameterRangeSpecification?:
2588
+ | ContinuousParameterRangeSpecification
2589
+ | undefined;
2590
+ CategoricalParameterRangeSpecification?:
2591
+ | CategoricalParameterRangeSpecification
2592
+ | undefined;
2576
2593
  }
2577
2594
  export declare const ParameterType: {
2578
2595
  readonly CATEGORICAL: "Categorical";
@@ -2583,12 +2600,12 @@ export declare const ParameterType: {
2583
2600
  export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
2584
2601
  export interface HyperParameterSpecification {
2585
2602
  Name: string | undefined;
2586
- Description?: string;
2603
+ Description?: string | undefined;
2587
2604
  Type: ParameterType | undefined;
2588
- Range?: ParameterRange;
2589
- IsTunable?: boolean;
2590
- IsRequired?: boolean;
2591
- DefaultValue?: string;
2605
+ Range?: ParameterRange | undefined;
2606
+ IsTunable?: boolean | undefined;
2607
+ IsRequired?: boolean | undefined;
2608
+ DefaultValue?: string | undefined;
2592
2609
  }
2593
2610
  export declare const HyperParameterTuningJobObjectiveType: {
2594
2611
  readonly MAXIMIZE: "Maximize";
@@ -2602,12 +2619,14 @@ export interface HyperParameterTuningJobObjective {
2602
2619
  }
2603
2620
  export interface TrainingSpecification {
2604
2621
  TrainingImage: string | undefined;
2605
- TrainingImageDigest?: string;
2606
- SupportedHyperParameters?: HyperParameterSpecification[];
2622
+ TrainingImageDigest?: string | undefined;
2623
+ SupportedHyperParameters?: HyperParameterSpecification[] | undefined;
2607
2624
  SupportedTrainingInstanceTypes: TrainingInstanceType[] | undefined;
2608
- SupportsDistributedTraining?: boolean;
2609
- MetricDefinitions?: MetricDefinition[];
2625
+ SupportsDistributedTraining?: boolean | undefined;
2626
+ MetricDefinitions?: MetricDefinition[] | undefined;
2610
2627
  TrainingChannels: ChannelSpecification[] | undefined;
2611
- SupportedTuningJobObjectiveMetrics?: HyperParameterTuningJobObjective[];
2612
- AdditionalS3DataSource?: AdditionalS3DataSource;
2628
+ SupportedTuningJobObjectiveMetrics?:
2629
+ | HyperParameterTuningJobObjective[]
2630
+ | undefined;
2631
+ AdditionalS3DataSource?: AdditionalS3DataSource | undefined;
2613
2632
  }