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