@aws-sdk/client-sagemaker 3.418.0 → 3.422.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 +7 -7
- package/dist-cjs/models/models_0.js +14 -1
- package/dist-cjs/models/models_1.js +5 -1
- package/dist-cjs/models/models_2.js +1 -7
- package/dist-cjs/models/models_3.js +8 -7
- package/dist-cjs/models/models_4.js +7 -1
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/models/models_2.js +0 -6
- package/dist-es/models/models_3.js +6 -5
- package/dist-es/models/models_4.js +6 -0
- package/dist-types/commands/CreateAutoMLJobCommand.d.ts +2 -2
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +2 -2
- package/dist-types/commands/CreateDataQualityJobDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/CreateFeatureGroupCommand.d.ts +7 -0
- package/dist-types/commands/CreateModelQualityJobDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/CreateMonitoringScheduleCommand.d.ts +2 -2
- package/dist-types/commands/DeleteDomainCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEdgeDeploymentPlanCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEdgeDeploymentStageCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +7 -0
- package/dist-types/commands/SearchCommand.d.ts +7 -0
- package/dist-types/commands/UpdateFeatureGroupCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +94 -107
- package/dist-types/models/models_1.d.ts +204 -117
- package/dist-types/models/models_2.d.ts +71 -202
- package/dist-types/models/models_3.d.ts +219 -169
- package/dist-types/models/models_4.d.ts +140 -6
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentPlanCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentStageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +28 -15
- package/dist-types/ts3.4/models/models_1.d.ts +26 -17
- package/dist-types/ts3.4/models/models_2.d.ts +15 -37
- package/dist-types/ts3.4/models/models_3.d.ts +42 -27
- package/dist-types/ts3.4/models/models_4.d.ts +26 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -38,16 +38,16 @@ using your favorite package manager:
|
|
|
38
38
|
|
|
39
39
|
The AWS SDK is modulized by clients and commands.
|
|
40
40
|
To send a request, you only need to import the `SageMakerClient` and
|
|
41
|
-
the commands you need, for example `
|
|
41
|
+
the commands you need, for example `ListActionsCommand`:
|
|
42
42
|
|
|
43
43
|
```js
|
|
44
44
|
// ES5 example
|
|
45
|
-
const { SageMakerClient,
|
|
45
|
+
const { SageMakerClient, ListActionsCommand } = require("@aws-sdk/client-sagemaker");
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
```ts
|
|
49
49
|
// ES6+ example
|
|
50
|
-
import { SageMakerClient,
|
|
50
|
+
import { SageMakerClient, ListActionsCommand } from "@aws-sdk/client-sagemaker";
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
### Usage
|
|
@@ -66,7 +66,7 @@ const client = new SageMakerClient({ region: "REGION" });
|
|
|
66
66
|
const params = {
|
|
67
67
|
/** input parameters */
|
|
68
68
|
};
|
|
69
|
-
const command = new
|
|
69
|
+
const command = new ListActionsCommand(params);
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
#### Async/await
|
|
@@ -145,7 +145,7 @@ const client = new AWS.SageMaker({ region: "REGION" });
|
|
|
145
145
|
|
|
146
146
|
// async/await.
|
|
147
147
|
try {
|
|
148
|
-
const data = await client.
|
|
148
|
+
const data = await client.listActions(params);
|
|
149
149
|
// process data.
|
|
150
150
|
} catch (error) {
|
|
151
151
|
// error handling.
|
|
@@ -153,7 +153,7 @@ try {
|
|
|
153
153
|
|
|
154
154
|
// Promises.
|
|
155
155
|
client
|
|
156
|
-
.
|
|
156
|
+
.listActions(params)
|
|
157
157
|
.then((data) => {
|
|
158
158
|
// process data.
|
|
159
159
|
})
|
|
@@ -162,7 +162,7 @@ client
|
|
|
162
162
|
});
|
|
163
163
|
|
|
164
164
|
// callbacks.
|
|
165
|
-
client.
|
|
165
|
+
client.listActions(params, (err, data) => {
|
|
166
166
|
// process err and data.
|
|
167
167
|
});
|
|
168
168
|
```
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ProblemType = exports.AutoMLJobStatus = exports.AutoMLJobSecondaryStatus = exports.AutoMLMode = exports.AutoMLS3DataType = exports.AutoMLChannelType = exports.ObjectiveStatus = exports.AutoMLProcessingUnit = exports.AutoMLJobObjectiveType = exports.CandidateStepType = exports.CandidateStatus = exports.AutoMLMetricExtendedEnum = exports.MetricSetSource = exports.AutoMLMetricEnum = exports.AutoMLAlgorithm = exports.AuthMode = exports.AthenaResultFormat = exports.AthenaResultCompressionType = exports.AsyncNotificationTopicTypes = exports.ArtifactSourceIdType = exports.AppSortKey = exports.AppSecurityGroupManagement = exports.AppNetworkAccessType = exports.AppInstanceType = exports.AppImageConfigSortKey = exports.AppStatus = exports.AppType = exports.AssemblyType = exports.SplitType = exports.BatchStrategy = exports.TrainingInstanceType = exports.OutputCompressionType = exports.RecordWrapper = exports.S3DataType = exports.S3DataDistribution = exports.FileSystemType = exports.FileSystemAccessMode = exports.CompressionType = exports.DetailedAlgorithmStatus = exports.AlgorithmStatus = exports.TrainingInputMode = exports.TrainingRepositoryAccessMode = exports.AlgorithmSortBy = exports.AggregationTransformationValue = exports.TransformInstanceType = exports.ProductionVariantInstanceType = exports.ResourceNotFound = exports.ResourceLimitExceeded = exports.AssociationEdgeType = exports.ActionStatus = void 0;
|
|
4
|
-
exports.EdgePresetDeploymentType = exports.ProcessingInstanceType = exports.ProcessingS3UploadMode = exports.Framework = exports.ResourceInUse = exports.HyperParameterTuningJobObjectiveType = exports.ParameterType = exports.HyperParameterScalingType = exports.ContentClassifier = exports.ModelCacheSetting = exports.S3ModelDataType = exports.ModelCompressionType = exports.ContainerMode = exports.RepositoryAccessMode = exports.ConflictException = exports.ConditionOutcome = exports.CompleteOnConvergence = exports.TargetPlatformOs = exports.TargetPlatformArch = exports.TargetPlatformAccelerator = exports.TargetDevice = exports.CompilationJobStatus = exports.CodeRepositorySortOrder = exports.CodeRepositorySortBy = exports.ClarifyTextLanguage = exports.ClarifyTextGranularity = exports.ClarifyFeatureType = exports.CaptureStatus = exports.CaptureMode = exports.FeatureStatus = exports.DataSourceName = exports.CandidateSortBy = exports.BooleanOperator = exports.TrafficRoutingConfigType = exports.CapacitySizeType = exports.ProcessingS3InputMode = exports.ProcessingS3DataDistributionType = exports.ModelPackageStatus = exports.ModelApprovalStatus = exports.AwsManagedHumanLoopRequestSource = exports.AutotuneMode = exports.AutoMLSortOrder = exports.AutoMLSortBy = exports.AutoMLProblemTypeResolvedAttributes = exports.AutoMLProblemTypeConfigName = exports.AutoMLProblemTypeConfig = exports.FillingType = void 0;
|
|
4
|
+
exports.EdgePresetDeploymentType = exports.ProcessingInstanceType = exports.ProcessingS3UploadMode = exports.Framework = exports.ResourceInUse = exports.HyperParameterTuningJobObjectiveType = exports.ParameterType = exports.HyperParameterScalingType = exports.ContentClassifier = exports.ModelCacheSetting = exports.S3ModelDataType = exports.ModelCompressionType = exports.ContainerMode = exports.RepositoryAccessMode = exports.ConflictException = exports.ConditionOutcome = exports.CompleteOnConvergence = exports.TargetPlatformOs = exports.TargetPlatformArch = exports.TargetPlatformAccelerator = exports.TargetDevice = exports.CompilationJobStatus = exports.CollectionType = exports.CollectionConfig = exports.CodeRepositorySortOrder = exports.CodeRepositorySortBy = exports.ClarifyTextLanguage = exports.ClarifyTextGranularity = exports.ClarifyFeatureType = exports.CaptureStatus = exports.CaptureMode = exports.FeatureStatus = exports.DataSourceName = exports.CandidateSortBy = exports.BooleanOperator = exports.TrafficRoutingConfigType = exports.CapacitySizeType = exports.ProcessingS3InputMode = exports.ProcessingS3DataDistributionType = exports.ModelPackageStatus = exports.ModelApprovalStatus = exports.AwsManagedHumanLoopRequestSource = exports.AutotuneMode = exports.AutoMLSortOrder = exports.AutoMLSortBy = exports.AutoMLProblemTypeResolvedAttributes = exports.AutoMLProblemTypeConfigName = exports.AutoMLProblemTypeConfig = exports.FillingType = void 0;
|
|
5
5
|
const SageMakerServiceException_1 = require("./SageMakerServiceException");
|
|
6
6
|
exports.ActionStatus = {
|
|
7
7
|
COMPLETED: "Completed",
|
|
@@ -792,6 +792,19 @@ exports.CodeRepositorySortOrder = {
|
|
|
792
792
|
ASCENDING: "Ascending",
|
|
793
793
|
DESCENDING: "Descending",
|
|
794
794
|
};
|
|
795
|
+
var CollectionConfig;
|
|
796
|
+
(function (CollectionConfig) {
|
|
797
|
+
CollectionConfig.visit = (value, visitor) => {
|
|
798
|
+
if (value.VectorConfig !== undefined)
|
|
799
|
+
return visitor.VectorConfig(value.VectorConfig);
|
|
800
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
801
|
+
};
|
|
802
|
+
})(CollectionConfig = exports.CollectionConfig || (exports.CollectionConfig = {}));
|
|
803
|
+
exports.CollectionType = {
|
|
804
|
+
LIST: "List",
|
|
805
|
+
SET: "Set",
|
|
806
|
+
VECTOR: "Vector",
|
|
807
|
+
};
|
|
795
808
|
exports.CompilationJobStatus = {
|
|
796
809
|
COMPLETED: "COMPLETED",
|
|
797
810
|
FAILED: "FAILED",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateWorkforceRequestFilterSensitiveLog = exports.OidcConfigFilterSensitiveLog = exports.CreateModelCardRequestFilterSensitiveLog = exports.RetentionType = exports.RuleEvaluationStatus = exports.Statistic = exports.CrossAccountFilterOption = exports.TrialComponentPrimaryStatus = exports.TrialComponentParameterValue = exports.JoinSource = exports.StudioLifecycleConfigAppType = exports.ProcessingS3DataType = exports.ProcessingS3CompressionType = exports.RedshiftResultFormat = exports.RedshiftResultCompressionType = exports.InputMode = exports.DataDistributionType = exports.RootAccess = exports.DirectInternetAccess = exports.NotebookInstanceAcceleratorType = exports.MonitoringType = exports.MonitoringProblemType = exports.SkipModelValidation = exports.ModelCardStatus = exports.InferenceExecutionMode = exports.FlatInvocations = exports.RecommendationJobType = exports.TrafficType = exports.RecommendationJobSupportedEndpointType = exports.InferenceExperimentType = exports._InstanceType = exports.ModelInfrastructureType = exports.VendorGuidance = exports.Processor = exports.JobType = exports.HyperParameterTuningJobWarmStartType = exports.HyperParameterTuningAllocationStrategy = exports.TrainingJobEarlyStoppingType = exports.HyperParameterTuningJobStrategyType = exports.TtlDurationUnit = exports.TableFormat = exports.FeatureType = exports.ProductionVariantAcceleratorType = exports.DeviceSubsetType = exports.FailureHandlingPolicy = exports.ExecutionRoleIdentityConfig = exports.NotebookOutputOption = exports.RStudioServerProUserGroup = exports.RStudioServerProAccessStatus = void 0;
|
|
3
|
+
exports.CreateWorkforceRequestFilterSensitiveLog = exports.OidcConfigFilterSensitiveLog = exports.CreateModelCardRequestFilterSensitiveLog = exports.RetentionType = exports.RuleEvaluationStatus = exports.Statistic = exports.CrossAccountFilterOption = exports.TrialComponentPrimaryStatus = exports.TrialComponentParameterValue = exports.JoinSource = exports.StudioLifecycleConfigAppType = exports.ProcessingS3DataType = exports.ProcessingS3CompressionType = exports.RedshiftResultFormat = exports.RedshiftResultCompressionType = exports.InputMode = exports.DataDistributionType = exports.RootAccess = exports.DirectInternetAccess = exports.NotebookInstanceAcceleratorType = exports.MonitoringType = exports.MonitoringProblemType = exports.SkipModelValidation = exports.ModelCardStatus = exports.InferenceExecutionMode = exports.FlatInvocations = exports.RecommendationJobType = exports.TrafficType = exports.RecommendationJobSupportedEndpointType = exports.InferenceExperimentType = exports._InstanceType = exports.ModelInfrastructureType = exports.VendorGuidance = exports.Processor = exports.JobType = exports.HyperParameterTuningJobWarmStartType = exports.HyperParameterTuningAllocationStrategy = exports.TrainingJobEarlyStoppingType = exports.HyperParameterTuningJobStrategyType = exports.TtlDurationUnit = exports.StorageType = exports.TableFormat = exports.FeatureType = exports.ProductionVariantAcceleratorType = exports.DeviceSubsetType = exports.FailureHandlingPolicy = exports.ExecutionRoleIdentityConfig = exports.NotebookOutputOption = exports.RStudioServerProUserGroup = exports.RStudioServerProAccessStatus = void 0;
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
5
|
exports.RStudioServerProAccessStatus = {
|
|
6
6
|
Disabled: "DISABLED",
|
|
@@ -44,6 +44,10 @@ exports.TableFormat = {
|
|
|
44
44
|
GLUE: "Glue",
|
|
45
45
|
ICEBERG: "Iceberg",
|
|
46
46
|
};
|
|
47
|
+
exports.StorageType = {
|
|
48
|
+
IN_MEMORY: "InMemory",
|
|
49
|
+
STANDARD: "Standard",
|
|
50
|
+
};
|
|
47
51
|
exports.TtlDurationUnit = {
|
|
48
52
|
DAYS: "Days",
|
|
49
53
|
HOURS: "Hours",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeModelCardResponseFilterSensitiveLog = exports.
|
|
3
|
+
exports.DescribeModelCardResponseFilterSensitiveLog = exports.EndpointSortKey = exports.EndpointConfigSortKey = exports.ScalingPolicy = exports.MetricSpecification = exports.Direction = exports.DeviceDeploymentStatus = exports.WorkforceStatus = exports.UserProfileStatus = exports.TransformJobStatus = exports.WarmPoolResourceStatus = exports.SecondaryStatus = exports.ProfilingStatus = exports.SpaceStatus = exports.ProjectStatus = exports.ProcessingJobStatus = exports.PipelineExecutionStatus = exports.PipelineStatus = exports.NotebookInstanceStatus = exports.ScheduleStatus = exports.ExecutionStatus = exports.ModelPackageGroupStatus = exports.DetailedModelPackageStatus = exports.ModelCardExportJobStatus = exports.ModelCardProcessingStatus = exports.LabelingJobStatus = exports.RecommendationJobStatus = exports.InferenceExperimentStatus = exports.ModelVariantStatus = exports.ImageVersionStatus = exports.ImageStatus = exports.HyperParameterTuningJobStatus = exports.TrainingJobStatus = exports.HumanTaskUiStatus = exports.HubContentStatus = exports.HubStatus = exports.FlowDefinitionStatus = exports.OfflineStoreStatusValue = exports.LastUpdateStatusValue = exports.FeatureGroupStatus = exports.VariantStatus = exports.EndpointStatus = exports.EdgePresetDeploymentStatus = exports.EdgePackagingJobStatus = exports.DomainStatus = exports.StageStatus = exports.RecommendationStatus = exports.HubContentType = void 0;
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
5
|
exports.HubContentType = {
|
|
6
6
|
MODEL: "Model",
|
|
@@ -347,12 +347,6 @@ exports.EndpointSortKey = {
|
|
|
347
347
|
Name: "Name",
|
|
348
348
|
Status: "Status",
|
|
349
349
|
};
|
|
350
|
-
exports.FeatureGroupSortBy = {
|
|
351
|
-
CREATION_TIME: "CreationTime",
|
|
352
|
-
FEATURE_GROUP_STATUS: "FeatureGroupStatus",
|
|
353
|
-
NAME: "Name",
|
|
354
|
-
OFFLINE_STORE_STATUS: "OfflineStoreStatus",
|
|
355
|
-
};
|
|
356
350
|
const DescribeModelCardResponseFilterSensitiveLog = (obj) => ({
|
|
357
351
|
...obj,
|
|
358
352
|
...(obj.Content && { Content: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.ModelCardFilterSensitiveLog = exports.
|
|
3
|
+
exports.NotebookInstanceSortOrder = exports.NotebookInstanceSortKey = exports.NotebookInstanceLifecycleConfigSortOrder = exports.NotebookInstanceLifecycleConfigSortKey = exports.MonitoringScheduleSortKey = exports.MonitoringExecutionSortKey = exports.MonitoringAlertStatus = exports.MonitoringAlertHistorySortKey = exports.ModelSortKey = exports.ModelPackageSortBy = exports.ModelPackageType = exports.ModelPackageGroupSortBy = exports.ModelMetadataFilterType = exports.ModelCardVersionSortBy = exports.ModelCardSortOrder = exports.ModelCardSortBy = exports.ModelCardExportJobSortOrder = exports.ModelCardExportJobSortBy = exports.SortLineageGroupsBy = exports.ListLabelingJobsForWorkteamSortByOptions = exports.SortBy = exports.ListInferenceRecommendationsJobsSortBy = exports.SortInferenceExperimentsBy = exports.SortExperimentsBy = exports.OrderKey = exports.ListEdgePackagingJobsSortBy = exports.ListEdgeDeploymentPlansSortBy = exports.ListDeviceFleetsSortBy = exports.MonitoringJobDefinitionSortKey = exports.SortContextsBy = exports.ListCompilationJobsSortBy = exports.SortAssociationsBy = exports.SortArtifactsBy = exports.SortOrder = exports.SortActionsBy = exports.LineageType = exports.RecommendationStepType = exports.InferenceExperimentStopDesiredState = exports.ImageVersionSortOrder = exports.ImageVersionSortBy = exports.ImageSortOrder = exports.ImageSortBy = exports.HyperParameterTuningJobSortByOptions = exports.HubSortBy = exports.HubContentSortBy = exports.ResourceType = exports.SagemakerServicecatalogStatus = exports.Operator = exports.FeatureGroupSortOrder = exports.FeatureGroupSortBy = void 0;
|
|
4
|
+
exports.ModelCardFilterSensitiveLog = exports.ListWorkteamsSortByOptions = exports.ListWorkforcesSortByOptions = exports.UserProfileSortKey = exports.SortTrialsBy = exports.SortTrialComponentsBy = exports.TrainingJobSortByOptions = exports.StudioLifecycleConfigSortKey = exports.SpaceSortKey = exports.ResourceCatalogSortOrder = exports.ResourceCatalogSortBy = exports.ProjectSortOrder = exports.ProjectSortBy = exports.SortPipelinesBy = exports.StepStatus = exports.SortPipelineExecutionsBy = void 0;
|
|
5
5
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
6
|
+
exports.FeatureGroupSortBy = {
|
|
7
|
+
CREATION_TIME: "CreationTime",
|
|
8
|
+
FEATURE_GROUP_STATUS: "FeatureGroupStatus",
|
|
9
|
+
NAME: "Name",
|
|
10
|
+
OFFLINE_STORE_STATUS: "OfflineStoreStatus",
|
|
11
|
+
};
|
|
6
12
|
exports.FeatureGroupSortOrder = {
|
|
7
13
|
ASCENDING: "Ascending",
|
|
8
14
|
DESCENDING: "Descending",
|
|
@@ -311,11 +317,6 @@ exports.ListWorkteamsSortByOptions = {
|
|
|
311
317
|
CreateDate: "CreateDate",
|
|
312
318
|
Name: "Name",
|
|
313
319
|
};
|
|
314
|
-
exports.ModelVariantAction = {
|
|
315
|
-
PROMOTE: "Promote",
|
|
316
|
-
REMOVE: "Remove",
|
|
317
|
-
RETAIN: "Retain",
|
|
318
|
-
};
|
|
319
320
|
const ModelCardFilterSensitiveLog = (obj) => ({
|
|
320
321
|
...obj,
|
|
321
322
|
...(obj.Content && { Content: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateWorkforceRequestFilterSensitiveLog = exports.UpdateModelCardRequestFilterSensitiveLog = exports.SearchResponseFilterSensitiveLog = exports.SearchRecordFilterSensitiveLog = exports.VariantPropertyType = exports.SearchSortOrder = void 0;
|
|
3
|
+
exports.UpdateWorkforceRequestFilterSensitiveLog = exports.UpdateModelCardRequestFilterSensitiveLog = exports.SearchResponseFilterSensitiveLog = exports.SearchRecordFilterSensitiveLog = exports.VariantPropertyType = exports.SearchSortOrder = exports.ModelVariantAction = void 0;
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
5
|
const models_1_1 = require("./models_1");
|
|
6
6
|
const models_3_1 = require("./models_3");
|
|
7
|
+
exports.ModelVariantAction = {
|
|
8
|
+
PROMOTE: "Promote",
|
|
9
|
+
REMOVE: "Remove",
|
|
10
|
+
RETAIN: "Retain",
|
|
11
|
+
};
|
|
7
12
|
exports.SearchSortOrder = {
|
|
8
13
|
ASCENDING: "Ascending",
|
|
9
14
|
DESCENDING: "Descending",
|
|
@@ -16,6 +21,7 @@ exports.VariantPropertyType = {
|
|
|
16
21
|
const SearchRecordFilterSensitiveLog = (obj) => ({
|
|
17
22
|
...obj,
|
|
18
23
|
...(obj.TrialComponent && { TrialComponent: obj.TrialComponent }),
|
|
24
|
+
...(obj.FeatureGroup && { FeatureGroup: obj.FeatureGroup }),
|
|
19
25
|
...(obj.ModelCard && { ModelCard: (0, models_3_1.ModelCardFilterSensitiveLog)(obj.ModelCard) }),
|
|
20
26
|
});
|
|
21
27
|
exports.SearchRecordFilterSensitiveLog = SearchRecordFilterSensitiveLog;
|
|
@@ -786,6 +786,19 @@ export const CodeRepositorySortOrder = {
|
|
|
786
786
|
ASCENDING: "Ascending",
|
|
787
787
|
DESCENDING: "Descending",
|
|
788
788
|
};
|
|
789
|
+
export var CollectionConfig;
|
|
790
|
+
(function (CollectionConfig) {
|
|
791
|
+
CollectionConfig.visit = (value, visitor) => {
|
|
792
|
+
if (value.VectorConfig !== undefined)
|
|
793
|
+
return visitor.VectorConfig(value.VectorConfig);
|
|
794
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
795
|
+
};
|
|
796
|
+
})(CollectionConfig || (CollectionConfig = {}));
|
|
797
|
+
export const CollectionType = {
|
|
798
|
+
LIST: "List",
|
|
799
|
+
SET: "Set",
|
|
800
|
+
VECTOR: "Vector",
|
|
801
|
+
};
|
|
789
802
|
export const CompilationJobStatus = {
|
|
790
803
|
COMPLETED: "COMPLETED",
|
|
791
804
|
FAILED: "FAILED",
|
|
@@ -344,12 +344,6 @@ export const EndpointSortKey = {
|
|
|
344
344
|
Name: "Name",
|
|
345
345
|
Status: "Status",
|
|
346
346
|
};
|
|
347
|
-
export const FeatureGroupSortBy = {
|
|
348
|
-
CREATION_TIME: "CreationTime",
|
|
349
|
-
FEATURE_GROUP_STATUS: "FeatureGroupStatus",
|
|
350
|
-
NAME: "Name",
|
|
351
|
-
OFFLINE_STORE_STATUS: "OfflineStoreStatus",
|
|
352
|
-
};
|
|
353
347
|
export const DescribeModelCardResponseFilterSensitiveLog = (obj) => ({
|
|
354
348
|
...obj,
|
|
355
349
|
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
|
+
export const FeatureGroupSortBy = {
|
|
3
|
+
CREATION_TIME: "CreationTime",
|
|
4
|
+
FEATURE_GROUP_STATUS: "FeatureGroupStatus",
|
|
5
|
+
NAME: "Name",
|
|
6
|
+
OFFLINE_STORE_STATUS: "OfflineStoreStatus",
|
|
7
|
+
};
|
|
2
8
|
export const FeatureGroupSortOrder = {
|
|
3
9
|
ASCENDING: "Ascending",
|
|
4
10
|
DESCENDING: "Descending",
|
|
@@ -307,11 +313,6 @@ export const ListWorkteamsSortByOptions = {
|
|
|
307
313
|
CreateDate: "CreateDate",
|
|
308
314
|
Name: "Name",
|
|
309
315
|
};
|
|
310
|
-
export const ModelVariantAction = {
|
|
311
|
-
PROMOTE: "Promote",
|
|
312
|
-
REMOVE: "Remove",
|
|
313
|
-
RETAIN: "Retain",
|
|
314
|
-
};
|
|
315
316
|
export const ModelCardFilterSensitiveLog = (obj) => ({
|
|
316
317
|
...obj,
|
|
317
318
|
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { OidcConfigFilterSensitiveLog, } from "./models_1";
|
|
3
3
|
import { ModelCardFilterSensitiveLog, } from "./models_3";
|
|
4
|
+
export const ModelVariantAction = {
|
|
5
|
+
PROMOTE: "Promote",
|
|
6
|
+
REMOVE: "Remove",
|
|
7
|
+
RETAIN: "Retain",
|
|
8
|
+
};
|
|
4
9
|
export const SearchSortOrder = {
|
|
5
10
|
ASCENDING: "Ascending",
|
|
6
11
|
DESCENDING: "Descending",
|
|
@@ -13,6 +18,7 @@ export const VariantPropertyType = {
|
|
|
13
18
|
export const SearchRecordFilterSensitiveLog = (obj) => ({
|
|
14
19
|
...obj,
|
|
15
20
|
...(obj.TrialComponent && { TrialComponent: obj.TrialComponent }),
|
|
21
|
+
...(obj.FeatureGroup && { FeatureGroup: obj.FeatureGroup }),
|
|
16
22
|
...(obj.ModelCard && { ModelCard: ModelCardFilterSensitiveLog(obj.ModelCard) }),
|
|
17
23
|
});
|
|
18
24
|
export const SearchResponseFilterSensitiveLog = (obj) => ({
|
|
@@ -28,8 +28,8 @@ export interface CreateAutoMLJobCommandOutput extends CreateAutoMLJobResponse, _
|
|
|
28
28
|
* <p>We recommend using the new versions <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJobV2.html">CreateAutoMLJobV2</a> and <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeAutoMLJobV2.html">DescribeAutoMLJobV2</a>, which offer backward compatibility.</p>
|
|
29
29
|
* <p>
|
|
30
30
|
* <code>CreateAutoMLJobV2</code> can manage tabular problem types identical to those of
|
|
31
|
-
* its previous version <code>CreateAutoMLJob</code>, as well as
|
|
32
|
-
* such as image or text classification.</p>
|
|
31
|
+
* its previous version <code>CreateAutoMLJob</code>, as well as time-series forecasting,
|
|
32
|
+
* and non-tabular problem types such as image or text classification.</p>
|
|
33
33
|
* <p>Find guidelines about how to migrate a <code>CreateAutoMLJob</code> to
|
|
34
34
|
* <code>CreateAutoMLJobV2</code> in <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-automate-model-development-create-experiment-api.html#autopilot-create-experiment-api-migrate-v1-v2">Migrate a CreateAutoMLJob to CreateAutoMLJobV2</a>.</p>
|
|
35
35
|
* </note>
|
|
@@ -30,8 +30,8 @@ export interface CreateAutoMLJobV2CommandOutput extends CreateAutoMLJobV2Respons
|
|
|
30
30
|
* and <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeAutoMLJob.html">DescribeAutoMLJob</a> which offer backward compatibility.</p>
|
|
31
31
|
* <p>
|
|
32
32
|
* <code>CreateAutoMLJobV2</code> can manage tabular problem types identical to those of
|
|
33
|
-
* its previous version <code>CreateAutoMLJob</code>, as well as
|
|
34
|
-
* such as image or text classification.</p>
|
|
33
|
+
* its previous version <code>CreateAutoMLJob</code>, as well as time-series forecasting,
|
|
34
|
+
* and non-tabular problem types such as image or text classification.</p>
|
|
35
35
|
* <p>Find guidelines about how to migrate a <code>CreateAutoMLJob</code> to
|
|
36
36
|
* <code>CreateAutoMLJobV2</code> in <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-automate-model-development-create-experiment-api.html#autopilot-create-experiment-api-migrate-v1-v2">Migrate a CreateAutoMLJob to CreateAutoMLJobV2</a>.</p>
|
|
37
37
|
* </note>
|
|
@@ -24,7 +24,8 @@ export interface CreateDataQualityJobDefinitionCommandOutput extends CreateDataQ
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Creates a definition for a job that monitors data quality and drift. For information
|
|
27
|
-
* about model monitor, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html">Amazon SageMaker Model
|
|
27
|
+
* about model monitor, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html">Amazon SageMaker Model
|
|
28
|
+
* Monitor</a>.</p>
|
|
28
29
|
* @example
|
|
29
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
31
|
* ```javascript
|
|
@@ -51,6 +51,12 @@ export interface CreateFeatureGroupCommandOutput extends CreateFeatureGroupRespo
|
|
|
51
51
|
* { // FeatureDefinition
|
|
52
52
|
* FeatureName: "STRING_VALUE",
|
|
53
53
|
* FeatureType: "Integral" || "Fractional" || "String",
|
|
54
|
+
* CollectionType: "List" || "Set" || "Vector",
|
|
55
|
+
* CollectionConfig: { // CollectionConfig Union: only one key present
|
|
56
|
+
* VectorConfig: { // VectorConfig
|
|
57
|
+
* Dimension: Number("int"), // required
|
|
58
|
+
* },
|
|
59
|
+
* },
|
|
54
60
|
* },
|
|
55
61
|
* ],
|
|
56
62
|
* OnlineStoreConfig: { // OnlineStoreConfig
|
|
@@ -62,6 +68,7 @@ export interface CreateFeatureGroupCommandOutput extends CreateFeatureGroupRespo
|
|
|
62
68
|
* Unit: "Seconds" || "Minutes" || "Hours" || "Days" || "Weeks",
|
|
63
69
|
* Value: Number("int"),
|
|
64
70
|
* },
|
|
71
|
+
* StorageType: "Standard" || "InMemory",
|
|
65
72
|
* },
|
|
66
73
|
* OfflineStoreConfig: { // OfflineStoreConfig
|
|
67
74
|
* S3StorageConfig: { // S3StorageConfig
|
|
@@ -24,7 +24,8 @@ export interface CreateModelQualityJobDefinitionCommandOutput extends CreateMode
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Creates a definition for a job that monitors model quality and drift. For information
|
|
27
|
-
* about model monitor, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html">Amazon SageMaker Model
|
|
27
|
+
* about model monitor, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html">Amazon SageMaker Model
|
|
28
|
+
* Monitor</a>.</p>
|
|
28
29
|
* @example
|
|
29
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
31
|
* ```javascript
|
|
@@ -23,8 +23,8 @@ export interface CreateMonitoringScheduleCommandOutput extends CreateMonitoringS
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Creates a schedule that regularly starts Amazon SageMaker Processing Jobs to
|
|
27
|
-
* captured for an Amazon SageMaker Endpoint.</p>
|
|
26
|
+
* <p>Creates a schedule that regularly starts Amazon SageMaker Processing Jobs to
|
|
27
|
+
* monitor the data captured for an Amazon SageMaker Endpoint.</p>
|
|
28
28
|
* @example
|
|
29
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
30
|
* ```javascript
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DeleteDomainRequest } from "../models/
|
|
4
|
+
import { DeleteDomainRequest } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DeleteEdgeDeploymentPlanRequest } from "../models/
|
|
4
|
+
import { DeleteEdgeDeploymentPlanRequest } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DeleteEdgeDeploymentStageRequest } from "../models/
|
|
4
|
+
import { DeleteEdgeDeploymentStageRequest } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
-
import { DeleteEndpointInput } from "../models/
|
|
4
|
+
import { DeleteEndpointInput } from "../models/models_2";
|
|
5
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -47,6 +47,12 @@ export interface DescribeFeatureGroupCommandOutput extends DescribeFeatureGroupR
|
|
|
47
47
|
* // { // FeatureDefinition
|
|
48
48
|
* // FeatureName: "STRING_VALUE",
|
|
49
49
|
* // FeatureType: "Integral" || "Fractional" || "String",
|
|
50
|
+
* // CollectionType: "List" || "Set" || "Vector",
|
|
51
|
+
* // CollectionConfig: { // CollectionConfig Union: only one key present
|
|
52
|
+
* // VectorConfig: { // VectorConfig
|
|
53
|
+
* // Dimension: Number("int"), // required
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
50
56
|
* // },
|
|
51
57
|
* // ],
|
|
52
58
|
* // CreationTime: new Date("TIMESTAMP"), // required
|
|
@@ -60,6 +66,7 @@ export interface DescribeFeatureGroupCommandOutput extends DescribeFeatureGroupR
|
|
|
60
66
|
* // Unit: "Seconds" || "Minutes" || "Hours" || "Days" || "Weeks",
|
|
61
67
|
* // Value: Number("int"),
|
|
62
68
|
* // },
|
|
69
|
+
* // StorageType: "Standard" || "InMemory",
|
|
63
70
|
* // },
|
|
64
71
|
* // OfflineStoreConfig: { // OfflineStoreConfig
|
|
65
72
|
* // S3StorageConfig: { // S3StorageConfig
|
|
@@ -1337,6 +1337,12 @@ export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {
|
|
|
1337
1337
|
* // { // FeatureDefinition
|
|
1338
1338
|
* // FeatureName: "STRING_VALUE",
|
|
1339
1339
|
* // FeatureType: "Integral" || "Fractional" || "String",
|
|
1340
|
+
* // CollectionType: "List" || "Set" || "Vector",
|
|
1341
|
+
* // CollectionConfig: { // CollectionConfig Union: only one key present
|
|
1342
|
+
* // VectorConfig: { // VectorConfig
|
|
1343
|
+
* // Dimension: Number("int"), // required
|
|
1344
|
+
* // },
|
|
1345
|
+
* // },
|
|
1340
1346
|
* // },
|
|
1341
1347
|
* // ],
|
|
1342
1348
|
* // CreationTime: new Date("TIMESTAMP"),
|
|
@@ -1350,6 +1356,7 @@ export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {
|
|
|
1350
1356
|
* // Unit: "Seconds" || "Minutes" || "Hours" || "Days" || "Weeks",
|
|
1351
1357
|
* // Value: Number("int"),
|
|
1352
1358
|
* // },
|
|
1359
|
+
* // StorageType: "Standard" || "InMemory",
|
|
1353
1360
|
* // },
|
|
1354
1361
|
* // OfflineStoreConfig: { // OfflineStoreConfig
|
|
1355
1362
|
* // S3StorageConfig: { // S3StorageConfig
|
|
@@ -47,6 +47,12 @@ export interface UpdateFeatureGroupCommandOutput extends UpdateFeatureGroupRespo
|
|
|
47
47
|
* { // FeatureDefinition
|
|
48
48
|
* FeatureName: "STRING_VALUE",
|
|
49
49
|
* FeatureType: "Integral" || "Fractional" || "String",
|
|
50
|
+
* CollectionType: "List" || "Set" || "Vector",
|
|
51
|
+
* CollectionConfig: { // CollectionConfig Union: only one key present
|
|
52
|
+
* VectorConfig: { // VectorConfig
|
|
53
|
+
* Dimension: Number("int"), // required
|
|
54
|
+
* },
|
|
55
|
+
* },
|
|
50
56
|
* },
|
|
51
57
|
* ],
|
|
52
58
|
* OnlineStoreConfig: { // OnlineStoreConfigUpdate
|