@aws-sdk/client-sagemaker 3.687.0 → 3.692.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +12 -1
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +7 -0
- package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +1 -1
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +2 -2
- package/dist-types/commands/CreateInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/CreateModelPackageCommand.d.ts +3 -3
- package/dist-types/commands/CreateNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +2 -2
- package/dist-types/commands/DescribeInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +3 -3
- package/dist-types/commands/DescribeNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/ListNotebookInstancesCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +4 -4
- package/dist-types/commands/StopInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateModelPackageCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +432 -428
- package/dist-types/models/models_1.d.ts +586 -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 +452 -433
- package/dist-types/ts3.4/models/models_1.d.ts +596 -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 +36 -36
|
@@ -90,70 +90,70 @@ import {
|
|
|
90
90
|
import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
|
|
91
91
|
export interface CreateAlgorithmInput {
|
|
92
92
|
AlgorithmName: string | undefined;
|
|
93
|
-
AlgorithmDescription?: string;
|
|
93
|
+
AlgorithmDescription?: string | undefined;
|
|
94
94
|
TrainingSpecification: TrainingSpecification | undefined;
|
|
95
|
-
InferenceSpecification?: InferenceSpecification;
|
|
96
|
-
ValidationSpecification?: AlgorithmValidationSpecification;
|
|
97
|
-
CertifyForMarketplace?: boolean;
|
|
98
|
-
Tags?: Tag[];
|
|
95
|
+
InferenceSpecification?: InferenceSpecification | undefined;
|
|
96
|
+
ValidationSpecification?: AlgorithmValidationSpecification | undefined;
|
|
97
|
+
CertifyForMarketplace?: boolean | undefined;
|
|
98
|
+
Tags?: Tag[] | undefined;
|
|
99
99
|
}
|
|
100
100
|
export interface CreateAlgorithmOutput {
|
|
101
101
|
AlgorithmArn: string | undefined;
|
|
102
102
|
}
|
|
103
103
|
export interface CreateAppRequest {
|
|
104
104
|
DomainId: string | undefined;
|
|
105
|
-
UserProfileName?: string;
|
|
106
|
-
SpaceName?: string;
|
|
105
|
+
UserProfileName?: string | undefined;
|
|
106
|
+
SpaceName?: string | undefined;
|
|
107
107
|
AppType: AppType | undefined;
|
|
108
108
|
AppName: string | undefined;
|
|
109
|
-
Tags?: Tag[];
|
|
110
|
-
ResourceSpec?: ResourceSpec;
|
|
109
|
+
Tags?: Tag[] | undefined;
|
|
110
|
+
ResourceSpec?: ResourceSpec | undefined;
|
|
111
111
|
}
|
|
112
112
|
export interface CreateAppResponse {
|
|
113
|
-
AppArn?: string;
|
|
113
|
+
AppArn?: string | undefined;
|
|
114
114
|
}
|
|
115
115
|
export declare class ResourceInUse extends __BaseException {
|
|
116
116
|
readonly name: "ResourceInUse";
|
|
117
117
|
readonly $fault: "client";
|
|
118
|
-
Message?: string;
|
|
118
|
+
Message?: string | undefined;
|
|
119
119
|
constructor(opts: __ExceptionOptionType<ResourceInUse, __BaseException>);
|
|
120
120
|
}
|
|
121
121
|
export interface CreateAppImageConfigRequest {
|
|
122
122
|
AppImageConfigName: string | undefined;
|
|
123
|
-
Tags?: Tag[];
|
|
124
|
-
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
125
|
-
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
|
126
|
-
CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
|
|
123
|
+
Tags?: Tag[] | undefined;
|
|
124
|
+
KernelGatewayImageConfig?: KernelGatewayImageConfig | undefined;
|
|
125
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig | undefined;
|
|
126
|
+
CodeEditorAppImageConfig?: CodeEditorAppImageConfig | undefined;
|
|
127
127
|
}
|
|
128
128
|
export interface CreateAppImageConfigResponse {
|
|
129
|
-
AppImageConfigArn?: string;
|
|
129
|
+
AppImageConfigArn?: string | undefined;
|
|
130
130
|
}
|
|
131
131
|
export interface CreateArtifactRequest {
|
|
132
|
-
ArtifactName?: string;
|
|
132
|
+
ArtifactName?: string | undefined;
|
|
133
133
|
Source: ArtifactSource | undefined;
|
|
134
134
|
ArtifactType: string | undefined;
|
|
135
|
-
Properties?: Record<string, string
|
|
136
|
-
MetadataProperties?: MetadataProperties;
|
|
137
|
-
Tags?: Tag[];
|
|
135
|
+
Properties?: Record<string, string> | undefined;
|
|
136
|
+
MetadataProperties?: MetadataProperties | undefined;
|
|
137
|
+
Tags?: Tag[] | undefined;
|
|
138
138
|
}
|
|
139
139
|
export interface CreateArtifactResponse {
|
|
140
|
-
ArtifactArn?: string;
|
|
140
|
+
ArtifactArn?: string | undefined;
|
|
141
141
|
}
|
|
142
142
|
export interface ModelDeployConfig {
|
|
143
|
-
AutoGenerateEndpointName?: boolean;
|
|
144
|
-
EndpointName?: string;
|
|
143
|
+
AutoGenerateEndpointName?: boolean | undefined;
|
|
144
|
+
EndpointName?: string | undefined;
|
|
145
145
|
}
|
|
146
146
|
export interface CreateAutoMLJobRequest {
|
|
147
147
|
AutoMLJobName: string | undefined;
|
|
148
148
|
InputDataConfig: AutoMLChannel[] | undefined;
|
|
149
149
|
OutputDataConfig: AutoMLOutputDataConfig | undefined;
|
|
150
|
-
ProblemType?: ProblemType;
|
|
151
|
-
AutoMLJobObjective?: AutoMLJobObjective;
|
|
152
|
-
AutoMLJobConfig?: AutoMLJobConfig;
|
|
150
|
+
ProblemType?: ProblemType | undefined;
|
|
151
|
+
AutoMLJobObjective?: AutoMLJobObjective | undefined;
|
|
152
|
+
AutoMLJobConfig?: AutoMLJobConfig | undefined;
|
|
153
153
|
RoleArn: string | undefined;
|
|
154
|
-
GenerateCandidateDefinitionsOnly?: boolean;
|
|
155
|
-
Tags?: Tag[];
|
|
156
|
-
ModelDeployConfig?: ModelDeployConfig;
|
|
154
|
+
GenerateCandidateDefinitionsOnly?: boolean | undefined;
|
|
155
|
+
Tags?: Tag[] | undefined;
|
|
156
|
+
ModelDeployConfig?: ModelDeployConfig | undefined;
|
|
157
157
|
}
|
|
158
158
|
export interface CreateAutoMLJobResponse {
|
|
159
159
|
AutoMLJobArn: string | undefined;
|
|
@@ -164,12 +164,12 @@ export interface CreateAutoMLJobV2Request {
|
|
|
164
164
|
OutputDataConfig: AutoMLOutputDataConfig | undefined;
|
|
165
165
|
AutoMLProblemTypeConfig: AutoMLProblemTypeConfig | undefined;
|
|
166
166
|
RoleArn: string | undefined;
|
|
167
|
-
Tags?: Tag[];
|
|
168
|
-
SecurityConfig?: AutoMLSecurityConfig;
|
|
169
|
-
AutoMLJobObjective?: AutoMLJobObjective;
|
|
170
|
-
ModelDeployConfig?: ModelDeployConfig;
|
|
171
|
-
DataSplitConfig?: AutoMLDataSplitConfig;
|
|
172
|
-
AutoMLComputeConfig?: AutoMLComputeConfig;
|
|
167
|
+
Tags?: Tag[] | undefined;
|
|
168
|
+
SecurityConfig?: AutoMLSecurityConfig | undefined;
|
|
169
|
+
AutoMLJobObjective?: AutoMLJobObjective | undefined;
|
|
170
|
+
ModelDeployConfig?: ModelDeployConfig | undefined;
|
|
171
|
+
DataSplitConfig?: AutoMLDataSplitConfig | undefined;
|
|
172
|
+
AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
|
|
173
173
|
}
|
|
174
174
|
export interface CreateAutoMLJobV2Response {
|
|
175
175
|
AutoMLJobArn: string | undefined;
|
|
@@ -177,10 +177,10 @@ export interface CreateAutoMLJobV2Response {
|
|
|
177
177
|
export interface CreateClusterRequest {
|
|
178
178
|
ClusterName: string | undefined;
|
|
179
179
|
InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
|
|
180
|
-
VpcConfig?: VpcConfig;
|
|
181
|
-
Tags?: Tag[];
|
|
182
|
-
Orchestrator?: ClusterOrchestrator;
|
|
183
|
-
NodeRecovery?: ClusterNodeRecovery;
|
|
180
|
+
VpcConfig?: VpcConfig | undefined;
|
|
181
|
+
Tags?: Tag[] | undefined;
|
|
182
|
+
Orchestrator?: ClusterOrchestrator | undefined;
|
|
183
|
+
NodeRecovery?: ClusterNodeRecovery | undefined;
|
|
184
184
|
}
|
|
185
185
|
export interface CreateClusterResponse {
|
|
186
186
|
ClusterArn: string | undefined;
|
|
@@ -188,7 +188,7 @@ export interface CreateClusterResponse {
|
|
|
188
188
|
export interface CreateCodeRepositoryInput {
|
|
189
189
|
CodeRepositoryName: string | undefined;
|
|
190
190
|
GitConfig: GitConfig | undefined;
|
|
191
|
-
Tags?: Tag[];
|
|
191
|
+
Tags?: Tag[] | undefined;
|
|
192
192
|
}
|
|
193
193
|
export interface CreateCodeRepositoryOutput {
|
|
194
194
|
CodeRepositoryArn: string | undefined;
|
|
@@ -207,21 +207,21 @@ export declare const Framework: {
|
|
|
207
207
|
export type Framework = (typeof Framework)[keyof typeof Framework];
|
|
208
208
|
export interface InputConfig {
|
|
209
209
|
S3Uri: string | undefined;
|
|
210
|
-
DataInputConfig?: string;
|
|
210
|
+
DataInputConfig?: string | undefined;
|
|
211
211
|
Framework: Framework | undefined;
|
|
212
|
-
FrameworkVersion?: string;
|
|
212
|
+
FrameworkVersion?: string | undefined;
|
|
213
213
|
}
|
|
214
214
|
export interface TargetPlatform {
|
|
215
215
|
Os: TargetPlatformOs | undefined;
|
|
216
216
|
Arch: TargetPlatformArch | undefined;
|
|
217
|
-
Accelerator?: TargetPlatformAccelerator;
|
|
217
|
+
Accelerator?: TargetPlatformAccelerator | undefined;
|
|
218
218
|
}
|
|
219
219
|
export interface OutputConfig {
|
|
220
220
|
S3OutputLocation: string | undefined;
|
|
221
|
-
TargetDevice?: TargetDevice;
|
|
222
|
-
TargetPlatform?: TargetPlatform;
|
|
223
|
-
CompilerOptions?: string;
|
|
224
|
-
KmsKeyId?: string;
|
|
221
|
+
TargetDevice?: TargetDevice | undefined;
|
|
222
|
+
TargetPlatform?: TargetPlatform | undefined;
|
|
223
|
+
CompilerOptions?: string | undefined;
|
|
224
|
+
KmsKeyId?: string | undefined;
|
|
225
225
|
}
|
|
226
226
|
export interface NeoVpcConfig {
|
|
227
227
|
SecurityGroupIds: string[] | undefined;
|
|
@@ -230,12 +230,12 @@ export interface NeoVpcConfig {
|
|
|
230
230
|
export interface CreateCompilationJobRequest {
|
|
231
231
|
CompilationJobName: string | undefined;
|
|
232
232
|
RoleArn: string | undefined;
|
|
233
|
-
ModelPackageVersionArn?: string;
|
|
234
|
-
InputConfig?: InputConfig;
|
|
233
|
+
ModelPackageVersionArn?: string | undefined;
|
|
234
|
+
InputConfig?: InputConfig | undefined;
|
|
235
235
|
OutputConfig: OutputConfig | undefined;
|
|
236
|
-
VpcConfig?: NeoVpcConfig;
|
|
236
|
+
VpcConfig?: NeoVpcConfig | undefined;
|
|
237
237
|
StoppingCondition: StoppingCondition | undefined;
|
|
238
|
-
Tags?: Tag[];
|
|
238
|
+
Tags?: Tag[] | undefined;
|
|
239
239
|
}
|
|
240
240
|
export interface CreateCompilationJobResponse {
|
|
241
241
|
CompilationJobArn: string | undefined;
|
|
@@ -244,48 +244,48 @@ export interface CreateContextRequest {
|
|
|
244
244
|
ContextName: string | undefined;
|
|
245
245
|
Source: ContextSource | undefined;
|
|
246
246
|
ContextType: string | undefined;
|
|
247
|
-
Description?: string;
|
|
248
|
-
Properties?: Record<string, string
|
|
249
|
-
Tags?: Tag[];
|
|
247
|
+
Description?: string | undefined;
|
|
248
|
+
Properties?: Record<string, string> | undefined;
|
|
249
|
+
Tags?: Tag[] | undefined;
|
|
250
250
|
}
|
|
251
251
|
export interface CreateContextResponse {
|
|
252
|
-
ContextArn?: string;
|
|
252
|
+
ContextArn?: string | undefined;
|
|
253
253
|
}
|
|
254
254
|
export interface DataQualityAppSpecification {
|
|
255
255
|
ImageUri: string | undefined;
|
|
256
|
-
ContainerEntrypoint?: string[];
|
|
257
|
-
ContainerArguments?: string[];
|
|
258
|
-
RecordPreprocessorSourceUri?: string;
|
|
259
|
-
PostAnalyticsProcessorSourceUri?: string;
|
|
260
|
-
Environment?: Record<string, string
|
|
256
|
+
ContainerEntrypoint?: string[] | undefined;
|
|
257
|
+
ContainerArguments?: string[] | undefined;
|
|
258
|
+
RecordPreprocessorSourceUri?: string | undefined;
|
|
259
|
+
PostAnalyticsProcessorSourceUri?: string | undefined;
|
|
260
|
+
Environment?: Record<string, string> | undefined;
|
|
261
261
|
}
|
|
262
262
|
export interface MonitoringConstraintsResource {
|
|
263
|
-
S3Uri?: string;
|
|
263
|
+
S3Uri?: string | undefined;
|
|
264
264
|
}
|
|
265
265
|
export interface MonitoringStatisticsResource {
|
|
266
|
-
S3Uri?: string;
|
|
266
|
+
S3Uri?: string | undefined;
|
|
267
267
|
}
|
|
268
268
|
export interface DataQualityBaselineConfig {
|
|
269
|
-
BaseliningJobName?: string;
|
|
270
|
-
ConstraintsResource?: MonitoringConstraintsResource;
|
|
271
|
-
StatisticsResource?: MonitoringStatisticsResource;
|
|
269
|
+
BaseliningJobName?: string | undefined;
|
|
270
|
+
ConstraintsResource?: MonitoringConstraintsResource | undefined;
|
|
271
|
+
StatisticsResource?: MonitoringStatisticsResource | undefined;
|
|
272
272
|
}
|
|
273
273
|
export interface EndpointInput {
|
|
274
274
|
EndpointName: string | undefined;
|
|
275
275
|
LocalPath: string | undefined;
|
|
276
|
-
S3InputMode?: ProcessingS3InputMode;
|
|
277
|
-
S3DataDistributionType?: ProcessingS3DataDistributionType;
|
|
278
|
-
FeaturesAttribute?: string;
|
|
279
|
-
InferenceAttribute?: string;
|
|
280
|
-
ProbabilityAttribute?: string;
|
|
281
|
-
ProbabilityThresholdAttribute?: number;
|
|
282
|
-
StartTimeOffset?: string;
|
|
283
|
-
EndTimeOffset?: string;
|
|
284
|
-
ExcludeFeaturesAttribute?: string;
|
|
276
|
+
S3InputMode?: ProcessingS3InputMode | undefined;
|
|
277
|
+
S3DataDistributionType?: ProcessingS3DataDistributionType | undefined;
|
|
278
|
+
FeaturesAttribute?: string | undefined;
|
|
279
|
+
InferenceAttribute?: string | undefined;
|
|
280
|
+
ProbabilityAttribute?: string | undefined;
|
|
281
|
+
ProbabilityThresholdAttribute?: number | undefined;
|
|
282
|
+
StartTimeOffset?: string | undefined;
|
|
283
|
+
EndTimeOffset?: string | undefined;
|
|
284
|
+
ExcludeFeaturesAttribute?: string | undefined;
|
|
285
285
|
}
|
|
286
286
|
export interface DataQualityJobInput {
|
|
287
|
-
EndpointInput?: EndpointInput;
|
|
288
|
-
BatchTransformInput?: BatchTransformInput;
|
|
287
|
+
EndpointInput?: EndpointInput | undefined;
|
|
288
|
+
BatchTransformInput?: BatchTransformInput | undefined;
|
|
289
289
|
}
|
|
290
290
|
export declare const ProcessingS3UploadMode: {
|
|
291
291
|
readonly CONTINUOUS: "Continuous";
|
|
@@ -296,14 +296,14 @@ export type ProcessingS3UploadMode =
|
|
|
296
296
|
export interface MonitoringS3Output {
|
|
297
297
|
S3Uri: string | undefined;
|
|
298
298
|
LocalPath: string | undefined;
|
|
299
|
-
S3UploadMode?: ProcessingS3UploadMode;
|
|
299
|
+
S3UploadMode?: ProcessingS3UploadMode | undefined;
|
|
300
300
|
}
|
|
301
301
|
export interface MonitoringOutput {
|
|
302
302
|
S3Output: MonitoringS3Output | undefined;
|
|
303
303
|
}
|
|
304
304
|
export interface MonitoringOutputConfig {
|
|
305
305
|
MonitoringOutputs: MonitoringOutput[] | undefined;
|
|
306
|
-
KmsKeyId?: string;
|
|
306
|
+
KmsKeyId?: string | undefined;
|
|
307
307
|
}
|
|
308
308
|
export declare const ProcessingInstanceType: {
|
|
309
309
|
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
@@ -373,30 +373,30 @@ export interface MonitoringClusterConfig {
|
|
|
373
373
|
InstanceCount: number | undefined;
|
|
374
374
|
InstanceType: ProcessingInstanceType | undefined;
|
|
375
375
|
VolumeSizeInGB: number | undefined;
|
|
376
|
-
VolumeKmsKeyId?: string;
|
|
376
|
+
VolumeKmsKeyId?: string | undefined;
|
|
377
377
|
}
|
|
378
378
|
export interface MonitoringResources {
|
|
379
379
|
ClusterConfig: MonitoringClusterConfig | undefined;
|
|
380
380
|
}
|
|
381
381
|
export interface MonitoringNetworkConfig {
|
|
382
|
-
EnableInterContainerTrafficEncryption?: boolean;
|
|
383
|
-
EnableNetworkIsolation?: boolean;
|
|
384
|
-
VpcConfig?: VpcConfig;
|
|
382
|
+
EnableInterContainerTrafficEncryption?: boolean | undefined;
|
|
383
|
+
EnableNetworkIsolation?: boolean | undefined;
|
|
384
|
+
VpcConfig?: VpcConfig | undefined;
|
|
385
385
|
}
|
|
386
386
|
export interface MonitoringStoppingCondition {
|
|
387
387
|
MaxRuntimeInSeconds: number | undefined;
|
|
388
388
|
}
|
|
389
389
|
export interface CreateDataQualityJobDefinitionRequest {
|
|
390
390
|
JobDefinitionName: string | undefined;
|
|
391
|
-
DataQualityBaselineConfig?: DataQualityBaselineConfig;
|
|
391
|
+
DataQualityBaselineConfig?: DataQualityBaselineConfig | undefined;
|
|
392
392
|
DataQualityAppSpecification: DataQualityAppSpecification | undefined;
|
|
393
393
|
DataQualityJobInput: DataQualityJobInput | undefined;
|
|
394
394
|
DataQualityJobOutputConfig: MonitoringOutputConfig | undefined;
|
|
395
395
|
JobResources: MonitoringResources | undefined;
|
|
396
|
-
NetworkConfig?: MonitoringNetworkConfig;
|
|
396
|
+
NetworkConfig?: MonitoringNetworkConfig | undefined;
|
|
397
397
|
RoleArn: string | undefined;
|
|
398
|
-
StoppingCondition?: MonitoringStoppingCondition;
|
|
399
|
-
Tags?: Tag[];
|
|
398
|
+
StoppingCondition?: MonitoringStoppingCondition | undefined;
|
|
399
|
+
Tags?: Tag[] | undefined;
|
|
400
400
|
}
|
|
401
401
|
export interface CreateDataQualityJobDefinitionResponse {
|
|
402
402
|
JobDefinitionArn: string | undefined;
|
|
@@ -408,21 +408,21 @@ export type EdgePresetDeploymentType =
|
|
|
408
408
|
(typeof EdgePresetDeploymentType)[keyof typeof EdgePresetDeploymentType];
|
|
409
409
|
export interface EdgeOutputConfig {
|
|
410
410
|
S3OutputLocation: string | undefined;
|
|
411
|
-
KmsKeyId?: string;
|
|
412
|
-
PresetDeploymentType?: EdgePresetDeploymentType;
|
|
413
|
-
PresetDeploymentConfig?: string;
|
|
411
|
+
KmsKeyId?: string | undefined;
|
|
412
|
+
PresetDeploymentType?: EdgePresetDeploymentType | undefined;
|
|
413
|
+
PresetDeploymentConfig?: string | undefined;
|
|
414
414
|
}
|
|
415
415
|
export interface CreateDeviceFleetRequest {
|
|
416
416
|
DeviceFleetName: string | undefined;
|
|
417
|
-
RoleArn?: string;
|
|
418
|
-
Description?: string;
|
|
417
|
+
RoleArn?: string | undefined;
|
|
418
|
+
Description?: string | undefined;
|
|
419
419
|
OutputConfig: EdgeOutputConfig | undefined;
|
|
420
|
-
Tags?: Tag[];
|
|
421
|
-
EnableIotRoleAlias?: boolean;
|
|
420
|
+
Tags?: Tag[] | undefined;
|
|
421
|
+
EnableIotRoleAlias?: boolean | undefined;
|
|
422
422
|
}
|
|
423
423
|
export interface EFSFileSystemConfig {
|
|
424
424
|
FileSystemId: string | undefined;
|
|
425
|
-
FileSystemPath?: string;
|
|
425
|
+
FileSystemPath?: string | undefined;
|
|
426
426
|
}
|
|
427
427
|
export type CustomFileSystemConfig =
|
|
428
428
|
| CustomFileSystemConfig.EFSFileSystemConfigMember
|
|
@@ -447,48 +447,48 @@ export interface CustomPosixUserConfig {
|
|
|
447
447
|
Gid: number | undefined;
|
|
448
448
|
}
|
|
449
449
|
export interface EmrSettings {
|
|
450
|
-
AssumableRoleArns?: string[];
|
|
451
|
-
ExecutionRoleArns?: string[];
|
|
450
|
+
AssumableRoleArns?: string[] | undefined;
|
|
451
|
+
ExecutionRoleArns?: string[] | undefined;
|
|
452
452
|
}
|
|
453
453
|
export interface JupyterLabAppSettings {
|
|
454
|
-
DefaultResourceSpec?: ResourceSpec;
|
|
455
|
-
CustomImages?: CustomImage[];
|
|
456
|
-
LifecycleConfigArns?: string[];
|
|
457
|
-
CodeRepositories?: CodeRepository[];
|
|
458
|
-
AppLifecycleManagement?: AppLifecycleManagement;
|
|
459
|
-
EmrSettings?: EmrSettings;
|
|
460
|
-
BuiltInLifecycleConfigArn?: string;
|
|
454
|
+
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
455
|
+
CustomImages?: CustomImage[] | undefined;
|
|
456
|
+
LifecycleConfigArns?: string[] | undefined;
|
|
457
|
+
CodeRepositories?: CodeRepository[] | undefined;
|
|
458
|
+
AppLifecycleManagement?: AppLifecycleManagement | undefined;
|
|
459
|
+
EmrSettings?: EmrSettings | undefined;
|
|
460
|
+
BuiltInLifecycleConfigArn?: string | undefined;
|
|
461
461
|
}
|
|
462
462
|
export interface JupyterServerAppSettings {
|
|
463
|
-
DefaultResourceSpec?: ResourceSpec;
|
|
464
|
-
LifecycleConfigArns?: string[];
|
|
465
|
-
CodeRepositories?: CodeRepository[];
|
|
463
|
+
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
464
|
+
LifecycleConfigArns?: string[] | undefined;
|
|
465
|
+
CodeRepositories?: CodeRepository[] | undefined;
|
|
466
466
|
}
|
|
467
467
|
export interface KernelGatewayAppSettings {
|
|
468
|
-
DefaultResourceSpec?: ResourceSpec;
|
|
469
|
-
CustomImages?: CustomImage[];
|
|
470
|
-
LifecycleConfigArns?: string[];
|
|
468
|
+
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
469
|
+
CustomImages?: CustomImage[] | undefined;
|
|
470
|
+
LifecycleConfigArns?: string[] | undefined;
|
|
471
471
|
}
|
|
472
472
|
export interface DefaultEbsStorageSettings {
|
|
473
473
|
DefaultEbsVolumeSizeInGb: number | undefined;
|
|
474
474
|
MaximumEbsVolumeSizeInGb: number | undefined;
|
|
475
475
|
}
|
|
476
476
|
export interface DefaultSpaceStorageSettings {
|
|
477
|
-
DefaultEbsStorageSettings?: DefaultEbsStorageSettings;
|
|
477
|
+
DefaultEbsStorageSettings?: DefaultEbsStorageSettings | undefined;
|
|
478
478
|
}
|
|
479
479
|
export interface DefaultSpaceSettings {
|
|
480
|
-
ExecutionRole?: string;
|
|
481
|
-
SecurityGroups?: string[];
|
|
482
|
-
JupyterServerAppSettings?: JupyterServerAppSettings;
|
|
483
|
-
KernelGatewayAppSettings?: KernelGatewayAppSettings;
|
|
484
|
-
JupyterLabAppSettings?: JupyterLabAppSettings;
|
|
485
|
-
SpaceStorageSettings?: DefaultSpaceStorageSettings;
|
|
486
|
-
CustomPosixUserConfig?: CustomPosixUserConfig;
|
|
487
|
-
CustomFileSystemConfigs?: CustomFileSystemConfig[];
|
|
480
|
+
ExecutionRole?: string | undefined;
|
|
481
|
+
SecurityGroups?: string[] | undefined;
|
|
482
|
+
JupyterServerAppSettings?: JupyterServerAppSettings | undefined;
|
|
483
|
+
KernelGatewayAppSettings?: KernelGatewayAppSettings | undefined;
|
|
484
|
+
JupyterLabAppSettings?: JupyterLabAppSettings | undefined;
|
|
485
|
+
SpaceStorageSettings?: DefaultSpaceStorageSettings | undefined;
|
|
486
|
+
CustomPosixUserConfig?: CustomPosixUserConfig | undefined;
|
|
487
|
+
CustomFileSystemConfigs?: CustomFileSystemConfig[] | undefined;
|
|
488
488
|
}
|
|
489
489
|
export interface RSessionAppSettings {
|
|
490
|
-
DefaultResourceSpec?: ResourceSpec;
|
|
491
|
-
CustomImages?: CustomImage[];
|
|
490
|
+
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
491
|
+
CustomImages?: CustomImage[] | undefined;
|
|
492
492
|
}
|
|
493
493
|
export declare const RStudioServerProAccessStatus: {
|
|
494
494
|
readonly Disabled: "DISABLED";
|
|
@@ -503,8 +503,8 @@ export declare const RStudioServerProUserGroup: {
|
|
|
503
503
|
export type RStudioServerProUserGroup =
|
|
504
504
|
(typeof RStudioServerProUserGroup)[keyof typeof RStudioServerProUserGroup];
|
|
505
505
|
export interface RStudioServerProAppSettings {
|
|
506
|
-
AccessStatus?: RStudioServerProAccessStatus;
|
|
507
|
-
UserGroup?: RStudioServerProUserGroup;
|
|
506
|
+
AccessStatus?: RStudioServerProAccessStatus | undefined;
|
|
507
|
+
UserGroup?: RStudioServerProUserGroup | undefined;
|
|
508
508
|
}
|
|
509
509
|
export declare const NotebookOutputOption: {
|
|
510
510
|
readonly Allowed: "Allowed";
|
|
@@ -513,9 +513,9 @@ export declare const NotebookOutputOption: {
|
|
|
513
513
|
export type NotebookOutputOption =
|
|
514
514
|
(typeof NotebookOutputOption)[keyof typeof NotebookOutputOption];
|
|
515
515
|
export interface SharingSettings {
|
|
516
|
-
NotebookOutputOption?: NotebookOutputOption;
|
|
517
|
-
S3OutputPath?: string;
|
|
518
|
-
S3KmsKeyId?: string;
|
|
516
|
+
NotebookOutputOption?: NotebookOutputOption | undefined;
|
|
517
|
+
S3OutputPath?: string | undefined;
|
|
518
|
+
S3KmsKeyId?: string | undefined;
|
|
519
519
|
}
|
|
520
520
|
export declare const StudioWebPortal: {
|
|
521
521
|
readonly Disabled: "DISABLED";
|
|
@@ -547,41 +547,41 @@ export declare const SageMakerImageName: {
|
|
|
547
547
|
export type SageMakerImageName =
|
|
548
548
|
(typeof SageMakerImageName)[keyof typeof SageMakerImageName];
|
|
549
549
|
export interface HiddenSageMakerImage {
|
|
550
|
-
SageMakerImageName?: SageMakerImageName;
|
|
551
|
-
VersionAliases?: string[];
|
|
550
|
+
SageMakerImageName?: SageMakerImageName | undefined;
|
|
551
|
+
VersionAliases?: string[] | undefined;
|
|
552
552
|
}
|
|
553
553
|
export interface StudioWebPortalSettings {
|
|
554
|
-
HiddenMlTools?: MlTools[];
|
|
555
|
-
HiddenAppTypes?: AppType[];
|
|
556
|
-
HiddenInstanceTypes?: AppInstanceType[];
|
|
557
|
-
HiddenSageMakerImageVersionAliases?: HiddenSageMakerImage[];
|
|
554
|
+
HiddenMlTools?: MlTools[] | undefined;
|
|
555
|
+
HiddenAppTypes?: AppType[] | undefined;
|
|
556
|
+
HiddenInstanceTypes?: AppInstanceType[] | undefined;
|
|
557
|
+
HiddenSageMakerImageVersionAliases?: HiddenSageMakerImage[] | undefined;
|
|
558
558
|
}
|
|
559
559
|
export interface TensorBoardAppSettings {
|
|
560
|
-
DefaultResourceSpec?: ResourceSpec;
|
|
560
|
+
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
561
561
|
}
|
|
562
562
|
export interface UserSettings {
|
|
563
|
-
ExecutionRole?: string;
|
|
564
|
-
SecurityGroups?: string[];
|
|
565
|
-
SharingSettings?: SharingSettings;
|
|
566
|
-
JupyterServerAppSettings?: JupyterServerAppSettings;
|
|
567
|
-
KernelGatewayAppSettings?: KernelGatewayAppSettings;
|
|
568
|
-
TensorBoardAppSettings?: TensorBoardAppSettings;
|
|
569
|
-
RStudioServerProAppSettings?: RStudioServerProAppSettings;
|
|
570
|
-
RSessionAppSettings?: RSessionAppSettings;
|
|
571
|
-
CanvasAppSettings?: CanvasAppSettings;
|
|
572
|
-
CodeEditorAppSettings?: CodeEditorAppSettings;
|
|
573
|
-
JupyterLabAppSettings?: JupyterLabAppSettings;
|
|
574
|
-
SpaceStorageSettings?: DefaultSpaceStorageSettings;
|
|
575
|
-
DefaultLandingUri?: string;
|
|
576
|
-
StudioWebPortal?: StudioWebPortal;
|
|
577
|
-
CustomPosixUserConfig?: CustomPosixUserConfig;
|
|
578
|
-
CustomFileSystemConfigs?: CustomFileSystemConfig[];
|
|
579
|
-
StudioWebPortalSettings?: StudioWebPortalSettings;
|
|
580
|
-
AutoMountHomeEFS?: AutoMountHomeEFS;
|
|
563
|
+
ExecutionRole?: string | undefined;
|
|
564
|
+
SecurityGroups?: string[] | undefined;
|
|
565
|
+
SharingSettings?: SharingSettings | undefined;
|
|
566
|
+
JupyterServerAppSettings?: JupyterServerAppSettings | undefined;
|
|
567
|
+
KernelGatewayAppSettings?: KernelGatewayAppSettings | undefined;
|
|
568
|
+
TensorBoardAppSettings?: TensorBoardAppSettings | undefined;
|
|
569
|
+
RStudioServerProAppSettings?: RStudioServerProAppSettings | undefined;
|
|
570
|
+
RSessionAppSettings?: RSessionAppSettings | undefined;
|
|
571
|
+
CanvasAppSettings?: CanvasAppSettings | undefined;
|
|
572
|
+
CodeEditorAppSettings?: CodeEditorAppSettings | undefined;
|
|
573
|
+
JupyterLabAppSettings?: JupyterLabAppSettings | undefined;
|
|
574
|
+
SpaceStorageSettings?: DefaultSpaceStorageSettings | undefined;
|
|
575
|
+
DefaultLandingUri?: string | undefined;
|
|
576
|
+
StudioWebPortal?: StudioWebPortal | undefined;
|
|
577
|
+
CustomPosixUserConfig?: CustomPosixUserConfig | undefined;
|
|
578
|
+
CustomFileSystemConfigs?: CustomFileSystemConfig[] | undefined;
|
|
579
|
+
StudioWebPortalSettings?: StudioWebPortalSettings | undefined;
|
|
580
|
+
AutoMountHomeEFS?: AutoMountHomeEFS | undefined;
|
|
581
581
|
}
|
|
582
582
|
export interface DockerSettings {
|
|
583
|
-
EnableDockerAccess?: FeatureStatus;
|
|
584
|
-
VpcOnlyTrustedAccounts?: string[];
|
|
583
|
+
EnableDockerAccess?: FeatureStatus | undefined;
|
|
584
|
+
VpcOnlyTrustedAccounts?: string[] | undefined;
|
|
585
585
|
}
|
|
586
586
|
export declare const ExecutionRoleIdentityConfig: {
|
|
587
587
|
readonly DISABLED: "DISABLED";
|
|
@@ -591,16 +591,16 @@ export type ExecutionRoleIdentityConfig =
|
|
|
591
591
|
(typeof ExecutionRoleIdentityConfig)[keyof typeof ExecutionRoleIdentityConfig];
|
|
592
592
|
export interface RStudioServerProDomainSettings {
|
|
593
593
|
DomainExecutionRoleArn: string | undefined;
|
|
594
|
-
RStudioConnectUrl?: string;
|
|
595
|
-
RStudioPackageManagerUrl?: string;
|
|
596
|
-
DefaultResourceSpec?: ResourceSpec;
|
|
594
|
+
RStudioConnectUrl?: string | undefined;
|
|
595
|
+
RStudioPackageManagerUrl?: string | undefined;
|
|
596
|
+
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
597
597
|
}
|
|
598
598
|
export interface DomainSettings {
|
|
599
|
-
SecurityGroupIds?: string[];
|
|
600
|
-
RStudioServerProDomainSettings?: RStudioServerProDomainSettings;
|
|
601
|
-
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
|
|
602
|
-
DockerSettings?: DockerSettings;
|
|
603
|
-
AmazonQSettings?: AmazonQSettings;
|
|
599
|
+
SecurityGroupIds?: string[] | undefined;
|
|
600
|
+
RStudioServerProDomainSettings?: RStudioServerProDomainSettings | undefined;
|
|
601
|
+
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | undefined;
|
|
602
|
+
DockerSettings?: DockerSettings | undefined;
|
|
603
|
+
AmazonQSettings?: AmazonQSettings | undefined;
|
|
604
604
|
}
|
|
605
605
|
export declare const TagPropagation: {
|
|
606
606
|
readonly DISABLED: "DISABLED";
|
|
@@ -612,20 +612,20 @@ export interface CreateDomainRequest {
|
|
|
612
612
|
DomainName: string | undefined;
|
|
613
613
|
AuthMode: AuthMode | undefined;
|
|
614
614
|
DefaultUserSettings: UserSettings | undefined;
|
|
615
|
-
DomainSettings?: DomainSettings;
|
|
615
|
+
DomainSettings?: DomainSettings | undefined;
|
|
616
616
|
SubnetIds: string[] | undefined;
|
|
617
617
|
VpcId: string | undefined;
|
|
618
|
-
Tags?: Tag[];
|
|
619
|
-
AppNetworkAccessType?: AppNetworkAccessType;
|
|
620
|
-
HomeEfsFileSystemKmsKeyId?: string;
|
|
621
|
-
KmsKeyId?: string;
|
|
622
|
-
AppSecurityGroupManagement?: AppSecurityGroupManagement;
|
|
623
|
-
TagPropagation?: TagPropagation;
|
|
624
|
-
DefaultSpaceSettings?: DefaultSpaceSettings;
|
|
618
|
+
Tags?: Tag[] | undefined;
|
|
619
|
+
AppNetworkAccessType?: AppNetworkAccessType | undefined;
|
|
620
|
+
HomeEfsFileSystemKmsKeyId?: string | undefined;
|
|
621
|
+
KmsKeyId?: string | undefined;
|
|
622
|
+
AppSecurityGroupManagement?: AppSecurityGroupManagement | undefined;
|
|
623
|
+
TagPropagation?: TagPropagation | undefined;
|
|
624
|
+
DefaultSpaceSettings?: DefaultSpaceSettings | undefined;
|
|
625
625
|
}
|
|
626
626
|
export interface CreateDomainResponse {
|
|
627
|
-
DomainArn?: string;
|
|
628
|
-
Url?: string;
|
|
627
|
+
DomainArn?: string | undefined;
|
|
628
|
+
Url?: string | undefined;
|
|
629
629
|
}
|
|
630
630
|
export interface EdgeDeploymentModelConfig {
|
|
631
631
|
ModelHandle: string | undefined;
|
|
@@ -649,21 +649,21 @@ export type DeviceSubsetType =
|
|
|
649
649
|
(typeof DeviceSubsetType)[keyof typeof DeviceSubsetType];
|
|
650
650
|
export interface DeviceSelectionConfig {
|
|
651
651
|
DeviceSubsetType: DeviceSubsetType | undefined;
|
|
652
|
-
Percentage?: number;
|
|
653
|
-
DeviceNames?: string[];
|
|
654
|
-
DeviceNameContains?: string;
|
|
652
|
+
Percentage?: number | undefined;
|
|
653
|
+
DeviceNames?: string[] | undefined;
|
|
654
|
+
DeviceNameContains?: string | undefined;
|
|
655
655
|
}
|
|
656
656
|
export interface DeploymentStage {
|
|
657
657
|
StageName: string | undefined;
|
|
658
658
|
DeviceSelectionConfig: DeviceSelectionConfig | undefined;
|
|
659
|
-
DeploymentConfig?: EdgeDeploymentConfig;
|
|
659
|
+
DeploymentConfig?: EdgeDeploymentConfig | undefined;
|
|
660
660
|
}
|
|
661
661
|
export interface CreateEdgeDeploymentPlanRequest {
|
|
662
662
|
EdgeDeploymentPlanName: string | undefined;
|
|
663
663
|
ModelConfigs: EdgeDeploymentModelConfig[] | undefined;
|
|
664
664
|
DeviceFleetName: string | undefined;
|
|
665
|
-
Stages?: DeploymentStage[];
|
|
666
|
-
Tags?: Tag[];
|
|
665
|
+
Stages?: DeploymentStage[] | undefined;
|
|
666
|
+
Tags?: Tag[] | undefined;
|
|
667
667
|
}
|
|
668
668
|
export interface CreateEdgeDeploymentPlanResponse {
|
|
669
669
|
EdgeDeploymentPlanArn: string | undefined;
|
|
@@ -679,39 +679,39 @@ export interface CreateEdgePackagingJobRequest {
|
|
|
679
679
|
ModelVersion: string | undefined;
|
|
680
680
|
RoleArn: string | undefined;
|
|
681
681
|
OutputConfig: EdgeOutputConfig | undefined;
|
|
682
|
-
ResourceKey?: string;
|
|
683
|
-
Tags?: Tag[];
|
|
682
|
+
ResourceKey?: string | undefined;
|
|
683
|
+
Tags?: Tag[] | undefined;
|
|
684
684
|
}
|
|
685
685
|
export interface RollingUpdatePolicy {
|
|
686
686
|
MaximumBatchSize: CapacitySize | undefined;
|
|
687
687
|
WaitIntervalInSeconds: number | undefined;
|
|
688
|
-
MaximumExecutionTimeoutInSeconds?: number;
|
|
689
|
-
RollbackMaximumBatchSize?: CapacitySize;
|
|
688
|
+
MaximumExecutionTimeoutInSeconds?: number | undefined;
|
|
689
|
+
RollbackMaximumBatchSize?: CapacitySize | undefined;
|
|
690
690
|
}
|
|
691
691
|
export interface DeploymentConfig {
|
|
692
|
-
BlueGreenUpdatePolicy?: BlueGreenUpdatePolicy;
|
|
693
|
-
RollingUpdatePolicy?: RollingUpdatePolicy;
|
|
694
|
-
AutoRollbackConfiguration?: AutoRollbackConfig;
|
|
692
|
+
BlueGreenUpdatePolicy?: BlueGreenUpdatePolicy | undefined;
|
|
693
|
+
RollingUpdatePolicy?: RollingUpdatePolicy | undefined;
|
|
694
|
+
AutoRollbackConfiguration?: AutoRollbackConfig | undefined;
|
|
695
695
|
}
|
|
696
696
|
export interface CreateEndpointInput {
|
|
697
697
|
EndpointName: string | undefined;
|
|
698
698
|
EndpointConfigName: string | undefined;
|
|
699
|
-
DeploymentConfig?: DeploymentConfig;
|
|
700
|
-
Tags?: Tag[];
|
|
699
|
+
DeploymentConfig?: DeploymentConfig | undefined;
|
|
700
|
+
Tags?: Tag[] | undefined;
|
|
701
701
|
}
|
|
702
702
|
export interface CreateEndpointOutput {
|
|
703
703
|
EndpointArn: string | undefined;
|
|
704
704
|
}
|
|
705
705
|
export interface DataCaptureConfig {
|
|
706
|
-
EnableCapture?: boolean;
|
|
706
|
+
EnableCapture?: boolean | undefined;
|
|
707
707
|
InitialSamplingPercentage: number | undefined;
|
|
708
708
|
DestinationS3Uri: string | undefined;
|
|
709
|
-
KmsKeyId?: string;
|
|
709
|
+
KmsKeyId?: string | undefined;
|
|
710
710
|
CaptureOptions: CaptureOption[] | undefined;
|
|
711
|
-
CaptureContentTypeHeader?: CaptureContentTypeHeader;
|
|
711
|
+
CaptureContentTypeHeader?: CaptureContentTypeHeader | undefined;
|
|
712
712
|
}
|
|
713
713
|
export interface ExplainerConfig {
|
|
714
|
-
ClarifyExplainerConfig?: ClarifyExplainerConfig;
|
|
714
|
+
ClarifyExplainerConfig?: ClarifyExplainerConfig | undefined;
|
|
715
715
|
}
|
|
716
716
|
export declare const ProductionVariantAcceleratorType: {
|
|
717
717
|
readonly ML_EIA1_LARGE: "ml.eia1.large";
|
|
@@ -725,7 +725,7 @@ export type ProductionVariantAcceleratorType =
|
|
|
725
725
|
(typeof ProductionVariantAcceleratorType)[keyof typeof ProductionVariantAcceleratorType];
|
|
726
726
|
export interface ProductionVariantCoreDumpConfig {
|
|
727
727
|
DestinationS3Uri: string | undefined;
|
|
728
|
-
KmsKeyId?: string;
|
|
728
|
+
KmsKeyId?: string | undefined;
|
|
729
729
|
}
|
|
730
730
|
export declare const ProductionVariantInferenceAmiVersion: {
|
|
731
731
|
readonly AL2_GPU_2: "al2-ami-sagemaker-inference-gpu-2";
|
|
@@ -739,9 +739,9 @@ export declare const ManagedInstanceScalingStatus: {
|
|
|
739
739
|
export type ManagedInstanceScalingStatus =
|
|
740
740
|
(typeof ManagedInstanceScalingStatus)[keyof typeof ManagedInstanceScalingStatus];
|
|
741
741
|
export interface ProductionVariantManagedInstanceScaling {
|
|
742
|
-
Status?: ManagedInstanceScalingStatus;
|
|
743
|
-
MinInstanceCount?: number;
|
|
744
|
-
MaxInstanceCount?: number;
|
|
742
|
+
Status?: ManagedInstanceScalingStatus | undefined;
|
|
743
|
+
MinInstanceCount?: number | undefined;
|
|
744
|
+
MaxInstanceCount?: number | undefined;
|
|
745
745
|
}
|
|
746
746
|
export declare const RoutingStrategy: {
|
|
747
747
|
readonly LEAST_OUTSTANDING_REQUESTS: "LEAST_OUTSTANDING_REQUESTS";
|
|
@@ -755,49 +755,49 @@ export interface ProductionVariantRoutingConfig {
|
|
|
755
755
|
export interface ProductionVariantServerlessConfig {
|
|
756
756
|
MemorySizeInMB: number | undefined;
|
|
757
757
|
MaxConcurrency: number | undefined;
|
|
758
|
-
ProvisionedConcurrency?: number;
|
|
758
|
+
ProvisionedConcurrency?: number | undefined;
|
|
759
759
|
}
|
|
760
760
|
export interface ProductionVariant {
|
|
761
761
|
VariantName: string | undefined;
|
|
762
|
-
ModelName?: string;
|
|
763
|
-
InitialInstanceCount?: number;
|
|
764
|
-
InstanceType?: ProductionVariantInstanceType;
|
|
765
|
-
InitialVariantWeight?: number;
|
|
766
|
-
AcceleratorType?: ProductionVariantAcceleratorType;
|
|
767
|
-
CoreDumpConfig?: ProductionVariantCoreDumpConfig;
|
|
768
|
-
ServerlessConfig?: ProductionVariantServerlessConfig;
|
|
769
|
-
VolumeSizeInGB?: number;
|
|
770
|
-
ModelDataDownloadTimeoutInSeconds?: number;
|
|
771
|
-
ContainerStartupHealthCheckTimeoutInSeconds?: number;
|
|
772
|
-
EnableSSMAccess?: boolean;
|
|
773
|
-
ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
|
|
774
|
-
RoutingConfig?: ProductionVariantRoutingConfig;
|
|
775
|
-
InferenceAmiVersion?: ProductionVariantInferenceAmiVersion;
|
|
762
|
+
ModelName?: string | undefined;
|
|
763
|
+
InitialInstanceCount?: number | undefined;
|
|
764
|
+
InstanceType?: ProductionVariantInstanceType | undefined;
|
|
765
|
+
InitialVariantWeight?: number | undefined;
|
|
766
|
+
AcceleratorType?: ProductionVariantAcceleratorType | undefined;
|
|
767
|
+
CoreDumpConfig?: ProductionVariantCoreDumpConfig | undefined;
|
|
768
|
+
ServerlessConfig?: ProductionVariantServerlessConfig | undefined;
|
|
769
|
+
VolumeSizeInGB?: number | undefined;
|
|
770
|
+
ModelDataDownloadTimeoutInSeconds?: number | undefined;
|
|
771
|
+
ContainerStartupHealthCheckTimeoutInSeconds?: number | undefined;
|
|
772
|
+
EnableSSMAccess?: boolean | undefined;
|
|
773
|
+
ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling | undefined;
|
|
774
|
+
RoutingConfig?: ProductionVariantRoutingConfig | undefined;
|
|
775
|
+
InferenceAmiVersion?: ProductionVariantInferenceAmiVersion | undefined;
|
|
776
776
|
}
|
|
777
777
|
export interface CreateEndpointConfigInput {
|
|
778
778
|
EndpointConfigName: string | undefined;
|
|
779
779
|
ProductionVariants: ProductionVariant[] | undefined;
|
|
780
|
-
DataCaptureConfig?: DataCaptureConfig;
|
|
781
|
-
Tags?: Tag[];
|
|
782
|
-
KmsKeyId?: string;
|
|
783
|
-
AsyncInferenceConfig?: AsyncInferenceConfig;
|
|
784
|
-
ExplainerConfig?: ExplainerConfig;
|
|
785
|
-
ShadowProductionVariants?: ProductionVariant[];
|
|
786
|
-
ExecutionRoleArn?: string;
|
|
787
|
-
VpcConfig?: VpcConfig;
|
|
788
|
-
EnableNetworkIsolation?: boolean;
|
|
780
|
+
DataCaptureConfig?: DataCaptureConfig | undefined;
|
|
781
|
+
Tags?: Tag[] | undefined;
|
|
782
|
+
KmsKeyId?: string | undefined;
|
|
783
|
+
AsyncInferenceConfig?: AsyncInferenceConfig | undefined;
|
|
784
|
+
ExplainerConfig?: ExplainerConfig | undefined;
|
|
785
|
+
ShadowProductionVariants?: ProductionVariant[] | undefined;
|
|
786
|
+
ExecutionRoleArn?: string | undefined;
|
|
787
|
+
VpcConfig?: VpcConfig | undefined;
|
|
788
|
+
EnableNetworkIsolation?: boolean | undefined;
|
|
789
789
|
}
|
|
790
790
|
export interface CreateEndpointConfigOutput {
|
|
791
791
|
EndpointConfigArn: string | undefined;
|
|
792
792
|
}
|
|
793
793
|
export interface CreateExperimentRequest {
|
|
794
794
|
ExperimentName: string | undefined;
|
|
795
|
-
DisplayName?: string;
|
|
796
|
-
Description?: string;
|
|
797
|
-
Tags?: Tag[];
|
|
795
|
+
DisplayName?: string | undefined;
|
|
796
|
+
Description?: string | undefined;
|
|
797
|
+
Tags?: Tag[] | undefined;
|
|
798
798
|
}
|
|
799
799
|
export interface CreateExperimentResponse {
|
|
800
|
-
ExperimentArn?: string;
|
|
800
|
+
ExperimentArn?: string | undefined;
|
|
801
801
|
}
|
|
802
802
|
export declare const FeatureType: {
|
|
803
803
|
readonly FRACTIONAL: "Fractional";
|
|
@@ -808,8 +808,8 @@ export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
|
|
|
808
808
|
export interface FeatureDefinition {
|
|
809
809
|
FeatureName: string | undefined;
|
|
810
810
|
FeatureType: FeatureType | undefined;
|
|
811
|
-
CollectionType?: CollectionType;
|
|
812
|
-
CollectionConfig?: CollectionConfig;
|
|
811
|
+
CollectionType?: CollectionType | undefined;
|
|
812
|
+
CollectionConfig?: CollectionConfig | undefined;
|
|
813
813
|
}
|
|
814
814
|
export interface DataCatalogConfig {
|
|
815
815
|
TableName: string | undefined;
|
|
@@ -818,8 +818,8 @@ export interface DataCatalogConfig {
|
|
|
818
818
|
}
|
|
819
819
|
export interface S3StorageConfig {
|
|
820
820
|
S3Uri: string | undefined;
|
|
821
|
-
KmsKeyId?: string;
|
|
822
|
-
ResolvedOutputS3Uri?: string;
|
|
821
|
+
KmsKeyId?: string | undefined;
|
|
822
|
+
ResolvedOutputS3Uri?: string | undefined;
|
|
823
823
|
}
|
|
824
824
|
export declare const TableFormat: {
|
|
825
825
|
readonly DEFAULT: "Default";
|
|
@@ -829,12 +829,12 @@ export declare const TableFormat: {
|
|
|
829
829
|
export type TableFormat = (typeof TableFormat)[keyof typeof TableFormat];
|
|
830
830
|
export interface OfflineStoreConfig {
|
|
831
831
|
S3StorageConfig: S3StorageConfig | undefined;
|
|
832
|
-
DisableGlueTableCreation?: boolean;
|
|
833
|
-
DataCatalogConfig?: DataCatalogConfig;
|
|
834
|
-
TableFormat?: TableFormat;
|
|
832
|
+
DisableGlueTableCreation?: boolean | undefined;
|
|
833
|
+
DataCatalogConfig?: DataCatalogConfig | undefined;
|
|
834
|
+
TableFormat?: TableFormat | undefined;
|
|
835
835
|
}
|
|
836
836
|
export interface OnlineStoreSecurityConfig {
|
|
837
|
-
KmsKeyId?: string;
|
|
837
|
+
KmsKeyId?: string | undefined;
|
|
838
838
|
}
|
|
839
839
|
export declare const StorageType: {
|
|
840
840
|
readonly IN_MEMORY: "InMemory";
|
|
@@ -851,14 +851,14 @@ export declare const TtlDurationUnit: {
|
|
|
851
851
|
export type TtlDurationUnit =
|
|
852
852
|
(typeof TtlDurationUnit)[keyof typeof TtlDurationUnit];
|
|
853
853
|
export interface TtlDuration {
|
|
854
|
-
Unit?: TtlDurationUnit;
|
|
855
|
-
Value?: number;
|
|
854
|
+
Unit?: TtlDurationUnit | undefined;
|
|
855
|
+
Value?: number | undefined;
|
|
856
856
|
}
|
|
857
857
|
export interface OnlineStoreConfig {
|
|
858
|
-
SecurityConfig?: OnlineStoreSecurityConfig;
|
|
859
|
-
EnableOnlineStore?: boolean;
|
|
860
|
-
TtlDuration?: TtlDuration;
|
|
861
|
-
StorageType?: StorageType;
|
|
858
|
+
SecurityConfig?: OnlineStoreSecurityConfig | undefined;
|
|
859
|
+
EnableOnlineStore?: boolean | undefined;
|
|
860
|
+
TtlDuration?: TtlDuration | undefined;
|
|
861
|
+
StorageType?: StorageType | undefined;
|
|
862
862
|
}
|
|
863
863
|
export declare const ThroughputMode: {
|
|
864
864
|
readonly ON_DEMAND: "OnDemand";
|
|
@@ -868,20 +868,20 @@ export type ThroughputMode =
|
|
|
868
868
|
(typeof ThroughputMode)[keyof typeof ThroughputMode];
|
|
869
869
|
export interface ThroughputConfig {
|
|
870
870
|
ThroughputMode: ThroughputMode | undefined;
|
|
871
|
-
ProvisionedReadCapacityUnits?: number;
|
|
872
|
-
ProvisionedWriteCapacityUnits?: number;
|
|
871
|
+
ProvisionedReadCapacityUnits?: number | undefined;
|
|
872
|
+
ProvisionedWriteCapacityUnits?: number | undefined;
|
|
873
873
|
}
|
|
874
874
|
export interface CreateFeatureGroupRequest {
|
|
875
875
|
FeatureGroupName: string | undefined;
|
|
876
876
|
RecordIdentifierFeatureName: string | undefined;
|
|
877
877
|
EventTimeFeatureName: string | undefined;
|
|
878
878
|
FeatureDefinitions: FeatureDefinition[] | undefined;
|
|
879
|
-
OnlineStoreConfig?: OnlineStoreConfig;
|
|
880
|
-
OfflineStoreConfig?: OfflineStoreConfig;
|
|
881
|
-
ThroughputConfig?: ThroughputConfig;
|
|
882
|
-
RoleArn?: string;
|
|
883
|
-
Description?: string;
|
|
884
|
-
Tags?: Tag[];
|
|
879
|
+
OnlineStoreConfig?: OnlineStoreConfig | undefined;
|
|
880
|
+
OfflineStoreConfig?: OfflineStoreConfig | undefined;
|
|
881
|
+
ThroughputConfig?: ThroughputConfig | undefined;
|
|
882
|
+
RoleArn?: string | undefined;
|
|
883
|
+
Description?: string | undefined;
|
|
884
|
+
Tags?: Tag[] | undefined;
|
|
885
885
|
}
|
|
886
886
|
export interface CreateFeatureGroupResponse {
|
|
887
887
|
FeatureGroupArn: string | undefined;
|
|
@@ -895,12 +895,12 @@ export interface HumanLoopActivationConfig {
|
|
|
895
895
|
| undefined;
|
|
896
896
|
}
|
|
897
897
|
export interface USD {
|
|
898
|
-
Dollars?: number;
|
|
899
|
-
Cents?: number;
|
|
900
|
-
TenthFractionsOfACent?: number;
|
|
898
|
+
Dollars?: number | undefined;
|
|
899
|
+
Cents?: number | undefined;
|
|
900
|
+
TenthFractionsOfACent?: number | undefined;
|
|
901
901
|
}
|
|
902
902
|
export interface PublicWorkforceTaskPrice {
|
|
903
|
-
AmountInUsd?: USD;
|
|
903
|
+
AmountInUsd?: USD | undefined;
|
|
904
904
|
}
|
|
905
905
|
export interface HumanLoopConfig {
|
|
906
906
|
WorkteamArn: string | undefined;
|
|
@@ -908,10 +908,10 @@ export interface HumanLoopConfig {
|
|
|
908
908
|
TaskTitle: string | undefined;
|
|
909
909
|
TaskDescription: string | undefined;
|
|
910
910
|
TaskCount: number | undefined;
|
|
911
|
-
TaskAvailabilityLifetimeInSeconds?: number;
|
|
912
|
-
TaskTimeLimitInSeconds?: number;
|
|
913
|
-
TaskKeywords?: string[];
|
|
914
|
-
PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice;
|
|
911
|
+
TaskAvailabilityLifetimeInSeconds?: number | undefined;
|
|
912
|
+
TaskTimeLimitInSeconds?: number | undefined;
|
|
913
|
+
TaskKeywords?: string[] | undefined;
|
|
914
|
+
PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice | undefined;
|
|
915
915
|
}
|
|
916
916
|
export interface HumanLoopRequestSource {
|
|
917
917
|
AwsManagedHumanLoopRequestSource:
|
|
@@ -920,30 +920,30 @@ export interface HumanLoopRequestSource {
|
|
|
920
920
|
}
|
|
921
921
|
export interface FlowDefinitionOutputConfig {
|
|
922
922
|
S3OutputPath: string | undefined;
|
|
923
|
-
KmsKeyId?: string;
|
|
923
|
+
KmsKeyId?: string | undefined;
|
|
924
924
|
}
|
|
925
925
|
export interface CreateFlowDefinitionRequest {
|
|
926
926
|
FlowDefinitionName: string | undefined;
|
|
927
|
-
HumanLoopRequestSource?: HumanLoopRequestSource;
|
|
928
|
-
HumanLoopActivationConfig?: HumanLoopActivationConfig;
|
|
929
|
-
HumanLoopConfig?: HumanLoopConfig;
|
|
927
|
+
HumanLoopRequestSource?: HumanLoopRequestSource | undefined;
|
|
928
|
+
HumanLoopActivationConfig?: HumanLoopActivationConfig | undefined;
|
|
929
|
+
HumanLoopConfig?: HumanLoopConfig | undefined;
|
|
930
930
|
OutputConfig: FlowDefinitionOutputConfig | undefined;
|
|
931
931
|
RoleArn: string | undefined;
|
|
932
|
-
Tags?: Tag[];
|
|
932
|
+
Tags?: Tag[] | undefined;
|
|
933
933
|
}
|
|
934
934
|
export interface CreateFlowDefinitionResponse {
|
|
935
935
|
FlowDefinitionArn: string | undefined;
|
|
936
936
|
}
|
|
937
937
|
export interface HubS3StorageConfig {
|
|
938
|
-
S3OutputPath?: string;
|
|
938
|
+
S3OutputPath?: string | undefined;
|
|
939
939
|
}
|
|
940
940
|
export interface CreateHubRequest {
|
|
941
941
|
HubName: string | undefined;
|
|
942
942
|
HubDescription: string | undefined;
|
|
943
|
-
HubDisplayName?: string;
|
|
944
|
-
HubSearchKeywords?: string[];
|
|
945
|
-
S3StorageConfig?: HubS3StorageConfig;
|
|
946
|
-
Tags?: Tag[];
|
|
943
|
+
HubDisplayName?: string | undefined;
|
|
944
|
+
HubSearchKeywords?: string[] | undefined;
|
|
945
|
+
S3StorageConfig?: HubS3StorageConfig | undefined;
|
|
946
|
+
Tags?: Tag[] | undefined;
|
|
947
947
|
}
|
|
948
948
|
export interface CreateHubResponse {
|
|
949
949
|
HubArn: string | undefined;
|
|
@@ -951,9 +951,9 @@ export interface CreateHubResponse {
|
|
|
951
951
|
export interface CreateHubContentReferenceRequest {
|
|
952
952
|
HubName: string | undefined;
|
|
953
953
|
SageMakerPublicHubContentArn: string | undefined;
|
|
954
|
-
HubContentName?: string;
|
|
955
|
-
MinVersion?: string;
|
|
956
|
-
Tags?: Tag[];
|
|
954
|
+
HubContentName?: string | undefined;
|
|
955
|
+
MinVersion?: string | undefined;
|
|
956
|
+
Tags?: Tag[] | undefined;
|
|
957
957
|
}
|
|
958
958
|
export interface CreateHubContentReferenceResponse {
|
|
959
959
|
HubArn: string | undefined;
|
|
@@ -965,7 +965,7 @@ export interface UiTemplate {
|
|
|
965
965
|
export interface CreateHumanTaskUiRequest {
|
|
966
966
|
HumanTaskUiName: string | undefined;
|
|
967
967
|
UiTemplate: UiTemplate | undefined;
|
|
968
|
-
Tags?: Tag[];
|
|
968
|
+
Tags?: Tag[] | undefined;
|
|
969
969
|
}
|
|
970
970
|
export interface CreateHumanTaskUiResponse {
|
|
971
971
|
HumanTaskUiArn: string | undefined;
|
|
@@ -974,18 +974,18 @@ export interface IntegerParameterRange {
|
|
|
974
974
|
Name: string | undefined;
|
|
975
975
|
MinValue: string | undefined;
|
|
976
976
|
MaxValue: string | undefined;
|
|
977
|
-
ScalingType?: HyperParameterScalingType;
|
|
977
|
+
ScalingType?: HyperParameterScalingType | undefined;
|
|
978
978
|
}
|
|
979
979
|
export interface ParameterRanges {
|
|
980
|
-
IntegerParameterRanges?: IntegerParameterRange[];
|
|
981
|
-
ContinuousParameterRanges?: ContinuousParameterRange[];
|
|
982
|
-
CategoricalParameterRanges?: CategoricalParameterRange[];
|
|
983
|
-
AutoParameters?: AutoParameter[];
|
|
980
|
+
IntegerParameterRanges?: IntegerParameterRange[] | undefined;
|
|
981
|
+
ContinuousParameterRanges?: ContinuousParameterRange[] | undefined;
|
|
982
|
+
CategoricalParameterRanges?: CategoricalParameterRange[] | undefined;
|
|
983
|
+
AutoParameters?: AutoParameter[] | undefined;
|
|
984
984
|
}
|
|
985
985
|
export interface ResourceLimits {
|
|
986
|
-
MaxNumberOfTrainingJobs?: number;
|
|
986
|
+
MaxNumberOfTrainingJobs?: number | undefined;
|
|
987
987
|
MaxParallelTrainingJobs: number | undefined;
|
|
988
|
-
MaxRuntimeInSeconds?: number;
|
|
988
|
+
MaxRuntimeInSeconds?: number | undefined;
|
|
989
989
|
}
|
|
990
990
|
export declare const HyperParameterTuningJobStrategyType: {
|
|
991
991
|
readonly BAYESIAN: "Bayesian";
|
|
@@ -996,11 +996,11 @@ export declare const HyperParameterTuningJobStrategyType: {
|
|
|
996
996
|
export type HyperParameterTuningJobStrategyType =
|
|
997
997
|
(typeof HyperParameterTuningJobStrategyType)[keyof typeof HyperParameterTuningJobStrategyType];
|
|
998
998
|
export interface HyperbandStrategyConfig {
|
|
999
|
-
MinResource?: number;
|
|
1000
|
-
MaxResource?: number;
|
|
999
|
+
MinResource?: number | undefined;
|
|
1000
|
+
MaxResource?: number | undefined;
|
|
1001
1001
|
}
|
|
1002
1002
|
export interface HyperParameterTuningJobStrategyConfig {
|
|
1003
|
-
HyperbandStrategyConfig?: HyperbandStrategyConfig;
|
|
1003
|
+
HyperbandStrategyConfig?: HyperbandStrategyConfig | undefined;
|
|
1004
1004
|
}
|
|
1005
1005
|
export declare const TrainingJobEarlyStoppingType: {
|
|
1006
1006
|
readonly AUTO: "Auto";
|
|
@@ -1009,25 +1009,27 @@ export declare const TrainingJobEarlyStoppingType: {
|
|
|
1009
1009
|
export type TrainingJobEarlyStoppingType =
|
|
1010
1010
|
(typeof TrainingJobEarlyStoppingType)[keyof typeof TrainingJobEarlyStoppingType];
|
|
1011
1011
|
export interface TuningJobCompletionCriteria {
|
|
1012
|
-
TargetObjectiveMetricValue?: number;
|
|
1013
|
-
BestObjectiveNotImproving?: BestObjectiveNotImproving;
|
|
1014
|
-
ConvergenceDetected?: ConvergenceDetected;
|
|
1012
|
+
TargetObjectiveMetricValue?: number | undefined;
|
|
1013
|
+
BestObjectiveNotImproving?: BestObjectiveNotImproving | undefined;
|
|
1014
|
+
ConvergenceDetected?: ConvergenceDetected | undefined;
|
|
1015
1015
|
}
|
|
1016
1016
|
export interface HyperParameterTuningJobConfig {
|
|
1017
1017
|
Strategy: HyperParameterTuningJobStrategyType | undefined;
|
|
1018
|
-
StrategyConfig?: HyperParameterTuningJobStrategyConfig;
|
|
1019
|
-
HyperParameterTuningJobObjective?:
|
|
1018
|
+
StrategyConfig?: HyperParameterTuningJobStrategyConfig | undefined;
|
|
1019
|
+
HyperParameterTuningJobObjective?:
|
|
1020
|
+
| HyperParameterTuningJobObjective
|
|
1021
|
+
| undefined;
|
|
1020
1022
|
ResourceLimits: ResourceLimits | undefined;
|
|
1021
|
-
ParameterRanges?: ParameterRanges;
|
|
1022
|
-
TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType;
|
|
1023
|
-
TuningJobCompletionCriteria?: TuningJobCompletionCriteria;
|
|
1024
|
-
RandomSeed?: number;
|
|
1023
|
+
ParameterRanges?: ParameterRanges | undefined;
|
|
1024
|
+
TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType | undefined;
|
|
1025
|
+
TuningJobCompletionCriteria?: TuningJobCompletionCriteria | undefined;
|
|
1026
|
+
RandomSeed?: number | undefined;
|
|
1025
1027
|
}
|
|
1026
1028
|
export interface HyperParameterAlgorithmSpecification {
|
|
1027
|
-
TrainingImage?: string;
|
|
1029
|
+
TrainingImage?: string | undefined;
|
|
1028
1030
|
TrainingInputMode: TrainingInputMode | undefined;
|
|
1029
|
-
AlgorithmName?: string;
|
|
1030
|
-
MetricDefinitions?: MetricDefinition[];
|
|
1031
|
+
AlgorithmName?: string | undefined;
|
|
1032
|
+
MetricDefinitions?: MetricDefinition[] | undefined;
|
|
1031
1033
|
}
|
|
1032
1034
|
export declare const HyperParameterTuningAllocationStrategy: {
|
|
1033
1035
|
readonly PRIORITIZED: "Prioritized";
|
|
@@ -1040,38 +1042,40 @@ export interface HyperParameterTuningInstanceConfig {
|
|
|
1040
1042
|
VolumeSizeInGB: number | undefined;
|
|
1041
1043
|
}
|
|
1042
1044
|
export interface HyperParameterTuningResourceConfig {
|
|
1043
|
-
InstanceType?: TrainingInstanceType;
|
|
1044
|
-
InstanceCount?: number;
|
|
1045
|
-
VolumeSizeInGB?: number;
|
|
1046
|
-
VolumeKmsKeyId?: string;
|
|
1047
|
-
AllocationStrategy?: HyperParameterTuningAllocationStrategy;
|
|
1048
|
-
InstanceConfigs?: HyperParameterTuningInstanceConfig[];
|
|
1045
|
+
InstanceType?: TrainingInstanceType | undefined;
|
|
1046
|
+
InstanceCount?: number | undefined;
|
|
1047
|
+
VolumeSizeInGB?: number | undefined;
|
|
1048
|
+
VolumeKmsKeyId?: string | undefined;
|
|
1049
|
+
AllocationStrategy?: HyperParameterTuningAllocationStrategy | undefined;
|
|
1050
|
+
InstanceConfigs?: HyperParameterTuningInstanceConfig[] | undefined;
|
|
1049
1051
|
}
|
|
1050
1052
|
export interface RetryStrategy {
|
|
1051
1053
|
MaximumRetryAttempts: number | undefined;
|
|
1052
1054
|
}
|
|
1053
1055
|
export interface HyperParameterTrainingJobDefinition {
|
|
1054
|
-
DefinitionName?: string;
|
|
1055
|
-
TuningObjective?: HyperParameterTuningJobObjective;
|
|
1056
|
-
HyperParameterRanges?: ParameterRanges;
|
|
1057
|
-
StaticHyperParameters?: Record<string, string
|
|
1056
|
+
DefinitionName?: string | undefined;
|
|
1057
|
+
TuningObjective?: HyperParameterTuningJobObjective | undefined;
|
|
1058
|
+
HyperParameterRanges?: ParameterRanges | undefined;
|
|
1059
|
+
StaticHyperParameters?: Record<string, string> | undefined;
|
|
1058
1060
|
AlgorithmSpecification: HyperParameterAlgorithmSpecification | undefined;
|
|
1059
1061
|
RoleArn: string | undefined;
|
|
1060
|
-
InputDataConfig?: Channel[];
|
|
1061
|
-
VpcConfig?: VpcConfig;
|
|
1062
|
+
InputDataConfig?: Channel[] | undefined;
|
|
1063
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1062
1064
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
1063
|
-
ResourceConfig?: ResourceConfig;
|
|
1064
|
-
HyperParameterTuningResourceConfig?:
|
|
1065
|
+
ResourceConfig?: ResourceConfig | undefined;
|
|
1066
|
+
HyperParameterTuningResourceConfig?:
|
|
1067
|
+
| HyperParameterTuningResourceConfig
|
|
1068
|
+
| undefined;
|
|
1065
1069
|
StoppingCondition: StoppingCondition | undefined;
|
|
1066
|
-
EnableNetworkIsolation?: boolean;
|
|
1067
|
-
EnableInterContainerTrafficEncryption?: boolean;
|
|
1068
|
-
EnableManagedSpotTraining?: boolean;
|
|
1069
|
-
CheckpointConfig?: CheckpointConfig;
|
|
1070
|
-
RetryStrategy?: RetryStrategy;
|
|
1071
|
-
Environment?: Record<string, string
|
|
1070
|
+
EnableNetworkIsolation?: boolean | undefined;
|
|
1071
|
+
EnableInterContainerTrafficEncryption?: boolean | undefined;
|
|
1072
|
+
EnableManagedSpotTraining?: boolean | undefined;
|
|
1073
|
+
CheckpointConfig?: CheckpointConfig | undefined;
|
|
1074
|
+
RetryStrategy?: RetryStrategy | undefined;
|
|
1075
|
+
Environment?: Record<string, string> | undefined;
|
|
1072
1076
|
}
|
|
1073
1077
|
export interface ParentHyperParameterTuningJob {
|
|
1074
|
-
HyperParameterTuningJobName?: string;
|
|
1078
|
+
HyperParameterTuningJobName?: string | undefined;
|
|
1075
1079
|
}
|
|
1076
1080
|
export declare const HyperParameterTuningJobWarmStartType: {
|
|
1077
1081
|
readonly IDENTICAL_DATA_AND_ALGORITHM: "IdenticalDataAndAlgorithm";
|
|
@@ -1086,24 +1090,24 @@ export interface HyperParameterTuningJobWarmStartConfig {
|
|
|
1086
1090
|
export interface CreateHyperParameterTuningJobRequest {
|
|
1087
1091
|
HyperParameterTuningJobName: string | undefined;
|
|
1088
1092
|
HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
|
|
1089
|
-
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
1090
|
-
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
1091
|
-
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
|
|
1092
|
-
Tags?: Tag[];
|
|
1093
|
-
Autotune?: Autotune;
|
|
1093
|
+
TrainingJobDefinition?: HyperParameterTrainingJobDefinition | undefined;
|
|
1094
|
+
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[] | undefined;
|
|
1095
|
+
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig | undefined;
|
|
1096
|
+
Tags?: Tag[] | undefined;
|
|
1097
|
+
Autotune?: Autotune | undefined;
|
|
1094
1098
|
}
|
|
1095
1099
|
export interface CreateHyperParameterTuningJobResponse {
|
|
1096
1100
|
HyperParameterTuningJobArn: string | undefined;
|
|
1097
1101
|
}
|
|
1098
1102
|
export interface CreateImageRequest {
|
|
1099
|
-
Description?: string;
|
|
1100
|
-
DisplayName?: string;
|
|
1103
|
+
Description?: string | undefined;
|
|
1104
|
+
DisplayName?: string | undefined;
|
|
1101
1105
|
ImageName: string | undefined;
|
|
1102
1106
|
RoleArn: string | undefined;
|
|
1103
|
-
Tags?: Tag[];
|
|
1107
|
+
Tags?: Tag[] | undefined;
|
|
1104
1108
|
}
|
|
1105
1109
|
export interface CreateImageResponse {
|
|
1106
|
-
ImageArn?: string;
|
|
1110
|
+
ImageArn?: string | undefined;
|
|
1107
1111
|
}
|
|
1108
1112
|
export declare const JobType: {
|
|
1109
1113
|
readonly INFERENCE: "INFERENCE";
|
|
@@ -1126,42 +1130,42 @@ export type VendorGuidance =
|
|
|
1126
1130
|
(typeof VendorGuidance)[keyof typeof VendorGuidance];
|
|
1127
1131
|
export interface CreateImageVersionRequest {
|
|
1128
1132
|
BaseImage: string | undefined;
|
|
1129
|
-
ClientToken?: string;
|
|
1133
|
+
ClientToken?: string | undefined;
|
|
1130
1134
|
ImageName: string | undefined;
|
|
1131
|
-
Aliases?: string[];
|
|
1132
|
-
VendorGuidance?: VendorGuidance;
|
|
1133
|
-
JobType?: JobType;
|
|
1134
|
-
MLFramework?: string;
|
|
1135
|
-
ProgrammingLang?: string;
|
|
1136
|
-
Processor?: Processor;
|
|
1137
|
-
Horovod?: boolean;
|
|
1138
|
-
ReleaseNotes?: string;
|
|
1135
|
+
Aliases?: string[] | undefined;
|
|
1136
|
+
VendorGuidance?: VendorGuidance | undefined;
|
|
1137
|
+
JobType?: JobType | undefined;
|
|
1138
|
+
MLFramework?: string | undefined;
|
|
1139
|
+
ProgrammingLang?: string | undefined;
|
|
1140
|
+
Processor?: Processor | undefined;
|
|
1141
|
+
Horovod?: boolean | undefined;
|
|
1142
|
+
ReleaseNotes?: string | undefined;
|
|
1139
1143
|
}
|
|
1140
1144
|
export interface CreateImageVersionResponse {
|
|
1141
|
-
ImageVersionArn?: string;
|
|
1145
|
+
ImageVersionArn?: string | undefined;
|
|
1142
1146
|
}
|
|
1143
1147
|
export interface InferenceComponentRuntimeConfig {
|
|
1144
1148
|
CopyCount: number | undefined;
|
|
1145
1149
|
}
|
|
1146
1150
|
export interface InferenceComponentComputeResourceRequirements {
|
|
1147
|
-
NumberOfCpuCoresRequired?: number;
|
|
1148
|
-
NumberOfAcceleratorDevicesRequired?: number;
|
|
1151
|
+
NumberOfCpuCoresRequired?: number | undefined;
|
|
1152
|
+
NumberOfAcceleratorDevicesRequired?: number | undefined;
|
|
1149
1153
|
MinMemoryRequiredInMb: number | undefined;
|
|
1150
|
-
MaxMemoryRequiredInMb?: number;
|
|
1154
|
+
MaxMemoryRequiredInMb?: number | undefined;
|
|
1151
1155
|
}
|
|
1152
1156
|
export interface InferenceComponentContainerSpecification {
|
|
1153
|
-
Image?: string;
|
|
1154
|
-
ArtifactUrl?: string;
|
|
1155
|
-
Environment?: Record<string, string
|
|
1157
|
+
Image?: string | undefined;
|
|
1158
|
+
ArtifactUrl?: string | undefined;
|
|
1159
|
+
Environment?: Record<string, string> | undefined;
|
|
1156
1160
|
}
|
|
1157
1161
|
export interface InferenceComponentStartupParameters {
|
|
1158
|
-
ModelDataDownloadTimeoutInSeconds?: number;
|
|
1159
|
-
ContainerStartupHealthCheckTimeoutInSeconds?: number;
|
|
1162
|
+
ModelDataDownloadTimeoutInSeconds?: number | undefined;
|
|
1163
|
+
ContainerStartupHealthCheckTimeoutInSeconds?: number | undefined;
|
|
1160
1164
|
}
|
|
1161
1165
|
export interface InferenceComponentSpecification {
|
|
1162
|
-
ModelName?: string;
|
|
1163
|
-
Container?: InferenceComponentContainerSpecification;
|
|
1164
|
-
StartupParameters?: InferenceComponentStartupParameters;
|
|
1166
|
+
ModelName?: string | undefined;
|
|
1167
|
+
Container?: InferenceComponentContainerSpecification | undefined;
|
|
1168
|
+
StartupParameters?: InferenceComponentStartupParameters | undefined;
|
|
1165
1169
|
ComputeResourceRequirements:
|
|
1166
1170
|
| InferenceComponentComputeResourceRequirements
|
|
1167
1171
|
| undefined;
|
|
@@ -1172,15 +1176,15 @@ export interface CreateInferenceComponentInput {
|
|
|
1172
1176
|
VariantName: string | undefined;
|
|
1173
1177
|
Specification: InferenceComponentSpecification | undefined;
|
|
1174
1178
|
RuntimeConfig: InferenceComponentRuntimeConfig | undefined;
|
|
1175
|
-
Tags?: Tag[];
|
|
1179
|
+
Tags?: Tag[] | undefined;
|
|
1176
1180
|
}
|
|
1177
1181
|
export interface CreateInferenceComponentOutput {
|
|
1178
1182
|
InferenceComponentArn: string | undefined;
|
|
1179
1183
|
}
|
|
1180
1184
|
export interface InferenceExperimentDataStorageConfig {
|
|
1181
1185
|
Destination: string | undefined;
|
|
1182
|
-
KmsKey?: string;
|
|
1183
|
-
ContentType?: CaptureContentTypeHeader;
|
|
1186
|
+
KmsKey?: string | undefined;
|
|
1187
|
+
ContentType?: CaptureContentTypeHeader | undefined;
|
|
1184
1188
|
}
|
|
1185
1189
|
export declare const ModelInfrastructureType: {
|
|
1186
1190
|
readonly REAL_TIME_INFERENCE: "RealTimeInference";
|
|
@@ -1255,6 +1259,10 @@ export declare const _InstanceType: {
|
|
|
1255
1259
|
readonly ML_INF1_2XLARGE: "ml.inf1.2xlarge";
|
|
1256
1260
|
readonly ML_INF1_6XLARGE: "ml.inf1.6xlarge";
|
|
1257
1261
|
readonly ML_INF1_XLARGE: "ml.inf1.xlarge";
|
|
1262
|
+
readonly ML_INF2_24XLARGE: "ml.inf2.24xlarge";
|
|
1263
|
+
readonly ML_INF2_48XLARGE: "ml.inf2.48xlarge";
|
|
1264
|
+
readonly ML_INF2_8XLARGE: "ml.inf2.8xlarge";
|
|
1265
|
+
readonly ML_INF2_XLARGE: "ml.inf2.xlarge";
|
|
1258
1266
|
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
1259
1267
|
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
1260
1268
|
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
@@ -1353,6 +1361,9 @@ export declare const _InstanceType: {
|
|
|
1353
1361
|
readonly ML_T3_LARGE: "ml.t3.large";
|
|
1354
1362
|
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
1355
1363
|
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
1364
|
+
readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
|
|
1365
|
+
readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
|
|
1366
|
+
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
1356
1367
|
};
|
|
1357
1368
|
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
1358
1369
|
export interface RealTimeInferenceConfig {
|
|
@@ -1369,8 +1380,8 @@ export interface ModelVariantConfig {
|
|
|
1369
1380
|
InfrastructureConfig: ModelInfrastructureConfig | undefined;
|
|
1370
1381
|
}
|
|
1371
1382
|
export interface InferenceExperimentSchedule {
|
|
1372
|
-
StartTime?: Date;
|
|
1373
|
-
EndTime?: Date;
|
|
1383
|
+
StartTime?: Date | undefined;
|
|
1384
|
+
EndTime?: Date | undefined;
|
|
1374
1385
|
}
|
|
1375
1386
|
export interface ShadowModelVariantConfig {
|
|
1376
1387
|
ShadowModelVariantName: string | undefined;
|
|
@@ -1388,22 +1399,22 @@ export type InferenceExperimentType =
|
|
|
1388
1399
|
export interface CreateInferenceExperimentRequest {
|
|
1389
1400
|
Name: string | undefined;
|
|
1390
1401
|
Type: InferenceExperimentType | undefined;
|
|
1391
|
-
Schedule?: InferenceExperimentSchedule;
|
|
1392
|
-
Description?: string;
|
|
1402
|
+
Schedule?: InferenceExperimentSchedule | undefined;
|
|
1403
|
+
Description?: string | undefined;
|
|
1393
1404
|
RoleArn: string | undefined;
|
|
1394
1405
|
EndpointName: string | undefined;
|
|
1395
1406
|
ModelVariants: ModelVariantConfig[] | undefined;
|
|
1396
|
-
DataStorageConfig?: InferenceExperimentDataStorageConfig;
|
|
1407
|
+
DataStorageConfig?: InferenceExperimentDataStorageConfig | undefined;
|
|
1397
1408
|
ShadowModeConfig: ShadowModeConfig | undefined;
|
|
1398
|
-
KmsKey?: string;
|
|
1399
|
-
Tags?: Tag[];
|
|
1409
|
+
KmsKey?: string | undefined;
|
|
1410
|
+
Tags?: Tag[] | undefined;
|
|
1400
1411
|
}
|
|
1401
1412
|
export interface CreateInferenceExperimentResponse {
|
|
1402
1413
|
InferenceExperimentArn: string | undefined;
|
|
1403
1414
|
}
|
|
1404
1415
|
export interface RecommendationJobPayloadConfig {
|
|
1405
|
-
SamplePayloadUrl?: string;
|
|
1406
|
-
SupportedContentTypes?: string[];
|
|
1416
|
+
SamplePayloadUrl?: string | undefined;
|
|
1417
|
+
SupportedContentTypes?: string[] | undefined;
|
|
1407
1418
|
}
|
|
1408
1419
|
export declare const RecommendationJobSupportedEndpointType: {
|
|
1409
1420
|
readonly REALTIME: "RealTime";
|
|
@@ -1412,42 +1423,42 @@ export declare const RecommendationJobSupportedEndpointType: {
|
|
|
1412
1423
|
export type RecommendationJobSupportedEndpointType =
|
|
1413
1424
|
(typeof RecommendationJobSupportedEndpointType)[keyof typeof RecommendationJobSupportedEndpointType];
|
|
1414
1425
|
export interface RecommendationJobContainerConfig {
|
|
1415
|
-
Domain?: string;
|
|
1416
|
-
Task?: string;
|
|
1417
|
-
Framework?: string;
|
|
1418
|
-
FrameworkVersion?: string;
|
|
1419
|
-
PayloadConfig?: RecommendationJobPayloadConfig;
|
|
1420
|
-
NearestModelName?: string;
|
|
1421
|
-
SupportedInstanceTypes?: string[];
|
|
1422
|
-
SupportedEndpointType?: RecommendationJobSupportedEndpointType;
|
|
1423
|
-
DataInputConfig?: string;
|
|
1424
|
-
SupportedResponseMIMETypes?: string[];
|
|
1426
|
+
Domain?: string | undefined;
|
|
1427
|
+
Task?: string | undefined;
|
|
1428
|
+
Framework?: string | undefined;
|
|
1429
|
+
FrameworkVersion?: string | undefined;
|
|
1430
|
+
PayloadConfig?: RecommendationJobPayloadConfig | undefined;
|
|
1431
|
+
NearestModelName?: string | undefined;
|
|
1432
|
+
SupportedInstanceTypes?: string[] | undefined;
|
|
1433
|
+
SupportedEndpointType?: RecommendationJobSupportedEndpointType | undefined;
|
|
1434
|
+
DataInputConfig?: string | undefined;
|
|
1435
|
+
SupportedResponseMIMETypes?: string[] | undefined;
|
|
1425
1436
|
}
|
|
1426
1437
|
export interface EnvironmentParameterRanges {
|
|
1427
|
-
CategoricalParameterRanges?: CategoricalParameter[];
|
|
1438
|
+
CategoricalParameterRanges?: CategoricalParameter[] | undefined;
|
|
1428
1439
|
}
|
|
1429
1440
|
export interface EndpointInputConfiguration {
|
|
1430
|
-
InstanceType?: ProductionVariantInstanceType;
|
|
1431
|
-
ServerlessConfig?: ProductionVariantServerlessConfig;
|
|
1432
|
-
InferenceSpecificationName?: string;
|
|
1433
|
-
EnvironmentParameterRanges?: EnvironmentParameterRanges;
|
|
1441
|
+
InstanceType?: ProductionVariantInstanceType | undefined;
|
|
1442
|
+
ServerlessConfig?: ProductionVariantServerlessConfig | undefined;
|
|
1443
|
+
InferenceSpecificationName?: string | undefined;
|
|
1444
|
+
EnvironmentParameterRanges?: EnvironmentParameterRanges | undefined;
|
|
1434
1445
|
}
|
|
1435
1446
|
export interface EndpointInfo {
|
|
1436
|
-
EndpointName?: string;
|
|
1447
|
+
EndpointName?: string | undefined;
|
|
1437
1448
|
}
|
|
1438
1449
|
export interface RecommendationJobResourceLimit {
|
|
1439
|
-
MaxNumberOfTests?: number;
|
|
1440
|
-
MaxParallelOfTests?: number;
|
|
1450
|
+
MaxNumberOfTests?: number | undefined;
|
|
1451
|
+
MaxParallelOfTests?: number | undefined;
|
|
1441
1452
|
}
|
|
1442
1453
|
export interface Phase {
|
|
1443
|
-
InitialNumberOfUsers?: number;
|
|
1444
|
-
SpawnRate?: number;
|
|
1445
|
-
DurationInSeconds?: number;
|
|
1454
|
+
InitialNumberOfUsers?: number | undefined;
|
|
1455
|
+
SpawnRate?: number | undefined;
|
|
1456
|
+
DurationInSeconds?: number | undefined;
|
|
1446
1457
|
}
|
|
1447
1458
|
export interface Stairs {
|
|
1448
|
-
DurationInSeconds?: number;
|
|
1449
|
-
NumberOfSteps?: number;
|
|
1450
|
-
UsersPerStep?: number;
|
|
1459
|
+
DurationInSeconds?: number | undefined;
|
|
1460
|
+
NumberOfSteps?: number | undefined;
|
|
1461
|
+
UsersPerStep?: number | undefined;
|
|
1451
1462
|
}
|
|
1452
1463
|
export declare const TrafficType: {
|
|
1453
1464
|
readonly PHASES: "PHASES";
|
|
@@ -1455,25 +1466,25 @@ export declare const TrafficType: {
|
|
|
1455
1466
|
};
|
|
1456
1467
|
export type TrafficType = (typeof TrafficType)[keyof typeof TrafficType];
|
|
1457
1468
|
export interface TrafficPattern {
|
|
1458
|
-
TrafficType?: TrafficType;
|
|
1459
|
-
Phases?: Phase[];
|
|
1460
|
-
Stairs?: Stairs;
|
|
1469
|
+
TrafficType?: TrafficType | undefined;
|
|
1470
|
+
Phases?: Phase[] | undefined;
|
|
1471
|
+
Stairs?: Stairs | undefined;
|
|
1461
1472
|
}
|
|
1462
1473
|
export interface RecommendationJobVpcConfig {
|
|
1463
1474
|
SecurityGroupIds: string[] | undefined;
|
|
1464
1475
|
Subnets: string[] | undefined;
|
|
1465
1476
|
}
|
|
1466
1477
|
export interface RecommendationJobInputConfig {
|
|
1467
|
-
ModelPackageVersionArn?: string;
|
|
1468
|
-
ModelName?: string;
|
|
1469
|
-
JobDurationInSeconds?: number;
|
|
1470
|
-
TrafficPattern?: TrafficPattern;
|
|
1471
|
-
ResourceLimit?: RecommendationJobResourceLimit;
|
|
1472
|
-
EndpointConfigurations?: EndpointInputConfiguration[];
|
|
1473
|
-
VolumeKmsKeyId?: string;
|
|
1474
|
-
ContainerConfig?: RecommendationJobContainerConfig;
|
|
1475
|
-
Endpoints?: EndpointInfo[];
|
|
1476
|
-
VpcConfig?: RecommendationJobVpcConfig;
|
|
1478
|
+
ModelPackageVersionArn?: string | undefined;
|
|
1479
|
+
ModelName?: string | undefined;
|
|
1480
|
+
JobDurationInSeconds?: number | undefined;
|
|
1481
|
+
TrafficPattern?: TrafficPattern | undefined;
|
|
1482
|
+
ResourceLimit?: RecommendationJobResourceLimit | undefined;
|
|
1483
|
+
EndpointConfigurations?: EndpointInputConfiguration[] | undefined;
|
|
1484
|
+
VolumeKmsKeyId?: string | undefined;
|
|
1485
|
+
ContainerConfig?: RecommendationJobContainerConfig | undefined;
|
|
1486
|
+
Endpoints?: EndpointInfo[] | undefined;
|
|
1487
|
+
VpcConfig?: RecommendationJobVpcConfig | undefined;
|
|
1477
1488
|
}
|
|
1478
1489
|
export declare const RecommendationJobType: {
|
|
1479
1490
|
readonly ADVANCED: "Advanced";
|
|
@@ -1482,11 +1493,11 @@ export declare const RecommendationJobType: {
|
|
|
1482
1493
|
export type RecommendationJobType =
|
|
1483
1494
|
(typeof RecommendationJobType)[keyof typeof RecommendationJobType];
|
|
1484
1495
|
export interface RecommendationJobCompiledOutputConfig {
|
|
1485
|
-
S3OutputUri?: string;
|
|
1496
|
+
S3OutputUri?: string | undefined;
|
|
1486
1497
|
}
|
|
1487
1498
|
export interface RecommendationJobOutputConfig {
|
|
1488
|
-
KmsKeyId?: string;
|
|
1489
|
-
CompiledOutputConfig?: RecommendationJobCompiledOutputConfig;
|
|
1499
|
+
KmsKeyId?: string | undefined;
|
|
1500
|
+
CompiledOutputConfig?: RecommendationJobCompiledOutputConfig | undefined;
|
|
1490
1501
|
}
|
|
1491
1502
|
export declare const FlatInvocations: {
|
|
1492
1503
|
readonly CONTINUE: "Continue";
|
|
@@ -1495,47 +1506,47 @@ export declare const FlatInvocations: {
|
|
|
1495
1506
|
export type FlatInvocations =
|
|
1496
1507
|
(typeof FlatInvocations)[keyof typeof FlatInvocations];
|
|
1497
1508
|
export interface ModelLatencyThreshold {
|
|
1498
|
-
Percentile?: string;
|
|
1499
|
-
ValueInMilliseconds?: number;
|
|
1509
|
+
Percentile?: string | undefined;
|
|
1510
|
+
ValueInMilliseconds?: number | undefined;
|
|
1500
1511
|
}
|
|
1501
1512
|
export interface RecommendationJobStoppingConditions {
|
|
1502
|
-
MaxInvocations?: number;
|
|
1503
|
-
ModelLatencyThresholds?: ModelLatencyThreshold[];
|
|
1504
|
-
FlatInvocations?: FlatInvocations;
|
|
1513
|
+
MaxInvocations?: number | undefined;
|
|
1514
|
+
ModelLatencyThresholds?: ModelLatencyThreshold[] | undefined;
|
|
1515
|
+
FlatInvocations?: FlatInvocations | undefined;
|
|
1505
1516
|
}
|
|
1506
1517
|
export interface CreateInferenceRecommendationsJobRequest {
|
|
1507
1518
|
JobName: string | undefined;
|
|
1508
1519
|
JobType: RecommendationJobType | undefined;
|
|
1509
1520
|
RoleArn: string | undefined;
|
|
1510
1521
|
InputConfig: RecommendationJobInputConfig | undefined;
|
|
1511
|
-
JobDescription?: string;
|
|
1512
|
-
StoppingConditions?: RecommendationJobStoppingConditions;
|
|
1513
|
-
OutputConfig?: RecommendationJobOutputConfig;
|
|
1514
|
-
Tags?: Tag[];
|
|
1522
|
+
JobDescription?: string | undefined;
|
|
1523
|
+
StoppingConditions?: RecommendationJobStoppingConditions | undefined;
|
|
1524
|
+
OutputConfig?: RecommendationJobOutputConfig | undefined;
|
|
1525
|
+
Tags?: Tag[] | undefined;
|
|
1515
1526
|
}
|
|
1516
1527
|
export interface CreateInferenceRecommendationsJobResponse {
|
|
1517
1528
|
JobArn: string | undefined;
|
|
1518
1529
|
}
|
|
1519
1530
|
export interface UiConfig {
|
|
1520
|
-
UiTemplateS3Uri?: string;
|
|
1521
|
-
HumanTaskUiArn?: string;
|
|
1531
|
+
UiTemplateS3Uri?: string | undefined;
|
|
1532
|
+
HumanTaskUiArn?: string | undefined;
|
|
1522
1533
|
}
|
|
1523
1534
|
export interface HumanTaskConfig {
|
|
1524
1535
|
WorkteamArn: string | undefined;
|
|
1525
1536
|
UiConfig: UiConfig | undefined;
|
|
1526
|
-
PreHumanTaskLambdaArn?: string;
|
|
1527
|
-
TaskKeywords?: string[];
|
|
1537
|
+
PreHumanTaskLambdaArn?: string | undefined;
|
|
1538
|
+
TaskKeywords?: string[] | undefined;
|
|
1528
1539
|
TaskTitle: string | undefined;
|
|
1529
1540
|
TaskDescription: string | undefined;
|
|
1530
1541
|
NumberOfHumanWorkersPerDataObject: number | undefined;
|
|
1531
1542
|
TaskTimeLimitInSeconds: number | undefined;
|
|
1532
|
-
TaskAvailabilityLifetimeInSeconds?: number;
|
|
1533
|
-
MaxConcurrentTaskCount?: number;
|
|
1534
|
-
AnnotationConsolidationConfig?: AnnotationConsolidationConfig;
|
|
1535
|
-
PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice;
|
|
1543
|
+
TaskAvailabilityLifetimeInSeconds?: number | undefined;
|
|
1544
|
+
MaxConcurrentTaskCount?: number | undefined;
|
|
1545
|
+
AnnotationConsolidationConfig?: AnnotationConsolidationConfig | undefined;
|
|
1546
|
+
PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice | undefined;
|
|
1536
1547
|
}
|
|
1537
1548
|
export interface LabelingJobDataAttributes {
|
|
1538
|
-
ContentClassifiers?: ContentClassifier[];
|
|
1549
|
+
ContentClassifiers?: ContentClassifier[] | undefined;
|
|
1539
1550
|
}
|
|
1540
1551
|
export interface LabelingJobS3DataSource {
|
|
1541
1552
|
ManifestS3Uri: string | undefined;
|
|
@@ -1544,30 +1555,30 @@ export interface LabelingJobSnsDataSource {
|
|
|
1544
1555
|
SnsTopicArn: string | undefined;
|
|
1545
1556
|
}
|
|
1546
1557
|
export interface LabelingJobDataSource {
|
|
1547
|
-
S3DataSource?: LabelingJobS3DataSource;
|
|
1548
|
-
SnsDataSource?: LabelingJobSnsDataSource;
|
|
1558
|
+
S3DataSource?: LabelingJobS3DataSource | undefined;
|
|
1559
|
+
SnsDataSource?: LabelingJobSnsDataSource | undefined;
|
|
1549
1560
|
}
|
|
1550
1561
|
export interface LabelingJobInputConfig {
|
|
1551
1562
|
DataSource: LabelingJobDataSource | undefined;
|
|
1552
|
-
DataAttributes?: LabelingJobDataAttributes;
|
|
1563
|
+
DataAttributes?: LabelingJobDataAttributes | undefined;
|
|
1553
1564
|
}
|
|
1554
1565
|
export interface LabelingJobResourceConfig {
|
|
1555
|
-
VolumeKmsKeyId?: string;
|
|
1556
|
-
VpcConfig?: VpcConfig;
|
|
1566
|
+
VolumeKmsKeyId?: string | undefined;
|
|
1567
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1557
1568
|
}
|
|
1558
1569
|
export interface LabelingJobAlgorithmsConfig {
|
|
1559
1570
|
LabelingJobAlgorithmSpecificationArn: string | undefined;
|
|
1560
|
-
InitialActiveLearningModelArn?: string;
|
|
1561
|
-
LabelingJobResourceConfig?: LabelingJobResourceConfig;
|
|
1571
|
+
InitialActiveLearningModelArn?: string | undefined;
|
|
1572
|
+
LabelingJobResourceConfig?: LabelingJobResourceConfig | undefined;
|
|
1562
1573
|
}
|
|
1563
1574
|
export interface LabelingJobOutputConfig {
|
|
1564
1575
|
S3OutputPath: string | undefined;
|
|
1565
|
-
KmsKeyId?: string;
|
|
1566
|
-
SnsTopicArn?: string;
|
|
1576
|
+
KmsKeyId?: string | undefined;
|
|
1577
|
+
SnsTopicArn?: string | undefined;
|
|
1567
1578
|
}
|
|
1568
1579
|
export interface LabelingJobStoppingConditions {
|
|
1569
|
-
MaxHumanLabeledObjectCount?: number;
|
|
1570
|
-
MaxPercentageOfInputDatasetLabeled?: number;
|
|
1580
|
+
MaxHumanLabeledObjectCount?: number | undefined;
|
|
1581
|
+
MaxPercentageOfInputDatasetLabeled?: number | undefined;
|
|
1571
1582
|
}
|
|
1572
1583
|
export interface CreateLabelingJobRequest {
|
|
1573
1584
|
LabelingJobName: string | undefined;
|
|
@@ -1575,11 +1586,11 @@ export interface CreateLabelingJobRequest {
|
|
|
1575
1586
|
InputConfig: LabelingJobInputConfig | undefined;
|
|
1576
1587
|
OutputConfig: LabelingJobOutputConfig | undefined;
|
|
1577
1588
|
RoleArn: string | undefined;
|
|
1578
|
-
LabelCategoryConfigS3Uri?: string;
|
|
1579
|
-
StoppingConditions?: LabelingJobStoppingConditions;
|
|
1580
|
-
LabelingJobAlgorithmsConfig?: LabelingJobAlgorithmsConfig;
|
|
1589
|
+
LabelCategoryConfigS3Uri?: string | undefined;
|
|
1590
|
+
StoppingConditions?: LabelingJobStoppingConditions | undefined;
|
|
1591
|
+
LabelingJobAlgorithmsConfig?: LabelingJobAlgorithmsConfig | undefined;
|
|
1581
1592
|
HumanTaskConfig: HumanTaskConfig | undefined;
|
|
1582
|
-
Tags?: Tag[];
|
|
1593
|
+
Tags?: Tag[] | undefined;
|
|
1583
1594
|
}
|
|
1584
1595
|
export interface CreateLabelingJobResponse {
|
|
1585
1596
|
LabelingJobArn: string | undefined;
|
|
@@ -1594,15 +1605,15 @@ export type TrackingServerSize =
|
|
|
1594
1605
|
export interface CreateMlflowTrackingServerRequest {
|
|
1595
1606
|
TrackingServerName: string | undefined;
|
|
1596
1607
|
ArtifactStoreUri: string | undefined;
|
|
1597
|
-
TrackingServerSize?: TrackingServerSize;
|
|
1598
|
-
MlflowVersion?: string;
|
|
1608
|
+
TrackingServerSize?: TrackingServerSize | undefined;
|
|
1609
|
+
MlflowVersion?: string | undefined;
|
|
1599
1610
|
RoleArn: string | undefined;
|
|
1600
|
-
AutomaticModelRegistration?: boolean;
|
|
1601
|
-
WeeklyMaintenanceWindowStart?: string;
|
|
1602
|
-
Tags?: Tag[];
|
|
1611
|
+
AutomaticModelRegistration?: boolean | undefined;
|
|
1612
|
+
WeeklyMaintenanceWindowStart?: string | undefined;
|
|
1613
|
+
Tags?: Tag[] | undefined;
|
|
1603
1614
|
}
|
|
1604
1615
|
export interface CreateMlflowTrackingServerResponse {
|
|
1605
|
-
TrackingServerArn?: string;
|
|
1616
|
+
TrackingServerArn?: string | undefined;
|
|
1606
1617
|
}
|
|
1607
1618
|
export declare const InferenceExecutionMode: {
|
|
1608
1619
|
readonly DIRECT: "Direct";
|
|
@@ -1615,13 +1626,13 @@ export interface InferenceExecutionConfig {
|
|
|
1615
1626
|
}
|
|
1616
1627
|
export interface CreateModelInput {
|
|
1617
1628
|
ModelName: string | undefined;
|
|
1618
|
-
PrimaryContainer?: ContainerDefinition;
|
|
1619
|
-
Containers?: ContainerDefinition[];
|
|
1620
|
-
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
1621
|
-
ExecutionRoleArn?: string;
|
|
1622
|
-
Tags?: Tag[];
|
|
1623
|
-
VpcConfig?: VpcConfig;
|
|
1624
|
-
EnableNetworkIsolation?: boolean;
|
|
1629
|
+
PrimaryContainer?: ContainerDefinition | undefined;
|
|
1630
|
+
Containers?: ContainerDefinition[] | undefined;
|
|
1631
|
+
InferenceExecutionConfig?: InferenceExecutionConfig | undefined;
|
|
1632
|
+
ExecutionRoleArn?: string | undefined;
|
|
1633
|
+
Tags?: Tag[] | undefined;
|
|
1634
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1635
|
+
EnableNetworkIsolation?: boolean | undefined;
|
|
1625
1636
|
}
|
|
1626
1637
|
export interface CreateModelOutput {
|
|
1627
1638
|
ModelArn: string | undefined;
|
|
@@ -1629,31 +1640,31 @@ export interface CreateModelOutput {
|
|
|
1629
1640
|
export interface ModelBiasAppSpecification {
|
|
1630
1641
|
ImageUri: string | undefined;
|
|
1631
1642
|
ConfigUri: string | undefined;
|
|
1632
|
-
Environment?: Record<string, string
|
|
1643
|
+
Environment?: Record<string, string> | undefined;
|
|
1633
1644
|
}
|
|
1634
1645
|
export interface ModelBiasBaselineConfig {
|
|
1635
|
-
BaseliningJobName?: string;
|
|
1636
|
-
ConstraintsResource?: MonitoringConstraintsResource;
|
|
1646
|
+
BaseliningJobName?: string | undefined;
|
|
1647
|
+
ConstraintsResource?: MonitoringConstraintsResource | undefined;
|
|
1637
1648
|
}
|
|
1638
1649
|
export interface MonitoringGroundTruthS3Input {
|
|
1639
|
-
S3Uri?: string;
|
|
1650
|
+
S3Uri?: string | undefined;
|
|
1640
1651
|
}
|
|
1641
1652
|
export interface ModelBiasJobInput {
|
|
1642
|
-
EndpointInput?: EndpointInput;
|
|
1643
|
-
BatchTransformInput?: BatchTransformInput;
|
|
1653
|
+
EndpointInput?: EndpointInput | undefined;
|
|
1654
|
+
BatchTransformInput?: BatchTransformInput | undefined;
|
|
1644
1655
|
GroundTruthS3Input: MonitoringGroundTruthS3Input | undefined;
|
|
1645
1656
|
}
|
|
1646
1657
|
export interface CreateModelBiasJobDefinitionRequest {
|
|
1647
1658
|
JobDefinitionName: string | undefined;
|
|
1648
|
-
ModelBiasBaselineConfig?: ModelBiasBaselineConfig;
|
|
1659
|
+
ModelBiasBaselineConfig?: ModelBiasBaselineConfig | undefined;
|
|
1649
1660
|
ModelBiasAppSpecification: ModelBiasAppSpecification | undefined;
|
|
1650
1661
|
ModelBiasJobInput: ModelBiasJobInput | undefined;
|
|
1651
1662
|
ModelBiasJobOutputConfig: MonitoringOutputConfig | undefined;
|
|
1652
1663
|
JobResources: MonitoringResources | undefined;
|
|
1653
|
-
NetworkConfig?: MonitoringNetworkConfig;
|
|
1664
|
+
NetworkConfig?: MonitoringNetworkConfig | undefined;
|
|
1654
1665
|
RoleArn: string | undefined;
|
|
1655
|
-
StoppingCondition?: MonitoringStoppingCondition;
|
|
1656
|
-
Tags?: Tag[];
|
|
1666
|
+
StoppingCondition?: MonitoringStoppingCondition | undefined;
|
|
1667
|
+
Tags?: Tag[] | undefined;
|
|
1657
1668
|
}
|
|
1658
1669
|
export interface CreateModelBiasJobDefinitionResponse {
|
|
1659
1670
|
JobDefinitionArn: string | undefined;
|
|
@@ -1667,14 +1678,14 @@ export declare const ModelCardStatus: {
|
|
|
1667
1678
|
export type ModelCardStatus =
|
|
1668
1679
|
(typeof ModelCardStatus)[keyof typeof ModelCardStatus];
|
|
1669
1680
|
export interface ModelCardSecurityConfig {
|
|
1670
|
-
KmsKeyId?: string;
|
|
1681
|
+
KmsKeyId?: string | undefined;
|
|
1671
1682
|
}
|
|
1672
1683
|
export interface CreateModelCardRequest {
|
|
1673
1684
|
ModelCardName: string | undefined;
|
|
1674
|
-
SecurityConfig?: ModelCardSecurityConfig;
|
|
1685
|
+
SecurityConfig?: ModelCardSecurityConfig | undefined;
|
|
1675
1686
|
Content: string | undefined;
|
|
1676
1687
|
ModelCardStatus: ModelCardStatus | undefined;
|
|
1677
|
-
Tags?: Tag[];
|
|
1688
|
+
Tags?: Tag[] | undefined;
|
|
1678
1689
|
}
|
|
1679
1690
|
export interface CreateModelCardResponse {
|
|
1680
1691
|
ModelCardArn: string | undefined;
|
|
@@ -1684,7 +1695,7 @@ export interface ModelCardExportOutputConfig {
|
|
|
1684
1695
|
}
|
|
1685
1696
|
export interface CreateModelCardExportJobRequest {
|
|
1686
1697
|
ModelCardName: string | undefined;
|
|
1687
|
-
ModelCardVersion?: number;
|
|
1698
|
+
ModelCardVersion?: number | undefined;
|
|
1688
1699
|
ModelCardExportJobName: string | undefined;
|
|
1689
1700
|
OutputConfig: ModelCardExportOutputConfig | undefined;
|
|
1690
1701
|
}
|
|
@@ -1694,86 +1705,88 @@ export interface CreateModelCardExportJobResponse {
|
|
|
1694
1705
|
export interface ModelExplainabilityAppSpecification {
|
|
1695
1706
|
ImageUri: string | undefined;
|
|
1696
1707
|
ConfigUri: string | undefined;
|
|
1697
|
-
Environment?: Record<string, string
|
|
1708
|
+
Environment?: Record<string, string> | undefined;
|
|
1698
1709
|
}
|
|
1699
1710
|
export interface ModelExplainabilityBaselineConfig {
|
|
1700
|
-
BaseliningJobName?: string;
|
|
1701
|
-
ConstraintsResource?: MonitoringConstraintsResource;
|
|
1711
|
+
BaseliningJobName?: string | undefined;
|
|
1712
|
+
ConstraintsResource?: MonitoringConstraintsResource | undefined;
|
|
1702
1713
|
}
|
|
1703
1714
|
export interface ModelExplainabilityJobInput {
|
|
1704
|
-
EndpointInput?: EndpointInput;
|
|
1705
|
-
BatchTransformInput?: BatchTransformInput;
|
|
1715
|
+
EndpointInput?: EndpointInput | undefined;
|
|
1716
|
+
BatchTransformInput?: BatchTransformInput | undefined;
|
|
1706
1717
|
}
|
|
1707
1718
|
export interface CreateModelExplainabilityJobDefinitionRequest {
|
|
1708
1719
|
JobDefinitionName: string | undefined;
|
|
1709
|
-
ModelExplainabilityBaselineConfig?:
|
|
1720
|
+
ModelExplainabilityBaselineConfig?:
|
|
1721
|
+
| ModelExplainabilityBaselineConfig
|
|
1722
|
+
| undefined;
|
|
1710
1723
|
ModelExplainabilityAppSpecification:
|
|
1711
1724
|
| ModelExplainabilityAppSpecification
|
|
1712
1725
|
| undefined;
|
|
1713
1726
|
ModelExplainabilityJobInput: ModelExplainabilityJobInput | undefined;
|
|
1714
1727
|
ModelExplainabilityJobOutputConfig: MonitoringOutputConfig | undefined;
|
|
1715
1728
|
JobResources: MonitoringResources | undefined;
|
|
1716
|
-
NetworkConfig?: MonitoringNetworkConfig;
|
|
1729
|
+
NetworkConfig?: MonitoringNetworkConfig | undefined;
|
|
1717
1730
|
RoleArn: string | undefined;
|
|
1718
|
-
StoppingCondition?: MonitoringStoppingCondition;
|
|
1719
|
-
Tags?: Tag[];
|
|
1731
|
+
StoppingCondition?: MonitoringStoppingCondition | undefined;
|
|
1732
|
+
Tags?: Tag[] | undefined;
|
|
1720
1733
|
}
|
|
1721
1734
|
export interface CreateModelExplainabilityJobDefinitionResponse {
|
|
1722
1735
|
JobDefinitionArn: string | undefined;
|
|
1723
1736
|
}
|
|
1724
1737
|
export interface FileSource {
|
|
1725
|
-
ContentType?: string;
|
|
1726
|
-
ContentDigest?: string;
|
|
1738
|
+
ContentType?: string | undefined;
|
|
1739
|
+
ContentDigest?: string | undefined;
|
|
1727
1740
|
S3Uri: string | undefined;
|
|
1728
1741
|
}
|
|
1729
1742
|
export interface DriftCheckBias {
|
|
1730
|
-
ConfigFile?: FileSource;
|
|
1731
|
-
PreTrainingConstraints?: MetricsSource;
|
|
1732
|
-
PostTrainingConstraints?: MetricsSource;
|
|
1743
|
+
ConfigFile?: FileSource | undefined;
|
|
1744
|
+
PreTrainingConstraints?: MetricsSource | undefined;
|
|
1745
|
+
PostTrainingConstraints?: MetricsSource | undefined;
|
|
1733
1746
|
}
|
|
1734
1747
|
export interface DriftCheckExplainability {
|
|
1735
|
-
Constraints?: MetricsSource;
|
|
1736
|
-
ConfigFile?: FileSource;
|
|
1748
|
+
Constraints?: MetricsSource | undefined;
|
|
1749
|
+
ConfigFile?: FileSource | undefined;
|
|
1737
1750
|
}
|
|
1738
1751
|
export interface DriftCheckModelDataQuality {
|
|
1739
|
-
Statistics?: MetricsSource;
|
|
1740
|
-
Constraints?: MetricsSource;
|
|
1752
|
+
Statistics?: MetricsSource | undefined;
|
|
1753
|
+
Constraints?: MetricsSource | undefined;
|
|
1741
1754
|
}
|
|
1742
1755
|
export interface DriftCheckModelQuality {
|
|
1743
|
-
Statistics?: MetricsSource;
|
|
1744
|
-
Constraints?: MetricsSource;
|
|
1756
|
+
Statistics?: MetricsSource | undefined;
|
|
1757
|
+
Constraints?: MetricsSource | undefined;
|
|
1745
1758
|
}
|
|
1746
1759
|
export interface DriftCheckBaselines {
|
|
1747
|
-
Bias?: DriftCheckBias;
|
|
1748
|
-
Explainability?: DriftCheckExplainability;
|
|
1749
|
-
ModelQuality?: DriftCheckModelQuality;
|
|
1750
|
-
ModelDataQuality?: DriftCheckModelDataQuality;
|
|
1760
|
+
Bias?: DriftCheckBias | undefined;
|
|
1761
|
+
Explainability?: DriftCheckExplainability | undefined;
|
|
1762
|
+
ModelQuality?: DriftCheckModelQuality | undefined;
|
|
1763
|
+
ModelDataQuality?: DriftCheckModelDataQuality | undefined;
|
|
1751
1764
|
}
|
|
1752
1765
|
export interface ModelPackageModelCard {
|
|
1753
|
-
ModelCardContent?: string;
|
|
1754
|
-
ModelCardStatus?: ModelCardStatus;
|
|
1766
|
+
ModelCardContent?: string | undefined;
|
|
1767
|
+
ModelCardStatus?: ModelCardStatus | undefined;
|
|
1755
1768
|
}
|
|
1756
1769
|
export interface ModelLifeCycle {
|
|
1757
1770
|
Stage: string | undefined;
|
|
1758
1771
|
StageStatus: string | undefined;
|
|
1759
|
-
StageDescription?: string;
|
|
1772
|
+
StageDescription?: string | undefined;
|
|
1760
1773
|
}
|
|
1761
1774
|
export interface Explainability {
|
|
1762
|
-
Report?: MetricsSource;
|
|
1775
|
+
Report?: MetricsSource | undefined;
|
|
1763
1776
|
}
|
|
1764
1777
|
export interface ModelDataQuality {
|
|
1765
|
-
Statistics?: MetricsSource;
|
|
1766
|
-
Constraints?: MetricsSource;
|
|
1778
|
+
Statistics?: MetricsSource | undefined;
|
|
1779
|
+
Constraints?: MetricsSource | undefined;
|
|
1767
1780
|
}
|
|
1768
1781
|
export interface ModelQuality {
|
|
1769
|
-
Statistics?: MetricsSource;
|
|
1770
|
-
Constraints?: MetricsSource;
|
|
1782
|
+
Statistics?: MetricsSource | undefined;
|
|
1783
|
+
Constraints?: MetricsSource | undefined;
|
|
1771
1784
|
}
|
|
1772
1785
|
export interface ModelMetrics {
|
|
1773
|
-
ModelQuality?: ModelQuality;
|
|
1774
|
-
ModelDataQuality?: ModelDataQuality;
|
|
1775
|
-
Bias?: Bias;
|
|
1776
|
-
Explainability?: Explainability;
|
|
1786
|
+
ModelQuality?: ModelQuality | undefined;
|
|
1787
|
+
ModelDataQuality?: ModelDataQuality | undefined;
|
|
1788
|
+
Bias?: Bias | undefined;
|
|
1789
|
+
Explainability?: Explainability | undefined;
|
|
1777
1790
|
}
|
|
1778
1791
|
export interface ModelPackageSecurityConfig {
|
|
1779
1792
|
KmsKeyId: string | undefined;
|
|
@@ -1785,8 +1798,8 @@ export declare const SkipModelValidation: {
|
|
|
1785
1798
|
export type SkipModelValidation =
|
|
1786
1799
|
(typeof SkipModelValidation)[keyof typeof SkipModelValidation];
|
|
1787
1800
|
export interface SourceAlgorithm {
|
|
1788
|
-
ModelDataUrl?: string;
|
|
1789
|
-
ModelDataSource?: ModelDataSource;
|
|
1801
|
+
ModelDataUrl?: string | undefined;
|
|
1802
|
+
ModelDataSource?: ModelDataSource | undefined;
|
|
1790
1803
|
AlgorithmName: string | undefined;
|
|
1791
1804
|
}
|
|
1792
1805
|
export interface SourceAlgorithmSpecification {
|
|
@@ -1801,37 +1814,39 @@ export interface ModelPackageValidationSpecification {
|
|
|
1801
1814
|
ValidationProfiles: ModelPackageValidationProfile[] | undefined;
|
|
1802
1815
|
}
|
|
1803
1816
|
export interface CreateModelPackageInput {
|
|
1804
|
-
ModelPackageName?: string;
|
|
1805
|
-
ModelPackageGroupName?: string;
|
|
1806
|
-
ModelPackageDescription?: string;
|
|
1807
|
-
InferenceSpecification?: InferenceSpecification;
|
|
1808
|
-
ValidationSpecification?: ModelPackageValidationSpecification;
|
|
1809
|
-
SourceAlgorithmSpecification?: SourceAlgorithmSpecification;
|
|
1810
|
-
CertifyForMarketplace?: boolean;
|
|
1811
|
-
Tags?: Tag[];
|
|
1812
|
-
ModelApprovalStatus?: ModelApprovalStatus;
|
|
1813
|
-
MetadataProperties?: MetadataProperties;
|
|
1814
|
-
ModelMetrics?: ModelMetrics;
|
|
1815
|
-
ClientToken?: string;
|
|
1816
|
-
Domain?: string;
|
|
1817
|
-
Task?: string;
|
|
1818
|
-
SamplePayloadUrl?: string;
|
|
1819
|
-
CustomerMetadataProperties?: Record<string, string
|
|
1820
|
-
DriftCheckBaselines?: DriftCheckBaselines;
|
|
1821
|
-
AdditionalInferenceSpecifications?:
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1817
|
+
ModelPackageName?: string | undefined;
|
|
1818
|
+
ModelPackageGroupName?: string | undefined;
|
|
1819
|
+
ModelPackageDescription?: string | undefined;
|
|
1820
|
+
InferenceSpecification?: InferenceSpecification | undefined;
|
|
1821
|
+
ValidationSpecification?: ModelPackageValidationSpecification | undefined;
|
|
1822
|
+
SourceAlgorithmSpecification?: SourceAlgorithmSpecification | undefined;
|
|
1823
|
+
CertifyForMarketplace?: boolean | undefined;
|
|
1824
|
+
Tags?: Tag[] | undefined;
|
|
1825
|
+
ModelApprovalStatus?: ModelApprovalStatus | undefined;
|
|
1826
|
+
MetadataProperties?: MetadataProperties | undefined;
|
|
1827
|
+
ModelMetrics?: ModelMetrics | undefined;
|
|
1828
|
+
ClientToken?: string | undefined;
|
|
1829
|
+
Domain?: string | undefined;
|
|
1830
|
+
Task?: string | undefined;
|
|
1831
|
+
SamplePayloadUrl?: string | undefined;
|
|
1832
|
+
CustomerMetadataProperties?: Record<string, string> | undefined;
|
|
1833
|
+
DriftCheckBaselines?: DriftCheckBaselines | undefined;
|
|
1834
|
+
AdditionalInferenceSpecifications?:
|
|
1835
|
+
| AdditionalInferenceSpecificationDefinition[]
|
|
1836
|
+
| undefined;
|
|
1837
|
+
SkipModelValidation?: SkipModelValidation | undefined;
|
|
1838
|
+
SourceUri?: string | undefined;
|
|
1839
|
+
SecurityConfig?: ModelPackageSecurityConfig | undefined;
|
|
1840
|
+
ModelCard?: ModelPackageModelCard | undefined;
|
|
1841
|
+
ModelLifeCycle?: ModelLifeCycle | undefined;
|
|
1827
1842
|
}
|
|
1828
1843
|
export interface CreateModelPackageOutput {
|
|
1829
1844
|
ModelPackageArn: string | undefined;
|
|
1830
1845
|
}
|
|
1831
1846
|
export interface CreateModelPackageGroupInput {
|
|
1832
1847
|
ModelPackageGroupName: string | undefined;
|
|
1833
|
-
ModelPackageGroupDescription?: string;
|
|
1834
|
-
Tags?: Tag[];
|
|
1848
|
+
ModelPackageGroupDescription?: string | undefined;
|
|
1849
|
+
Tags?: Tag[] | undefined;
|
|
1835
1850
|
}
|
|
1836
1851
|
export interface CreateModelPackageGroupOutput {
|
|
1837
1852
|
ModelPackageGroupArn: string | undefined;
|
|
@@ -1845,67 +1860,67 @@ export type MonitoringProblemType =
|
|
|
1845
1860
|
(typeof MonitoringProblemType)[keyof typeof MonitoringProblemType];
|
|
1846
1861
|
export interface ModelQualityAppSpecification {
|
|
1847
1862
|
ImageUri: string | undefined;
|
|
1848
|
-
ContainerEntrypoint?: string[];
|
|
1849
|
-
ContainerArguments?: string[];
|
|
1850
|
-
RecordPreprocessorSourceUri?: string;
|
|
1851
|
-
PostAnalyticsProcessorSourceUri?: string;
|
|
1852
|
-
ProblemType?: MonitoringProblemType;
|
|
1853
|
-
Environment?: Record<string, string
|
|
1863
|
+
ContainerEntrypoint?: string[] | undefined;
|
|
1864
|
+
ContainerArguments?: string[] | undefined;
|
|
1865
|
+
RecordPreprocessorSourceUri?: string | undefined;
|
|
1866
|
+
PostAnalyticsProcessorSourceUri?: string | undefined;
|
|
1867
|
+
ProblemType?: MonitoringProblemType | undefined;
|
|
1868
|
+
Environment?: Record<string, string> | undefined;
|
|
1854
1869
|
}
|
|
1855
1870
|
export interface ModelQualityBaselineConfig {
|
|
1856
|
-
BaseliningJobName?: string;
|
|
1857
|
-
ConstraintsResource?: MonitoringConstraintsResource;
|
|
1871
|
+
BaseliningJobName?: string | undefined;
|
|
1872
|
+
ConstraintsResource?: MonitoringConstraintsResource | undefined;
|
|
1858
1873
|
}
|
|
1859
1874
|
export interface ModelQualityJobInput {
|
|
1860
|
-
EndpointInput?: EndpointInput;
|
|
1861
|
-
BatchTransformInput?: BatchTransformInput;
|
|
1875
|
+
EndpointInput?: EndpointInput | undefined;
|
|
1876
|
+
BatchTransformInput?: BatchTransformInput | undefined;
|
|
1862
1877
|
GroundTruthS3Input: MonitoringGroundTruthS3Input | undefined;
|
|
1863
1878
|
}
|
|
1864
1879
|
export interface CreateModelQualityJobDefinitionRequest {
|
|
1865
1880
|
JobDefinitionName: string | undefined;
|
|
1866
|
-
ModelQualityBaselineConfig?: ModelQualityBaselineConfig;
|
|
1881
|
+
ModelQualityBaselineConfig?: ModelQualityBaselineConfig | undefined;
|
|
1867
1882
|
ModelQualityAppSpecification: ModelQualityAppSpecification | undefined;
|
|
1868
1883
|
ModelQualityJobInput: ModelQualityJobInput | undefined;
|
|
1869
1884
|
ModelQualityJobOutputConfig: MonitoringOutputConfig | undefined;
|
|
1870
1885
|
JobResources: MonitoringResources | undefined;
|
|
1871
|
-
NetworkConfig?: MonitoringNetworkConfig;
|
|
1886
|
+
NetworkConfig?: MonitoringNetworkConfig | undefined;
|
|
1872
1887
|
RoleArn: string | undefined;
|
|
1873
|
-
StoppingCondition?: MonitoringStoppingCondition;
|
|
1874
|
-
Tags?: Tag[];
|
|
1888
|
+
StoppingCondition?: MonitoringStoppingCondition | undefined;
|
|
1889
|
+
Tags?: Tag[] | undefined;
|
|
1875
1890
|
}
|
|
1876
1891
|
export interface CreateModelQualityJobDefinitionResponse {
|
|
1877
1892
|
JobDefinitionArn: string | undefined;
|
|
1878
1893
|
}
|
|
1879
1894
|
export interface MonitoringBaselineConfig {
|
|
1880
|
-
BaseliningJobName?: string;
|
|
1881
|
-
ConstraintsResource?: MonitoringConstraintsResource;
|
|
1882
|
-
StatisticsResource?: MonitoringStatisticsResource;
|
|
1895
|
+
BaseliningJobName?: string | undefined;
|
|
1896
|
+
ConstraintsResource?: MonitoringConstraintsResource | undefined;
|
|
1897
|
+
StatisticsResource?: MonitoringStatisticsResource | undefined;
|
|
1883
1898
|
}
|
|
1884
1899
|
export interface MonitoringAppSpecification {
|
|
1885
1900
|
ImageUri: string | undefined;
|
|
1886
|
-
ContainerEntrypoint?: string[];
|
|
1887
|
-
ContainerArguments?: string[];
|
|
1888
|
-
RecordPreprocessorSourceUri?: string;
|
|
1889
|
-
PostAnalyticsProcessorSourceUri?: string;
|
|
1901
|
+
ContainerEntrypoint?: string[] | undefined;
|
|
1902
|
+
ContainerArguments?: string[] | undefined;
|
|
1903
|
+
RecordPreprocessorSourceUri?: string | undefined;
|
|
1904
|
+
PostAnalyticsProcessorSourceUri?: string | undefined;
|
|
1890
1905
|
}
|
|
1891
1906
|
export interface MonitoringInput {
|
|
1892
|
-
EndpointInput?: EndpointInput;
|
|
1893
|
-
BatchTransformInput?: BatchTransformInput;
|
|
1907
|
+
EndpointInput?: EndpointInput | undefined;
|
|
1908
|
+
BatchTransformInput?: BatchTransformInput | undefined;
|
|
1894
1909
|
}
|
|
1895
1910
|
export interface NetworkConfig {
|
|
1896
|
-
EnableInterContainerTrafficEncryption?: boolean;
|
|
1897
|
-
EnableNetworkIsolation?: boolean;
|
|
1898
|
-
VpcConfig?: VpcConfig;
|
|
1911
|
+
EnableInterContainerTrafficEncryption?: boolean | undefined;
|
|
1912
|
+
EnableNetworkIsolation?: boolean | undefined;
|
|
1913
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1899
1914
|
}
|
|
1900
1915
|
export interface MonitoringJobDefinition {
|
|
1901
|
-
BaselineConfig?: MonitoringBaselineConfig;
|
|
1916
|
+
BaselineConfig?: MonitoringBaselineConfig | undefined;
|
|
1902
1917
|
MonitoringInputs: MonitoringInput[] | undefined;
|
|
1903
1918
|
MonitoringOutputConfig: MonitoringOutputConfig | undefined;
|
|
1904
1919
|
MonitoringResources: MonitoringResources | undefined;
|
|
1905
1920
|
MonitoringAppSpecification: MonitoringAppSpecification | undefined;
|
|
1906
|
-
StoppingCondition?: MonitoringStoppingCondition;
|
|
1907
|
-
Environment?: Record<string, string
|
|
1908
|
-
NetworkConfig?: NetworkConfig;
|
|
1921
|
+
StoppingCondition?: MonitoringStoppingCondition | undefined;
|
|
1922
|
+
Environment?: Record<string, string> | undefined;
|
|
1923
|
+
NetworkConfig?: NetworkConfig | undefined;
|
|
1909
1924
|
RoleArn: string | undefined;
|
|
1910
1925
|
}
|
|
1911
1926
|
export declare const MonitoringType: {
|
|
@@ -1918,19 +1933,19 @@ export type MonitoringType =
|
|
|
1918
1933
|
(typeof MonitoringType)[keyof typeof MonitoringType];
|
|
1919
1934
|
export interface ScheduleConfig {
|
|
1920
1935
|
ScheduleExpression: string | undefined;
|
|
1921
|
-
DataAnalysisStartTime?: string;
|
|
1922
|
-
DataAnalysisEndTime?: string;
|
|
1936
|
+
DataAnalysisStartTime?: string | undefined;
|
|
1937
|
+
DataAnalysisEndTime?: string | undefined;
|
|
1923
1938
|
}
|
|
1924
1939
|
export interface MonitoringScheduleConfig {
|
|
1925
|
-
ScheduleConfig?: ScheduleConfig;
|
|
1926
|
-
MonitoringJobDefinition?: MonitoringJobDefinition;
|
|
1927
|
-
MonitoringJobDefinitionName?: string;
|
|
1928
|
-
MonitoringType?: MonitoringType;
|
|
1940
|
+
ScheduleConfig?: ScheduleConfig | undefined;
|
|
1941
|
+
MonitoringJobDefinition?: MonitoringJobDefinition | undefined;
|
|
1942
|
+
MonitoringJobDefinitionName?: string | undefined;
|
|
1943
|
+
MonitoringType?: MonitoringType | undefined;
|
|
1929
1944
|
}
|
|
1930
1945
|
export interface CreateMonitoringScheduleRequest {
|
|
1931
1946
|
MonitoringScheduleName: string | undefined;
|
|
1932
1947
|
MonitoringScheduleConfig: MonitoringScheduleConfig | undefined;
|
|
1933
|
-
Tags?: Tag[];
|
|
1948
|
+
Tags?: Tag[] | undefined;
|
|
1934
1949
|
}
|
|
1935
1950
|
export interface CreateMonitoringScheduleResponse {
|
|
1936
1951
|
MonitoringScheduleArn: string | undefined;
|
|
@@ -1962,34 +1977,36 @@ export type RootAccess = (typeof RootAccess)[keyof typeof RootAccess];
|
|
|
1962
1977
|
export interface CreateNotebookInstanceInput {
|
|
1963
1978
|
NotebookInstanceName: string | undefined;
|
|
1964
1979
|
InstanceType: _InstanceType | undefined;
|
|
1965
|
-
SubnetId?: string;
|
|
1966
|
-
SecurityGroupIds?: string[];
|
|
1980
|
+
SubnetId?: string | undefined;
|
|
1981
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1967
1982
|
RoleArn: string | undefined;
|
|
1968
|
-
KmsKeyId?: string;
|
|
1969
|
-
Tags?: Tag[];
|
|
1970
|
-
LifecycleConfigName?: string;
|
|
1971
|
-
DirectInternetAccess?: DirectInternetAccess;
|
|
1972
|
-
VolumeSizeInGB?: number;
|
|
1973
|
-
AcceleratorTypes?: NotebookInstanceAcceleratorType[];
|
|
1974
|
-
DefaultCodeRepository?: string;
|
|
1975
|
-
AdditionalCodeRepositories?: string[];
|
|
1976
|
-
RootAccess?: RootAccess;
|
|
1977
|
-
PlatformIdentifier?: string;
|
|
1978
|
-
InstanceMetadataServiceConfiguration?:
|
|
1983
|
+
KmsKeyId?: string | undefined;
|
|
1984
|
+
Tags?: Tag[] | undefined;
|
|
1985
|
+
LifecycleConfigName?: string | undefined;
|
|
1986
|
+
DirectInternetAccess?: DirectInternetAccess | undefined;
|
|
1987
|
+
VolumeSizeInGB?: number | undefined;
|
|
1988
|
+
AcceleratorTypes?: NotebookInstanceAcceleratorType[] | undefined;
|
|
1989
|
+
DefaultCodeRepository?: string | undefined;
|
|
1990
|
+
AdditionalCodeRepositories?: string[] | undefined;
|
|
1991
|
+
RootAccess?: RootAccess | undefined;
|
|
1992
|
+
PlatformIdentifier?: string | undefined;
|
|
1993
|
+
InstanceMetadataServiceConfiguration?:
|
|
1994
|
+
| InstanceMetadataServiceConfiguration
|
|
1995
|
+
| undefined;
|
|
1979
1996
|
}
|
|
1980
1997
|
export interface CreateNotebookInstanceOutput {
|
|
1981
|
-
NotebookInstanceArn?: string;
|
|
1998
|
+
NotebookInstanceArn?: string | undefined;
|
|
1982
1999
|
}
|
|
1983
2000
|
export interface NotebookInstanceLifecycleHook {
|
|
1984
|
-
Content?: string;
|
|
2001
|
+
Content?: string | undefined;
|
|
1985
2002
|
}
|
|
1986
2003
|
export interface CreateNotebookInstanceLifecycleConfigInput {
|
|
1987
2004
|
NotebookInstanceLifecycleConfigName: string | undefined;
|
|
1988
|
-
OnCreate?: NotebookInstanceLifecycleHook[];
|
|
1989
|
-
OnStart?: NotebookInstanceLifecycleHook[];
|
|
2005
|
+
OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
|
|
2006
|
+
OnStart?: NotebookInstanceLifecycleHook[] | undefined;
|
|
1990
2007
|
}
|
|
1991
2008
|
export interface CreateNotebookInstanceLifecycleConfigOutput {
|
|
1992
|
-
NotebookInstanceLifecycleConfigArn?: string;
|
|
2009
|
+
NotebookInstanceLifecycleConfigArn?: string | undefined;
|
|
1993
2010
|
}
|
|
1994
2011
|
export declare const OptimizationJobDeploymentInstanceType: {
|
|
1995
2012
|
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
@@ -2025,19 +2042,19 @@ export interface OptimizationModelAccessConfig {
|
|
|
2025
2042
|
AcceptEula: boolean | undefined;
|
|
2026
2043
|
}
|
|
2027
2044
|
export interface OptimizationJobModelSourceS3 {
|
|
2028
|
-
S3Uri?: string;
|
|
2029
|
-
ModelAccessConfig?: OptimizationModelAccessConfig;
|
|
2045
|
+
S3Uri?: string | undefined;
|
|
2046
|
+
ModelAccessConfig?: OptimizationModelAccessConfig | undefined;
|
|
2030
2047
|
}
|
|
2031
2048
|
export interface OptimizationJobModelSource {
|
|
2032
|
-
S3?: OptimizationJobModelSourceS3;
|
|
2049
|
+
S3?: OptimizationJobModelSourceS3 | undefined;
|
|
2033
2050
|
}
|
|
2034
2051
|
export interface ModelCompilationConfig {
|
|
2035
|
-
Image?: string;
|
|
2036
|
-
OverrideEnvironment?: Record<string, string
|
|
2052
|
+
Image?: string | undefined;
|
|
2053
|
+
OverrideEnvironment?: Record<string, string> | undefined;
|
|
2037
2054
|
}
|
|
2038
2055
|
export interface ModelQuantizationConfig {
|
|
2039
|
-
Image?: string;
|
|
2040
|
-
OverrideEnvironment?: Record<string, string
|
|
2056
|
+
Image?: string | undefined;
|
|
2057
|
+
OverrideEnvironment?: Record<string, string> | undefined;
|
|
2041
2058
|
}
|
|
2042
2059
|
export type OptimizationConfig =
|
|
2043
2060
|
| OptimizationConfig.ModelCompilationConfigMember
|
|
@@ -2067,7 +2084,7 @@ export declare namespace OptimizationConfig {
|
|
|
2067
2084
|
const visit: <T>(value: OptimizationConfig, visitor: Visitor<T>) => T;
|
|
2068
2085
|
}
|
|
2069
2086
|
export interface OptimizationJobOutputConfig {
|
|
2070
|
-
KmsKeyId?: string;
|
|
2087
|
+
KmsKeyId?: string | undefined;
|
|
2071
2088
|
S3OutputLocation: string | undefined;
|
|
2072
2089
|
}
|
|
2073
2090
|
export interface OptimizationVpcConfig {
|
|
@@ -2079,12 +2096,12 @@ export interface CreateOptimizationJobRequest {
|
|
|
2079
2096
|
RoleArn: string | undefined;
|
|
2080
2097
|
ModelSource: OptimizationJobModelSource | undefined;
|
|
2081
2098
|
DeploymentInstanceType: OptimizationJobDeploymentInstanceType | undefined;
|
|
2082
|
-
OptimizationEnvironment?: Record<string, string
|
|
2099
|
+
OptimizationEnvironment?: Record<string, string> | undefined;
|
|
2083
2100
|
OptimizationConfigs: OptimizationConfig[] | undefined;
|
|
2084
2101
|
OutputConfig: OptimizationJobOutputConfig | undefined;
|
|
2085
2102
|
StoppingCondition: StoppingCondition | undefined;
|
|
2086
|
-
Tags?: Tag[];
|
|
2087
|
-
VpcConfig?: OptimizationVpcConfig;
|
|
2103
|
+
Tags?: Tag[] | undefined;
|
|
2104
|
+
VpcConfig?: OptimizationVpcConfig | undefined;
|
|
2088
2105
|
}
|
|
2089
2106
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
2090
2107
|
obj: CreateModelCardRequest
|