@aws-sdk/client-sagemaker 3.541.0 → 3.549.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-cjs/index.js +9 -0
- package/dist-es/protocols/Aws_json1_1.js +9 -0
- package/dist-types/commands/CreateAppImageConfigCommand.d.ts +18 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +7 -0
- package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +2 -1
- package/dist-types/commands/CreateUserProfileCommand.d.ts +7 -0
- package/dist-types/commands/DescribeAppImageConfigCommand.d.ts +18 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +7 -0
- package/dist-types/commands/DescribeSpaceCommand.d.ts +2 -1
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +7 -0
- package/dist-types/commands/ListAppImageConfigsCommand.d.ts +18 -0
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +18 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +7 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +57 -303
- package/dist-types/models/models_1.d.ts +304 -33
- package/dist-types/models/models_2.d.ts +17 -87
- package/dist-types/models/models_3.d.ts +87 -13
- package/dist-types/models/models_4.d.ts +18 -2
- package/dist-types/ts3.4/commands/CreateStudioLifecycleConfigCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeSpaceCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +12 -11
- package/dist-types/ts3.4/models/models_1.d.ts +14 -10
- package/dist-types/ts3.4/models/models_2.d.ts +7 -20
- package/dist-types/ts3.4/models/models_3.d.ts +19 -3
- package/dist-types/ts3.4/models/models_4.d.ts +5 -1
- package/package.json +6 -6
|
@@ -1,5 +1,308 @@
|
|
|
1
1
|
import { LazyJsonString as __LazyJsonString } from "@smithy/smithy-client";
|
|
2
|
-
import { AdditionalInferenceSpecificationDefinition, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoParameter, AutoRollbackConfig, Autotune, AwsManagedHumanLoopRequestSource, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CanvasAppSettings, CapacitySize, CaptureContentTypeHeader, CaptureOption, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CodeEditorAppSettings, CodeRepository, CollectionConfig, CollectionType, ContainerDefinition, ContentClassifier, ContextSource, ContinuousParameterRange, ConvergenceDetected, FeatureStatus, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, InputConfig, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDataSource,
|
|
2
|
+
import { AdditionalInferenceSpecificationDefinition, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoParameter, AutoRollbackConfig, Autotune, AwsManagedHumanLoopRequestSource, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CanvasAppSettings, CapacitySize, CaptureContentTypeHeader, CaptureOption, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CodeEditorAppSettings, CodeRepository, CollectionConfig, CollectionType, ContainerDefinition, ContentClassifier, ContextSource, ContinuousParameterRange, ConvergenceDetected, CustomImage, FeatureStatus, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, InputConfig, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDataSource, OutputDataConfig, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TargetDevice, TargetPlatform, TrainingInputMode, TrainingInstanceType, TransformJobDefinition, VpcConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Contains information about the output location for the compiled model and the target
|
|
5
|
+
* device that the model runs on. <code>TargetDevice</code> and <code>TargetPlatform</code>
|
|
6
|
+
* are mutually exclusive, so you need to choose one between the two to specify your target
|
|
7
|
+
* device or platform. If you cannot find your device you want to use from the
|
|
8
|
+
* <code>TargetDevice</code> list, use <code>TargetPlatform</code> to describe the
|
|
9
|
+
* platform of your edge device and <code>CompilerOptions</code> if there are specific
|
|
10
|
+
* settings that are required or recommended to use for particular TargetPlatform.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export interface OutputConfig {
|
|
14
|
+
/**
|
|
15
|
+
* <p>Identifies the S3 bucket where you want Amazon SageMaker to store the model artifacts. For
|
|
16
|
+
* example, <code>s3://bucket-name/key-name-prefix</code>.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
S3OutputLocation: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>Identifies the target device or the machine learning instance that you want to run
|
|
22
|
+
* your model on after the compilation has completed. Alternatively, you can specify OS,
|
|
23
|
+
* architecture, and accelerator using <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TargetPlatform.html">TargetPlatform</a>
|
|
24
|
+
* fields. It can be used instead of <code>TargetPlatform</code>.</p>
|
|
25
|
+
* <note>
|
|
26
|
+
* <p>Currently <code>ml_trn1</code> is available only in US East (N. Virginia) Region,
|
|
27
|
+
* and <code>ml_inf2</code> is available only in US East (Ohio) Region.</p>
|
|
28
|
+
* </note>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
TargetDevice?: TargetDevice;
|
|
32
|
+
/**
|
|
33
|
+
* <p>Contains information about a target platform that you want your model to run on, such
|
|
34
|
+
* as OS, architecture, and accelerators. It is an alternative of
|
|
35
|
+
* <code>TargetDevice</code>.</p>
|
|
36
|
+
* <p>The following examples show how to configure the <code>TargetPlatform</code> and
|
|
37
|
+
* <code>CompilerOptions</code> JSON strings for popular target platforms: </p>
|
|
38
|
+
* <ul>
|
|
39
|
+
* <li>
|
|
40
|
+
* <p>Raspberry Pi 3 Model B+</p>
|
|
41
|
+
* <p>
|
|
42
|
+
* <code>"TargetPlatform": \{"Os": "LINUX", "Arch": "ARM_EABIHF"\},</code>
|
|
43
|
+
* </p>
|
|
44
|
+
* <p>
|
|
45
|
+
* <code> "CompilerOptions": \{'mattr': ['+neon']\}</code>
|
|
46
|
+
* </p>
|
|
47
|
+
* </li>
|
|
48
|
+
* <li>
|
|
49
|
+
* <p>Jetson TX2</p>
|
|
50
|
+
* <p>
|
|
51
|
+
* <code>"TargetPlatform": \{"Os": "LINUX", "Arch": "ARM64", "Accelerator":
|
|
52
|
+
* "NVIDIA"\},</code>
|
|
53
|
+
* </p>
|
|
54
|
+
* <p>
|
|
55
|
+
* <code> "CompilerOptions": \{'gpu-code': 'sm_62', 'trt-ver': '6.0.1',
|
|
56
|
+
* 'cuda-ver': '10.0'\}</code>
|
|
57
|
+
* </p>
|
|
58
|
+
* </li>
|
|
59
|
+
* <li>
|
|
60
|
+
* <p>EC2 m5.2xlarge instance OS</p>
|
|
61
|
+
* <p>
|
|
62
|
+
* <code>"TargetPlatform": \{"Os": "LINUX", "Arch": "X86_64", "Accelerator":
|
|
63
|
+
* "NVIDIA"\},</code>
|
|
64
|
+
* </p>
|
|
65
|
+
* <p>
|
|
66
|
+
* <code> "CompilerOptions": \{'mcpu': 'skylake-avx512'\}</code>
|
|
67
|
+
* </p>
|
|
68
|
+
* </li>
|
|
69
|
+
* <li>
|
|
70
|
+
* <p>RK3399</p>
|
|
71
|
+
* <p>
|
|
72
|
+
* <code>"TargetPlatform": \{"Os": "LINUX", "Arch": "ARM64", "Accelerator":
|
|
73
|
+
* "MALI"\}</code>
|
|
74
|
+
* </p>
|
|
75
|
+
* </li>
|
|
76
|
+
* <li>
|
|
77
|
+
* <p>ARMv7 phone (CPU)</p>
|
|
78
|
+
* <p>
|
|
79
|
+
* <code>"TargetPlatform": \{"Os": "ANDROID", "Arch": "ARM_EABI"\},</code>
|
|
80
|
+
* </p>
|
|
81
|
+
* <p>
|
|
82
|
+
* <code> "CompilerOptions": \{'ANDROID_PLATFORM': 25, 'mattr':
|
|
83
|
+
* ['+neon']\}</code>
|
|
84
|
+
* </p>
|
|
85
|
+
* </li>
|
|
86
|
+
* <li>
|
|
87
|
+
* <p>ARMv8 phone (CPU)</p>
|
|
88
|
+
* <p>
|
|
89
|
+
* <code>"TargetPlatform": \{"Os": "ANDROID", "Arch": "ARM64"\},</code>
|
|
90
|
+
* </p>
|
|
91
|
+
* <p>
|
|
92
|
+
* <code> "CompilerOptions": \{'ANDROID_PLATFORM': 29\}</code>
|
|
93
|
+
* </p>
|
|
94
|
+
* </li>
|
|
95
|
+
* </ul>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
TargetPlatform?: TargetPlatform;
|
|
99
|
+
/**
|
|
100
|
+
* <p>Specifies additional parameters for compiler options in JSON format. The compiler
|
|
101
|
+
* options are <code>TargetPlatform</code> specific. It is required for NVIDIA accelerators
|
|
102
|
+
* and highly recommended for CPU compilations. For any other cases, it is optional to
|
|
103
|
+
* specify <code>CompilerOptions.</code>
|
|
104
|
+
* </p>
|
|
105
|
+
* <ul>
|
|
106
|
+
* <li>
|
|
107
|
+
* <p>
|
|
108
|
+
* <code>DTYPE</code>: Specifies the data type for the input. When compiling for
|
|
109
|
+
* <code>ml_*</code> (except for <code>ml_inf</code>) instances using PyTorch
|
|
110
|
+
* framework, provide the data type (dtype) of the model's input.
|
|
111
|
+
* <code>"float32"</code> is used if <code>"DTYPE"</code> is not specified.
|
|
112
|
+
* Options for data type are:</p>
|
|
113
|
+
* <ul>
|
|
114
|
+
* <li>
|
|
115
|
+
* <p>float32: Use either <code>"float"</code> or
|
|
116
|
+
* <code>"float32"</code>.</p>
|
|
117
|
+
* </li>
|
|
118
|
+
* <li>
|
|
119
|
+
* <p>int64: Use either <code>"int64"</code> or <code>"long"</code>.</p>
|
|
120
|
+
* </li>
|
|
121
|
+
* </ul>
|
|
122
|
+
* <p> For example, <code>\{"dtype" : "float32"\}</code>.</p>
|
|
123
|
+
* </li>
|
|
124
|
+
* <li>
|
|
125
|
+
* <p>
|
|
126
|
+
* <code>CPU</code>: Compilation for CPU supports the following compiler
|
|
127
|
+
* options.</p>
|
|
128
|
+
* <ul>
|
|
129
|
+
* <li>
|
|
130
|
+
* <p>
|
|
131
|
+
* <code>mcpu</code>: CPU micro-architecture. For example, <code>\{'mcpu':
|
|
132
|
+
* 'skylake-avx512'\}</code>
|
|
133
|
+
* </p>
|
|
134
|
+
* </li>
|
|
135
|
+
* <li>
|
|
136
|
+
* <p>
|
|
137
|
+
* <code>mattr</code>: CPU flags. For example, <code>\{'mattr': ['+neon',
|
|
138
|
+
* '+vfpv4']\}</code>
|
|
139
|
+
* </p>
|
|
140
|
+
* </li>
|
|
141
|
+
* </ul>
|
|
142
|
+
* </li>
|
|
143
|
+
* <li>
|
|
144
|
+
* <p>
|
|
145
|
+
* <code>ARM</code>: Details of ARM CPU compilations.</p>
|
|
146
|
+
* <ul>
|
|
147
|
+
* <li>
|
|
148
|
+
* <p>
|
|
149
|
+
* <code>NEON</code>: NEON is an implementation of the Advanced SIMD
|
|
150
|
+
* extension used in ARMv7 processors.</p>
|
|
151
|
+
* <p>For example, add <code>\{'mattr': ['+neon']\}</code> to the compiler
|
|
152
|
+
* options if compiling for ARM 32-bit platform with the NEON
|
|
153
|
+
* support.</p>
|
|
154
|
+
* </li>
|
|
155
|
+
* </ul>
|
|
156
|
+
* </li>
|
|
157
|
+
* <li>
|
|
158
|
+
* <p>
|
|
159
|
+
* <code>NVIDIA</code>: Compilation for NVIDIA GPU supports the following
|
|
160
|
+
* compiler options.</p>
|
|
161
|
+
* <ul>
|
|
162
|
+
* <li>
|
|
163
|
+
* <p>
|
|
164
|
+
* <code>gpu_code</code>: Specifies the targeted architecture.</p>
|
|
165
|
+
* </li>
|
|
166
|
+
* <li>
|
|
167
|
+
* <p>
|
|
168
|
+
* <code>trt-ver</code>: Specifies the TensorRT versions in x.y.z.
|
|
169
|
+
* format.</p>
|
|
170
|
+
* </li>
|
|
171
|
+
* <li>
|
|
172
|
+
* <p>
|
|
173
|
+
* <code>cuda-ver</code>: Specifies the CUDA version in x.y
|
|
174
|
+
* format.</p>
|
|
175
|
+
* </li>
|
|
176
|
+
* </ul>
|
|
177
|
+
* <p>For example, <code>\{'gpu-code': 'sm_72', 'trt-ver': '6.0.1', 'cuda-ver':
|
|
178
|
+
* '10.1'\}</code>
|
|
179
|
+
* </p>
|
|
180
|
+
* </li>
|
|
181
|
+
* <li>
|
|
182
|
+
* <p>
|
|
183
|
+
* <code>ANDROID</code>: Compilation for the Android OS supports the following
|
|
184
|
+
* compiler options:</p>
|
|
185
|
+
* <ul>
|
|
186
|
+
* <li>
|
|
187
|
+
* <p>
|
|
188
|
+
* <code>ANDROID_PLATFORM</code>: Specifies the Android API levels.
|
|
189
|
+
* Available levels range from 21 to 29. For example,
|
|
190
|
+
* <code>\{'ANDROID_PLATFORM': 28\}</code>.</p>
|
|
191
|
+
* </li>
|
|
192
|
+
* <li>
|
|
193
|
+
* <p>
|
|
194
|
+
* <code>mattr</code>: Add <code>\{'mattr': ['+neon']\}</code> to compiler
|
|
195
|
+
* options if compiling for ARM 32-bit platform with NEON support.</p>
|
|
196
|
+
* </li>
|
|
197
|
+
* </ul>
|
|
198
|
+
* </li>
|
|
199
|
+
* <li>
|
|
200
|
+
* <p>
|
|
201
|
+
* <code>INFERENTIA</code>: Compilation for target ml_inf1 uses compiler options
|
|
202
|
+
* passed in as a JSON string. For example, <code>"CompilerOptions": "\"--verbose 1
|
|
203
|
+
* --num-neuroncores 2 -O2\""</code>. </p>
|
|
204
|
+
* <p>For information about supported compiler options, see <a href="https://awsdocs-neuron.readthedocs-hosted.com/en/latest/compiler/neuronx-cc/api-reference-guide/neuron-compiler-cli-reference-guide.html"> Neuron Compiler CLI Reference Guide</a>. </p>
|
|
205
|
+
* </li>
|
|
206
|
+
* <li>
|
|
207
|
+
* <p>
|
|
208
|
+
* <code>CoreML</code>: Compilation for the CoreML <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OutputConfig.html">OutputConfig</a>
|
|
209
|
+
* <code>TargetDevice</code> supports the following compiler options:</p>
|
|
210
|
+
* <ul>
|
|
211
|
+
* <li>
|
|
212
|
+
* <p>
|
|
213
|
+
* <code>class_labels</code>: Specifies the classification labels file
|
|
214
|
+
* name inside input tar.gz file. For example, <code>\{"class_labels":
|
|
215
|
+
* "imagenet_labels_1000.txt"\}</code>. Labels inside the txt file
|
|
216
|
+
* should be separated by newlines.</p>
|
|
217
|
+
* </li>
|
|
218
|
+
* </ul>
|
|
219
|
+
* </li>
|
|
220
|
+
* <li>
|
|
221
|
+
* <p>
|
|
222
|
+
* <code>EIA</code>: Compilation for the Elastic Inference Accelerator supports
|
|
223
|
+
* the following compiler options:</p>
|
|
224
|
+
* <ul>
|
|
225
|
+
* <li>
|
|
226
|
+
* <p>
|
|
227
|
+
* <code>precision_mode</code>: Specifies the precision of compiled
|
|
228
|
+
* artifacts. Supported values are <code>"FP16"</code> and
|
|
229
|
+
* <code>"FP32"</code>. Default is <code>"FP32"</code>.</p>
|
|
230
|
+
* </li>
|
|
231
|
+
* <li>
|
|
232
|
+
* <p>
|
|
233
|
+
* <code>signature_def_key</code>: Specifies the signature to use for
|
|
234
|
+
* models in SavedModel format. Defaults is TensorFlow's default signature
|
|
235
|
+
* def key.</p>
|
|
236
|
+
* </li>
|
|
237
|
+
* <li>
|
|
238
|
+
* <p>
|
|
239
|
+
* <code>output_names</code>: Specifies a list of output tensor names for
|
|
240
|
+
* models in FrozenGraph format. Set at most one API field, either:
|
|
241
|
+
* <code>signature_def_key</code> or <code>output_names</code>.</p>
|
|
242
|
+
* </li>
|
|
243
|
+
* </ul>
|
|
244
|
+
* <p>For example: <code>\{"precision_mode": "FP32", "output_names":
|
|
245
|
+
* ["output:0"]\}</code>
|
|
246
|
+
* </p>
|
|
247
|
+
* </li>
|
|
248
|
+
* </ul>
|
|
249
|
+
* @public
|
|
250
|
+
*/
|
|
251
|
+
CompilerOptions?: string;
|
|
252
|
+
/**
|
|
253
|
+
* <p>The Amazon Web Services Key Management Service key (Amazon Web Services KMS) that Amazon SageMaker
|
|
254
|
+
* uses to encrypt your output models with Amazon S3 server-side encryption after compilation
|
|
255
|
+
* job. If you don't provide a KMS key ID, Amazon SageMaker uses the default KMS key for Amazon S3 for your
|
|
256
|
+
* role's account. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingKMSEncryption.html">KMS-Managed Encryption
|
|
257
|
+
* Keys</a> in the <i>Amazon Simple Storage Service Developer
|
|
258
|
+
* Guide.</i>
|
|
259
|
+
* </p>
|
|
260
|
+
* <p>The KmsKeyId can be any of the following formats: </p>
|
|
261
|
+
* <ul>
|
|
262
|
+
* <li>
|
|
263
|
+
* <p>Key ID: <code>1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|
264
|
+
* </p>
|
|
265
|
+
* </li>
|
|
266
|
+
* <li>
|
|
267
|
+
* <p>Key ARN:
|
|
268
|
+
* <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|
269
|
+
* </p>
|
|
270
|
+
* </li>
|
|
271
|
+
* <li>
|
|
272
|
+
* <p>Alias name: <code>alias/ExampleAlias</code>
|
|
273
|
+
* </p>
|
|
274
|
+
* </li>
|
|
275
|
+
* <li>
|
|
276
|
+
* <p>Alias name ARN:
|
|
277
|
+
* <code>arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias</code>
|
|
278
|
+
* </p>
|
|
279
|
+
* </li>
|
|
280
|
+
* </ul>
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
283
|
+
KmsKeyId?: string;
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> configuration object that specifies the VPC that you want the
|
|
287
|
+
* compilation jobs to connect to. For more information on controlling access to your Amazon S3
|
|
288
|
+
* buckets used for compilation job, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html">Give Amazon SageMaker Compilation Jobs Access to
|
|
289
|
+
* Resources in Your Amazon VPC</a>.</p>
|
|
290
|
+
* @public
|
|
291
|
+
*/
|
|
292
|
+
export interface NeoVpcConfig {
|
|
293
|
+
/**
|
|
294
|
+
* <p>The VPC security group IDs. IDs have the form of <code>sg-xxxxxxxx</code>. Specify the
|
|
295
|
+
* security groups for the VPC that is specified in the <code>Subnets</code> field.</p>
|
|
296
|
+
* @public
|
|
297
|
+
*/
|
|
298
|
+
SecurityGroupIds: string[] | undefined;
|
|
299
|
+
/**
|
|
300
|
+
* <p>The ID of the subnets in the VPC that you want to connect the compilation job to for
|
|
301
|
+
* accessing the model in Amazon S3.</p>
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
Subnets: string[] | undefined;
|
|
305
|
+
}
|
|
3
306
|
/**
|
|
4
307
|
* @public
|
|
5
308
|
*/
|
|
@@ -722,28 +1025,6 @@ export interface JupyterServerAppSettings {
|
|
|
722
1025
|
*/
|
|
723
1026
|
CodeRepositories?: CodeRepository[];
|
|
724
1027
|
}
|
|
725
|
-
/**
|
|
726
|
-
* <p>A custom SageMaker image. For more information, see
|
|
727
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/studio-byoi.html">Bring your own SageMaker image</a>.</p>
|
|
728
|
-
* @public
|
|
729
|
-
*/
|
|
730
|
-
export interface CustomImage {
|
|
731
|
-
/**
|
|
732
|
-
* <p>The name of the CustomImage. Must be unique to your account.</p>
|
|
733
|
-
* @public
|
|
734
|
-
*/
|
|
735
|
-
ImageName: string | undefined;
|
|
736
|
-
/**
|
|
737
|
-
* <p>The version number of the CustomImage.</p>
|
|
738
|
-
* @public
|
|
739
|
-
*/
|
|
740
|
-
ImageVersionNumber?: number;
|
|
741
|
-
/**
|
|
742
|
-
* <p>The name of the AppImageConfig.</p>
|
|
743
|
-
* @public
|
|
744
|
-
*/
|
|
745
|
-
AppImageConfigName: string | undefined;
|
|
746
|
-
}
|
|
747
1028
|
/**
|
|
748
1029
|
* <p>The KernelGateway app settings.</p>
|
|
749
1030
|
* @public
|
|
@@ -10881,16 +11162,6 @@ export interface CreateStudioLifecycleConfigRequest {
|
|
|
10881
11162
|
*/
|
|
10882
11163
|
Tags?: Tag[];
|
|
10883
11164
|
}
|
|
10884
|
-
/**
|
|
10885
|
-
* @public
|
|
10886
|
-
*/
|
|
10887
|
-
export interface CreateStudioLifecycleConfigResponse {
|
|
10888
|
-
/**
|
|
10889
|
-
* <p>The ARN of your created Lifecycle Configuration.</p>
|
|
10890
|
-
* @public
|
|
10891
|
-
*/
|
|
10892
|
-
StudioLifecycleConfigArn?: string;
|
|
10893
|
-
}
|
|
10894
11165
|
/**
|
|
10895
11166
|
* @internal
|
|
10896
11167
|
*/
|
|
@@ -1,5 +1,15 @@
|
|
|
1
|
-
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CaptureStatus, Channel, CheckpointConfig, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterStatus, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContextSource, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus,
|
|
2
|
-
import { _InstanceType, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DirectInternetAccess, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringScheduleConfig, MonitoringStoppingCondition, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig,
|
|
1
|
+
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CaptureStatus, Channel, CheckpointConfig, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterStatus, CodeEditorAppImageConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContextSource, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DirectInternetAccess, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringScheduleConfig, MonitoringStoppingCondition, MonitoringType, NeoVpcConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, ParallelismConfiguration, ProcessingInput, ProcessingInstanceType, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, ThroughputMode, UserSettings, VendorGuidance } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface CreateStudioLifecycleConfigResponse {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The ARN of your created Lifecycle Configuration.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
StudioLifecycleConfigArn?: string;
|
|
12
|
+
}
|
|
3
13
|
/**
|
|
4
14
|
* <p>Configuration information for the Amazon SageMaker Debugger hook parameters, metric and tensor collections, and
|
|
5
15
|
* storage paths. To learn more about
|
|
@@ -2586,6 +2596,11 @@ export interface DescribeAppImageConfigResponse {
|
|
|
2586
2596
|
* @public
|
|
2587
2597
|
*/
|
|
2588
2598
|
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
|
2599
|
+
/**
|
|
2600
|
+
* <p>The configuration of the Code Editor app.</p>
|
|
2601
|
+
* @public
|
|
2602
|
+
*/
|
|
2603
|
+
CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
|
|
2589
2604
|
}
|
|
2590
2605
|
/**
|
|
2591
2606
|
* @public
|
|
@@ -8655,91 +8670,6 @@ export declare const SpaceStatus: {
|
|
|
8655
8670
|
* @public
|
|
8656
8671
|
*/
|
|
8657
8672
|
export type SpaceStatus = (typeof SpaceStatus)[keyof typeof SpaceStatus];
|
|
8658
|
-
/**
|
|
8659
|
-
* @public
|
|
8660
|
-
*/
|
|
8661
|
-
export interface DescribeSpaceResponse {
|
|
8662
|
-
/**
|
|
8663
|
-
* <p>The ID of the associated domain.</p>
|
|
8664
|
-
* @public
|
|
8665
|
-
*/
|
|
8666
|
-
DomainId?: string;
|
|
8667
|
-
/**
|
|
8668
|
-
* <p>The space's Amazon Resource Name (ARN).</p>
|
|
8669
|
-
* @public
|
|
8670
|
-
*/
|
|
8671
|
-
SpaceArn?: string;
|
|
8672
|
-
/**
|
|
8673
|
-
* <p>The name of the space.</p>
|
|
8674
|
-
* @public
|
|
8675
|
-
*/
|
|
8676
|
-
SpaceName?: string;
|
|
8677
|
-
/**
|
|
8678
|
-
* <p>The ID of the space's profile in the Amazon EFS volume.</p>
|
|
8679
|
-
* @public
|
|
8680
|
-
*/
|
|
8681
|
-
HomeEfsFileSystemUid?: string;
|
|
8682
|
-
/**
|
|
8683
|
-
* <p>The status.</p>
|
|
8684
|
-
* @public
|
|
8685
|
-
*/
|
|
8686
|
-
Status?: SpaceStatus;
|
|
8687
|
-
/**
|
|
8688
|
-
* <p>The last modified time.</p>
|
|
8689
|
-
* @public
|
|
8690
|
-
*/
|
|
8691
|
-
LastModifiedTime?: Date;
|
|
8692
|
-
/**
|
|
8693
|
-
* <p>The creation time.</p>
|
|
8694
|
-
* @public
|
|
8695
|
-
*/
|
|
8696
|
-
CreationTime?: Date;
|
|
8697
|
-
/**
|
|
8698
|
-
* <p>The failure reason.</p>
|
|
8699
|
-
* @public
|
|
8700
|
-
*/
|
|
8701
|
-
FailureReason?: string;
|
|
8702
|
-
/**
|
|
8703
|
-
* <p>A collection of space settings.</p>
|
|
8704
|
-
* @public
|
|
8705
|
-
*/
|
|
8706
|
-
SpaceSettings?: SpaceSettings;
|
|
8707
|
-
/**
|
|
8708
|
-
* <p>The collection of ownership settings for a space.</p>
|
|
8709
|
-
* @public
|
|
8710
|
-
*/
|
|
8711
|
-
OwnershipSettings?: OwnershipSettings;
|
|
8712
|
-
/**
|
|
8713
|
-
* <p>The collection of space sharing settings for a space.</p>
|
|
8714
|
-
* @public
|
|
8715
|
-
*/
|
|
8716
|
-
SpaceSharingSettings?: SpaceSharingSettings;
|
|
8717
|
-
/**
|
|
8718
|
-
* <p>The name of the space that appears in the Amazon SageMaker Studio UI.</p>
|
|
8719
|
-
* @public
|
|
8720
|
-
*/
|
|
8721
|
-
SpaceDisplayName?: string;
|
|
8722
|
-
/**
|
|
8723
|
-
* <p>Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.</p>
|
|
8724
|
-
* <p>The following application types are supported:</p>
|
|
8725
|
-
* <ul>
|
|
8726
|
-
* <li>
|
|
8727
|
-
* <p>Studio Classic: <code>&redirect=JupyterServer</code>
|
|
8728
|
-
* </p>
|
|
8729
|
-
* </li>
|
|
8730
|
-
* <li>
|
|
8731
|
-
* <p>JupyterLab: <code>&redirect=JupyterLab</code>
|
|
8732
|
-
* </p>
|
|
8733
|
-
* </li>
|
|
8734
|
-
* <li>
|
|
8735
|
-
* <p>Code Editor, based on Code-OSS, Visual Studio Code - Open Source: <code>&redirect=CodeEditor</code>
|
|
8736
|
-
* </p>
|
|
8737
|
-
* </li>
|
|
8738
|
-
* </ul>
|
|
8739
|
-
* @public
|
|
8740
|
-
*/
|
|
8741
|
-
Url?: string;
|
|
8742
|
-
}
|
|
8743
8673
|
/**
|
|
8744
8674
|
* @internal
|
|
8745
8675
|
*/
|
|
@@ -1,6 +1,91 @@
|
|
|
1
1
|
import { ActionSummary, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchDataCaptureConfig, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClusterNodeSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContextSummary, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DockerSettings, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardStatus, MonitoringScheduleConfig, MonitoringType, OfflineStoreConfig, OnlineStoreConfig, RecommendationJobType, ResourceLimits, RetryStrategy, StudioLifecycleConfigAppType, UserSettings } from "./models_1";
|
|
3
|
-
import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExecutionStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportJobStatus, ModelClientConfig, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, PipelineExecutionStatus, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, ScheduleStatus, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_2";
|
|
2
|
+
import { _InstanceType, DockerSettings, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardStatus, MonitoringScheduleConfig, MonitoringType, OfflineStoreConfig, OnlineStoreConfig, OwnershipSettings, RecommendationJobType, ResourceLimits, RetryStrategy, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, UserSettings } from "./models_1";
|
|
3
|
+
import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExecutionStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportJobStatus, ModelClientConfig, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, PipelineExecutionStatus, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, ScheduleStatus, SourceIpConfig, SpaceStatus, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DescribeSpaceResponse {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The ID of the associated domain.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
DomainId?: string;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The space's Amazon Resource Name (ARN).</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
SpaceArn?: string;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The name of the space.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
SpaceName?: string;
|
|
23
|
+
/**
|
|
24
|
+
* <p>The ID of the space's profile in the Amazon EFS volume.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
HomeEfsFileSystemUid?: string;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The status.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
Status?: SpaceStatus;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The last modified time.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
LastModifiedTime?: Date;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The creation time.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
CreationTime?: Date;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The failure reason.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
FailureReason?: string;
|
|
48
|
+
/**
|
|
49
|
+
* <p>A collection of space settings.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
SpaceSettings?: SpaceSettings;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The collection of ownership settings for a space.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
OwnershipSettings?: OwnershipSettings;
|
|
58
|
+
/**
|
|
59
|
+
* <p>The collection of space sharing settings for a space.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
SpaceSharingSettings?: SpaceSharingSettings;
|
|
63
|
+
/**
|
|
64
|
+
* <p>The name of the space that appears in the Amazon SageMaker Studio UI.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
SpaceDisplayName?: string;
|
|
68
|
+
/**
|
|
69
|
+
* <p>Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.</p>
|
|
70
|
+
* <p>The following application types are supported:</p>
|
|
71
|
+
* <ul>
|
|
72
|
+
* <li>
|
|
73
|
+
* <p>Studio Classic: <code>&redirect=JupyterServer</code>
|
|
74
|
+
* </p>
|
|
75
|
+
* </li>
|
|
76
|
+
* <li>
|
|
77
|
+
* <p>JupyterLab: <code>&redirect=JupyterLab</code>
|
|
78
|
+
* </p>
|
|
79
|
+
* </li>
|
|
80
|
+
* <li>
|
|
81
|
+
* <p>Code Editor, based on Code-OSS, Visual Studio Code - Open Source: <code>&redirect=CodeEditor</code>
|
|
82
|
+
* </p>
|
|
83
|
+
* </li>
|
|
84
|
+
* </ul>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
Url?: string;
|
|
88
|
+
}
|
|
4
89
|
/**
|
|
5
90
|
* @public
|
|
6
91
|
*/
|
|
@@ -9584,14 +9669,3 @@ export interface ListPipelineExecutionStepsRequest {
|
|
|
9584
9669
|
*/
|
|
9585
9670
|
SortOrder?: SortOrder;
|
|
9586
9671
|
}
|
|
9587
|
-
/**
|
|
9588
|
-
* <p>Metadata for Model steps.</p>
|
|
9589
|
-
* @public
|
|
9590
|
-
*/
|
|
9591
|
-
export interface ModelStepMetadata {
|
|
9592
|
-
/**
|
|
9593
|
-
* <p>The Amazon Resource Name (ARN) of the created model.</p>
|
|
9594
|
-
* @public
|
|
9595
|
-
*/
|
|
9596
|
-
Arn?: string;
|
|
9597
|
-
}
|
|
@@ -1,7 +1,18 @@
|
|
|
1
|
-
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AutoMLJobStepMetadata, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ClusterInstanceGroupSpecification, ConditionStepMetadata, ContainerDefinition, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
1
|
+
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AutoMLJobStepMetadata, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ClusterInstanceGroupSpecification, CodeEditorAppImageConfig, ConditionStepMetadata, ContainerDefinition, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DefaultSpaceSettings, DeploymentConfig, DriftCheckBaselines, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, ModelCardSecurityConfig, ModelCardStatus, ModelMetrics, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SharingType, SkipModelValidation, SourceAlgorithmSpecification, SpaceSettings, SpaceStorageSettings, StudioLifecycleConfigAppType, ThroughputMode, TtlDuration, UiTemplate, UserSettings, VendorGuidance } from "./models_1";
|
|
3
3
|
import { CrossAccountFilterOption, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, EndpointStatus, FeatureParameter, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotificationConfiguration, OidcConfig, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProfilerConfig, ProfilerRuleConfiguration, ProjectStatus, ScheduleStatus, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, SourceIpConfig, SpaceStatus, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkforceVpcConfigRequest } from "./models_2";
|
|
4
|
-
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LambdaStepMetadata, LineageType, MetricData,
|
|
4
|
+
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LambdaStepMetadata, LineageType, MetricData, MonitoringAlertSummary, ResourceType, SecondaryStatus, SecondaryStatusTransition, SortBy, SortOrder, SubscribedWorkteam, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* <p>Metadata for Model steps.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface ModelStepMetadata {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The Amazon Resource Name (ARN) of the created model.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
Arn?: string;
|
|
15
|
+
}
|
|
5
16
|
/**
|
|
6
17
|
* <p>Metadata for a processing job step.</p>
|
|
7
18
|
* @public
|
|
@@ -4925,6 +4936,11 @@ export interface UpdateAppImageConfigRequest {
|
|
|
4925
4936
|
* @public
|
|
4926
4937
|
*/
|
|
4927
4938
|
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
|
4939
|
+
/**
|
|
4940
|
+
* <p>The Code Editor app running on the image.</p>
|
|
4941
|
+
* @public
|
|
4942
|
+
*/
|
|
4943
|
+
CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
|
|
4928
4944
|
}
|
|
4929
4945
|
/**
|
|
4930
4946
|
* @public
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
CreateStudioLifecycleConfigResponse,
|
|
6
|
-
} from "../models/models_1";
|
|
3
|
+
import { CreateStudioLifecycleConfigRequest } from "../models/models_1";
|
|
4
|
+
import { CreateStudioLifecycleConfigResponse } from "../models/models_2";
|
|
7
5
|
import {
|
|
8
6
|
SageMakerClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|