@aws-sdk/client-sagemaker 3.943.0 → 3.944.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 +210 -20
- package/dist-es/models/enums.js +22 -0
- package/dist-es/schemas/schemas_0.js +184 -20
- package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +7 -0
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +9 -0
- package/dist-types/commands/CreateComputeQuotaCommand.d.ts +2 -1
- package/dist-types/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateModelPackageCommand.d.ts +13 -0
- package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +21 -0
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +9 -0
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +13 -0
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +4 -0
- package/dist-types/commands/DescribeProjectCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReservedCapacityCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSubscribedWorkteamCommand.d.ts +1 -2
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +33 -0
- package/dist-types/commands/ListModelPackagesCommand.d.ts +1 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +32 -0
- package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/ListSpacesCommand.d.ts +1 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -2
- package/dist-types/commands/SearchCommand.d.ts +29 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateModelPackageCommand.d.ts +13 -0
- package/dist-types/models/enums.d.ts +62 -0
- package/dist-types/models/models_0.d.ts +115 -142
- package/dist-types/models/models_1.d.ts +146 -182
- package/dist-types/models/models_2.d.ts +302 -346
- package/dist-types/models/models_3.d.ts +4135 -4034
- package/dist-types/models/models_4.d.ts +420 -4
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateComputeQuotaCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeProjectCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeReservedCapacityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeSpaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeSubscribedWorkteamCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +31 -0
- package/dist-types/ts3.4/models/models_0.d.ts +30 -35
- package/dist-types/ts3.4/models/models_1.d.ts +37 -48
- package/dist-types/ts3.4/models/models_2.d.ts +78 -100
- package/dist-types/ts3.4/models/models_3.d.ts +139 -105
- package/dist-types/ts3.4/models/models_4.d.ts +116 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
ListStudioLifecycleConfigsRequest,
|
|
5
5
|
ListStudioLifecycleConfigsResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_4";
|
|
7
7
|
import {
|
|
8
8
|
SageMakerClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
ListSubscribedWorkteamsRequest,
|
|
5
|
+
ListSubscribedWorkteamsResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
5
7
|
import {
|
|
6
8
|
SageMakerClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -1223,6 +1223,12 @@ export declare const ModelApprovalStatus: {
|
|
|
1223
1223
|
};
|
|
1224
1224
|
export type ModelApprovalStatus =
|
|
1225
1225
|
(typeof ModelApprovalStatus)[keyof typeof ModelApprovalStatus];
|
|
1226
|
+
export declare const ModelPackageRegistrationType: {
|
|
1227
|
+
readonly LOGGED: "Logged";
|
|
1228
|
+
readonly REGISTERED: "Registered";
|
|
1229
|
+
};
|
|
1230
|
+
export type ModelPackageRegistrationType =
|
|
1231
|
+
(typeof ModelPackageRegistrationType)[keyof typeof ModelPackageRegistrationType];
|
|
1226
1232
|
export declare const ModelPackageStatus: {
|
|
1227
1233
|
readonly COMPLETED: "Completed";
|
|
1228
1234
|
readonly DELETING: "Deleting";
|
|
@@ -2548,6 +2554,31 @@ export declare const StudioLifecycleConfigAppType: {
|
|
|
2548
2554
|
};
|
|
2549
2555
|
export type StudioLifecycleConfigAppType =
|
|
2550
2556
|
(typeof StudioLifecycleConfigAppType)[keyof typeof StudioLifecycleConfigAppType];
|
|
2557
|
+
export declare const CustomizationTechnique: {
|
|
2558
|
+
readonly DPO: "DPO";
|
|
2559
|
+
readonly RLAIF: "RLAIF";
|
|
2560
|
+
readonly RLVR: "RLVR";
|
|
2561
|
+
readonly SFT: "SFT";
|
|
2562
|
+
};
|
|
2563
|
+
export type CustomizationTechnique =
|
|
2564
|
+
(typeof CustomizationTechnique)[keyof typeof CustomizationTechnique];
|
|
2565
|
+
export declare const EvaluationType: {
|
|
2566
|
+
readonly BENCHMARK_EVALUATION: "BenchmarkEvaluation";
|
|
2567
|
+
readonly CUSTOM_SCORER_EVALUATION: "CustomScorerEvaluation";
|
|
2568
|
+
readonly LLMAJ_EVALUATION: "LLMAJEvaluation";
|
|
2569
|
+
};
|
|
2570
|
+
export type EvaluationType =
|
|
2571
|
+
(typeof EvaluationType)[keyof typeof EvaluationType];
|
|
2572
|
+
export declare const ServerlessJobType: {
|
|
2573
|
+
readonly EVALUATION: "Evaluation";
|
|
2574
|
+
readonly FINE_TUNING: "FineTuning";
|
|
2575
|
+
};
|
|
2576
|
+
export type ServerlessJobType =
|
|
2577
|
+
(typeof ServerlessJobType)[keyof typeof ServerlessJobType];
|
|
2578
|
+
export declare const Peft: {
|
|
2579
|
+
readonly LORA: "LORA";
|
|
2580
|
+
};
|
|
2581
|
+
export type Peft = (typeof Peft)[keyof typeof Peft];
|
|
2551
2582
|
export declare const JoinSource: {
|
|
2552
2583
|
readonly INPUT: "Input";
|
|
2553
2584
|
readonly NONE: "None";
|
|
@@ -73,6 +73,7 @@ import {
|
|
|
73
73
|
ModelApprovalStatus,
|
|
74
74
|
ModelCacheSetting,
|
|
75
75
|
ModelCompressionType,
|
|
76
|
+
ModelPackageRegistrationType,
|
|
76
77
|
ModelPackageStatus,
|
|
77
78
|
NodeUnavailabilityType,
|
|
78
79
|
ObjectiveStatus,
|
|
@@ -143,6 +144,11 @@ export interface AdditionalS3DataSource {
|
|
|
143
144
|
CompressionType?: CompressionType | undefined;
|
|
144
145
|
ETag?: string | undefined;
|
|
145
146
|
}
|
|
147
|
+
export interface BaseModel {
|
|
148
|
+
HubContentName?: string | undefined;
|
|
149
|
+
HubContentVersion?: string | undefined;
|
|
150
|
+
RecipeName?: string | undefined;
|
|
151
|
+
}
|
|
146
152
|
export interface InferenceHubAccessConfig {
|
|
147
153
|
HubContentArn: string | undefined;
|
|
148
154
|
}
|
|
@@ -179,6 +185,8 @@ export interface ModelPackageContainerDefinition {
|
|
|
179
185
|
NearestModelName?: string | undefined;
|
|
180
186
|
AdditionalS3DataSource?: AdditionalS3DataSource | undefined;
|
|
181
187
|
ModelDataETag?: string | undefined;
|
|
188
|
+
IsCheckpoint?: boolean | undefined;
|
|
189
|
+
BaseModel?: BaseModel | undefined;
|
|
182
190
|
}
|
|
183
191
|
export interface AdditionalInferenceSpecificationDefinition {
|
|
184
192
|
Name: string | undefined;
|
|
@@ -253,6 +261,9 @@ export interface AlgorithmSummary {
|
|
|
253
261
|
CreationTime: Date | undefined;
|
|
254
262
|
AlgorithmStatus: AlgorithmStatus | undefined;
|
|
255
263
|
}
|
|
264
|
+
export interface DatasetSource {
|
|
265
|
+
DatasetArn: string | undefined;
|
|
266
|
+
}
|
|
256
267
|
export interface FileSystemDataSource {
|
|
257
268
|
FileSystemId: string | undefined;
|
|
258
269
|
FileSystemAccessMode: FileSystemAccessMode | undefined;
|
|
@@ -274,6 +285,7 @@ export interface S3DataSource {
|
|
|
274
285
|
export interface DataSource {
|
|
275
286
|
S3DataSource?: S3DataSource | undefined;
|
|
276
287
|
FileSystemDataSource?: FileSystemDataSource | undefined;
|
|
288
|
+
DatasetSource?: DatasetSource | undefined;
|
|
277
289
|
}
|
|
278
290
|
export interface ShuffleConfig {
|
|
279
291
|
Seed: number | undefined;
|
|
@@ -468,6 +480,10 @@ export interface AssociateTrialComponentResponse {
|
|
|
468
480
|
TrialComponentArn?: string | undefined;
|
|
469
481
|
TrialArn?: string | undefined;
|
|
470
482
|
}
|
|
483
|
+
export interface AssociationInfo {
|
|
484
|
+
SourceArn: string | undefined;
|
|
485
|
+
DestinationArn: string | undefined;
|
|
486
|
+
}
|
|
471
487
|
export interface IamIdentity {
|
|
472
488
|
Arn?: string | undefined;
|
|
473
489
|
PrincipalId?: string | undefined;
|
|
@@ -912,6 +928,7 @@ export interface BatchDescribeModelPackageSummary {
|
|
|
912
928
|
InferenceSpecification: InferenceSpecification | undefined;
|
|
913
929
|
ModelPackageStatus: ModelPackageStatus | undefined;
|
|
914
930
|
ModelApprovalStatus?: ModelApprovalStatus | undefined;
|
|
931
|
+
ModelPackageRegistrationType?: ModelPackageRegistrationType | undefined;
|
|
915
932
|
}
|
|
916
933
|
export interface BatchDescribeModelPackageOutput {
|
|
917
934
|
ModelPackageSummaries?:
|
|
@@ -989,6 +1006,18 @@ export interface BatchTransformInput {
|
|
|
989
1006
|
EndTimeOffset?: string | undefined;
|
|
990
1007
|
ExcludeFeaturesAttribute?: string | undefined;
|
|
991
1008
|
}
|
|
1009
|
+
export interface BedrockCustomModelDeploymentMetadata {
|
|
1010
|
+
Arn?: string | undefined;
|
|
1011
|
+
}
|
|
1012
|
+
export interface BedrockCustomModelMetadata {
|
|
1013
|
+
Arn?: string | undefined;
|
|
1014
|
+
}
|
|
1015
|
+
export interface BedrockModelImportMetadata {
|
|
1016
|
+
Arn?: string | undefined;
|
|
1017
|
+
}
|
|
1018
|
+
export interface BedrockProvisionedModelThroughputMetadata {
|
|
1019
|
+
Arn?: string | undefined;
|
|
1020
|
+
}
|
|
992
1021
|
export interface BestObjectiveNotImproving {
|
|
993
1022
|
MaxNumberOfTrainingJobsNotImproving?: number | undefined;
|
|
994
1023
|
}
|
|
@@ -1455,7 +1484,7 @@ export interface ClusterOrchestratorEksConfig {
|
|
|
1455
1484
|
ClusterArn: string | undefined;
|
|
1456
1485
|
}
|
|
1457
1486
|
export interface ClusterOrchestrator {
|
|
1458
|
-
Eks
|
|
1487
|
+
Eks: ClusterOrchestratorEksConfig | undefined;
|
|
1459
1488
|
}
|
|
1460
1489
|
export interface FSxLustreConfig {
|
|
1461
1490
|
SizeInGiB: number | undefined;
|
|
@@ -1907,37 +1936,3 @@ export interface CreateComputeQuotaRequest {
|
|
|
1907
1936
|
ActivationState?: ActivationState | undefined;
|
|
1908
1937
|
Tags?: Tag[] | undefined;
|
|
1909
1938
|
}
|
|
1910
|
-
export interface CreateComputeQuotaResponse {
|
|
1911
|
-
ComputeQuotaArn: string | undefined;
|
|
1912
|
-
ComputeQuotaId: string | undefined;
|
|
1913
|
-
}
|
|
1914
|
-
export interface CreateContextRequest {
|
|
1915
|
-
ContextName: string | undefined;
|
|
1916
|
-
Source: ContextSource | undefined;
|
|
1917
|
-
ContextType: string | undefined;
|
|
1918
|
-
Description?: string | undefined;
|
|
1919
|
-
Properties?: Record<string, string> | undefined;
|
|
1920
|
-
Tags?: Tag[] | undefined;
|
|
1921
|
-
}
|
|
1922
|
-
export interface CreateContextResponse {
|
|
1923
|
-
ContextArn?: string | undefined;
|
|
1924
|
-
}
|
|
1925
|
-
export interface DataQualityAppSpecification {
|
|
1926
|
-
ImageUri: string | undefined;
|
|
1927
|
-
ContainerEntrypoint?: string[] | undefined;
|
|
1928
|
-
ContainerArguments?: string[] | undefined;
|
|
1929
|
-
RecordPreprocessorSourceUri?: string | undefined;
|
|
1930
|
-
PostAnalyticsProcessorSourceUri?: string | undefined;
|
|
1931
|
-
Environment?: Record<string, string> | undefined;
|
|
1932
|
-
}
|
|
1933
|
-
export interface MonitoringConstraintsResource {
|
|
1934
|
-
S3Uri?: string | undefined;
|
|
1935
|
-
}
|
|
1936
|
-
export interface MonitoringStatisticsResource {
|
|
1937
|
-
S3Uri?: string | undefined;
|
|
1938
|
-
}
|
|
1939
|
-
export interface DataQualityBaselineConfig {
|
|
1940
|
-
BaseliningJobName?: string | undefined;
|
|
1941
|
-
ConstraintsResource?: MonitoringConstraintsResource | undefined;
|
|
1942
|
-
StatisticsResource?: MonitoringStatisticsResource | undefined;
|
|
1943
|
-
}
|
|
@@ -37,6 +37,7 @@ import {
|
|
|
37
37
|
ModelApprovalStatus,
|
|
38
38
|
ModelCardStatus,
|
|
39
39
|
ModelInfrastructureType,
|
|
40
|
+
ModelPackageRegistrationType,
|
|
40
41
|
ModelRegistrationMode,
|
|
41
42
|
ModelSpeculativeDecodingS3DataType,
|
|
42
43
|
ModelSpeculativeDecodingTechnique,
|
|
@@ -69,7 +70,6 @@ import {
|
|
|
69
70
|
SharingType,
|
|
70
71
|
SkipModelValidation,
|
|
71
72
|
StorageType,
|
|
72
|
-
StudioLifecycleConfigAppType,
|
|
73
73
|
StudioWebPortal,
|
|
74
74
|
TableFormat,
|
|
75
75
|
TagPropagation,
|
|
@@ -111,21 +111,17 @@ import {
|
|
|
111
111
|
CodeEditorAppSettings,
|
|
112
112
|
CodeRepository,
|
|
113
113
|
CollectionConfig,
|
|
114
|
-
CollectionConfiguration,
|
|
115
114
|
ContainerDefinition,
|
|
115
|
+
ContextSource,
|
|
116
116
|
ContinuousParameterRange,
|
|
117
117
|
ConvergenceDetected,
|
|
118
118
|
CustomImage,
|
|
119
|
-
DataQualityAppSpecification,
|
|
120
|
-
DataQualityBaselineConfig,
|
|
121
119
|
HyperParameterTuningJobObjective,
|
|
122
120
|
InferenceSpecification,
|
|
123
121
|
MetadataProperties,
|
|
124
122
|
MetricDefinition,
|
|
125
123
|
MetricsSource,
|
|
126
124
|
ModelDataSource,
|
|
127
|
-
MonitoringConstraintsResource,
|
|
128
|
-
MonitoringStatisticsResource,
|
|
129
125
|
OutputDataConfig,
|
|
130
126
|
ResourceConfig,
|
|
131
127
|
ResourceSpec,
|
|
@@ -134,6 +130,40 @@ import {
|
|
|
134
130
|
TransformJobDefinition,
|
|
135
131
|
VpcConfig,
|
|
136
132
|
} from "./models_0";
|
|
133
|
+
export interface CreateComputeQuotaResponse {
|
|
134
|
+
ComputeQuotaArn: string | undefined;
|
|
135
|
+
ComputeQuotaId: string | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface CreateContextRequest {
|
|
138
|
+
ContextName: string | undefined;
|
|
139
|
+
Source: ContextSource | undefined;
|
|
140
|
+
ContextType: string | undefined;
|
|
141
|
+
Description?: string | undefined;
|
|
142
|
+
Properties?: Record<string, string> | undefined;
|
|
143
|
+
Tags?: Tag[] | undefined;
|
|
144
|
+
}
|
|
145
|
+
export interface CreateContextResponse {
|
|
146
|
+
ContextArn?: string | undefined;
|
|
147
|
+
}
|
|
148
|
+
export interface DataQualityAppSpecification {
|
|
149
|
+
ImageUri: string | undefined;
|
|
150
|
+
ContainerEntrypoint?: string[] | undefined;
|
|
151
|
+
ContainerArguments?: string[] | undefined;
|
|
152
|
+
RecordPreprocessorSourceUri?: string | undefined;
|
|
153
|
+
PostAnalyticsProcessorSourceUri?: string | undefined;
|
|
154
|
+
Environment?: Record<string, string> | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface MonitoringConstraintsResource {
|
|
157
|
+
S3Uri?: string | undefined;
|
|
158
|
+
}
|
|
159
|
+
export interface MonitoringStatisticsResource {
|
|
160
|
+
S3Uri?: string | undefined;
|
|
161
|
+
}
|
|
162
|
+
export interface DataQualityBaselineConfig {
|
|
163
|
+
BaseliningJobName?: string | undefined;
|
|
164
|
+
ConstraintsResource?: MonitoringConstraintsResource | undefined;
|
|
165
|
+
StatisticsResource?: MonitoringStatisticsResource | undefined;
|
|
166
|
+
}
|
|
137
167
|
export interface EndpointInput {
|
|
138
168
|
EndpointName: string | undefined;
|
|
139
169
|
LocalPath: string | undefined;
|
|
@@ -1294,6 +1324,7 @@ export interface CreateModelPackageInput {
|
|
|
1294
1324
|
ModelPackageName?: string | undefined;
|
|
1295
1325
|
ModelPackageGroupName?: string | undefined;
|
|
1296
1326
|
ModelPackageDescription?: string | undefined;
|
|
1327
|
+
ModelPackageRegistrationType?: ModelPackageRegistrationType | undefined;
|
|
1297
1328
|
InferenceSpecification?: InferenceSpecification | undefined;
|
|
1298
1329
|
ValidationSpecification?: ModelPackageValidationSpecification | undefined;
|
|
1299
1330
|
SourceAlgorithmSpecification?: SourceAlgorithmSpecification | undefined;
|
|
@@ -1862,45 +1893,3 @@ export interface CreateSpaceRequest {
|
|
|
1862
1893
|
export interface CreateSpaceResponse {
|
|
1863
1894
|
SpaceArn?: string | undefined;
|
|
1864
1895
|
}
|
|
1865
|
-
export interface CreateStudioLifecycleConfigRequest {
|
|
1866
|
-
StudioLifecycleConfigName: string | undefined;
|
|
1867
|
-
StudioLifecycleConfigContent: string | undefined;
|
|
1868
|
-
StudioLifecycleConfigAppType: StudioLifecycleConfigAppType | undefined;
|
|
1869
|
-
Tags?: Tag[] | undefined;
|
|
1870
|
-
}
|
|
1871
|
-
export interface CreateStudioLifecycleConfigResponse {
|
|
1872
|
-
StudioLifecycleConfigArn?: string | undefined;
|
|
1873
|
-
}
|
|
1874
|
-
export interface DebugHookConfig {
|
|
1875
|
-
LocalPath?: string | undefined;
|
|
1876
|
-
S3OutputPath: string | undefined;
|
|
1877
|
-
HookParameters?: Record<string, string> | undefined;
|
|
1878
|
-
CollectionConfigurations?: CollectionConfiguration[] | undefined;
|
|
1879
|
-
}
|
|
1880
|
-
export interface DebugRuleConfiguration {
|
|
1881
|
-
RuleConfigurationName: string | undefined;
|
|
1882
|
-
LocalPath?: string | undefined;
|
|
1883
|
-
S3OutputPath?: string | undefined;
|
|
1884
|
-
RuleEvaluatorImage: string | undefined;
|
|
1885
|
-
InstanceType?: ProcessingInstanceType | undefined;
|
|
1886
|
-
VolumeSizeInGB?: number | undefined;
|
|
1887
|
-
RuleParameters?: Record<string, string> | undefined;
|
|
1888
|
-
}
|
|
1889
|
-
export interface InfraCheckConfig {
|
|
1890
|
-
EnableInfraCheck?: boolean | undefined;
|
|
1891
|
-
}
|
|
1892
|
-
export interface ProfilerConfig {
|
|
1893
|
-
S3OutputPath?: string | undefined;
|
|
1894
|
-
ProfilingIntervalInMilliseconds?: number | undefined;
|
|
1895
|
-
ProfilingParameters?: Record<string, string> | undefined;
|
|
1896
|
-
DisableProfiler?: boolean | undefined;
|
|
1897
|
-
}
|
|
1898
|
-
export interface ProfilerRuleConfiguration {
|
|
1899
|
-
RuleConfigurationName: string | undefined;
|
|
1900
|
-
LocalPath?: string | undefined;
|
|
1901
|
-
S3OutputPath?: string | undefined;
|
|
1902
|
-
RuleEvaluatorImage: string | undefined;
|
|
1903
|
-
InstanceType?: ProcessingInstanceType | undefined;
|
|
1904
|
-
VolumeSizeInGB?: number | undefined;
|
|
1905
|
-
RuleParameters?: Record<string, string> | undefined;
|
|
1906
|
-
}
|
|
@@ -19,6 +19,7 @@ import {
|
|
|
19
19
|
ClusterNodeRecovery,
|
|
20
20
|
ClusterStatus,
|
|
21
21
|
CompilationJobStatus,
|
|
22
|
+
CustomizationTechnique,
|
|
22
23
|
DetailedModelPackageStatus,
|
|
23
24
|
DirectInternetAccess,
|
|
24
25
|
DomainStatus,
|
|
@@ -27,6 +28,7 @@ import {
|
|
|
27
28
|
EdgePresetDeploymentType,
|
|
28
29
|
EnabledOrDisabled,
|
|
29
30
|
EndpointStatus,
|
|
31
|
+
EvaluationType,
|
|
30
32
|
ExecutionStatus,
|
|
31
33
|
FeatureGroupStatus,
|
|
32
34
|
FeatureStatus,
|
|
@@ -58,6 +60,7 @@ import {
|
|
|
58
60
|
ModelCardProcessingStatus,
|
|
59
61
|
ModelCardStatus,
|
|
60
62
|
ModelPackageGroupStatus,
|
|
63
|
+
ModelPackageRegistrationType,
|
|
61
64
|
ModelPackageStatus,
|
|
62
65
|
ModelRegistrationMode,
|
|
63
66
|
ModelVariantStatus,
|
|
@@ -71,27 +74,25 @@ import {
|
|
|
71
74
|
PartnerAppAuthType,
|
|
72
75
|
PartnerAppStatus,
|
|
73
76
|
PartnerAppType,
|
|
77
|
+
Peft,
|
|
74
78
|
PipelineExecutionStatus,
|
|
75
79
|
PipelineStatus,
|
|
76
80
|
ProblemType,
|
|
81
|
+
ProcessingInstanceType,
|
|
77
82
|
ProcessingJobStatus,
|
|
78
83
|
Processor,
|
|
79
84
|
ProductionVariantAcceleratorType,
|
|
80
85
|
ProductionVariantInstanceType,
|
|
81
|
-
ProjectStatus,
|
|
82
86
|
RecommendationJobStatus,
|
|
83
87
|
RecommendationJobType,
|
|
84
88
|
RecommendationStatus,
|
|
85
|
-
ReservedCapacityInstanceType,
|
|
86
|
-
ReservedCapacityStatus,
|
|
87
|
-
ReservedCapacityType,
|
|
88
89
|
RetentionType,
|
|
89
90
|
RootAccess,
|
|
90
91
|
RuleEvaluationStatus,
|
|
91
92
|
SchedulerResourceStatus,
|
|
92
93
|
ScheduleStatus,
|
|
94
|
+
ServerlessJobType,
|
|
93
95
|
SkipModelValidation,
|
|
94
|
-
SpaceStatus,
|
|
95
96
|
StageStatus,
|
|
96
97
|
Statistic,
|
|
97
98
|
StudioLifecycleConfigAppType,
|
|
@@ -133,7 +134,6 @@ import {
|
|
|
133
134
|
Autotune,
|
|
134
135
|
AvailableUpgrade,
|
|
135
136
|
BatchDataCaptureConfig,
|
|
136
|
-
CfnTemplateProviderDetail,
|
|
137
137
|
Channel,
|
|
138
138
|
CheckpointConfig,
|
|
139
139
|
ClusterAutoScalingConfigOutput,
|
|
@@ -146,12 +146,11 @@ import {
|
|
|
146
146
|
CodeEditorAppImageConfig,
|
|
147
147
|
CognitoConfig,
|
|
148
148
|
CognitoMemberDefinition,
|
|
149
|
+
CollectionConfiguration,
|
|
149
150
|
ComputeQuotaConfig,
|
|
150
151
|
ComputeQuotaTarget,
|
|
151
152
|
ContainerDefinition,
|
|
152
153
|
ContextSource,
|
|
153
|
-
DataQualityAppSpecification,
|
|
154
|
-
DataQualityBaselineConfig,
|
|
155
154
|
GitConfig,
|
|
156
155
|
InferenceSpecification,
|
|
157
156
|
InputConfig,
|
|
@@ -176,9 +175,9 @@ import {
|
|
|
176
175
|
} from "./models_0";
|
|
177
176
|
import {
|
|
178
177
|
DataCaptureConfig,
|
|
178
|
+
DataQualityAppSpecification,
|
|
179
|
+
DataQualityBaselineConfig,
|
|
179
180
|
DataQualityJobInput,
|
|
180
|
-
DebugHookConfig,
|
|
181
|
-
DebugRuleConfiguration,
|
|
182
181
|
DefaultSpaceSettings,
|
|
183
182
|
DeploymentConfig,
|
|
184
183
|
DeviceSelectionConfig,
|
|
@@ -205,7 +204,6 @@ import {
|
|
|
205
204
|
InferenceExecutionConfig,
|
|
206
205
|
InferenceExperimentDataStorageConfig,
|
|
207
206
|
InferenceExperimentSchedule,
|
|
208
|
-
InfraCheckConfig,
|
|
209
207
|
InstanceMetadataServiceConfiguration,
|
|
210
208
|
LabelingJobAlgorithmsConfig,
|
|
211
209
|
LabelingJobInputConfig,
|
|
@@ -242,7 +240,6 @@ import {
|
|
|
242
240
|
OptimizationJobModelSource,
|
|
243
241
|
OptimizationJobOutputConfig,
|
|
244
242
|
OptimizationVpcConfig,
|
|
245
|
-
OwnershipSettings,
|
|
246
243
|
ParallelismConfiguration,
|
|
247
244
|
PartnerAppConfig,
|
|
248
245
|
PartnerAppMaintenanceConfig,
|
|
@@ -254,21 +251,76 @@ import {
|
|
|
254
251
|
ProductionVariantManagedInstanceScaling,
|
|
255
252
|
ProductionVariantRoutingConfig,
|
|
256
253
|
ProductionVariantServerlessConfig,
|
|
257
|
-
ProfilerConfig,
|
|
258
|
-
ProfilerRuleConfiguration,
|
|
259
254
|
RecommendationJobInputConfig,
|
|
260
255
|
RecommendationJobStoppingConditions,
|
|
261
256
|
RetryStrategy,
|
|
262
|
-
ServiceCatalogProvisioningDetails,
|
|
263
257
|
ShadowModeConfig,
|
|
264
258
|
SourceAlgorithmSpecification,
|
|
265
|
-
SpaceSettings,
|
|
266
|
-
SpaceSharingSettings,
|
|
267
259
|
UserSettings,
|
|
268
260
|
} from "./models_1";
|
|
261
|
+
export interface CreateStudioLifecycleConfigRequest {
|
|
262
|
+
StudioLifecycleConfigName: string | undefined;
|
|
263
|
+
StudioLifecycleConfigContent: string | undefined;
|
|
264
|
+
StudioLifecycleConfigAppType: StudioLifecycleConfigAppType | undefined;
|
|
265
|
+
Tags?: Tag[] | undefined;
|
|
266
|
+
}
|
|
267
|
+
export interface CreateStudioLifecycleConfigResponse {
|
|
268
|
+
StudioLifecycleConfigArn?: string | undefined;
|
|
269
|
+
}
|
|
270
|
+
export interface DebugHookConfig {
|
|
271
|
+
LocalPath?: string | undefined;
|
|
272
|
+
S3OutputPath: string | undefined;
|
|
273
|
+
HookParameters?: Record<string, string> | undefined;
|
|
274
|
+
CollectionConfigurations?: CollectionConfiguration[] | undefined;
|
|
275
|
+
}
|
|
276
|
+
export interface DebugRuleConfiguration {
|
|
277
|
+
RuleConfigurationName: string | undefined;
|
|
278
|
+
LocalPath?: string | undefined;
|
|
279
|
+
S3OutputPath?: string | undefined;
|
|
280
|
+
RuleEvaluatorImage: string | undefined;
|
|
281
|
+
InstanceType?: ProcessingInstanceType | undefined;
|
|
282
|
+
VolumeSizeInGB?: number | undefined;
|
|
283
|
+
RuleParameters?: Record<string, string> | undefined;
|
|
284
|
+
}
|
|
285
|
+
export interface InfraCheckConfig {
|
|
286
|
+
EnableInfraCheck?: boolean | undefined;
|
|
287
|
+
}
|
|
288
|
+
export interface MlflowConfig {
|
|
289
|
+
MlflowResourceArn: string | undefined;
|
|
290
|
+
MlflowExperimentName?: string | undefined;
|
|
291
|
+
MlflowRunName?: string | undefined;
|
|
292
|
+
}
|
|
293
|
+
export interface ModelPackageConfig {
|
|
294
|
+
ModelPackageGroupArn: string | undefined;
|
|
295
|
+
SourceModelPackageArn?: string | undefined;
|
|
296
|
+
}
|
|
297
|
+
export interface ProfilerConfig {
|
|
298
|
+
S3OutputPath?: string | undefined;
|
|
299
|
+
ProfilingIntervalInMilliseconds?: number | undefined;
|
|
300
|
+
ProfilingParameters?: Record<string, string> | undefined;
|
|
301
|
+
DisableProfiler?: boolean | undefined;
|
|
302
|
+
}
|
|
303
|
+
export interface ProfilerRuleConfiguration {
|
|
304
|
+
RuleConfigurationName: string | undefined;
|
|
305
|
+
LocalPath?: string | undefined;
|
|
306
|
+
S3OutputPath?: string | undefined;
|
|
307
|
+
RuleEvaluatorImage: string | undefined;
|
|
308
|
+
InstanceType?: ProcessingInstanceType | undefined;
|
|
309
|
+
VolumeSizeInGB?: number | undefined;
|
|
310
|
+
RuleParameters?: Record<string, string> | undefined;
|
|
311
|
+
}
|
|
269
312
|
export interface RemoteDebugConfig {
|
|
270
313
|
EnableRemoteDebug?: boolean | undefined;
|
|
271
314
|
}
|
|
315
|
+
export interface ServerlessJobConfig {
|
|
316
|
+
BaseModelArn: string | undefined;
|
|
317
|
+
AcceptEula?: boolean | undefined;
|
|
318
|
+
JobType: ServerlessJobType | undefined;
|
|
319
|
+
CustomizationTechnique?: CustomizationTechnique | undefined;
|
|
320
|
+
Peft?: Peft | undefined;
|
|
321
|
+
EvaluationType?: EvaluationType | undefined;
|
|
322
|
+
EvaluatorArn?: string | undefined;
|
|
323
|
+
}
|
|
272
324
|
export interface SessionChainingConfig {
|
|
273
325
|
EnableSessionTagChaining?: boolean | undefined;
|
|
274
326
|
}
|
|
@@ -302,6 +354,9 @@ export interface CreateTrainingJobRequest {
|
|
|
302
354
|
RemoteDebugConfig?: RemoteDebugConfig | undefined;
|
|
303
355
|
InfraCheckConfig?: InfraCheckConfig | undefined;
|
|
304
356
|
SessionChainingConfig?: SessionChainingConfig | undefined;
|
|
357
|
+
ServerlessJobConfig?: ServerlessJobConfig | undefined;
|
|
358
|
+
MlflowConfig?: MlflowConfig | undefined;
|
|
359
|
+
ModelPackageConfig?: ModelPackageConfig | undefined;
|
|
305
360
|
}
|
|
306
361
|
export interface CreateTrainingJobResponse {
|
|
307
362
|
TrainingJobArn: string | undefined;
|
|
@@ -1865,6 +1920,7 @@ export interface DescribeModelPackageOutput {
|
|
|
1865
1920
|
ModelPackageName: string | undefined;
|
|
1866
1921
|
ModelPackageGroupName?: string | undefined;
|
|
1867
1922
|
ModelPackageVersion?: number | undefined;
|
|
1923
|
+
ModelPackageRegistrationType?: ModelPackageRegistrationType | undefined;
|
|
1868
1924
|
ModelPackageArn: string | undefined;
|
|
1869
1925
|
ModelPackageDescription?: string | undefined;
|
|
1870
1926
|
CreationTime: Date | undefined;
|
|
@@ -2076,6 +2132,10 @@ export interface DescribePipelineDefinitionForExecutionResponse {
|
|
|
2076
2132
|
export interface DescribePipelineExecutionRequest {
|
|
2077
2133
|
PipelineExecutionArn: string | undefined;
|
|
2078
2134
|
}
|
|
2135
|
+
export interface MLflowConfiguration {
|
|
2136
|
+
MlflowResourceArn?: string | undefined;
|
|
2137
|
+
MlflowExperimentName?: string | undefined;
|
|
2138
|
+
}
|
|
2079
2139
|
export interface PipelineExperimentConfig {
|
|
2080
2140
|
ExperimentName?: string | undefined;
|
|
2081
2141
|
TrialName?: string | undefined;
|
|
@@ -2102,6 +2162,7 @@ export interface DescribePipelineExecutionResponse {
|
|
|
2102
2162
|
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
2103
2163
|
SelectiveExecutionConfig?: SelectiveExecutionConfig | undefined;
|
|
2104
2164
|
PipelineVersionId?: number | undefined;
|
|
2165
|
+
MLflowConfig?: MLflowConfiguration | undefined;
|
|
2105
2166
|
}
|
|
2106
2167
|
export interface DescribeProcessingJobRequest {
|
|
2107
2168
|
ProcessingJobName: string | undefined;
|
|
@@ -2132,86 +2193,3 @@ export interface DescribeProcessingJobResponse {
|
|
|
2132
2193
|
export interface DescribeProjectInput {
|
|
2133
2194
|
ProjectName: string | undefined;
|
|
2134
2195
|
}
|
|
2135
|
-
export interface ServiceCatalogProvisionedProductDetails {
|
|
2136
|
-
ProvisionedProductId?: string | undefined;
|
|
2137
|
-
ProvisionedProductStatusMessage?: string | undefined;
|
|
2138
|
-
}
|
|
2139
|
-
export interface TemplateProviderDetail {
|
|
2140
|
-
CfnTemplateProviderDetail?: CfnTemplateProviderDetail | undefined;
|
|
2141
|
-
}
|
|
2142
|
-
export interface DescribeProjectOutput {
|
|
2143
|
-
ProjectArn: string | undefined;
|
|
2144
|
-
ProjectName: string | undefined;
|
|
2145
|
-
ProjectId: string | undefined;
|
|
2146
|
-
ProjectDescription?: string | undefined;
|
|
2147
|
-
ServiceCatalogProvisioningDetails?:
|
|
2148
|
-
| ServiceCatalogProvisioningDetails
|
|
2149
|
-
| undefined;
|
|
2150
|
-
ServiceCatalogProvisionedProductDetails?:
|
|
2151
|
-
| ServiceCatalogProvisionedProductDetails
|
|
2152
|
-
| undefined;
|
|
2153
|
-
ProjectStatus: ProjectStatus | undefined;
|
|
2154
|
-
TemplateProviderDetails?: TemplateProviderDetail[] | undefined;
|
|
2155
|
-
CreatedBy?: UserContext | undefined;
|
|
2156
|
-
CreationTime: Date | undefined;
|
|
2157
|
-
LastModifiedTime?: Date | undefined;
|
|
2158
|
-
LastModifiedBy?: UserContext | undefined;
|
|
2159
|
-
}
|
|
2160
|
-
export interface DescribeReservedCapacityRequest {
|
|
2161
|
-
ReservedCapacityArn: string | undefined;
|
|
2162
|
-
}
|
|
2163
|
-
export interface UltraServerSummary {
|
|
2164
|
-
UltraServerType: string | undefined;
|
|
2165
|
-
InstanceType: ReservedCapacityInstanceType | undefined;
|
|
2166
|
-
UltraServerCount?: number | undefined;
|
|
2167
|
-
AvailableSpareInstanceCount?: number | undefined;
|
|
2168
|
-
UnhealthyInstanceCount?: number | undefined;
|
|
2169
|
-
}
|
|
2170
|
-
export interface DescribeReservedCapacityResponse {
|
|
2171
|
-
ReservedCapacityArn: string | undefined;
|
|
2172
|
-
ReservedCapacityType?: ReservedCapacityType | undefined;
|
|
2173
|
-
Status?: ReservedCapacityStatus | undefined;
|
|
2174
|
-
AvailabilityZone?: string | undefined;
|
|
2175
|
-
DurationHours?: number | undefined;
|
|
2176
|
-
DurationMinutes?: number | undefined;
|
|
2177
|
-
StartTime?: Date | undefined;
|
|
2178
|
-
EndTime?: Date | undefined;
|
|
2179
|
-
InstanceType: ReservedCapacityInstanceType | undefined;
|
|
2180
|
-
TotalInstanceCount: number | undefined;
|
|
2181
|
-
AvailableInstanceCount?: number | undefined;
|
|
2182
|
-
InUseInstanceCount?: number | undefined;
|
|
2183
|
-
UltraServerSummary?: UltraServerSummary | undefined;
|
|
2184
|
-
}
|
|
2185
|
-
export interface DescribeSpaceRequest {
|
|
2186
|
-
DomainId: string | undefined;
|
|
2187
|
-
SpaceName: string | undefined;
|
|
2188
|
-
}
|
|
2189
|
-
export interface DescribeSpaceResponse {
|
|
2190
|
-
DomainId?: string | undefined;
|
|
2191
|
-
SpaceArn?: string | undefined;
|
|
2192
|
-
SpaceName?: string | undefined;
|
|
2193
|
-
HomeEfsFileSystemUid?: string | undefined;
|
|
2194
|
-
Status?: SpaceStatus | undefined;
|
|
2195
|
-
LastModifiedTime?: Date | undefined;
|
|
2196
|
-
CreationTime?: Date | undefined;
|
|
2197
|
-
FailureReason?: string | undefined;
|
|
2198
|
-
SpaceSettings?: SpaceSettings | undefined;
|
|
2199
|
-
OwnershipSettings?: OwnershipSettings | undefined;
|
|
2200
|
-
SpaceSharingSettings?: SpaceSharingSettings | undefined;
|
|
2201
|
-
SpaceDisplayName?: string | undefined;
|
|
2202
|
-
Url?: string | undefined;
|
|
2203
|
-
}
|
|
2204
|
-
export interface DescribeStudioLifecycleConfigRequest {
|
|
2205
|
-
StudioLifecycleConfigName: string | undefined;
|
|
2206
|
-
}
|
|
2207
|
-
export interface DescribeStudioLifecycleConfigResponse {
|
|
2208
|
-
StudioLifecycleConfigArn?: string | undefined;
|
|
2209
|
-
StudioLifecycleConfigName?: string | undefined;
|
|
2210
|
-
CreationTime?: Date | undefined;
|
|
2211
|
-
LastModifiedTime?: Date | undefined;
|
|
2212
|
-
StudioLifecycleConfigContent?: string | undefined;
|
|
2213
|
-
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType | undefined;
|
|
2214
|
-
}
|
|
2215
|
-
export interface DescribeSubscribedWorkteamRequest {
|
|
2216
|
-
WorkteamArn: string | undefined;
|
|
2217
|
-
}
|