@aws-sdk/client-sagemaker 3.162.0 → 3.165.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/CHANGELOG.md +30 -0
- package/dist-cjs/commands/ListNotebookInstancesCommand.js +1 -2
- package/dist-cjs/models/models_0.js +10 -9
- package/dist-cjs/models/models_1.js +5 -8
- package/dist-cjs/models/models_2.js +18 -14
- package/dist-cjs/models/models_3.js +12 -4
- package/dist-cjs/protocols/Aws_json1_1.js +55 -0
- package/dist-es/commands/ListNotebookInstancesCommand.js +1 -2
- package/dist-es/models/models_0.js +5 -1
- package/dist-es/models/models_1.js +1 -7
- package/dist-es/models/models_2.js +9 -2
- package/dist-es/models/models_3.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +55 -2
- package/dist-types/commands/ListNotebookInstancesCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +12 -16
- package/dist-types/models/models_1.d.ts +14 -7
- package/dist-types/models/models_2.d.ts +108 -141
- package/dist-types/models/models_3.d.ts +144 -1
- package/dist-types/ts3.4/commands/ListNotebookInstancesCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +6 -7
- package/dist-types/ts3.4/models/models_1.d.ts +8 -7
- package/dist-types/ts3.4/models/models_2.d.ts +48 -57
- package/dist-types/ts3.4/models/models_3.d.ts +58 -1
- package/package.json +6 -6
|
@@ -16922,14 +16922,18 @@ var serializeAws_json1_1DomainSecurityGroupIds = function (input, context) {
|
|
|
16922
16922
|
});
|
|
16923
16923
|
};
|
|
16924
16924
|
var serializeAws_json1_1DomainSettings = function (input, context) {
|
|
16925
|
-
return __assign(__assign({}, (input.
|
|
16925
|
+
return __assign(__assign(__assign({}, (input.ExecutionRoleIdentityConfig != null && {
|
|
16926
|
+
ExecutionRoleIdentityConfig: input.ExecutionRoleIdentityConfig,
|
|
16927
|
+
})), (input.RStudioServerProDomainSettings != null && {
|
|
16926
16928
|
RStudioServerProDomainSettings: serializeAws_json1_1RStudioServerProDomainSettings(input.RStudioServerProDomainSettings, context),
|
|
16927
16929
|
})), (input.SecurityGroupIds != null && {
|
|
16928
16930
|
SecurityGroupIds: serializeAws_json1_1DomainSecurityGroupIds(input.SecurityGroupIds, context),
|
|
16929
16931
|
}));
|
|
16930
16932
|
};
|
|
16931
16933
|
var serializeAws_json1_1DomainSettingsForUpdate = function (input, context) {
|
|
16932
|
-
return __assign({}, (input.
|
|
16934
|
+
return __assign(__assign({}, (input.ExecutionRoleIdentityConfig != null && {
|
|
16935
|
+
ExecutionRoleIdentityConfig: input.ExecutionRoleIdentityConfig,
|
|
16936
|
+
})), (input.RStudioServerProDomainSettingsForUpdate != null && {
|
|
16933
16937
|
RStudioServerProDomainSettingsForUpdate: serializeAws_json1_1RStudioServerProDomainSettingsForUpdate(input.RStudioServerProDomainSettingsForUpdate, context),
|
|
16934
16938
|
}));
|
|
16935
16939
|
};
|
|
@@ -22179,6 +22183,7 @@ var deserializeAws_json1_1DomainSecurityGroupIds = function (output, context) {
|
|
|
22179
22183
|
};
|
|
22180
22184
|
var deserializeAws_json1_1DomainSettings = function (output, context) {
|
|
22181
22185
|
return {
|
|
22186
|
+
ExecutionRoleIdentityConfig: __expectString(output.ExecutionRoleIdentityConfig),
|
|
22182
22187
|
RStudioServerProDomainSettings: output.RStudioServerProDomainSettings != null
|
|
22183
22188
|
? deserializeAws_json1_1RStudioServerProDomainSettings(output.RStudioServerProDomainSettings, context)
|
|
22184
22189
|
: undefined,
|
|
@@ -23153,6 +23158,48 @@ var deserializeAws_json1_1HyperParameterTuningJobObjectives = function (output,
|
|
|
23153
23158
|
});
|
|
23154
23159
|
return retVal;
|
|
23155
23160
|
};
|
|
23161
|
+
var deserializeAws_json1_1HyperParameterTuningJobSearchEntity = function (output, context) {
|
|
23162
|
+
return {
|
|
23163
|
+
BestTrainingJob: output.BestTrainingJob != null
|
|
23164
|
+
? deserializeAws_json1_1HyperParameterTrainingJobSummary(output.BestTrainingJob, context)
|
|
23165
|
+
: undefined,
|
|
23166
|
+
CreationTime: output.CreationTime != null
|
|
23167
|
+
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.CreationTime)))
|
|
23168
|
+
: undefined,
|
|
23169
|
+
FailureReason: __expectString(output.FailureReason),
|
|
23170
|
+
HyperParameterTuningEndTime: output.HyperParameterTuningEndTime != null
|
|
23171
|
+
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.HyperParameterTuningEndTime)))
|
|
23172
|
+
: undefined,
|
|
23173
|
+
HyperParameterTuningJobArn: __expectString(output.HyperParameterTuningJobArn),
|
|
23174
|
+
HyperParameterTuningJobConfig: output.HyperParameterTuningJobConfig != null
|
|
23175
|
+
? deserializeAws_json1_1HyperParameterTuningJobConfig(output.HyperParameterTuningJobConfig, context)
|
|
23176
|
+
: undefined,
|
|
23177
|
+
HyperParameterTuningJobName: __expectString(output.HyperParameterTuningJobName),
|
|
23178
|
+
HyperParameterTuningJobStatus: __expectString(output.HyperParameterTuningJobStatus),
|
|
23179
|
+
LastModifiedTime: output.LastModifiedTime != null
|
|
23180
|
+
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.LastModifiedTime)))
|
|
23181
|
+
: undefined,
|
|
23182
|
+
ObjectiveStatusCounters: output.ObjectiveStatusCounters != null
|
|
23183
|
+
? deserializeAws_json1_1ObjectiveStatusCounters(output.ObjectiveStatusCounters, context)
|
|
23184
|
+
: undefined,
|
|
23185
|
+
OverallBestTrainingJob: output.OverallBestTrainingJob != null
|
|
23186
|
+
? deserializeAws_json1_1HyperParameterTrainingJobSummary(output.OverallBestTrainingJob, context)
|
|
23187
|
+
: undefined,
|
|
23188
|
+
Tags: output.Tags != null ? deserializeAws_json1_1TagList(output.Tags, context) : undefined,
|
|
23189
|
+
TrainingJobDefinition: output.TrainingJobDefinition != null
|
|
23190
|
+
? deserializeAws_json1_1HyperParameterTrainingJobDefinition(output.TrainingJobDefinition, context)
|
|
23191
|
+
: undefined,
|
|
23192
|
+
TrainingJobDefinitions: output.TrainingJobDefinitions != null
|
|
23193
|
+
? deserializeAws_json1_1HyperParameterTrainingJobDefinitions(output.TrainingJobDefinitions, context)
|
|
23194
|
+
: undefined,
|
|
23195
|
+
TrainingJobStatusCounters: output.TrainingJobStatusCounters != null
|
|
23196
|
+
? deserializeAws_json1_1TrainingJobStatusCounters(output.TrainingJobStatusCounters, context)
|
|
23197
|
+
: undefined,
|
|
23198
|
+
WarmStartConfig: output.WarmStartConfig != null
|
|
23199
|
+
? deserializeAws_json1_1HyperParameterTuningJobWarmStartConfig(output.WarmStartConfig, context)
|
|
23200
|
+
: undefined,
|
|
23201
|
+
};
|
|
23202
|
+
};
|
|
23156
23203
|
var deserializeAws_json1_1HyperParameterTuningJobSummaries = function (output, context) {
|
|
23157
23204
|
var retVal = (output || [])
|
|
23158
23205
|
.filter(function (e) { return e != null; })
|
|
@@ -26169,6 +26216,9 @@ var deserializeAws_json1_1SearchRecord = function (output, context) {
|
|
|
26169
26216
|
FeatureMetadata: output.FeatureMetadata != null
|
|
26170
26217
|
? deserializeAws_json1_1FeatureMetadata(output.FeatureMetadata, context)
|
|
26171
26218
|
: undefined,
|
|
26219
|
+
HyperParameterTuningJob: output.HyperParameterTuningJob != null
|
|
26220
|
+
? deserializeAws_json1_1HyperParameterTuningJobSearchEntity(output.HyperParameterTuningJob, context)
|
|
26221
|
+
: undefined,
|
|
26172
26222
|
ModelPackage: output.ModelPackage != null ? deserializeAws_json1_1ModelPackage(output.ModelPackage, context) : undefined,
|
|
26173
26223
|
ModelPackageGroup: output.ModelPackageGroup != null
|
|
26174
26224
|
? deserializeAws_json1_1ModelPackageGroup(output.ModelPackageGroup, context)
|
|
@@ -27378,6 +27428,9 @@ var loadRestJsonErrorCode = function (output, data) {
|
|
|
27378
27428
|
if (typeof cleanValue === "number") {
|
|
27379
27429
|
cleanValue = cleanValue.toString();
|
|
27380
27430
|
}
|
|
27431
|
+
if (cleanValue.indexOf(",") >= 0) {
|
|
27432
|
+
cleanValue = cleanValue.split(",")[0];
|
|
27433
|
+
}
|
|
27381
27434
|
if (cleanValue.indexOf(":") >= 0) {
|
|
27382
27435
|
cleanValue = cleanValue.split(":")[0];
|
|
27383
27436
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListNotebookInstancesInput } from "../models/
|
|
4
|
-
import { ListNotebookInstancesOutput } from "../models/models_3";
|
|
3
|
+
import { ListNotebookInstancesInput, ListNotebookInstancesOutput } from "../models/models_3";
|
|
5
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
export interface ListNotebookInstancesCommandInput extends ListNotebookInstancesInput {
|
|
7
6
|
}
|
|
@@ -1123,9 +1123,9 @@ export interface StoppingCondition {
|
|
|
1123
1123
|
* <code>MaxRuntimeInSeconds</code> specifies the maximum time for all of the attempts
|
|
1124
1124
|
* in total, not each individual attempt. The default value is 1 day. The maximum value is
|
|
1125
1125
|
* 28 days.</p>
|
|
1126
|
-
* <p>The maximum time that a <code>TrainingJob</code> can run in total, including any time
|
|
1127
|
-
* publishing metrics or archiving and uploading models after it has been stopped, is
|
|
1128
|
-
* days.</p>
|
|
1126
|
+
* <p>The maximum time that a <code>TrainingJob</code> can run in total, including any time
|
|
1127
|
+
* spent publishing metrics or archiving and uploading models after it has been stopped, is
|
|
1128
|
+
* 30 days.</p>
|
|
1129
1129
|
*/
|
|
1130
1130
|
MaxRuntimeInSeconds?: number;
|
|
1131
1131
|
/**
|
|
@@ -7179,6 +7179,10 @@ export interface UserSettings {
|
|
|
7179
7179
|
*/
|
|
7180
7180
|
RSessionAppSettings?: RSessionAppSettings;
|
|
7181
7181
|
}
|
|
7182
|
+
export declare enum ExecutionRoleIdentityConfig {
|
|
7183
|
+
DISABLED = "DISABLED",
|
|
7184
|
+
USER_PROFILE_NAME = "USER_PROFILE_NAME"
|
|
7185
|
+
}
|
|
7182
7186
|
/**
|
|
7183
7187
|
* <p>A collection of settings that configure the <code>RStudioServerPro</code> Domain-level
|
|
7184
7188
|
* app.</p>
|
|
@@ -7218,6 +7222,11 @@ export interface DomainSettings {
|
|
|
7218
7222
|
* app.</p>
|
|
7219
7223
|
*/
|
|
7220
7224
|
RStudioServerProDomainSettings?: RStudioServerProDomainSettings;
|
|
7225
|
+
/**
|
|
7226
|
+
* <p>The configuration for attaching a SageMaker user profile name to the execution role as a <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">
|
|
7227
|
+
* <code>sts:SourceIdentity</code> key</a>.</p>
|
|
7228
|
+
*/
|
|
7229
|
+
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | string;
|
|
7221
7230
|
}
|
|
7222
7231
|
export interface CreateDomainRequest {
|
|
7223
7232
|
/**
|
|
@@ -8999,15 +9008,6 @@ export declare enum TrainingJobEarlyStoppingType {
|
|
|
8999
9008
|
AUTO = "Auto",
|
|
9000
9009
|
OFF = "Off"
|
|
9001
9010
|
}
|
|
9002
|
-
/**
|
|
9003
|
-
* <p>The job completion criteria.</p>
|
|
9004
|
-
*/
|
|
9005
|
-
export interface TuningJobCompletionCriteria {
|
|
9006
|
-
/**
|
|
9007
|
-
* <p>The value of the objective metric.</p>
|
|
9008
|
-
*/
|
|
9009
|
-
TargetObjectiveMetricValue: number | undefined;
|
|
9010
|
-
}
|
|
9011
9011
|
/**
|
|
9012
9012
|
* @internal
|
|
9013
9013
|
*/
|
|
@@ -9860,7 +9860,3 @@ export declare const ParameterRangesFilterSensitiveLog: (obj: ParameterRanges) =
|
|
|
9860
9860
|
* @internal
|
|
9861
9861
|
*/
|
|
9862
9862
|
export declare const ResourceLimitsFilterSensitiveLog: (obj: ResourceLimits) => any;
|
|
9863
|
-
/**
|
|
9864
|
-
* @internal
|
|
9865
|
-
*/
|
|
9866
|
-
export declare const TuningJobCompletionCriteriaFilterSensitiveLog: (obj: TuningJobCompletionCriteria) => any;
|
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLJobArtifacts, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, BatchStrategy, Bias, CaptureStatus, CategoricalParameter, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContentClassifier, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DeploymentConfig, DeviceSelectionConfig, DomainSettings, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInput, FeatureDefinition, FeatureType, GitConfig, HyperParameterTuningJobObjective, HyperParameterTuningJobStrategyType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, OutputDataConfig, ParameterRanges, ProblemType, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantInstanceType, ProductionVariantServerlessConfig, PublicWorkforceTaskPrice, ResourceConfig, ResourceLimits, ResourceSpec, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TrainingJobEarlyStoppingType, TrainingSpecification, TransformInput, TransformJobDefinition, TransformOutput, TransformResources,
|
|
1
|
+
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLJobArtifacts, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, BatchStrategy, Bias, CaptureStatus, CategoricalParameter, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContentClassifier, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DeploymentConfig, DeviceSelectionConfig, DomainSettings, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInput, FeatureDefinition, FeatureType, GitConfig, HyperParameterTuningJobObjective, HyperParameterTuningJobStrategyType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, OutputDataConfig, ParameterRanges, ProblemType, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantInstanceType, ProductionVariantServerlessConfig, PublicWorkforceTaskPrice, ResourceConfig, ResourceLimits, ResourceSpec, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TrainingJobEarlyStoppingType, TrainingSpecification, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* <p>The job completion criteria.</p>
|
|
4
|
+
*/
|
|
5
|
+
export interface TuningJobCompletionCriteria {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The value of the objective metric.</p>
|
|
8
|
+
*/
|
|
9
|
+
TargetObjectiveMetricValue: number | undefined;
|
|
10
|
+
}
|
|
2
11
|
/**
|
|
3
12
|
* <p>Configures a hyperparameter tuning job.</p>
|
|
4
13
|
*/
|
|
@@ -8074,12 +8083,10 @@ export interface DescribeFlowDefinitionRequest {
|
|
|
8074
8083
|
*/
|
|
8075
8084
|
FlowDefinitionName: string | undefined;
|
|
8076
8085
|
}
|
|
8077
|
-
|
|
8078
|
-
|
|
8079
|
-
|
|
8080
|
-
|
|
8081
|
-
INITIALIZING = "Initializing"
|
|
8082
|
-
}
|
|
8086
|
+
/**
|
|
8087
|
+
* @internal
|
|
8088
|
+
*/
|
|
8089
|
+
export declare const TuningJobCompletionCriteriaFilterSensitiveLog: (obj: TuningJobCompletionCriteria) => any;
|
|
8083
8090
|
/**
|
|
8084
8091
|
* @internal
|
|
8085
8092
|
*/
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContainerDefinition, ContextSummary, EdgeOutputConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, ObjectiveStatus, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ProductionVariantInstanceType, ResourceConfig, ResourceLimits, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FeatureParameter,
|
|
1
|
+
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContainerDefinition, ContextSummary, EdgeOutputConfig, ExecutionRoleIdentityConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, ObjectiveStatus, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ProductionVariantInstanceType, ResourceConfig, ResourceLimits, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FeatureParameter, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InstanceMetadataServiceConfiguration, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
|
+
export declare enum FlowDefinitionStatus {
|
|
4
|
+
ACTIVE = "Active",
|
|
5
|
+
DELETING = "Deleting",
|
|
6
|
+
FAILED = "Failed",
|
|
7
|
+
INITIALIZING = "Initializing"
|
|
8
|
+
}
|
|
3
9
|
export interface DescribeFlowDefinitionResponse {
|
|
4
10
|
/**
|
|
5
11
|
* <p>The Amazon Resource Name (ARN) of the flow defintion.</p>
|
|
@@ -3532,6 +3538,11 @@ export interface DomainSettingsForUpdate {
|
|
|
3532
3538
|
* update.</p>
|
|
3533
3539
|
*/
|
|
3534
3540
|
RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
|
|
3541
|
+
/**
|
|
3542
|
+
* <p>The configuration for attaching a SageMaker user profile name to the execution role as a <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">
|
|
3543
|
+
* <code>sts:SourceIdentity</code> key</a>. This configuration can only be modified if there are no apps in the <code>InService</code> or <code>Pending</code> state.</p>
|
|
3544
|
+
*/
|
|
3545
|
+
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | string;
|
|
3535
3546
|
}
|
|
3536
3547
|
/**
|
|
3537
3548
|
* <p>A directed edge connecting two lineage entities.</p>
|
|
@@ -4489,6 +4500,7 @@ export declare enum ResourceType {
|
|
|
4489
4500
|
EXPERIMENT_TRIAL_COMPONENT = "ExperimentTrialComponent",
|
|
4490
4501
|
FEATURE_GROUP = "FeatureGroup",
|
|
4491
4502
|
FEATURE_METADATA = "FeatureMetadata",
|
|
4503
|
+
HYPER_PARAMETER_TUNING_JOB = "HyperParameterTuningJob",
|
|
4492
4504
|
MODEL_PACKAGE = "ModelPackage",
|
|
4493
4505
|
MODEL_PACKAGE_GROUP = "ModelPackageGroup",
|
|
4494
4506
|
PIPELINE = "Pipeline",
|
|
@@ -4578,6 +4590,96 @@ export interface HumanTaskUiSummary {
|
|
|
4578
4590
|
*/
|
|
4579
4591
|
CreationTime: Date | undefined;
|
|
4580
4592
|
}
|
|
4593
|
+
/**
|
|
4594
|
+
* <p>An entity having characteristics over which a user can search for a hyperparameter
|
|
4595
|
+
* tuning job.</p>
|
|
4596
|
+
*/
|
|
4597
|
+
export interface HyperParameterTuningJobSearchEntity {
|
|
4598
|
+
/**
|
|
4599
|
+
* <p>The name of a hyperparameter tuning job.</p>
|
|
4600
|
+
*/
|
|
4601
|
+
HyperParameterTuningJobName?: string;
|
|
4602
|
+
/**
|
|
4603
|
+
* <p>The Amazon Resource Name (ARN) of a hyperparameter tuning job.</p>
|
|
4604
|
+
*/
|
|
4605
|
+
HyperParameterTuningJobArn?: string;
|
|
4606
|
+
/**
|
|
4607
|
+
* <p>Configures a hyperparameter tuning job.</p>
|
|
4608
|
+
*/
|
|
4609
|
+
HyperParameterTuningJobConfig?: HyperParameterTuningJobConfig;
|
|
4610
|
+
/**
|
|
4611
|
+
* <p>Defines
|
|
4612
|
+
* the training jobs launched by a hyperparameter tuning job.</p>
|
|
4613
|
+
*/
|
|
4614
|
+
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
4615
|
+
/**
|
|
4616
|
+
* <p>The job definitions included in a hyperparameter tuning job.</p>
|
|
4617
|
+
*/
|
|
4618
|
+
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
4619
|
+
/**
|
|
4620
|
+
* <p>The status of a hyperparameter tuning job.</p>
|
|
4621
|
+
*/
|
|
4622
|
+
HyperParameterTuningJobStatus?: HyperParameterTuningJobStatus | string;
|
|
4623
|
+
/**
|
|
4624
|
+
* <p>The time that a hyperparameter tuning job was created.</p>
|
|
4625
|
+
*/
|
|
4626
|
+
CreationTime?: Date;
|
|
4627
|
+
/**
|
|
4628
|
+
* <p>The time that a hyperparameter tuning job ended.</p>
|
|
4629
|
+
*/
|
|
4630
|
+
HyperParameterTuningEndTime?: Date;
|
|
4631
|
+
/**
|
|
4632
|
+
* <p>The time that a hyperparameter tuning job was last modified.</p>
|
|
4633
|
+
*/
|
|
4634
|
+
LastModifiedTime?: Date;
|
|
4635
|
+
/**
|
|
4636
|
+
* <p>The numbers of training jobs launched by a hyperparameter tuning job, categorized by
|
|
4637
|
+
* status.</p>
|
|
4638
|
+
*/
|
|
4639
|
+
TrainingJobStatusCounters?: TrainingJobStatusCounters;
|
|
4640
|
+
/**
|
|
4641
|
+
* <p>Specifies the number of training jobs that this hyperparameter tuning job launched,
|
|
4642
|
+
* categorized by the status of their objective metric. The objective metric status shows
|
|
4643
|
+
* whether the
|
|
4644
|
+
* final
|
|
4645
|
+
* objective metric for the training job has been evaluated by the
|
|
4646
|
+
* tuning job and used in the hyperparameter tuning process.</p>
|
|
4647
|
+
*/
|
|
4648
|
+
ObjectiveStatusCounters?: ObjectiveStatusCounters;
|
|
4649
|
+
/**
|
|
4650
|
+
* <p>The container for the summary information about a training job.</p>
|
|
4651
|
+
*/
|
|
4652
|
+
BestTrainingJob?: HyperParameterTrainingJobSummary;
|
|
4653
|
+
/**
|
|
4654
|
+
* <p>The container for the summary information about a training job.</p>
|
|
4655
|
+
*/
|
|
4656
|
+
OverallBestTrainingJob?: HyperParameterTrainingJobSummary;
|
|
4657
|
+
/**
|
|
4658
|
+
* <p>Specifies the configuration for a hyperparameter tuning job that uses one or more
|
|
4659
|
+
* previous hyperparameter tuning jobs as a starting point. The results of previous tuning
|
|
4660
|
+
* jobs are used to inform which combinations of hyperparameters to search over in the new
|
|
4661
|
+
* tuning job.</p>
|
|
4662
|
+
* <p>All training jobs launched by the new hyperparameter tuning job are evaluated by using
|
|
4663
|
+
* the objective metric, and the training job that performs the best is compared to the
|
|
4664
|
+
* best training jobs from the parent tuning jobs. From these, the training job that
|
|
4665
|
+
* performs the best as measured by the objective metric is returned as the overall best
|
|
4666
|
+
* training job.</p>
|
|
4667
|
+
* <note>
|
|
4668
|
+
* <p>All training jobs launched by parent hyperparameter tuning jobs and the new
|
|
4669
|
+
* hyperparameter tuning jobs count against the limit of training jobs for the tuning
|
|
4670
|
+
* job.</p>
|
|
4671
|
+
* </note>
|
|
4672
|
+
*/
|
|
4673
|
+
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
|
|
4674
|
+
/**
|
|
4675
|
+
* <p>The error that was created when a hyperparameter tuning job failed.</p>
|
|
4676
|
+
*/
|
|
4677
|
+
FailureReason?: string;
|
|
4678
|
+
/**
|
|
4679
|
+
* <p>The tags associated with a hyperparameter tuning job. For more information see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a>.</p>
|
|
4680
|
+
*/
|
|
4681
|
+
Tags?: Tag[];
|
|
4682
|
+
}
|
|
4581
4683
|
export declare enum HyperParameterTuningJobSortByOptions {
|
|
4582
4684
|
CreationTime = "CreationTime",
|
|
4583
4685
|
Name = "Name",
|
|
@@ -7289,137 +7391,6 @@ export declare enum NotebookInstanceSortOrder {
|
|
|
7289
7391
|
ASCENDING = "Ascending",
|
|
7290
7392
|
DESCENDING = "Descending"
|
|
7291
7393
|
}
|
|
7292
|
-
export interface ListNotebookInstancesInput {
|
|
7293
|
-
/**
|
|
7294
|
-
* <p> If the previous call to the <code>ListNotebookInstances</code> is truncated, the
|
|
7295
|
-
* response includes a <code>NextToken</code>. You can use this token in your subsequent
|
|
7296
|
-
* <code>ListNotebookInstances</code> request to fetch the next set of notebook
|
|
7297
|
-
* instances. </p>
|
|
7298
|
-
* <note>
|
|
7299
|
-
* <p>You might specify a filter or a sort order in your request. When response is
|
|
7300
|
-
* truncated, you must use the same values for the filer and sort order in the next
|
|
7301
|
-
* request. </p>
|
|
7302
|
-
* </note>
|
|
7303
|
-
*/
|
|
7304
|
-
NextToken?: string;
|
|
7305
|
-
/**
|
|
7306
|
-
* <p>The maximum number of notebook instances to return.</p>
|
|
7307
|
-
*/
|
|
7308
|
-
MaxResults?: number;
|
|
7309
|
-
/**
|
|
7310
|
-
* <p>The field to sort results by. The default is <code>Name</code>.</p>
|
|
7311
|
-
*/
|
|
7312
|
-
SortBy?: NotebookInstanceSortKey | string;
|
|
7313
|
-
/**
|
|
7314
|
-
* <p>The sort order for results. </p>
|
|
7315
|
-
*/
|
|
7316
|
-
SortOrder?: NotebookInstanceSortOrder | string;
|
|
7317
|
-
/**
|
|
7318
|
-
* <p>A string in the notebook instances' name. This filter returns only notebook
|
|
7319
|
-
* instances whose name contains the specified string.</p>
|
|
7320
|
-
*/
|
|
7321
|
-
NameContains?: string;
|
|
7322
|
-
/**
|
|
7323
|
-
* <p>A filter that returns only notebook instances that were created before the
|
|
7324
|
-
* specified time (timestamp). </p>
|
|
7325
|
-
*/
|
|
7326
|
-
CreationTimeBefore?: Date;
|
|
7327
|
-
/**
|
|
7328
|
-
* <p>A filter that returns only notebook instances that were created after the specified
|
|
7329
|
-
* time (timestamp).</p>
|
|
7330
|
-
*/
|
|
7331
|
-
CreationTimeAfter?: Date;
|
|
7332
|
-
/**
|
|
7333
|
-
* <p>A filter that returns only notebook instances that were modified before the
|
|
7334
|
-
* specified time (timestamp).</p>
|
|
7335
|
-
*/
|
|
7336
|
-
LastModifiedTimeBefore?: Date;
|
|
7337
|
-
/**
|
|
7338
|
-
* <p>A filter that returns only notebook instances that were modified after the
|
|
7339
|
-
* specified time (timestamp).</p>
|
|
7340
|
-
*/
|
|
7341
|
-
LastModifiedTimeAfter?: Date;
|
|
7342
|
-
/**
|
|
7343
|
-
* <p>A filter that returns only notebook instances with the specified status.</p>
|
|
7344
|
-
*/
|
|
7345
|
-
StatusEquals?: NotebookInstanceStatus | string;
|
|
7346
|
-
/**
|
|
7347
|
-
* <p>A string in the name of a notebook instances lifecycle configuration associated with
|
|
7348
|
-
* this notebook instance. This filter returns only notebook instances associated with a
|
|
7349
|
-
* lifecycle configuration with a name that contains the specified string.</p>
|
|
7350
|
-
*/
|
|
7351
|
-
NotebookInstanceLifecycleConfigNameContains?: string;
|
|
7352
|
-
/**
|
|
7353
|
-
* <p>A string in the name or URL of a Git repository associated with this notebook
|
|
7354
|
-
* instance. This filter returns only notebook instances associated with a git repository
|
|
7355
|
-
* with a name that contains the specified string.</p>
|
|
7356
|
-
*/
|
|
7357
|
-
DefaultCodeRepositoryContains?: string;
|
|
7358
|
-
/**
|
|
7359
|
-
* <p>A filter that returns only notebook instances with associated with the specified git
|
|
7360
|
-
* repository.</p>
|
|
7361
|
-
*/
|
|
7362
|
-
AdditionalCodeRepositoryEquals?: string;
|
|
7363
|
-
}
|
|
7364
|
-
/**
|
|
7365
|
-
* <p>Provides summary information for an SageMaker notebook instance.</p>
|
|
7366
|
-
*/
|
|
7367
|
-
export interface NotebookInstanceSummary {
|
|
7368
|
-
/**
|
|
7369
|
-
* <p>The name of the notebook instance that you want a summary for.</p>
|
|
7370
|
-
*/
|
|
7371
|
-
NotebookInstanceName: string | undefined;
|
|
7372
|
-
/**
|
|
7373
|
-
* <p>The Amazon Resource Name (ARN) of the notebook instance.</p>
|
|
7374
|
-
*/
|
|
7375
|
-
NotebookInstanceArn: string | undefined;
|
|
7376
|
-
/**
|
|
7377
|
-
* <p>The status of the notebook instance.</p>
|
|
7378
|
-
*/
|
|
7379
|
-
NotebookInstanceStatus?: NotebookInstanceStatus | string;
|
|
7380
|
-
/**
|
|
7381
|
-
* <p>The URL that you use to connect to the Jupyter notebook running in your notebook
|
|
7382
|
-
* instance. </p>
|
|
7383
|
-
*/
|
|
7384
|
-
Url?: string;
|
|
7385
|
-
/**
|
|
7386
|
-
* <p>The type of ML compute instance that the notebook instance is running on.</p>
|
|
7387
|
-
*/
|
|
7388
|
-
InstanceType?: _InstanceType | string;
|
|
7389
|
-
/**
|
|
7390
|
-
* <p>A timestamp that shows when the notebook instance was created.</p>
|
|
7391
|
-
*/
|
|
7392
|
-
CreationTime?: Date;
|
|
7393
|
-
/**
|
|
7394
|
-
* <p>A timestamp that shows when the notebook instance was last modified.</p>
|
|
7395
|
-
*/
|
|
7396
|
-
LastModifiedTime?: Date;
|
|
7397
|
-
/**
|
|
7398
|
-
* <p>The name of a notebook instance lifecycle configuration associated with this notebook
|
|
7399
|
-
* instance.</p>
|
|
7400
|
-
* <p>For information about notebook instance lifestyle configurations, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html">Step
|
|
7401
|
-
* 2.1: (Optional) Customize a Notebook Instance</a>.</p>
|
|
7402
|
-
*/
|
|
7403
|
-
NotebookInstanceLifecycleConfigName?: string;
|
|
7404
|
-
/**
|
|
7405
|
-
* <p>The Git repository associated with the notebook instance as its default code
|
|
7406
|
-
* repository. This can be either the name of a Git repository stored as a resource in your
|
|
7407
|
-
* account, or the URL of a Git repository in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
|
|
7408
|
-
* or in any other Git repository. When you open a notebook instance, it opens in the
|
|
7409
|
-
* directory that contains this repository. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
|
|
7410
|
-
* Repositories with SageMaker Notebook Instances</a>.</p>
|
|
7411
|
-
*/
|
|
7412
|
-
DefaultCodeRepository?: string;
|
|
7413
|
-
/**
|
|
7414
|
-
* <p>An array of up to three Git repositories associated with the notebook instance. These
|
|
7415
|
-
* can be either the names of Git repositories stored as resources in your account, or the
|
|
7416
|
-
* URL of Git repositories in <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">Amazon Web Services CodeCommit</a>
|
|
7417
|
-
* or in any other Git repository. These repositories are cloned at the same level as the
|
|
7418
|
-
* default repository of your notebook instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html">Associating Git
|
|
7419
|
-
* Repositories with SageMaker Notebook Instances</a>.</p>
|
|
7420
|
-
*/
|
|
7421
|
-
AdditionalCodeRepositories?: string[];
|
|
7422
|
-
}
|
|
7423
7394
|
/**
|
|
7424
7395
|
* @internal
|
|
7425
7396
|
*/
|
|
@@ -7968,6 +7939,10 @@ export declare const GitConfigForUpdateFilterSensitiveLog: (obj: GitConfigForUpd
|
|
|
7968
7939
|
* @internal
|
|
7969
7940
|
*/
|
|
7970
7941
|
export declare const HumanTaskUiSummaryFilterSensitiveLog: (obj: HumanTaskUiSummary) => any;
|
|
7942
|
+
/**
|
|
7943
|
+
* @internal
|
|
7944
|
+
*/
|
|
7945
|
+
export declare const HyperParameterTuningJobSearchEntityFilterSensitiveLog: (obj: HyperParameterTuningJobSearchEntity) => any;
|
|
7971
7946
|
/**
|
|
7972
7947
|
* @internal
|
|
7973
7948
|
*/
|
|
@@ -8360,11 +8335,3 @@ export declare const NotebookInstanceLifecycleConfigSummaryFilterSensitiveLog: (
|
|
|
8360
8335
|
* @internal
|
|
8361
8336
|
*/
|
|
8362
8337
|
export declare const ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog: (obj: ListNotebookInstanceLifecycleConfigsOutput) => any;
|
|
8363
|
-
/**
|
|
8364
|
-
* @internal
|
|
8365
|
-
*/
|
|
8366
|
-
export declare const ListNotebookInstancesInputFilterSensitiveLog: (obj: ListNotebookInstancesInput) => any;
|
|
8367
|
-
/**
|
|
8368
|
-
* @internal
|
|
8369
|
-
*/
|
|
8370
|
-
export declare const NotebookInstanceSummaryFilterSensitiveLog: (obj: NotebookInstanceSummary) => any;
|