@aws-sdk/client-sagemaker 3.461.0 → 3.464.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/README.md +104 -0
- package/dist-cjs/SageMaker.js +26 -0
- package/dist-cjs/commands/CreateClusterCommand.js +51 -0
- package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
- package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
- package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
- package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
- package/dist-cjs/commands/ListClustersCommand.js +51 -0
- package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
- package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/models/models_0.js +77 -64
- package/dist-cjs/models/models_1.js +85 -51
- package/dist-cjs/models/models_2.js +58 -83
- package/dist-cjs/models/models_3.js +89 -64
- package/dist-cjs/models/models_4.js +65 -3
- package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1046 -36
- package/dist-es/SageMaker.js +26 -0
- package/dist-es/commands/CreateClusterCommand.js +47 -0
- package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/CreateWorkforceCommand.js +1 -1
- package/dist-es/commands/DeleteClusterCommand.js +47 -0
- package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
- package/dist-es/commands/DescribeClusterCommand.js +47 -0
- package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
- package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
- package/dist-es/commands/ListClusterNodesCommand.js +47 -0
- package/dist-es/commands/ListClustersCommand.js +47 -0
- package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
- package/dist-es/commands/UpdateClusterCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +74 -62
- package/dist-es/models/models_1.js +84 -48
- package/dist-es/models/models_2.js +55 -82
- package/dist-es/models/models_3.js +87 -62
- package/dist-es/models/models_4.js +63 -1
- package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +1006 -22
- package/dist-types/SageMaker.d.ts +91 -0
- package/dist-types/SageMakerClient.d.ts +15 -2
- package/dist-types/commands/AddTagsCommand.d.ts +1 -1
- package/dist-types/commands/CreateAppCommand.d.ts +3 -2
- package/dist-types/commands/CreateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
- package/dist-types/commands/CreateCompilationJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +64 -17
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
- package/dist-types/commands/CreateModelCommand.d.ts +1 -1
- package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
- package/dist-types/commands/CreateSpaceCommand.d.ts +45 -0
- package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +4 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/CreateUserProfileCommand.d.ts +56 -2
- package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAppCommand.d.ts +2 -2
- package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
- package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
- package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAppCommand.d.ts +3 -2
- package/dist-types/commands/DescribeAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +56 -9
- package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
- package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpaceCommand.d.ts +46 -0
- package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +5 -1
- package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +55 -1
- package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/ListAppImageConfigsCommand.d.ts +13 -0
- package/dist-types/commands/ListAppsCommand.d.ts +8 -1
- package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
- package/dist-types/commands/ListClustersCommand.d.ts +87 -0
- package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +2 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/ListSpacesCommand.d.ts +16 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +4 -4
- package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +58 -7
- package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
- package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
- package/dist-types/commands/UpdateSpaceCommand.d.ts +39 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +54 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +616 -544
- package/dist-types/models/models_1.d.ts +7904 -8160
- package/dist-types/models/models_2.d.ts +4780 -5344
- package/dist-types/models/models_3.d.ts +5386 -4662
- package/dist-types/models/models_4.d.ts +2031 -4
- package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
- package/dist-types/ts3.4/SageMaker.d.ts +227 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateCompilationJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateTrainingJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTrainingJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +191 -175
- package/dist-types/ts3.4/models/models_1.d.ts +302 -309
- package/dist-types/ts3.4/models/models_2.d.ts +388 -490
- package/dist-types/ts3.4/models/models_3.d.ts +574 -472
- package/dist-types/ts3.4/models/models_4.d.ts +534 -29
- package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +156 -0
- package/package.json +2 -2
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { LazyJsonString as __LazyJsonString } from "@smithy/smithy-client";
|
|
2
2
|
import {
|
|
3
3
|
AdditionalInferenceSpecificationDefinition,
|
|
4
|
-
AlgorithmSpecification,
|
|
5
4
|
AnnotationConsolidationConfig,
|
|
6
5
|
AppNetworkAccessType,
|
|
7
6
|
AppSecurityGroupManagement,
|
|
8
7
|
AppSpecification,
|
|
9
8
|
AppType,
|
|
10
|
-
ArtifactSource,
|
|
11
9
|
AsyncInferenceConfig,
|
|
12
10
|
AthenaDatasetDefinition,
|
|
13
11
|
AuthMode,
|
|
@@ -15,8 +13,6 @@ import {
|
|
|
15
13
|
AutoRollbackConfig,
|
|
16
14
|
Autotune,
|
|
17
15
|
AwsManagedHumanLoopRequestSource,
|
|
18
|
-
BatchDataCaptureConfig,
|
|
19
|
-
BatchStrategy,
|
|
20
16
|
BatchTransformInput,
|
|
21
17
|
BestObjectiveNotImproving,
|
|
22
18
|
Bias,
|
|
@@ -25,26 +21,21 @@ import {
|
|
|
25
21
|
CapacitySize,
|
|
26
22
|
CaptureContentTypeHeader,
|
|
27
23
|
CaptureOption,
|
|
28
|
-
CaptureStatus,
|
|
29
24
|
CategoricalParameter,
|
|
30
25
|
CategoricalParameterRange,
|
|
31
26
|
Channel,
|
|
32
27
|
CheckpointConfig,
|
|
33
28
|
ClarifyExplainerConfig,
|
|
29
|
+
CodeEditorAppSettings,
|
|
34
30
|
CodeRepository,
|
|
35
|
-
CognitoConfig,
|
|
36
|
-
CognitoMemberDefinition,
|
|
37
31
|
CollectionConfig,
|
|
38
32
|
CollectionConfiguration,
|
|
39
33
|
CollectionType,
|
|
40
34
|
ContainerDefinition,
|
|
41
35
|
ContentClassifier,
|
|
36
|
+
ContextSource,
|
|
42
37
|
ContinuousParameterRange,
|
|
43
38
|
ConvergenceDetected,
|
|
44
|
-
DataQualityAppSpecification,
|
|
45
|
-
DataQualityBaselineConfig,
|
|
46
|
-
DataQualityJobInput,
|
|
47
|
-
EndpointInput,
|
|
48
39
|
HyperParameterScalingType,
|
|
49
40
|
HyperParameterTuningJobObjective,
|
|
50
41
|
InferenceSpecification,
|
|
@@ -52,15 +43,9 @@ import {
|
|
|
52
43
|
MetricDefinition,
|
|
53
44
|
MetricsSource,
|
|
54
45
|
ModelApprovalStatus,
|
|
55
|
-
MonitoringConstraintsResource,
|
|
56
|
-
MonitoringOutputConfig,
|
|
57
|
-
MonitoringResources,
|
|
58
|
-
MonitoringStatisticsResource,
|
|
59
46
|
OutputDataConfig,
|
|
60
|
-
ProcessingInstanceType,
|
|
61
47
|
ProcessingS3DataDistributionType,
|
|
62
48
|
ProcessingS3InputMode,
|
|
63
|
-
ProcessingS3UploadMode,
|
|
64
49
|
ProductionVariantInstanceType,
|
|
65
50
|
ResourceConfig,
|
|
66
51
|
ResourceSpec,
|
|
@@ -68,12 +53,134 @@ import {
|
|
|
68
53
|
Tag,
|
|
69
54
|
TrainingInputMode,
|
|
70
55
|
TrainingInstanceType,
|
|
71
|
-
TransformInput,
|
|
72
56
|
TransformJobDefinition,
|
|
73
|
-
TransformOutput,
|
|
74
|
-
TransformResources,
|
|
75
57
|
VpcConfig,
|
|
76
58
|
} from "./models_0";
|
|
59
|
+
export interface CreateCompilationJobResponse {
|
|
60
|
+
CompilationJobArn: string | undefined;
|
|
61
|
+
}
|
|
62
|
+
export interface CreateContextRequest {
|
|
63
|
+
ContextName: string | undefined;
|
|
64
|
+
Source: ContextSource | undefined;
|
|
65
|
+
ContextType: string | undefined;
|
|
66
|
+
Description?: string;
|
|
67
|
+
Properties?: Record<string, string>;
|
|
68
|
+
Tags?: Tag[];
|
|
69
|
+
}
|
|
70
|
+
export interface CreateContextResponse {
|
|
71
|
+
ContextArn?: string;
|
|
72
|
+
}
|
|
73
|
+
export interface DataQualityAppSpecification {
|
|
74
|
+
ImageUri: string | undefined;
|
|
75
|
+
ContainerEntrypoint?: string[];
|
|
76
|
+
ContainerArguments?: string[];
|
|
77
|
+
RecordPreprocessorSourceUri?: string;
|
|
78
|
+
PostAnalyticsProcessorSourceUri?: string;
|
|
79
|
+
Environment?: Record<string, string>;
|
|
80
|
+
}
|
|
81
|
+
export interface MonitoringConstraintsResource {
|
|
82
|
+
S3Uri?: string;
|
|
83
|
+
}
|
|
84
|
+
export interface MonitoringStatisticsResource {
|
|
85
|
+
S3Uri?: string;
|
|
86
|
+
}
|
|
87
|
+
export interface DataQualityBaselineConfig {
|
|
88
|
+
BaseliningJobName?: string;
|
|
89
|
+
ConstraintsResource?: MonitoringConstraintsResource;
|
|
90
|
+
StatisticsResource?: MonitoringStatisticsResource;
|
|
91
|
+
}
|
|
92
|
+
export interface EndpointInput {
|
|
93
|
+
EndpointName: string | undefined;
|
|
94
|
+
LocalPath: string | undefined;
|
|
95
|
+
S3InputMode?: ProcessingS3InputMode;
|
|
96
|
+
S3DataDistributionType?: ProcessingS3DataDistributionType;
|
|
97
|
+
FeaturesAttribute?: string;
|
|
98
|
+
InferenceAttribute?: string;
|
|
99
|
+
ProbabilityAttribute?: string;
|
|
100
|
+
ProbabilityThresholdAttribute?: number;
|
|
101
|
+
StartTimeOffset?: string;
|
|
102
|
+
EndTimeOffset?: string;
|
|
103
|
+
ExcludeFeaturesAttribute?: string;
|
|
104
|
+
}
|
|
105
|
+
export interface DataQualityJobInput {
|
|
106
|
+
EndpointInput?: EndpointInput;
|
|
107
|
+
BatchTransformInput?: BatchTransformInput;
|
|
108
|
+
}
|
|
109
|
+
export declare const ProcessingS3UploadMode: {
|
|
110
|
+
readonly CONTINUOUS: "Continuous";
|
|
111
|
+
readonly END_OF_JOB: "EndOfJob";
|
|
112
|
+
};
|
|
113
|
+
export type ProcessingS3UploadMode =
|
|
114
|
+
(typeof ProcessingS3UploadMode)[keyof typeof ProcessingS3UploadMode];
|
|
115
|
+
export interface MonitoringS3Output {
|
|
116
|
+
S3Uri: string | undefined;
|
|
117
|
+
LocalPath: string | undefined;
|
|
118
|
+
S3UploadMode?: ProcessingS3UploadMode;
|
|
119
|
+
}
|
|
120
|
+
export interface MonitoringOutput {
|
|
121
|
+
S3Output: MonitoringS3Output | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface MonitoringOutputConfig {
|
|
124
|
+
MonitoringOutputs: MonitoringOutput[] | undefined;
|
|
125
|
+
KmsKeyId?: string;
|
|
126
|
+
}
|
|
127
|
+
export declare const ProcessingInstanceType: {
|
|
128
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
129
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
130
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
131
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
132
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
133
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
134
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
135
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
136
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
137
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
138
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
139
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
140
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
141
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
142
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
143
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
144
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
145
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
146
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
147
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
148
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
149
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
150
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
151
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
152
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
153
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
154
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
155
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
156
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
157
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
158
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
159
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
160
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
161
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
162
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
163
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
164
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
165
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
166
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
167
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
168
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
169
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
170
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
171
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
172
|
+
};
|
|
173
|
+
export type ProcessingInstanceType =
|
|
174
|
+
(typeof ProcessingInstanceType)[keyof typeof ProcessingInstanceType];
|
|
175
|
+
export interface MonitoringClusterConfig {
|
|
176
|
+
InstanceCount: number | undefined;
|
|
177
|
+
InstanceType: ProcessingInstanceType | undefined;
|
|
178
|
+
VolumeSizeInGB: number | undefined;
|
|
179
|
+
VolumeKmsKeyId?: string;
|
|
180
|
+
}
|
|
181
|
+
export interface MonitoringResources {
|
|
182
|
+
ClusterConfig: MonitoringClusterConfig | undefined;
|
|
183
|
+
}
|
|
77
184
|
export interface MonitoringNetworkConfig {
|
|
78
185
|
EnableInterContainerTrafficEncryption?: boolean;
|
|
79
186
|
EnableNetworkIsolation?: boolean;
|
|
@@ -137,6 +244,38 @@ export interface DefaultSpaceSettings {
|
|
|
137
244
|
JupyterServerAppSettings?: JupyterServerAppSettings;
|
|
138
245
|
KernelGatewayAppSettings?: KernelGatewayAppSettings;
|
|
139
246
|
}
|
|
247
|
+
export interface EFSFileSystemConfig {
|
|
248
|
+
FileSystemId: string | undefined;
|
|
249
|
+
FileSystemPath?: string;
|
|
250
|
+
}
|
|
251
|
+
export type CustomFileSystemConfig =
|
|
252
|
+
| CustomFileSystemConfig.EFSFileSystemConfigMember
|
|
253
|
+
| CustomFileSystemConfig.$UnknownMember;
|
|
254
|
+
export declare namespace CustomFileSystemConfig {
|
|
255
|
+
interface EFSFileSystemConfigMember {
|
|
256
|
+
EFSFileSystemConfig: EFSFileSystemConfig;
|
|
257
|
+
$unknown?: never;
|
|
258
|
+
}
|
|
259
|
+
interface $UnknownMember {
|
|
260
|
+
EFSFileSystemConfig?: never;
|
|
261
|
+
$unknown: [string, any];
|
|
262
|
+
}
|
|
263
|
+
interface Visitor<T> {
|
|
264
|
+
EFSFileSystemConfig: (value: EFSFileSystemConfig) => T;
|
|
265
|
+
_: (name: string, value: any) => T;
|
|
266
|
+
}
|
|
267
|
+
const visit: <T>(value: CustomFileSystemConfig, visitor: Visitor<T>) => T;
|
|
268
|
+
}
|
|
269
|
+
export interface CustomPosixUserConfig {
|
|
270
|
+
Uid: number | undefined;
|
|
271
|
+
Gid: number | undefined;
|
|
272
|
+
}
|
|
273
|
+
export interface JupyterLabAppSettings {
|
|
274
|
+
DefaultResourceSpec?: ResourceSpec;
|
|
275
|
+
CustomImages?: CustomImage[];
|
|
276
|
+
LifecycleConfigArns?: string[];
|
|
277
|
+
CodeRepositories?: CodeRepository[];
|
|
278
|
+
}
|
|
140
279
|
export interface RSessionAppSettings {
|
|
141
280
|
DefaultResourceSpec?: ResourceSpec;
|
|
142
281
|
CustomImages?: CustomImage[];
|
|
@@ -168,6 +307,19 @@ export interface SharingSettings {
|
|
|
168
307
|
S3OutputPath?: string;
|
|
169
308
|
S3KmsKeyId?: string;
|
|
170
309
|
}
|
|
310
|
+
export interface DefaultEbsStorageSettings {
|
|
311
|
+
DefaultEbsVolumeSizeInGb: number | undefined;
|
|
312
|
+
MaximumEbsVolumeSizeInGb: number | undefined;
|
|
313
|
+
}
|
|
314
|
+
export interface DefaultSpaceStorageSettings {
|
|
315
|
+
DefaultEbsStorageSettings?: DefaultEbsStorageSettings;
|
|
316
|
+
}
|
|
317
|
+
export declare const StudioWebPortal: {
|
|
318
|
+
readonly Disabled: "DISABLED";
|
|
319
|
+
readonly Enabled: "ENABLED";
|
|
320
|
+
};
|
|
321
|
+
export type StudioWebPortal =
|
|
322
|
+
(typeof StudioWebPortal)[keyof typeof StudioWebPortal];
|
|
171
323
|
export interface TensorBoardAppSettings {
|
|
172
324
|
DefaultResourceSpec?: ResourceSpec;
|
|
173
325
|
}
|
|
@@ -181,6 +333,13 @@ export interface UserSettings {
|
|
|
181
333
|
RStudioServerProAppSettings?: RStudioServerProAppSettings;
|
|
182
334
|
RSessionAppSettings?: RSessionAppSettings;
|
|
183
335
|
CanvasAppSettings?: CanvasAppSettings;
|
|
336
|
+
JupyterLabAppSettings?: JupyterLabAppSettings;
|
|
337
|
+
CodeEditorAppSettings?: CodeEditorAppSettings;
|
|
338
|
+
SpaceStorageSettings?: DefaultSpaceStorageSettings;
|
|
339
|
+
DefaultLandingUri?: string;
|
|
340
|
+
StudioWebPortal?: StudioWebPortal;
|
|
341
|
+
CustomPosixUserConfig?: CustomPosixUserConfig;
|
|
342
|
+
CustomFileSystemConfigs?: CustomFileSystemConfig[];
|
|
184
343
|
}
|
|
185
344
|
export declare const ExecutionRoleIdentityConfig: {
|
|
186
345
|
readonly DISABLED: "DISABLED";
|
|
@@ -317,6 +476,26 @@ export interface ProductionVariantCoreDumpConfig {
|
|
|
317
476
|
DestinationS3Uri: string | undefined;
|
|
318
477
|
KmsKeyId?: string;
|
|
319
478
|
}
|
|
479
|
+
export declare const ManagedInstanceScalingStatus: {
|
|
480
|
+
readonly DISABLED: "DISABLED";
|
|
481
|
+
readonly ENABLED: "ENABLED";
|
|
482
|
+
};
|
|
483
|
+
export type ManagedInstanceScalingStatus =
|
|
484
|
+
(typeof ManagedInstanceScalingStatus)[keyof typeof ManagedInstanceScalingStatus];
|
|
485
|
+
export interface ProductionVariantManagedInstanceScaling {
|
|
486
|
+
Status?: ManagedInstanceScalingStatus;
|
|
487
|
+
MinInstanceCount?: number;
|
|
488
|
+
MaxInstanceCount?: number;
|
|
489
|
+
}
|
|
490
|
+
export declare const RoutingStrategy: {
|
|
491
|
+
readonly LEAST_OUTSTANDING_REQUESTS: "LEAST_OUTSTANDING_REQUESTS";
|
|
492
|
+
readonly RANDOM: "RANDOM";
|
|
493
|
+
};
|
|
494
|
+
export type RoutingStrategy =
|
|
495
|
+
(typeof RoutingStrategy)[keyof typeof RoutingStrategy];
|
|
496
|
+
export interface ProductionVariantRoutingConfig {
|
|
497
|
+
RoutingStrategy: RoutingStrategy | undefined;
|
|
498
|
+
}
|
|
320
499
|
export interface ProductionVariantServerlessConfig {
|
|
321
500
|
MemorySizeInMB: number | undefined;
|
|
322
501
|
MaxConcurrency: number | undefined;
|
|
@@ -324,7 +503,7 @@ export interface ProductionVariantServerlessConfig {
|
|
|
324
503
|
}
|
|
325
504
|
export interface ProductionVariant {
|
|
326
505
|
VariantName: string | undefined;
|
|
327
|
-
ModelName
|
|
506
|
+
ModelName?: string;
|
|
328
507
|
InitialInstanceCount?: number;
|
|
329
508
|
InstanceType?: ProductionVariantInstanceType;
|
|
330
509
|
InitialVariantWeight?: number;
|
|
@@ -335,6 +514,8 @@ export interface ProductionVariant {
|
|
|
335
514
|
ModelDataDownloadTimeoutInSeconds?: number;
|
|
336
515
|
ContainerStartupHealthCheckTimeoutInSeconds?: number;
|
|
337
516
|
EnableSSMAccess?: boolean;
|
|
517
|
+
ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
|
|
518
|
+
RoutingConfig?: ProductionVariantRoutingConfig;
|
|
338
519
|
}
|
|
339
520
|
export interface CreateEndpointConfigInput {
|
|
340
521
|
EndpointConfigName: string | undefined;
|
|
@@ -345,6 +526,9 @@ export interface CreateEndpointConfigInput {
|
|
|
345
526
|
AsyncInferenceConfig?: AsyncInferenceConfig;
|
|
346
527
|
ExplainerConfig?: ExplainerConfig;
|
|
347
528
|
ShadowProductionVariants?: ProductionVariant[];
|
|
529
|
+
ExecutionRoleArn?: string;
|
|
530
|
+
VpcConfig?: VpcConfig;
|
|
531
|
+
EnableNetworkIsolation?: boolean;
|
|
348
532
|
}
|
|
349
533
|
export interface CreateEndpointConfigOutput {
|
|
350
534
|
EndpointConfigArn: string | undefined;
|
|
@@ -675,6 +859,43 @@ export interface CreateImageVersionRequest {
|
|
|
675
859
|
export interface CreateImageVersionResponse {
|
|
676
860
|
ImageVersionArn?: string;
|
|
677
861
|
}
|
|
862
|
+
export interface InferenceComponentRuntimeConfig {
|
|
863
|
+
CopyCount: number | undefined;
|
|
864
|
+
}
|
|
865
|
+
export interface InferenceComponentComputeResourceRequirements {
|
|
866
|
+
NumberOfCpuCoresRequired?: number;
|
|
867
|
+
NumberOfAcceleratorDevicesRequired?: number;
|
|
868
|
+
MinMemoryRequiredInMb: number | undefined;
|
|
869
|
+
MaxMemoryRequiredInMb?: number;
|
|
870
|
+
}
|
|
871
|
+
export interface InferenceComponentContainerSpecification {
|
|
872
|
+
Image?: string;
|
|
873
|
+
ArtifactUrl?: string;
|
|
874
|
+
Environment?: Record<string, string>;
|
|
875
|
+
}
|
|
876
|
+
export interface InferenceComponentStartupParameters {
|
|
877
|
+
ModelDataDownloadTimeoutInSeconds?: number;
|
|
878
|
+
ContainerStartupHealthCheckTimeoutInSeconds?: number;
|
|
879
|
+
}
|
|
880
|
+
export interface InferenceComponentSpecification {
|
|
881
|
+
ModelName?: string;
|
|
882
|
+
Container?: InferenceComponentContainerSpecification;
|
|
883
|
+
StartupParameters?: InferenceComponentStartupParameters;
|
|
884
|
+
ComputeResourceRequirements:
|
|
885
|
+
| InferenceComponentComputeResourceRequirements
|
|
886
|
+
| undefined;
|
|
887
|
+
}
|
|
888
|
+
export interface CreateInferenceComponentInput {
|
|
889
|
+
InferenceComponentName: string | undefined;
|
|
890
|
+
EndpointName: string | undefined;
|
|
891
|
+
VariantName: string | undefined;
|
|
892
|
+
Specification: InferenceComponentSpecification | undefined;
|
|
893
|
+
RuntimeConfig: InferenceComponentRuntimeConfig | undefined;
|
|
894
|
+
Tags?: Tag[];
|
|
895
|
+
}
|
|
896
|
+
export interface CreateInferenceComponentOutput {
|
|
897
|
+
InferenceComponentArn: string | undefined;
|
|
898
|
+
}
|
|
678
899
|
export interface InferenceExperimentDataStorageConfig {
|
|
679
900
|
Destination: string | undefined;
|
|
680
901
|
KmsKey?: string;
|
|
@@ -1006,7 +1227,7 @@ export interface CreateModelInput {
|
|
|
1006
1227
|
PrimaryContainer?: ContainerDefinition;
|
|
1007
1228
|
Containers?: ContainerDefinition[];
|
|
1008
1229
|
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
1009
|
-
ExecutionRoleArn
|
|
1230
|
+
ExecutionRoleArn?: string;
|
|
1010
1231
|
Tags?: Tag[];
|
|
1011
1232
|
VpcConfig?: VpcConfig;
|
|
1012
1233
|
EnableNetworkIsolation?: boolean;
|
|
@@ -1390,6 +1611,7 @@ export interface CreatePresignedDomainUrlRequest {
|
|
|
1390
1611
|
SessionExpirationDurationInSeconds?: number;
|
|
1391
1612
|
ExpiresInSeconds?: number;
|
|
1392
1613
|
SpaceName?: string;
|
|
1614
|
+
LandingUri?: string;
|
|
1393
1615
|
}
|
|
1394
1616
|
export interface CreatePresignedDomainUrlResponse {
|
|
1395
1617
|
AuthorizedUrl?: string;
|
|
@@ -1545,20 +1767,75 @@ export interface CreateProjectOutput {
|
|
|
1545
1767
|
ProjectArn: string | undefined;
|
|
1546
1768
|
ProjectId: string | undefined;
|
|
1547
1769
|
}
|
|
1770
|
+
export interface OwnershipSettings {
|
|
1771
|
+
OwnerUserProfileName: string | undefined;
|
|
1772
|
+
}
|
|
1773
|
+
export interface SpaceCodeEditorAppSettings {
|
|
1774
|
+
DefaultResourceSpec?: ResourceSpec;
|
|
1775
|
+
}
|
|
1776
|
+
export interface EFSFileSystem {
|
|
1777
|
+
FileSystemId: string | undefined;
|
|
1778
|
+
}
|
|
1779
|
+
export type CustomFileSystem =
|
|
1780
|
+
| CustomFileSystem.EFSFileSystemMember
|
|
1781
|
+
| CustomFileSystem.$UnknownMember;
|
|
1782
|
+
export declare namespace CustomFileSystem {
|
|
1783
|
+
interface EFSFileSystemMember {
|
|
1784
|
+
EFSFileSystem: EFSFileSystem;
|
|
1785
|
+
$unknown?: never;
|
|
1786
|
+
}
|
|
1787
|
+
interface $UnknownMember {
|
|
1788
|
+
EFSFileSystem?: never;
|
|
1789
|
+
$unknown: [string, any];
|
|
1790
|
+
}
|
|
1791
|
+
interface Visitor<T> {
|
|
1792
|
+
EFSFileSystem: (value: EFSFileSystem) => T;
|
|
1793
|
+
_: (name: string, value: any) => T;
|
|
1794
|
+
}
|
|
1795
|
+
const visit: <T>(value: CustomFileSystem, visitor: Visitor<T>) => T;
|
|
1796
|
+
}
|
|
1797
|
+
export interface SpaceJupyterLabAppSettings {
|
|
1798
|
+
DefaultResourceSpec?: ResourceSpec;
|
|
1799
|
+
CodeRepositories?: CodeRepository[];
|
|
1800
|
+
}
|
|
1801
|
+
export interface EbsStorageSettings {
|
|
1802
|
+
EbsVolumeSizeInGb: number | undefined;
|
|
1803
|
+
}
|
|
1804
|
+
export interface SpaceStorageSettings {
|
|
1805
|
+
EbsStorageSettings?: EbsStorageSettings;
|
|
1806
|
+
}
|
|
1548
1807
|
export interface SpaceSettings {
|
|
1549
1808
|
JupyterServerAppSettings?: JupyterServerAppSettings;
|
|
1550
1809
|
KernelGatewayAppSettings?: KernelGatewayAppSettings;
|
|
1810
|
+
JupyterLabAppSettings?: SpaceJupyterLabAppSettings;
|
|
1811
|
+
CodeEditorAppSettings?: SpaceCodeEditorAppSettings;
|
|
1812
|
+
SpaceStorageSettings?: SpaceStorageSettings;
|
|
1813
|
+
AppType?: AppType;
|
|
1814
|
+
CustomFileSystems?: CustomFileSystem[];
|
|
1815
|
+
}
|
|
1816
|
+
export declare const SharingType: {
|
|
1817
|
+
readonly Private: "Private";
|
|
1818
|
+
readonly Shared: "Shared";
|
|
1819
|
+
};
|
|
1820
|
+
export type SharingType = (typeof SharingType)[keyof typeof SharingType];
|
|
1821
|
+
export interface SpaceSharingSettings {
|
|
1822
|
+
SharingType: SharingType | undefined;
|
|
1551
1823
|
}
|
|
1552
1824
|
export interface CreateSpaceRequest {
|
|
1553
1825
|
DomainId: string | undefined;
|
|
1554
1826
|
SpaceName: string | undefined;
|
|
1555
1827
|
Tags?: Tag[];
|
|
1556
1828
|
SpaceSettings?: SpaceSettings;
|
|
1829
|
+
SpaceDisplayName?: string;
|
|
1830
|
+
OwnershipSettings?: OwnershipSettings;
|
|
1831
|
+
SpaceSharingSettings?: SpaceSharingSettings;
|
|
1557
1832
|
}
|
|
1558
1833
|
export interface CreateSpaceResponse {
|
|
1559
1834
|
SpaceArn?: string;
|
|
1560
1835
|
}
|
|
1561
1836
|
export declare const StudioLifecycleConfigAppType: {
|
|
1837
|
+
readonly CodeEditor: "CodeEditor";
|
|
1838
|
+
readonly JupyterLab: "JupyterLab";
|
|
1562
1839
|
readonly JupyterServer: "JupyterServer";
|
|
1563
1840
|
readonly KernelGateway: "KernelGateway";
|
|
1564
1841
|
};
|
|
@@ -1588,299 +1865,15 @@ export interface DebugRuleConfiguration {
|
|
|
1588
1865
|
VolumeSizeInGB?: number;
|
|
1589
1866
|
RuleParameters?: Record<string, string>;
|
|
1590
1867
|
}
|
|
1868
|
+
export interface InfraCheckConfig {
|
|
1869
|
+
EnableInfraCheck?: boolean;
|
|
1870
|
+
}
|
|
1591
1871
|
export interface ProfilerConfig {
|
|
1592
1872
|
S3OutputPath?: string;
|
|
1593
1873
|
ProfilingIntervalInMilliseconds?: number;
|
|
1594
1874
|
ProfilingParameters?: Record<string, string>;
|
|
1595
1875
|
DisableProfiler?: boolean;
|
|
1596
1876
|
}
|
|
1597
|
-
export interface ProfilerRuleConfiguration {
|
|
1598
|
-
RuleConfigurationName: string | undefined;
|
|
1599
|
-
LocalPath?: string;
|
|
1600
|
-
S3OutputPath?: string;
|
|
1601
|
-
RuleEvaluatorImage: string | undefined;
|
|
1602
|
-
InstanceType?: ProcessingInstanceType;
|
|
1603
|
-
VolumeSizeInGB?: number;
|
|
1604
|
-
RuleParameters?: Record<string, string>;
|
|
1605
|
-
}
|
|
1606
|
-
export interface TensorBoardOutputConfig {
|
|
1607
|
-
LocalPath?: string;
|
|
1608
|
-
S3OutputPath: string | undefined;
|
|
1609
|
-
}
|
|
1610
|
-
export interface CreateTrainingJobRequest {
|
|
1611
|
-
TrainingJobName: string | undefined;
|
|
1612
|
-
HyperParameters?: Record<string, string>;
|
|
1613
|
-
AlgorithmSpecification: AlgorithmSpecification | undefined;
|
|
1614
|
-
RoleArn: string | undefined;
|
|
1615
|
-
InputDataConfig?: Channel[];
|
|
1616
|
-
OutputDataConfig: OutputDataConfig | undefined;
|
|
1617
|
-
ResourceConfig: ResourceConfig | undefined;
|
|
1618
|
-
VpcConfig?: VpcConfig;
|
|
1619
|
-
StoppingCondition: StoppingCondition | undefined;
|
|
1620
|
-
Tags?: Tag[];
|
|
1621
|
-
EnableNetworkIsolation?: boolean;
|
|
1622
|
-
EnableInterContainerTrafficEncryption?: boolean;
|
|
1623
|
-
EnableManagedSpotTraining?: boolean;
|
|
1624
|
-
CheckpointConfig?: CheckpointConfig;
|
|
1625
|
-
DebugHookConfig?: DebugHookConfig;
|
|
1626
|
-
DebugRuleConfigurations?: DebugRuleConfiguration[];
|
|
1627
|
-
TensorBoardOutputConfig?: TensorBoardOutputConfig;
|
|
1628
|
-
ExperimentConfig?: ExperimentConfig;
|
|
1629
|
-
ProfilerConfig?: ProfilerConfig;
|
|
1630
|
-
ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
|
|
1631
|
-
Environment?: Record<string, string>;
|
|
1632
|
-
RetryStrategy?: RetryStrategy;
|
|
1633
|
-
}
|
|
1634
|
-
export interface CreateTrainingJobResponse {
|
|
1635
|
-
TrainingJobArn: string | undefined;
|
|
1636
|
-
}
|
|
1637
|
-
export declare const JoinSource: {
|
|
1638
|
-
readonly INPUT: "Input";
|
|
1639
|
-
readonly NONE: "None";
|
|
1640
|
-
};
|
|
1641
|
-
export type JoinSource = (typeof JoinSource)[keyof typeof JoinSource];
|
|
1642
|
-
export interface DataProcessing {
|
|
1643
|
-
InputFilter?: string;
|
|
1644
|
-
OutputFilter?: string;
|
|
1645
|
-
JoinSource?: JoinSource;
|
|
1646
|
-
}
|
|
1647
|
-
export interface ModelClientConfig {
|
|
1648
|
-
InvocationsTimeoutInSeconds?: number;
|
|
1649
|
-
InvocationsMaxRetries?: number;
|
|
1650
|
-
}
|
|
1651
|
-
export interface CreateTransformJobRequest {
|
|
1652
|
-
TransformJobName: string | undefined;
|
|
1653
|
-
ModelName: string | undefined;
|
|
1654
|
-
MaxConcurrentTransforms?: number;
|
|
1655
|
-
ModelClientConfig?: ModelClientConfig;
|
|
1656
|
-
MaxPayloadInMB?: number;
|
|
1657
|
-
BatchStrategy?: BatchStrategy;
|
|
1658
|
-
Environment?: Record<string, string>;
|
|
1659
|
-
TransformInput: TransformInput | undefined;
|
|
1660
|
-
TransformOutput: TransformOutput | undefined;
|
|
1661
|
-
DataCaptureConfig?: BatchDataCaptureConfig;
|
|
1662
|
-
TransformResources: TransformResources | undefined;
|
|
1663
|
-
DataProcessing?: DataProcessing;
|
|
1664
|
-
Tags?: Tag[];
|
|
1665
|
-
ExperimentConfig?: ExperimentConfig;
|
|
1666
|
-
}
|
|
1667
|
-
export interface CreateTransformJobResponse {
|
|
1668
|
-
TransformJobArn: string | undefined;
|
|
1669
|
-
}
|
|
1670
|
-
export interface CreateTrialRequest {
|
|
1671
|
-
TrialName: string | undefined;
|
|
1672
|
-
DisplayName?: string;
|
|
1673
|
-
ExperimentName: string | undefined;
|
|
1674
|
-
MetadataProperties?: MetadataProperties;
|
|
1675
|
-
Tags?: Tag[];
|
|
1676
|
-
}
|
|
1677
|
-
export interface CreateTrialResponse {
|
|
1678
|
-
TrialArn?: string;
|
|
1679
|
-
}
|
|
1680
|
-
export interface TrialComponentArtifact {
|
|
1681
|
-
MediaType?: string;
|
|
1682
|
-
Value: string | undefined;
|
|
1683
|
-
}
|
|
1684
|
-
export type TrialComponentParameterValue =
|
|
1685
|
-
| TrialComponentParameterValue.NumberValueMember
|
|
1686
|
-
| TrialComponentParameterValue.StringValueMember
|
|
1687
|
-
| TrialComponentParameterValue.$UnknownMember;
|
|
1688
|
-
export declare namespace TrialComponentParameterValue {
|
|
1689
|
-
interface StringValueMember {
|
|
1690
|
-
StringValue: string;
|
|
1691
|
-
NumberValue?: never;
|
|
1692
|
-
$unknown?: never;
|
|
1693
|
-
}
|
|
1694
|
-
interface NumberValueMember {
|
|
1695
|
-
StringValue?: never;
|
|
1696
|
-
NumberValue: number;
|
|
1697
|
-
$unknown?: never;
|
|
1698
|
-
}
|
|
1699
|
-
interface $UnknownMember {
|
|
1700
|
-
StringValue?: never;
|
|
1701
|
-
NumberValue?: never;
|
|
1702
|
-
$unknown: [string, any];
|
|
1703
|
-
}
|
|
1704
|
-
interface Visitor<T> {
|
|
1705
|
-
StringValue: (value: string) => T;
|
|
1706
|
-
NumberValue: (value: number) => T;
|
|
1707
|
-
_: (name: string, value: any) => T;
|
|
1708
|
-
}
|
|
1709
|
-
const visit: <T>(
|
|
1710
|
-
value: TrialComponentParameterValue,
|
|
1711
|
-
visitor: Visitor<T>
|
|
1712
|
-
) => T;
|
|
1713
|
-
}
|
|
1714
|
-
export declare const TrialComponentPrimaryStatus: {
|
|
1715
|
-
readonly COMPLETED: "Completed";
|
|
1716
|
-
readonly FAILED: "Failed";
|
|
1717
|
-
readonly IN_PROGRESS: "InProgress";
|
|
1718
|
-
readonly STOPPED: "Stopped";
|
|
1719
|
-
readonly STOPPING: "Stopping";
|
|
1720
|
-
};
|
|
1721
|
-
export type TrialComponentPrimaryStatus =
|
|
1722
|
-
(typeof TrialComponentPrimaryStatus)[keyof typeof TrialComponentPrimaryStatus];
|
|
1723
|
-
export interface TrialComponentStatus {
|
|
1724
|
-
PrimaryStatus?: TrialComponentPrimaryStatus;
|
|
1725
|
-
Message?: string;
|
|
1726
|
-
}
|
|
1727
|
-
export interface CreateTrialComponentRequest {
|
|
1728
|
-
TrialComponentName: string | undefined;
|
|
1729
|
-
DisplayName?: string;
|
|
1730
|
-
Status?: TrialComponentStatus;
|
|
1731
|
-
StartTime?: Date;
|
|
1732
|
-
EndTime?: Date;
|
|
1733
|
-
Parameters?: Record<string, TrialComponentParameterValue>;
|
|
1734
|
-
InputArtifacts?: Record<string, TrialComponentArtifact>;
|
|
1735
|
-
OutputArtifacts?: Record<string, TrialComponentArtifact>;
|
|
1736
|
-
MetadataProperties?: MetadataProperties;
|
|
1737
|
-
Tags?: Tag[];
|
|
1738
|
-
}
|
|
1739
|
-
export interface CreateTrialComponentResponse {
|
|
1740
|
-
TrialComponentArn?: string;
|
|
1741
|
-
}
|
|
1742
|
-
export interface CreateUserProfileRequest {
|
|
1743
|
-
DomainId: string | undefined;
|
|
1744
|
-
UserProfileName: string | undefined;
|
|
1745
|
-
SingleSignOnUserIdentifier?: string;
|
|
1746
|
-
SingleSignOnUserValue?: string;
|
|
1747
|
-
Tags?: Tag[];
|
|
1748
|
-
UserSettings?: UserSettings;
|
|
1749
|
-
}
|
|
1750
|
-
export interface CreateUserProfileResponse {
|
|
1751
|
-
UserProfileArn?: string;
|
|
1752
|
-
}
|
|
1753
|
-
export interface OidcConfig {
|
|
1754
|
-
ClientId: string | undefined;
|
|
1755
|
-
ClientSecret: string | undefined;
|
|
1756
|
-
Issuer: string | undefined;
|
|
1757
|
-
AuthorizationEndpoint: string | undefined;
|
|
1758
|
-
TokenEndpoint: string | undefined;
|
|
1759
|
-
UserInfoEndpoint: string | undefined;
|
|
1760
|
-
LogoutEndpoint: string | undefined;
|
|
1761
|
-
JwksUri: string | undefined;
|
|
1762
|
-
}
|
|
1763
|
-
export interface SourceIpConfig {
|
|
1764
|
-
Cidrs: string[] | undefined;
|
|
1765
|
-
}
|
|
1766
|
-
export interface WorkforceVpcConfigRequest {
|
|
1767
|
-
VpcId?: string;
|
|
1768
|
-
SecurityGroupIds?: string[];
|
|
1769
|
-
Subnets?: string[];
|
|
1770
|
-
}
|
|
1771
|
-
export interface CreateWorkforceRequest {
|
|
1772
|
-
CognitoConfig?: CognitoConfig;
|
|
1773
|
-
OidcConfig?: OidcConfig;
|
|
1774
|
-
SourceIpConfig?: SourceIpConfig;
|
|
1775
|
-
WorkforceName: string | undefined;
|
|
1776
|
-
Tags?: Tag[];
|
|
1777
|
-
WorkforceVpcConfig?: WorkforceVpcConfigRequest;
|
|
1778
|
-
}
|
|
1779
|
-
export interface CreateWorkforceResponse {
|
|
1780
|
-
WorkforceArn: string | undefined;
|
|
1781
|
-
}
|
|
1782
|
-
export interface OidcMemberDefinition {
|
|
1783
|
-
Groups: string[] | undefined;
|
|
1784
|
-
}
|
|
1785
|
-
export interface MemberDefinition {
|
|
1786
|
-
CognitoMemberDefinition?: CognitoMemberDefinition;
|
|
1787
|
-
OidcMemberDefinition?: OidcMemberDefinition;
|
|
1788
|
-
}
|
|
1789
|
-
export interface NotificationConfiguration {
|
|
1790
|
-
NotificationTopicArn?: string;
|
|
1791
|
-
}
|
|
1792
|
-
export interface CreateWorkteamRequest {
|
|
1793
|
-
WorkteamName: string | undefined;
|
|
1794
|
-
WorkforceName?: string;
|
|
1795
|
-
MemberDefinitions: MemberDefinition[] | undefined;
|
|
1796
|
-
Description: string | undefined;
|
|
1797
|
-
NotificationConfiguration?: NotificationConfiguration;
|
|
1798
|
-
Tags?: Tag[];
|
|
1799
|
-
}
|
|
1800
|
-
export interface CreateWorkteamResponse {
|
|
1801
|
-
WorkteamArn?: string;
|
|
1802
|
-
}
|
|
1803
|
-
export declare const CrossAccountFilterOption: {
|
|
1804
|
-
readonly CROSS_ACCOUNT: "CrossAccount";
|
|
1805
|
-
readonly SAME_ACCOUNT: "SameAccount";
|
|
1806
|
-
};
|
|
1807
|
-
export type CrossAccountFilterOption =
|
|
1808
|
-
(typeof CrossAccountFilterOption)[keyof typeof CrossAccountFilterOption];
|
|
1809
|
-
export declare const Statistic: {
|
|
1810
|
-
readonly AVERAGE: "Average";
|
|
1811
|
-
readonly MAXIMUM: "Maximum";
|
|
1812
|
-
readonly MINIMUM: "Minimum";
|
|
1813
|
-
readonly SAMPLE_COUNT: "SampleCount";
|
|
1814
|
-
readonly SUM: "Sum";
|
|
1815
|
-
};
|
|
1816
|
-
export type Statistic = (typeof Statistic)[keyof typeof Statistic];
|
|
1817
|
-
export interface CustomizedMetricSpecification {
|
|
1818
|
-
MetricName?: string;
|
|
1819
|
-
Namespace?: string;
|
|
1820
|
-
Statistic?: Statistic;
|
|
1821
|
-
}
|
|
1822
|
-
export interface DataCaptureConfigSummary {
|
|
1823
|
-
EnableCapture: boolean | undefined;
|
|
1824
|
-
CaptureStatus: CaptureStatus | undefined;
|
|
1825
|
-
CurrentSamplingPercentage: number | undefined;
|
|
1826
|
-
DestinationS3Uri: string | undefined;
|
|
1827
|
-
KmsKeyId: string | undefined;
|
|
1828
|
-
}
|
|
1829
|
-
export declare const RuleEvaluationStatus: {
|
|
1830
|
-
readonly ERROR: "Error";
|
|
1831
|
-
readonly IN_PROGRESS: "InProgress";
|
|
1832
|
-
readonly ISSUES_FOUND: "IssuesFound";
|
|
1833
|
-
readonly NO_ISSUES_FOUND: "NoIssuesFound";
|
|
1834
|
-
readonly STOPPED: "Stopped";
|
|
1835
|
-
readonly STOPPING: "Stopping";
|
|
1836
|
-
};
|
|
1837
|
-
export type RuleEvaluationStatus =
|
|
1838
|
-
(typeof RuleEvaluationStatus)[keyof typeof RuleEvaluationStatus];
|
|
1839
|
-
export interface DebugRuleEvaluationStatus {
|
|
1840
|
-
RuleConfigurationName?: string;
|
|
1841
|
-
RuleEvaluationJobArn?: string;
|
|
1842
|
-
RuleEvaluationStatus?: RuleEvaluationStatus;
|
|
1843
|
-
StatusDetails?: string;
|
|
1844
|
-
LastModifiedTime?: Date;
|
|
1845
|
-
}
|
|
1846
|
-
export interface DeleteActionRequest {
|
|
1847
|
-
ActionName: string | undefined;
|
|
1848
|
-
}
|
|
1849
|
-
export interface DeleteActionResponse {
|
|
1850
|
-
ActionArn?: string;
|
|
1851
|
-
}
|
|
1852
|
-
export interface DeleteAlgorithmInput {
|
|
1853
|
-
AlgorithmName: string | undefined;
|
|
1854
|
-
}
|
|
1855
|
-
export interface DeleteAppRequest {
|
|
1856
|
-
DomainId: string | undefined;
|
|
1857
|
-
UserProfileName?: string;
|
|
1858
|
-
AppType: AppType | undefined;
|
|
1859
|
-
AppName: string | undefined;
|
|
1860
|
-
SpaceName?: string;
|
|
1861
|
-
}
|
|
1862
|
-
export interface DeleteAppImageConfigRequest {
|
|
1863
|
-
AppImageConfigName: string | undefined;
|
|
1864
|
-
}
|
|
1865
|
-
export interface DeleteArtifactRequest {
|
|
1866
|
-
ArtifactArn?: string;
|
|
1867
|
-
Source?: ArtifactSource;
|
|
1868
|
-
}
|
|
1869
|
-
export interface DeleteArtifactResponse {
|
|
1870
|
-
ArtifactArn?: string;
|
|
1871
|
-
}
|
|
1872
|
-
export interface DeleteAssociationRequest {
|
|
1873
|
-
SourceArn: string | undefined;
|
|
1874
|
-
DestinationArn: string | undefined;
|
|
1875
|
-
}
|
|
1876
|
-
export interface DeleteAssociationResponse {
|
|
1877
|
-
SourceArn?: string;
|
|
1878
|
-
DestinationArn?: string;
|
|
1879
|
-
}
|
|
1880
1877
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
1881
1878
|
obj: CreateModelCardRequest
|
|
1882
1879
|
) => any;
|
|
1883
|
-
export declare const OidcConfigFilterSensitiveLog: (obj: OidcConfig) => any;
|
|
1884
|
-
export declare const CreateWorkforceRequestFilterSensitiveLog: (
|
|
1885
|
-
obj: CreateWorkforceRequest
|
|
1886
|
-
) => any;
|