@aws-sdk/client-sagemaker 3.840.0 → 3.843.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist-cjs/index.js +135 -28
- package/dist-es/SageMaker.js +4 -0
- package/dist-es/commands/CreateHubContentPresignedUrlsCommand.js +22 -0
- package/dist-es/commands/CreateModelPackageCommand.js +1 -1
- package/dist-es/commands/StartSessionCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +0 -4
- package/dist-es/models/models_1.js +9 -4
- package/dist-es/models/models_2.js +5 -17
- package/dist-es/models/models_3.js +12 -0
- package/dist-es/pagination/CreateHubContentPresignedUrlsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +67 -0
- package/dist-types/SageMaker.d.ts +14 -0
- package/dist-types/SageMakerClient.d.ts +4 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +1 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +2 -2
- package/dist-types/commands/CreateHubContentPresignedUrlsCommand.d.ts +87 -0
- package/dist-types/commands/CreateModelPackageCommand.d.ts +1 -1
- package/dist-types/commands/CreateModelPackageGroupCommand.d.ts +1 -2
- package/dist-types/commands/CreateSpaceCommand.d.ts +1 -0
- package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +1 -2
- package/dist-types/commands/DescribeSpaceCommand.d.ts +1 -0
- package/dist-types/commands/ListAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListAutoMLJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListSpacesCommand.d.ts +1 -0
- package/dist-types/commands/SendPipelineExecutionStepFailureCommand.d.ts +2 -1
- package/dist-types/commands/SendPipelineExecutionStepSuccessCommand.d.ts +1 -1
- package/dist-types/commands/StartEdgeDeploymentStageCommand.d.ts +1 -1
- package/dist-types/commands/StartSessionCommand.d.ts +80 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSpaceCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +16 -12
- package/dist-types/models/models_1.d.ts +100 -190
- package/dist-types/models/models_2.d.ts +191 -72
- package/dist-types/models/models_3.d.ts +62 -148
- package/dist-types/models/models_4.d.ts +155 -60
- package/dist-types/models/models_5.d.ts +89 -4
- package/dist-types/pagination/CreateHubContentPresignedUrlsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
- package/dist-types/ts3.4/SageMaker.d.ts +34 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateHubContentPresignedUrlsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateModelPackageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateModelPackageGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeFeatureGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAutoMLJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendPipelineExecutionStepFailureCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SendPipelineExecutionStepSuccessCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartEdgeDeploymentStageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartSessionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -6
- package/dist-types/ts3.4/models/models_1.d.ts +34 -53
- package/dist-types/ts3.4/models/models_2.d.ts +58 -31
- package/dist-types/ts3.4/models/models_3.d.ts +26 -42
- package/dist-types/ts3.4/models/models_4.d.ts +44 -19
- package/dist-types/ts3.4/models/models_5.d.ts +26 -2
- package/dist-types/ts3.4/pagination/CreateHubContentPresignedUrlsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
- package/package.json +1 -1
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
SendPipelineExecutionStepFailureResponse,
|
|
6
|
-
} from "../models/models_4";
|
|
3
|
+
import { SendPipelineExecutionStepFailureRequest } from "../models/models_4";
|
|
4
|
+
import { SendPipelineExecutionStepFailureResponse } from "../models/models_5";
|
|
7
5
|
import {
|
|
8
6
|
SageMakerClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
SendPipelineExecutionStepSuccessRequest,
|
|
5
5
|
SendPipelineExecutionStepSuccessResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_5";
|
|
7
7
|
import {
|
|
8
8
|
SageMakerClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { StartEdgeDeploymentStageRequest } from "../models/
|
|
3
|
+
import { StartEdgeDeploymentStageRequest } from "../models/models_5";
|
|
4
4
|
import {
|
|
5
5
|
SageMakerClientResolvedConfig,
|
|
6
6
|
ServiceInputTypes,
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { StartSessionRequest, StartSessionResponse } from "../models/models_5";
|
|
4
|
+
import {
|
|
5
|
+
SageMakerClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../SageMakerClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface StartSessionCommandInput extends StartSessionRequest {}
|
|
12
|
+
export interface StartSessionCommandOutput
|
|
13
|
+
extends StartSessionResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const StartSessionCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: StartSessionCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
StartSessionCommandInput,
|
|
20
|
+
StartSessionCommandOutput,
|
|
21
|
+
SageMakerClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: StartSessionCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
StartSessionCommandInput,
|
|
29
|
+
StartSessionCommandOutput,
|
|
30
|
+
SageMakerClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class StartSessionCommand extends StartSessionCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: StartSessionRequest;
|
|
40
|
+
output: StartSessionResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: StartSessionCommandInput;
|
|
44
|
+
output: StartSessionCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -28,6 +28,7 @@ export * from "./CreateExperimentCommand";
|
|
|
28
28
|
export * from "./CreateFeatureGroupCommand";
|
|
29
29
|
export * from "./CreateFlowDefinitionCommand";
|
|
30
30
|
export * from "./CreateHubCommand";
|
|
31
|
+
export * from "./CreateHubContentPresignedUrlsCommand";
|
|
31
32
|
export * from "./CreateHubContentReferenceCommand";
|
|
32
33
|
export * from "./CreateHumanTaskUiCommand";
|
|
33
34
|
export * from "./CreateHyperParameterTuningJobCommand";
|
|
@@ -297,6 +298,7 @@ export * from "./StartMlflowTrackingServerCommand";
|
|
|
297
298
|
export * from "./StartMonitoringScheduleCommand";
|
|
298
299
|
export * from "./StartNotebookInstanceCommand";
|
|
299
300
|
export * from "./StartPipelineExecutionCommand";
|
|
301
|
+
export * from "./StartSessionCommand";
|
|
300
302
|
export * from "./StopAutoMLJobCommand";
|
|
301
303
|
export * from "./StopCompilationJobCommand";
|
|
302
304
|
export * from "./StopEdgeDeploymentStageCommand";
|
|
@@ -1321,6 +1321,10 @@ export declare const AuthMode: {
|
|
|
1321
1321
|
readonly SSO: "SSO";
|
|
1322
1322
|
};
|
|
1323
1323
|
export type AuthMode = (typeof AuthMode)[keyof typeof AuthMode];
|
|
1324
|
+
export interface AuthorizedUrl {
|
|
1325
|
+
Url?: string | undefined;
|
|
1326
|
+
LocalPath?: string | undefined;
|
|
1327
|
+
}
|
|
1324
1328
|
export declare const AutoMLAlgorithm: {
|
|
1325
1329
|
readonly ARIMA: "arima";
|
|
1326
1330
|
readonly CATBOOST: "catboost";
|
|
@@ -2805,9 +2809,3 @@ export interface ComputeQuotaSummary {
|
|
|
2805
2809
|
CreationTime: Date | undefined;
|
|
2806
2810
|
LastModifiedTime?: Date | undefined;
|
|
2807
2811
|
}
|
|
2808
|
-
export declare const ConditionOutcome: {
|
|
2809
|
-
readonly FALSE: "False";
|
|
2810
|
-
readonly TRUE: "True";
|
|
2811
|
-
};
|
|
2812
|
-
export type ConditionOutcome =
|
|
2813
|
-
(typeof ConditionOutcome)[keyof typeof ConditionOutcome];
|
|
@@ -6,7 +6,6 @@ import {
|
|
|
6
6
|
ActionSource,
|
|
7
7
|
ActionStatus,
|
|
8
8
|
ActivationState,
|
|
9
|
-
AdditionalInferenceSpecificationDefinition,
|
|
10
9
|
AdditionalModelDataSource,
|
|
11
10
|
AdditionalS3DataSource,
|
|
12
11
|
AlgorithmValidationSpecification,
|
|
@@ -20,6 +19,7 @@ import {
|
|
|
20
19
|
ArtifactSource,
|
|
21
20
|
AsyncInferenceConfig,
|
|
22
21
|
AuthMode,
|
|
22
|
+
AuthorizedUrl,
|
|
23
23
|
AutoMLChannel,
|
|
24
24
|
AutoMLComputeConfig,
|
|
25
25
|
AutoMLDataSplitConfig,
|
|
@@ -61,7 +61,6 @@ import {
|
|
|
61
61
|
CompleteOnConvergence,
|
|
62
62
|
ComputeQuotaConfig,
|
|
63
63
|
ComputeQuotaTarget,
|
|
64
|
-
ConditionOutcome,
|
|
65
64
|
CustomImage,
|
|
66
65
|
FeatureStatus,
|
|
67
66
|
GitConfig,
|
|
@@ -70,7 +69,6 @@ import {
|
|
|
70
69
|
KernelGatewayImageConfig,
|
|
71
70
|
MetricDefinition,
|
|
72
71
|
MetricsSource,
|
|
73
|
-
ModelApprovalStatus,
|
|
74
72
|
ModelDataSource,
|
|
75
73
|
OutputDataConfig,
|
|
76
74
|
ProblemType,
|
|
@@ -87,10 +85,15 @@ import {
|
|
|
87
85
|
TargetPlatformOs,
|
|
88
86
|
TrainingInputMode,
|
|
89
87
|
TrainingInstanceType,
|
|
90
|
-
TransformJobDefinition,
|
|
91
88
|
VpcConfig,
|
|
92
89
|
} from "./models_0";
|
|
93
90
|
import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
|
|
91
|
+
export declare const ConditionOutcome: {
|
|
92
|
+
readonly FALSE: "False";
|
|
93
|
+
readonly TRUE: "True";
|
|
94
|
+
};
|
|
95
|
+
export type ConditionOutcome =
|
|
96
|
+
(typeof ConditionOutcome)[keyof typeof ConditionOutcome];
|
|
94
97
|
export interface ConditionStepMetadata {
|
|
95
98
|
Outcome?: ConditionOutcome | undefined;
|
|
96
99
|
}
|
|
@@ -342,7 +345,7 @@ export interface CreateAutoMLJobV2Response {
|
|
|
342
345
|
}
|
|
343
346
|
export interface CreateClusterRequest {
|
|
344
347
|
ClusterName: string | undefined;
|
|
345
|
-
InstanceGroups
|
|
348
|
+
InstanceGroups?: ClusterInstanceGroupSpecification[] | undefined;
|
|
346
349
|
VpcConfig?: VpcConfig | undefined;
|
|
347
350
|
Tags?: Tag[] | undefined;
|
|
348
351
|
Orchestrator?: ClusterOrchestrator | undefined;
|
|
@@ -905,8 +908,8 @@ export interface CreateDomainRequest {
|
|
|
905
908
|
AuthMode: AuthMode | undefined;
|
|
906
909
|
DefaultUserSettings: UserSettings | undefined;
|
|
907
910
|
DomainSettings?: DomainSettings | undefined;
|
|
908
|
-
SubnetIds
|
|
909
|
-
VpcId
|
|
911
|
+
SubnetIds?: string[] | undefined;
|
|
912
|
+
VpcId?: string | undefined;
|
|
910
913
|
Tags?: Tag[] | undefined;
|
|
911
914
|
AppNetworkAccessType?: AppNetworkAccessType | undefined;
|
|
912
915
|
HomeEfsFileSystemKmsKeyId?: string | undefined;
|
|
@@ -1254,6 +1257,30 @@ export interface CreateHubRequest {
|
|
|
1254
1257
|
export interface CreateHubResponse {
|
|
1255
1258
|
HubArn: string | undefined;
|
|
1256
1259
|
}
|
|
1260
|
+
export interface PresignedUrlAccessConfig {
|
|
1261
|
+
AcceptEula?: boolean | undefined;
|
|
1262
|
+
ExpectedS3Url?: string | undefined;
|
|
1263
|
+
}
|
|
1264
|
+
export declare const HubContentType: {
|
|
1265
|
+
readonly MODEL: "Model";
|
|
1266
|
+
readonly MODEL_REFERENCE: "ModelReference";
|
|
1267
|
+
readonly NOTEBOOK: "Notebook";
|
|
1268
|
+
};
|
|
1269
|
+
export type HubContentType =
|
|
1270
|
+
(typeof HubContentType)[keyof typeof HubContentType];
|
|
1271
|
+
export interface CreateHubContentPresignedUrlsRequest {
|
|
1272
|
+
HubName: string | undefined;
|
|
1273
|
+
HubContentType: HubContentType | undefined;
|
|
1274
|
+
HubContentName: string | undefined;
|
|
1275
|
+
HubContentVersion?: string | undefined;
|
|
1276
|
+
AccessConfig?: PresignedUrlAccessConfig | undefined;
|
|
1277
|
+
MaxResults?: number | undefined;
|
|
1278
|
+
NextToken?: string | undefined;
|
|
1279
|
+
}
|
|
1280
|
+
export interface CreateHubContentPresignedUrlsResponse {
|
|
1281
|
+
AuthorizedUrlConfigs: AuthorizedUrl[] | undefined;
|
|
1282
|
+
NextToken?: string | undefined;
|
|
1283
|
+
}
|
|
1257
1284
|
export interface CreateHubContentReferenceRequest {
|
|
1258
1285
|
HubName: string | undefined;
|
|
1259
1286
|
SageMakerPublicHubContentArn: string | undefined;
|
|
@@ -2113,55 +2140,9 @@ export interface SourceAlgorithm {
|
|
|
2113
2140
|
export interface SourceAlgorithmSpecification {
|
|
2114
2141
|
SourceAlgorithms: SourceAlgorithm[] | undefined;
|
|
2115
2142
|
}
|
|
2116
|
-
export interface ModelPackageValidationProfile {
|
|
2117
|
-
ProfileName: string | undefined;
|
|
2118
|
-
TransformJobDefinition: TransformJobDefinition | undefined;
|
|
2119
|
-
}
|
|
2120
|
-
export interface ModelPackageValidationSpecification {
|
|
2121
|
-
ValidationRole: string | undefined;
|
|
2122
|
-
ValidationProfiles: ModelPackageValidationProfile[] | undefined;
|
|
2123
|
-
}
|
|
2124
|
-
export interface CreateModelPackageInput {
|
|
2125
|
-
ModelPackageName?: string | undefined;
|
|
2126
|
-
ModelPackageGroupName?: string | undefined;
|
|
2127
|
-
ModelPackageDescription?: string | undefined;
|
|
2128
|
-
InferenceSpecification?: InferenceSpecification | undefined;
|
|
2129
|
-
ValidationSpecification?: ModelPackageValidationSpecification | undefined;
|
|
2130
|
-
SourceAlgorithmSpecification?: SourceAlgorithmSpecification | undefined;
|
|
2131
|
-
CertifyForMarketplace?: boolean | undefined;
|
|
2132
|
-
Tags?: Tag[] | undefined;
|
|
2133
|
-
ModelApprovalStatus?: ModelApprovalStatus | undefined;
|
|
2134
|
-
MetadataProperties?: MetadataProperties | undefined;
|
|
2135
|
-
ModelMetrics?: ModelMetrics | undefined;
|
|
2136
|
-
ClientToken?: string | undefined;
|
|
2137
|
-
Domain?: string | undefined;
|
|
2138
|
-
Task?: string | undefined;
|
|
2139
|
-
SamplePayloadUrl?: string | undefined;
|
|
2140
|
-
CustomerMetadataProperties?: Record<string, string> | undefined;
|
|
2141
|
-
DriftCheckBaselines?: DriftCheckBaselines | undefined;
|
|
2142
|
-
AdditionalInferenceSpecifications?:
|
|
2143
|
-
| AdditionalInferenceSpecificationDefinition[]
|
|
2144
|
-
| undefined;
|
|
2145
|
-
SkipModelValidation?: SkipModelValidation | undefined;
|
|
2146
|
-
SourceUri?: string | undefined;
|
|
2147
|
-
SecurityConfig?: ModelPackageSecurityConfig | undefined;
|
|
2148
|
-
ModelCard?: ModelPackageModelCard | undefined;
|
|
2149
|
-
ModelLifeCycle?: ModelLifeCycle | undefined;
|
|
2150
|
-
}
|
|
2151
|
-
export interface CreateModelPackageOutput {
|
|
2152
|
-
ModelPackageArn: string | undefined;
|
|
2153
|
-
}
|
|
2154
|
-
export interface CreateModelPackageGroupInput {
|
|
2155
|
-
ModelPackageGroupName: string | undefined;
|
|
2156
|
-
ModelPackageGroupDescription?: string | undefined;
|
|
2157
|
-
Tags?: Tag[] | undefined;
|
|
2158
|
-
}
|
|
2159
2143
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
2160
2144
|
obj: CreateModelCardRequest
|
|
2161
2145
|
) => any;
|
|
2162
2146
|
export declare const ModelPackageModelCardFilterSensitiveLog: (
|
|
2163
2147
|
obj: ModelPackageModelCard
|
|
2164
2148
|
) => any;
|
|
2165
|
-
export declare const CreateModelPackageInputFilterSensitiveLog: (
|
|
2166
|
-
obj: CreateModelPackageInput
|
|
2167
|
-
) => any;
|
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
ActionSource,
|
|
3
3
|
ActionStatus,
|
|
4
4
|
ActivationState,
|
|
5
|
+
AdditionalInferenceSpecificationDefinition,
|
|
5
6
|
AlgorithmSpecification,
|
|
6
7
|
AlgorithmStatus,
|
|
7
8
|
AlgorithmStatusDetails,
|
|
@@ -58,6 +59,7 @@ import {
|
|
|
58
59
|
InferenceSpecification,
|
|
59
60
|
JupyterLabAppImageConfig,
|
|
60
61
|
KernelGatewayImageConfig,
|
|
62
|
+
ModelApprovalStatus,
|
|
61
63
|
OutputDataConfig,
|
|
62
64
|
ProblemType,
|
|
63
65
|
ProcessingS3DataDistributionType,
|
|
@@ -69,6 +71,7 @@ import {
|
|
|
69
71
|
StoppingCondition,
|
|
70
72
|
Tag,
|
|
71
73
|
TransformInput,
|
|
74
|
+
TransformJobDefinition,
|
|
72
75
|
TransformOutput,
|
|
73
76
|
TransformResources,
|
|
74
77
|
UserContext,
|
|
@@ -85,17 +88,23 @@ import {
|
|
|
85
88
|
DeploymentConfig,
|
|
86
89
|
DeviceSelectionConfig,
|
|
87
90
|
DomainSettings,
|
|
91
|
+
DriftCheckBaselines,
|
|
88
92
|
EdgeDeploymentConfig,
|
|
89
93
|
EdgeDeploymentModelConfig,
|
|
90
94
|
EdgeOutputConfig,
|
|
91
95
|
EdgePresetDeploymentType,
|
|
92
96
|
EndpointInput,
|
|
93
97
|
ExplainerConfig,
|
|
98
|
+
HubContentType,
|
|
94
99
|
InputConfig,
|
|
95
100
|
JupyterServerAppSettings,
|
|
96
101
|
KernelGatewayAppSettings,
|
|
97
102
|
MetadataProperties,
|
|
98
103
|
ModelDeployConfig,
|
|
104
|
+
ModelLifeCycle,
|
|
105
|
+
ModelMetrics,
|
|
106
|
+
ModelPackageModelCard,
|
|
107
|
+
ModelPackageSecurityConfig,
|
|
99
108
|
MonitoringConstraintsResource,
|
|
100
109
|
MonitoringGroundTruthS3Input,
|
|
101
110
|
MonitoringNetworkConfig,
|
|
@@ -114,10 +123,55 @@ import {
|
|
|
114
123
|
ProductionVariantServerlessConfig,
|
|
115
124
|
RetryStrategy,
|
|
116
125
|
SchedulerConfig,
|
|
126
|
+
SkipModelValidation,
|
|
127
|
+
SourceAlgorithmSpecification,
|
|
117
128
|
TagPropagation,
|
|
118
129
|
TrainingSpecification,
|
|
119
130
|
UserSettings,
|
|
120
131
|
} from "./models_1";
|
|
132
|
+
export interface ModelPackageValidationProfile {
|
|
133
|
+
ProfileName: string | undefined;
|
|
134
|
+
TransformJobDefinition: TransformJobDefinition | undefined;
|
|
135
|
+
}
|
|
136
|
+
export interface ModelPackageValidationSpecification {
|
|
137
|
+
ValidationRole: string | undefined;
|
|
138
|
+
ValidationProfiles: ModelPackageValidationProfile[] | undefined;
|
|
139
|
+
}
|
|
140
|
+
export interface CreateModelPackageInput {
|
|
141
|
+
ModelPackageName?: string | undefined;
|
|
142
|
+
ModelPackageGroupName?: string | undefined;
|
|
143
|
+
ModelPackageDescription?: string | undefined;
|
|
144
|
+
InferenceSpecification?: InferenceSpecification | undefined;
|
|
145
|
+
ValidationSpecification?: ModelPackageValidationSpecification | undefined;
|
|
146
|
+
SourceAlgorithmSpecification?: SourceAlgorithmSpecification | undefined;
|
|
147
|
+
CertifyForMarketplace?: boolean | undefined;
|
|
148
|
+
Tags?: Tag[] | undefined;
|
|
149
|
+
ModelApprovalStatus?: ModelApprovalStatus | undefined;
|
|
150
|
+
MetadataProperties?: MetadataProperties | undefined;
|
|
151
|
+
ModelMetrics?: ModelMetrics | undefined;
|
|
152
|
+
ClientToken?: string | undefined;
|
|
153
|
+
Domain?: string | undefined;
|
|
154
|
+
Task?: string | undefined;
|
|
155
|
+
SamplePayloadUrl?: string | undefined;
|
|
156
|
+
CustomerMetadataProperties?: Record<string, string> | undefined;
|
|
157
|
+
DriftCheckBaselines?: DriftCheckBaselines | undefined;
|
|
158
|
+
AdditionalInferenceSpecifications?:
|
|
159
|
+
| AdditionalInferenceSpecificationDefinition[]
|
|
160
|
+
| undefined;
|
|
161
|
+
SkipModelValidation?: SkipModelValidation | undefined;
|
|
162
|
+
SourceUri?: string | undefined;
|
|
163
|
+
SecurityConfig?: ModelPackageSecurityConfig | undefined;
|
|
164
|
+
ModelCard?: ModelPackageModelCard | undefined;
|
|
165
|
+
ModelLifeCycle?: ModelLifeCycle | undefined;
|
|
166
|
+
}
|
|
167
|
+
export interface CreateModelPackageOutput {
|
|
168
|
+
ModelPackageArn: string | undefined;
|
|
169
|
+
}
|
|
170
|
+
export interface CreateModelPackageGroupInput {
|
|
171
|
+
ModelPackageGroupName: string | undefined;
|
|
172
|
+
ModelPackageGroupDescription?: string | undefined;
|
|
173
|
+
Tags?: Tag[] | undefined;
|
|
174
|
+
}
|
|
121
175
|
export interface CreateModelPackageGroupOutput {
|
|
122
176
|
ModelPackageGroupArn: string | undefined;
|
|
123
177
|
}
|
|
@@ -706,6 +760,7 @@ export interface SpaceSettings {
|
|
|
706
760
|
SpaceStorageSettings?: SpaceStorageSettings | undefined;
|
|
707
761
|
SpaceManagedResources?: FeatureStatus | undefined;
|
|
708
762
|
CustomFileSystems?: CustomFileSystem[] | undefined;
|
|
763
|
+
RemoteAccess?: FeatureStatus | undefined;
|
|
709
764
|
}
|
|
710
765
|
export declare const SharingType: {
|
|
711
766
|
readonly Private: "Private";
|
|
@@ -1158,13 +1213,6 @@ export interface DeleteFlowDefinitionResponse {}
|
|
|
1158
1213
|
export interface DeleteHubRequest {
|
|
1159
1214
|
HubName: string | undefined;
|
|
1160
1215
|
}
|
|
1161
|
-
export declare const HubContentType: {
|
|
1162
|
-
readonly MODEL: "Model";
|
|
1163
|
-
readonly MODEL_REFERENCE: "ModelReference";
|
|
1164
|
-
readonly NOTEBOOK: "Notebook";
|
|
1165
|
-
};
|
|
1166
|
-
export type HubContentType =
|
|
1167
|
-
(typeof HubContentType)[keyof typeof HubContentType];
|
|
1168
1216
|
export interface DeleteHubContentRequest {
|
|
1169
1217
|
HubName: string | undefined;
|
|
1170
1218
|
HubContentType: HubContentType | undefined;
|
|
@@ -1900,30 +1948,9 @@ export interface DescribeExperimentResponse {
|
|
|
1900
1948
|
LastModifiedTime?: Date | undefined;
|
|
1901
1949
|
LastModifiedBy?: UserContext | undefined;
|
|
1902
1950
|
}
|
|
1903
|
-
export
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
}
|
|
1907
|
-
export declare const FeatureGroupStatus: {
|
|
1908
|
-
readonly CREATED: "Created";
|
|
1909
|
-
readonly CREATE_FAILED: "CreateFailed";
|
|
1910
|
-
readonly CREATING: "Creating";
|
|
1911
|
-
readonly DELETE_FAILED: "DeleteFailed";
|
|
1912
|
-
readonly DELETING: "Deleting";
|
|
1913
|
-
};
|
|
1914
|
-
export type FeatureGroupStatus =
|
|
1915
|
-
(typeof FeatureGroupStatus)[keyof typeof FeatureGroupStatus];
|
|
1916
|
-
export declare const LastUpdateStatusValue: {
|
|
1917
|
-
readonly FAILED: "Failed";
|
|
1918
|
-
readonly IN_PROGRESS: "InProgress";
|
|
1919
|
-
readonly SUCCESSFUL: "Successful";
|
|
1920
|
-
};
|
|
1921
|
-
export type LastUpdateStatusValue =
|
|
1922
|
-
(typeof LastUpdateStatusValue)[keyof typeof LastUpdateStatusValue];
|
|
1923
|
-
export interface LastUpdateStatus {
|
|
1924
|
-
Status: LastUpdateStatusValue | undefined;
|
|
1925
|
-
FailureReason?: string | undefined;
|
|
1926
|
-
}
|
|
1951
|
+
export declare const CreateModelPackageInputFilterSensitiveLog: (
|
|
1952
|
+
obj: CreateModelPackageInput
|
|
1953
|
+
) => any;
|
|
1927
1954
|
export declare const OidcConfigFilterSensitiveLog: (obj: OidcConfig) => any;
|
|
1928
1955
|
export declare const CreateWorkforceRequestFilterSensitiveLog: (
|
|
1929
1956
|
obj: CreateWorkforceRequest
|
|
@@ -13,11 +13,6 @@ import {
|
|
|
13
13
|
AppSpecification,
|
|
14
14
|
ArtifactSummary,
|
|
15
15
|
AssociationEdgeType,
|
|
16
|
-
AssociationSummary,
|
|
17
|
-
AutoMLJobStatus,
|
|
18
|
-
AutoMLJobSummary,
|
|
19
|
-
AutoMLSortBy,
|
|
20
|
-
AutoMLSortOrder,
|
|
21
16
|
AutoRollbackConfig,
|
|
22
17
|
Autotune,
|
|
23
18
|
BatchDataCaptureConfig,
|
|
@@ -54,6 +49,7 @@ import {
|
|
|
54
49
|
FeatureDefinition,
|
|
55
50
|
FeatureType,
|
|
56
51
|
FlowDefinitionOutputConfig,
|
|
52
|
+
HubContentType,
|
|
57
53
|
HubS3StorageConfig,
|
|
58
54
|
HumanLoopActivationConfig,
|
|
59
55
|
HumanLoopConfig,
|
|
@@ -90,7 +86,6 @@ import {
|
|
|
90
86
|
ModelMetrics,
|
|
91
87
|
ModelPackageModelCard,
|
|
92
88
|
ModelPackageSecurityConfig,
|
|
93
|
-
ModelPackageValidationSpecification,
|
|
94
89
|
MonitoringNetworkConfig,
|
|
95
90
|
MonitoringOutputConfig,
|
|
96
91
|
MonitoringResources,
|
|
@@ -128,14 +123,12 @@ import {
|
|
|
128
123
|
EndpointStatus,
|
|
129
124
|
ExperimentConfig,
|
|
130
125
|
ExperimentSource,
|
|
131
|
-
FeatureGroupStatus,
|
|
132
|
-
HubContentType,
|
|
133
126
|
InfraCheckConfig,
|
|
134
127
|
InstanceMetadataServiceConfiguration,
|
|
135
|
-
LastUpdateStatus,
|
|
136
128
|
MemberDefinition,
|
|
137
129
|
ModelArtifacts,
|
|
138
130
|
ModelClientConfig,
|
|
131
|
+
ModelPackageValidationSpecification,
|
|
139
132
|
ModelQualityAppSpecification,
|
|
140
133
|
ModelQualityBaselineConfig,
|
|
141
134
|
ModelQualityJobInput,
|
|
@@ -177,6 +170,30 @@ import {
|
|
|
177
170
|
TrialComponentStatus,
|
|
178
171
|
WorkerAccessConfiguration,
|
|
179
172
|
} from "./models_2";
|
|
173
|
+
export interface DescribeFeatureGroupRequest {
|
|
174
|
+
FeatureGroupName: string | undefined;
|
|
175
|
+
NextToken?: string | undefined;
|
|
176
|
+
}
|
|
177
|
+
export declare const FeatureGroupStatus: {
|
|
178
|
+
readonly CREATED: "Created";
|
|
179
|
+
readonly CREATE_FAILED: "CreateFailed";
|
|
180
|
+
readonly CREATING: "Creating";
|
|
181
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
182
|
+
readonly DELETING: "Deleting";
|
|
183
|
+
};
|
|
184
|
+
export type FeatureGroupStatus =
|
|
185
|
+
(typeof FeatureGroupStatus)[keyof typeof FeatureGroupStatus];
|
|
186
|
+
export declare const LastUpdateStatusValue: {
|
|
187
|
+
readonly FAILED: "Failed";
|
|
188
|
+
readonly IN_PROGRESS: "InProgress";
|
|
189
|
+
readonly SUCCESSFUL: "Successful";
|
|
190
|
+
};
|
|
191
|
+
export type LastUpdateStatusValue =
|
|
192
|
+
(typeof LastUpdateStatusValue)[keyof typeof LastUpdateStatusValue];
|
|
193
|
+
export interface LastUpdateStatus {
|
|
194
|
+
Status: LastUpdateStatusValue | undefined;
|
|
195
|
+
FailureReason?: string | undefined;
|
|
196
|
+
}
|
|
180
197
|
export declare const OfflineStoreStatusValue: {
|
|
181
198
|
readonly ACTIVE: "Active";
|
|
182
199
|
readonly BLOCKED: "Blocked";
|
|
@@ -2531,39 +2548,6 @@ export declare const SortAssociationsBy: {
|
|
|
2531
2548
|
};
|
|
2532
2549
|
export type SortAssociationsBy =
|
|
2533
2550
|
(typeof SortAssociationsBy)[keyof typeof SortAssociationsBy];
|
|
2534
|
-
export interface ListAssociationsRequest {
|
|
2535
|
-
SourceArn?: string | undefined;
|
|
2536
|
-
DestinationArn?: string | undefined;
|
|
2537
|
-
SourceType?: string | undefined;
|
|
2538
|
-
DestinationType?: string | undefined;
|
|
2539
|
-
AssociationType?: AssociationEdgeType | undefined;
|
|
2540
|
-
CreatedAfter?: Date | undefined;
|
|
2541
|
-
CreatedBefore?: Date | undefined;
|
|
2542
|
-
SortBy?: SortAssociationsBy | undefined;
|
|
2543
|
-
SortOrder?: SortOrder | undefined;
|
|
2544
|
-
NextToken?: string | undefined;
|
|
2545
|
-
MaxResults?: number | undefined;
|
|
2546
|
-
}
|
|
2547
|
-
export interface ListAssociationsResponse {
|
|
2548
|
-
AssociationSummaries?: AssociationSummary[] | undefined;
|
|
2549
|
-
NextToken?: string | undefined;
|
|
2550
|
-
}
|
|
2551
|
-
export interface ListAutoMLJobsRequest {
|
|
2552
|
-
CreationTimeAfter?: Date | undefined;
|
|
2553
|
-
CreationTimeBefore?: Date | undefined;
|
|
2554
|
-
LastModifiedTimeAfter?: Date | undefined;
|
|
2555
|
-
LastModifiedTimeBefore?: Date | undefined;
|
|
2556
|
-
NameContains?: string | undefined;
|
|
2557
|
-
StatusEquals?: AutoMLJobStatus | undefined;
|
|
2558
|
-
SortOrder?: AutoMLSortOrder | undefined;
|
|
2559
|
-
SortBy?: AutoMLSortBy | undefined;
|
|
2560
|
-
MaxResults?: number | undefined;
|
|
2561
|
-
NextToken?: string | undefined;
|
|
2562
|
-
}
|
|
2563
|
-
export interface ListAutoMLJobsResponse {
|
|
2564
|
-
AutoMLJobSummaries: AutoMLJobSummary[] | undefined;
|
|
2565
|
-
NextToken?: string | undefined;
|
|
2566
|
-
}
|
|
2567
2551
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2568
2552
|
obj: DescribeModelCardResponse
|
|
2569
2553
|
) => any;
|
|
@@ -3,8 +3,13 @@ import {
|
|
|
3
3
|
AlgorithmSpecification,
|
|
4
4
|
AppSpecification,
|
|
5
5
|
AppType,
|
|
6
|
+
AssociationEdgeType,
|
|
7
|
+
AssociationSummary,
|
|
6
8
|
AutoMLCandidate,
|
|
9
|
+
AutoMLJobStatus,
|
|
7
10
|
AutoMLJobStepMetadata,
|
|
11
|
+
AutoMLJobSummary,
|
|
12
|
+
AutoMLSortBy,
|
|
8
13
|
AutoMLSortOrder,
|
|
9
14
|
BatchDataCaptureConfig,
|
|
10
15
|
BatchStrategy,
|
|
@@ -26,11 +31,11 @@ import {
|
|
|
26
31
|
CompilationJobStatus,
|
|
27
32
|
CompilationJobSummary,
|
|
28
33
|
ComputeQuotaSummary,
|
|
34
|
+
FeatureStatus,
|
|
29
35
|
InferenceSpecification,
|
|
30
36
|
ModelApprovalStatus,
|
|
31
37
|
ModelPackageStatus,
|
|
32
38
|
OutputDataConfig,
|
|
33
|
-
OutputParameter,
|
|
34
39
|
ResourceConfig,
|
|
35
40
|
SchedulerResourceStatus,
|
|
36
41
|
StoppingCondition,
|
|
@@ -47,6 +52,7 @@ import {
|
|
|
47
52
|
ContainerDefinition,
|
|
48
53
|
ContextSummary,
|
|
49
54
|
DriftCheckBaselines,
|
|
55
|
+
HubContentType,
|
|
50
56
|
InferenceExecutionConfig,
|
|
51
57
|
InferenceExperimentType,
|
|
52
58
|
MetadataProperties,
|
|
@@ -56,7 +62,6 @@ import {
|
|
|
56
62
|
ModelMetrics,
|
|
57
63
|
ModelPackageModelCard,
|
|
58
64
|
ModelPackageSecurityConfig,
|
|
59
|
-
ModelPackageValidationSpecification,
|
|
60
65
|
RetryStrategy,
|
|
61
66
|
SkipModelValidation,
|
|
62
67
|
SourceAlgorithmSpecification,
|
|
@@ -73,10 +78,9 @@ import {
|
|
|
73
78
|
EdgePackagingJobStatus,
|
|
74
79
|
EndpointStatus,
|
|
75
80
|
ExperimentConfig,
|
|
76
|
-
FeatureGroupStatus,
|
|
77
|
-
HubContentType,
|
|
78
81
|
ModelArtifacts,
|
|
79
82
|
ModelClientConfig,
|
|
83
|
+
ModelPackageValidationSpecification,
|
|
80
84
|
MonitoringScheduleConfig,
|
|
81
85
|
MonitoringType,
|
|
82
86
|
NetworkConfig,
|
|
@@ -122,6 +126,7 @@ import {
|
|
|
122
126
|
FeatureGroup,
|
|
123
127
|
FeatureGroupSortBy,
|
|
124
128
|
FeatureGroupSortOrder,
|
|
129
|
+
FeatureGroupStatus,
|
|
125
130
|
FeatureGroupSummary,
|
|
126
131
|
FeatureMetadata,
|
|
127
132
|
Filter,
|
|
@@ -180,6 +185,7 @@ import {
|
|
|
180
185
|
SecondaryStatusTransition,
|
|
181
186
|
SelectiveExecutionConfig,
|
|
182
187
|
ServiceCatalogProvisionedProductDetails,
|
|
188
|
+
SortAssociationsBy,
|
|
183
189
|
SortOrder,
|
|
184
190
|
SpaceStatus,
|
|
185
191
|
SubscribedWorkteam,
|
|
@@ -197,6 +203,39 @@ import {
|
|
|
197
203
|
Workforce,
|
|
198
204
|
Workteam,
|
|
199
205
|
} from "./models_3";
|
|
206
|
+
export interface ListAssociationsRequest {
|
|
207
|
+
SourceArn?: string | undefined;
|
|
208
|
+
DestinationArn?: string | undefined;
|
|
209
|
+
SourceType?: string | undefined;
|
|
210
|
+
DestinationType?: string | undefined;
|
|
211
|
+
AssociationType?: AssociationEdgeType | undefined;
|
|
212
|
+
CreatedAfter?: Date | undefined;
|
|
213
|
+
CreatedBefore?: Date | undefined;
|
|
214
|
+
SortBy?: SortAssociationsBy | undefined;
|
|
215
|
+
SortOrder?: SortOrder | undefined;
|
|
216
|
+
NextToken?: string | undefined;
|
|
217
|
+
MaxResults?: number | undefined;
|
|
218
|
+
}
|
|
219
|
+
export interface ListAssociationsResponse {
|
|
220
|
+
AssociationSummaries?: AssociationSummary[] | undefined;
|
|
221
|
+
NextToken?: string | undefined;
|
|
222
|
+
}
|
|
223
|
+
export interface ListAutoMLJobsRequest {
|
|
224
|
+
CreationTimeAfter?: Date | undefined;
|
|
225
|
+
CreationTimeBefore?: Date | undefined;
|
|
226
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
227
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
228
|
+
NameContains?: string | undefined;
|
|
229
|
+
StatusEquals?: AutoMLJobStatus | undefined;
|
|
230
|
+
SortOrder?: AutoMLSortOrder | undefined;
|
|
231
|
+
SortBy?: AutoMLSortBy | undefined;
|
|
232
|
+
MaxResults?: number | undefined;
|
|
233
|
+
NextToken?: string | undefined;
|
|
234
|
+
}
|
|
235
|
+
export interface ListAutoMLJobsResponse {
|
|
236
|
+
AutoMLJobSummaries: AutoMLJobSummary[] | undefined;
|
|
237
|
+
NextToken?: string | undefined;
|
|
238
|
+
}
|
|
200
239
|
export interface ListCandidatesForAutoMLJobRequest {
|
|
201
240
|
AutoMLJobName: string | undefined;
|
|
202
241
|
StatusEquals?: CandidateStatus | undefined;
|
|
@@ -1579,6 +1618,7 @@ export interface OwnershipSettingsSummary {
|
|
|
1579
1618
|
}
|
|
1580
1619
|
export interface SpaceSettingsSummary {
|
|
1581
1620
|
AppType?: AppType | undefined;
|
|
1621
|
+
RemoteAccess?: FeatureStatus | undefined;
|
|
1582
1622
|
SpaceStorageSettings?: SpaceStorageSettings | undefined;
|
|
1583
1623
|
}
|
|
1584
1624
|
export interface SpaceSharingSettingsSummary {
|
|
@@ -2379,21 +2419,6 @@ export interface SendPipelineExecutionStepFailureRequest {
|
|
|
2379
2419
|
FailureReason?: string | undefined;
|
|
2380
2420
|
ClientRequestToken?: string | undefined;
|
|
2381
2421
|
}
|
|
2382
|
-
export interface SendPipelineExecutionStepFailureResponse {
|
|
2383
|
-
PipelineExecutionArn?: string | undefined;
|
|
2384
|
-
}
|
|
2385
|
-
export interface SendPipelineExecutionStepSuccessRequest {
|
|
2386
|
-
CallbackToken: string | undefined;
|
|
2387
|
-
OutputParameters?: OutputParameter[] | undefined;
|
|
2388
|
-
ClientRequestToken?: string | undefined;
|
|
2389
|
-
}
|
|
2390
|
-
export interface SendPipelineExecutionStepSuccessResponse {
|
|
2391
|
-
PipelineExecutionArn?: string | undefined;
|
|
2392
|
-
}
|
|
2393
|
-
export interface StartEdgeDeploymentStageRequest {
|
|
2394
|
-
EdgeDeploymentPlanName: string | undefined;
|
|
2395
|
-
StageName: string | undefined;
|
|
2396
|
-
}
|
|
2397
2422
|
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
2398
2423
|
export declare const ModelPackageFilterSensitiveLog: (obj: ModelPackage) => any;
|
|
2399
2424
|
export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
|