@aws-sdk/client-sagemaker 3.339.0 → 3.341.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +4 -1
- package/dist-cjs/models/models_1.js +6 -0
- package/dist-cjs/models/models_2.js +1 -5
- package/dist-cjs/models/models_3.js +6 -2
- package/dist-cjs/protocols/Aws_json1_1.js +2 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/models/models_1.js +6 -0
- package/dist-es/models/models_2.js +0 -4
- package/dist-es/models/models_3.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +2 -0
- package/dist-types/commands/CreateEdgeDeploymentPlanCommand.d.ts +1 -1
- package/dist-types/commands/CreateEdgeDeploymentStageCommand.d.ts +1 -1
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +21 -0
- package/dist-types/commands/CreateInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/CreateNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProjectCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSpaceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +24 -2
- package/dist-types/commands/DescribeInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/ListNotebookInstancesCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +18 -0
- package/dist-types/commands/StopInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/StopNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/StopPipelineExecutionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +70 -47
- package/dist-types/models/models_1.d.ts +95 -32
- package/dist-types/models/models_2.d.ts +37 -124
- package/dist-types/models/models_3.d.ts +124 -34
- package/dist-types/models/models_4.d.ts +32 -0
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentPlanCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentStageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteSpaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopPipelineExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +11 -14
- package/dist-types/ts3.4/models/models_1.d.ts +26 -10
- package/dist-types/ts3.4/models/models_2.d.ts +12 -33
- package/dist-types/ts3.4/models/models_3.d.ts +35 -13
- package/dist-types/ts3.4/models/models_4.d.ts +10 -0
- package/package.json +29 -29
|
@@ -5072,6 +5072,22 @@ export declare const AutoMLSortOrder: {
|
|
|
5072
5072
|
* @public
|
|
5073
5073
|
*/
|
|
5074
5074
|
export type AutoMLSortOrder = (typeof AutoMLSortOrder)[keyof typeof AutoMLSortOrder];
|
|
5075
|
+
/**
|
|
5076
|
+
* @public
|
|
5077
|
+
* <p>The name and an example value of the hyperparameter that
|
|
5078
|
+
* you want to use in Autotune. If Automatic model tuning (AMT) determines that your hyperparameter is eligible
|
|
5079
|
+
* for Autotune, an optimal hyperparameter range is selected for you.</p>
|
|
5080
|
+
*/
|
|
5081
|
+
export interface AutoParameter {
|
|
5082
|
+
/**
|
|
5083
|
+
* <p>The name of the hyperparameter to optimize using Autotune.</p>
|
|
5084
|
+
*/
|
|
5085
|
+
Name: string | undefined;
|
|
5086
|
+
/**
|
|
5087
|
+
* <p>An example value of the hyperparameter to optimize using Autotune.</p>
|
|
5088
|
+
*/
|
|
5089
|
+
ValueHint: string | undefined;
|
|
5090
|
+
}
|
|
5075
5091
|
/**
|
|
5076
5092
|
* @public
|
|
5077
5093
|
* <p>Automatic rollback configuration for handling endpoint deployment failures and
|
|
@@ -5085,6 +5101,60 @@ export interface AutoRollbackConfig {
|
|
|
5085
5101
|
*/
|
|
5086
5102
|
Alarms?: Alarm[];
|
|
5087
5103
|
}
|
|
5104
|
+
/**
|
|
5105
|
+
* @public
|
|
5106
|
+
* @enum
|
|
5107
|
+
*/
|
|
5108
|
+
export declare const AutotuneMode: {
|
|
5109
|
+
readonly ENABLED: "Enabled";
|
|
5110
|
+
};
|
|
5111
|
+
/**
|
|
5112
|
+
* @public
|
|
5113
|
+
*/
|
|
5114
|
+
export type AutotuneMode = (typeof AutotuneMode)[keyof typeof AutotuneMode];
|
|
5115
|
+
/**
|
|
5116
|
+
* @public
|
|
5117
|
+
* <p>A flag to indicate if you want to use Autotune to automatically find optimal values for
|
|
5118
|
+
* the following fields:</p>
|
|
5119
|
+
* <ul>
|
|
5120
|
+
* <li>
|
|
5121
|
+
* <p>
|
|
5122
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html#sagemaker-Type-HyperParameterTuningJobConfig-ParameterRanges">ParameterRanges</a>: The names and ranges of parameters that a hyperparameter
|
|
5123
|
+
* tuning job can optimize.</p>
|
|
5124
|
+
* </li>
|
|
5125
|
+
* <li>
|
|
5126
|
+
* <p>
|
|
5127
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ResourceLimits.html">ResourceLimits</a>: The maximum resources that can be used for a training job.
|
|
5128
|
+
* These resources include the maximum number of training jobs, the maximum runtime of a
|
|
5129
|
+
* tuning job, and the maximum number of training jobs to run at the same time.</p>
|
|
5130
|
+
* </li>
|
|
5131
|
+
* <li>
|
|
5132
|
+
* <p>
|
|
5133
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html#sagemaker-Type-HyperParameterTuningJobConfig-TrainingJobEarlyStoppingType">TrainingJobEarlyStoppingType</a>: A flag that specifies whether or not to use
|
|
5134
|
+
* early stopping for training jobs launched by a hyperparameter tuning job.</p>
|
|
5135
|
+
* </li>
|
|
5136
|
+
* <li>
|
|
5137
|
+
* <p>
|
|
5138
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html#sagemaker-Type-HyperParameterTrainingJobDefinition-RetryStrategy">RetryStrategy</a>: The number of times to retry a training job.</p>
|
|
5139
|
+
* </li>
|
|
5140
|
+
* <li>
|
|
5141
|
+
* <p>
|
|
5142
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html">Strategy</a>: Specifies how hyperparameter tuning chooses the combinations of
|
|
5143
|
+
* hyperparameter values to use for the training jobs that it launches.</p>
|
|
5144
|
+
* </li>
|
|
5145
|
+
* <li>
|
|
5146
|
+
* <p>
|
|
5147
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ConvergenceDetected.html">ConvergenceDetected</a>: A flag to indicate that Automatic model tuning (AMT) has detected model
|
|
5148
|
+
* convergence.</p>
|
|
5149
|
+
* </li>
|
|
5150
|
+
* </ul>
|
|
5151
|
+
*/
|
|
5152
|
+
export interface Autotune {
|
|
5153
|
+
/**
|
|
5154
|
+
* <p>Set <code>Mode</code> to <code>Enabled</code> if you want to use Autotune.</p>
|
|
5155
|
+
*/
|
|
5156
|
+
Mode: AutotuneMode | string | undefined;
|
|
5157
|
+
}
|
|
5088
5158
|
/**
|
|
5089
5159
|
* @public
|
|
5090
5160
|
* @enum
|
|
@@ -9479,50 +9549,3 @@ export interface DeploymentStage {
|
|
|
9479
9549
|
*/
|
|
9480
9550
|
DeploymentConfig?: EdgeDeploymentConfig;
|
|
9481
9551
|
}
|
|
9482
|
-
/**
|
|
9483
|
-
* @public
|
|
9484
|
-
*/
|
|
9485
|
-
export interface CreateEdgeDeploymentPlanRequest {
|
|
9486
|
-
/**
|
|
9487
|
-
* <p>The name of the edge deployment plan.</p>
|
|
9488
|
-
*/
|
|
9489
|
-
EdgeDeploymentPlanName: string | undefined;
|
|
9490
|
-
/**
|
|
9491
|
-
* <p>List of models associated with the edge deployment plan.</p>
|
|
9492
|
-
*/
|
|
9493
|
-
ModelConfigs: EdgeDeploymentModelConfig[] | undefined;
|
|
9494
|
-
/**
|
|
9495
|
-
* <p>The device fleet used for this edge deployment plan.</p>
|
|
9496
|
-
*/
|
|
9497
|
-
DeviceFleetName: string | undefined;
|
|
9498
|
-
/**
|
|
9499
|
-
* <p>List of stages of the edge deployment plan. The number of stages is limited to 10 per deployment.</p>
|
|
9500
|
-
*/
|
|
9501
|
-
Stages?: DeploymentStage[];
|
|
9502
|
-
/**
|
|
9503
|
-
* <p>List of tags with which to tag the edge deployment plan.</p>
|
|
9504
|
-
*/
|
|
9505
|
-
Tags?: Tag[];
|
|
9506
|
-
}
|
|
9507
|
-
/**
|
|
9508
|
-
* @public
|
|
9509
|
-
*/
|
|
9510
|
-
export interface CreateEdgeDeploymentPlanResponse {
|
|
9511
|
-
/**
|
|
9512
|
-
* <p>The ARN of the edge deployment plan.</p>
|
|
9513
|
-
*/
|
|
9514
|
-
EdgeDeploymentPlanArn: string | undefined;
|
|
9515
|
-
}
|
|
9516
|
-
/**
|
|
9517
|
-
* @public
|
|
9518
|
-
*/
|
|
9519
|
-
export interface CreateEdgeDeploymentStageRequest {
|
|
9520
|
-
/**
|
|
9521
|
-
* <p>The name of the edge deployment plan.</p>
|
|
9522
|
-
*/
|
|
9523
|
-
EdgeDeploymentPlanName: string | undefined;
|
|
9524
|
-
/**
|
|
9525
|
-
* <p>List of stages to be added to the edge deployment plan.</p>
|
|
9526
|
-
*/
|
|
9527
|
-
Stages: DeploymentStage[] | undefined;
|
|
9528
|
-
}
|
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AnnotationConsolidationConfig, AppSpecification, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AutoRollbackConfig, AwsManagedHumanLoopRequestSource, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CaptureContentTypeHeader, CaptureOption, CaptureStatus, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, ContentClassifier, ContinuousParameterRange, ConvergenceDetected, EdgeOutputConfig, EndpointInput, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, JupyterServerAppSettings, KernelGatewayAppSettings, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, OutputDataConfig, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariantInstanceType, ResourceConfig, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
import { AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AnnotationConsolidationConfig, AppSpecification, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AutoParameter, AutoRollbackConfig, Autotune, AwsManagedHumanLoopRequestSource, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CaptureContentTypeHeader, CaptureOption, CaptureStatus, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, ContentClassifier, ContinuousParameterRange, ConvergenceDetected, DeploymentStage, EdgeDeploymentModelConfig, EdgeOutputConfig, EndpointInput, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, JupyterServerAppSettings, KernelGatewayAppSettings, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, OutputDataConfig, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariantInstanceType, ResourceConfig, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserSettings, VpcConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface CreateEdgeDeploymentPlanRequest {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The name of the edge deployment plan.</p>
|
|
9
|
+
*/
|
|
10
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>List of models associated with the edge deployment plan.</p>
|
|
13
|
+
*/
|
|
14
|
+
ModelConfigs: EdgeDeploymentModelConfig[] | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The device fleet used for this edge deployment plan.</p>
|
|
17
|
+
*/
|
|
18
|
+
DeviceFleetName: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>List of stages of the edge deployment plan. The number of stages is limited to 10 per deployment.</p>
|
|
21
|
+
*/
|
|
22
|
+
Stages?: DeploymentStage[];
|
|
23
|
+
/**
|
|
24
|
+
* <p>List of tags with which to tag the edge deployment plan.</p>
|
|
25
|
+
*/
|
|
26
|
+
Tags?: Tag[];
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export interface CreateEdgeDeploymentPlanResponse {
|
|
32
|
+
/**
|
|
33
|
+
* <p>The ARN of the edge deployment plan.</p>
|
|
34
|
+
*/
|
|
35
|
+
EdgeDeploymentPlanArn: string | undefined;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
export interface CreateEdgeDeploymentStageRequest {
|
|
41
|
+
/**
|
|
42
|
+
* <p>The name of the edge deployment plan.</p>
|
|
43
|
+
*/
|
|
44
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p>List of stages to be added to the edge deployment plan.</p>
|
|
47
|
+
*/
|
|
48
|
+
Stages: DeploymentStage[] | undefined;
|
|
49
|
+
}
|
|
3
50
|
/**
|
|
4
51
|
* @public
|
|
5
52
|
*/
|
|
@@ -1763,6 +1810,10 @@ export interface ParameterRanges {
|
|
|
1763
1810
|
* of categorical hyperparameters that a hyperparameter tuning job searches.</p>
|
|
1764
1811
|
*/
|
|
1765
1812
|
CategoricalParameterRanges?: CategoricalParameterRange[];
|
|
1813
|
+
/**
|
|
1814
|
+
* <p>A list containing hyperparameter names and example values to be used by Autotune to determine optimal ranges for your tuning job.</p>
|
|
1815
|
+
*/
|
|
1816
|
+
AutoParameters?: AutoParameter[];
|
|
1766
1817
|
}
|
|
1767
1818
|
/**
|
|
1768
1819
|
* @public
|
|
@@ -2475,6 +2526,43 @@ export interface CreateHyperParameterTuningJobRequest {
|
|
|
2475
2526
|
* tuning job launches.</p>
|
|
2476
2527
|
*/
|
|
2477
2528
|
Tags?: Tag[];
|
|
2529
|
+
/**
|
|
2530
|
+
* <p>Configures SageMaker Automatic model tuning (AMT) to automatically find optimal parameters
|
|
2531
|
+
* for the following fields:</p>
|
|
2532
|
+
* <ul>
|
|
2533
|
+
* <li>
|
|
2534
|
+
* <p>
|
|
2535
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html#sagemaker-Type-HyperParameterTuningJobConfig-ParameterRanges">ParameterRanges</a>: The names and ranges of parameters that a hyperparameter
|
|
2536
|
+
* tuning job can optimize.</p>
|
|
2537
|
+
* </li>
|
|
2538
|
+
* <li>
|
|
2539
|
+
* <p>
|
|
2540
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ResourceLimits.html">ResourceLimits</a>: The maximum resources that can be used for a training job.
|
|
2541
|
+
* These resources include the maximum number of training jobs, the maximum runtime of a
|
|
2542
|
+
* tuning job, and the maximum number of training jobs to run at the same time.</p>
|
|
2543
|
+
* </li>
|
|
2544
|
+
* <li>
|
|
2545
|
+
* <p>
|
|
2546
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html#sagemaker-Type-HyperParameterTuningJobConfig-TrainingJobEarlyStoppingType">TrainingJobEarlyStoppingType</a>: A flag that specifies whether or not to use
|
|
2547
|
+
* early stopping for training jobs launched by a hyperparameter tuning job.</p>
|
|
2548
|
+
* </li>
|
|
2549
|
+
* <li>
|
|
2550
|
+
* <p>
|
|
2551
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html#sagemaker-Type-HyperParameterTrainingJobDefinition-RetryStrategy">RetryStrategy</a>: The number of times to retry a training job.</p>
|
|
2552
|
+
* </li>
|
|
2553
|
+
* <li>
|
|
2554
|
+
* <p>
|
|
2555
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobConfig.html">Strategy</a>: Specifies how hyperparameter tuning chooses the combinations of
|
|
2556
|
+
* hyperparameter values to use for the training jobs that it launches.</p>
|
|
2557
|
+
* </li>
|
|
2558
|
+
* <li>
|
|
2559
|
+
* <p>
|
|
2560
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ConvergenceDetected.html">ConvergenceDetected</a>: A flag to indicate that Automatic model tuning (AMT) has detected model
|
|
2561
|
+
* convergence.</p>
|
|
2562
|
+
* </li>
|
|
2563
|
+
* </ul>
|
|
2564
|
+
*/
|
|
2565
|
+
Autotune?: Autotune;
|
|
2478
2566
|
}
|
|
2479
2567
|
/**
|
|
2480
2568
|
* @public
|
|
@@ -2730,6 +2818,10 @@ export declare const _InstanceType: {
|
|
|
2730
2818
|
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
2731
2819
|
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
2732
2820
|
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
2821
|
+
readonly ML_INF1_24XLARGE: "ml.inf1.24xlarge";
|
|
2822
|
+
readonly ML_INF1_2XLARGE: "ml.inf1.2xlarge";
|
|
2823
|
+
readonly ML_INF1_6XLARGE: "ml.inf1.6xlarge";
|
|
2824
|
+
readonly ML_INF1_XLARGE: "ml.inf1.xlarge";
|
|
2733
2825
|
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
2734
2826
|
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
2735
2827
|
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
@@ -2755,6 +2847,8 @@ export declare const _InstanceType: {
|
|
|
2755
2847
|
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
2756
2848
|
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
2757
2849
|
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
2850
|
+
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
2851
|
+
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
2758
2852
|
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
2759
2853
|
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
2760
2854
|
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
@@ -9402,37 +9496,6 @@ export interface DeletePipelineResponse {
|
|
|
9402
9496
|
*/
|
|
9403
9497
|
PipelineArn?: string;
|
|
9404
9498
|
}
|
|
9405
|
-
/**
|
|
9406
|
-
* @public
|
|
9407
|
-
*/
|
|
9408
|
-
export interface DeleteProjectInput {
|
|
9409
|
-
/**
|
|
9410
|
-
* <p>The name of the project to delete.</p>
|
|
9411
|
-
*/
|
|
9412
|
-
ProjectName: string | undefined;
|
|
9413
|
-
}
|
|
9414
|
-
/**
|
|
9415
|
-
* @public
|
|
9416
|
-
*/
|
|
9417
|
-
export interface DeleteSpaceRequest {
|
|
9418
|
-
/**
|
|
9419
|
-
* <p>The ID of the associated Domain.</p>
|
|
9420
|
-
*/
|
|
9421
|
-
DomainId: string | undefined;
|
|
9422
|
-
/**
|
|
9423
|
-
* <p>The name of the space.</p>
|
|
9424
|
-
*/
|
|
9425
|
-
SpaceName: string | undefined;
|
|
9426
|
-
}
|
|
9427
|
-
/**
|
|
9428
|
-
* @public
|
|
9429
|
-
*/
|
|
9430
|
-
export interface DeleteStudioLifecycleConfigRequest {
|
|
9431
|
-
/**
|
|
9432
|
-
* <p>The name of the Studio Lifecycle Configuration to delete.</p>
|
|
9433
|
-
*/
|
|
9434
|
-
StudioLifecycleConfigName: string | undefined;
|
|
9435
|
-
}
|
|
9436
9499
|
/**
|
|
9437
9500
|
* @internal
|
|
9438
9501
|
*/
|
|
@@ -1,5 +1,36 @@
|
|
|
1
|
-
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLSecurityConfig, BatchDataCaptureConfig, BatchStrategy, Channel, CheckpointConfig, CognitoConfig, CompilationJobStatus, ContainerDefinition, ContextSource, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeviceSelectionConfig, DomainSettings, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, ExecutionRoleIdentityConfig, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, ObjectiveStatus, OutputConfig, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
1
|
+
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, Channel, CheckpointConfig, CognitoConfig, CompilationJobStatus, ContainerDefinition, ContextSource, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeviceSelectionConfig, DomainSettings, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, ExecutionRoleIdentityConfig, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, ObjectiveStatus, OutputConfig, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DataCaptureConfig, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentConfig, DirectInternetAccess, DriftCheckBaselines, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubContentType, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MemberDefinition, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreConfig, OnlineStoreConfig, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantServerlessConfig, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, ResourceLimits, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, ShadowModeConfig, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, VendorGuidance } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface DeleteProjectInput {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The name of the project to delete.</p>
|
|
9
|
+
*/
|
|
10
|
+
ProjectName: string | undefined;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteSpaceRequest {
|
|
16
|
+
/**
|
|
17
|
+
* <p>The ID of the associated Domain.</p>
|
|
18
|
+
*/
|
|
19
|
+
DomainId: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The name of the space.</p>
|
|
22
|
+
*/
|
|
23
|
+
SpaceName: string | undefined;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export interface DeleteStudioLifecycleConfigRequest {
|
|
29
|
+
/**
|
|
30
|
+
* <p>The name of the Studio Lifecycle Configuration to delete.</p>
|
|
31
|
+
*/
|
|
32
|
+
StudioLifecycleConfigName: string | undefined;
|
|
33
|
+
}
|
|
3
34
|
/**
|
|
4
35
|
* @public
|
|
5
36
|
*/
|
|
@@ -2827,7 +2858,7 @@ export interface HyperParameterTuningJobCompletionDetails {
|
|
|
2827
2858
|
*/
|
|
2828
2859
|
export interface DescribeHyperParameterTuningJobResponse {
|
|
2829
2860
|
/**
|
|
2830
|
-
* <p>The name of the tuning job.</p>
|
|
2861
|
+
* <p>The name of the hyperparameter tuning job.</p>
|
|
2831
2862
|
*/
|
|
2832
2863
|
HyperParameterTuningJobName: string | undefined;
|
|
2833
2864
|
/**
|
|
@@ -2912,6 +2943,10 @@ export interface DescribeHyperParameterTuningJobResponse {
|
|
|
2912
2943
|
* <p>The total resources consumed by your hyperparameter tuning job.</p>
|
|
2913
2944
|
*/
|
|
2914
2945
|
ConsumedResources?: HyperParameterTuningJobConsumedResources;
|
|
2946
|
+
/**
|
|
2947
|
+
* <p>A flag to indicate if autotune is enabled for the hyperparameter tuning job.</p>
|
|
2948
|
+
*/
|
|
2949
|
+
Autotune?: Autotune;
|
|
2915
2950
|
}
|
|
2916
2951
|
/**
|
|
2917
2952
|
* @public
|
|
@@ -8883,128 +8918,6 @@ export interface ImportHubContentResponse {
|
|
|
8883
8918
|
*/
|
|
8884
8919
|
HubContentArn: string | undefined;
|
|
8885
8920
|
}
|
|
8886
|
-
/**
|
|
8887
|
-
* @public
|
|
8888
|
-
* <p>Lists a summary of properties of an inference experiment.</p>
|
|
8889
|
-
*/
|
|
8890
|
-
export interface InferenceExperimentSummary {
|
|
8891
|
-
/**
|
|
8892
|
-
* <p>The name of the inference experiment.</p>
|
|
8893
|
-
*/
|
|
8894
|
-
Name: string | undefined;
|
|
8895
|
-
/**
|
|
8896
|
-
* <p>The type of the inference experiment.</p>
|
|
8897
|
-
*/
|
|
8898
|
-
Type: InferenceExperimentType | string | undefined;
|
|
8899
|
-
/**
|
|
8900
|
-
* <p>The duration for which the inference experiment ran or will run.</p>
|
|
8901
|
-
* <p>The maximum duration that you can set for an inference experiment is 30 days.</p>
|
|
8902
|
-
*/
|
|
8903
|
-
Schedule?: InferenceExperimentSchedule;
|
|
8904
|
-
/**
|
|
8905
|
-
* <p>The status of the inference experiment.</p>
|
|
8906
|
-
*/
|
|
8907
|
-
Status: InferenceExperimentStatus | string | undefined;
|
|
8908
|
-
/**
|
|
8909
|
-
* <p>The error message for the inference experiment status result.</p>
|
|
8910
|
-
*/
|
|
8911
|
-
StatusReason?: string;
|
|
8912
|
-
/**
|
|
8913
|
-
* <p>The description of the inference experiment.</p>
|
|
8914
|
-
*/
|
|
8915
|
-
Description?: string;
|
|
8916
|
-
/**
|
|
8917
|
-
* <p>The timestamp at which the inference experiment was created.</p>
|
|
8918
|
-
*/
|
|
8919
|
-
CreationTime: Date | undefined;
|
|
8920
|
-
/**
|
|
8921
|
-
* <p>The timestamp at which the inference experiment was completed.</p>
|
|
8922
|
-
*/
|
|
8923
|
-
CompletionTime?: Date;
|
|
8924
|
-
/**
|
|
8925
|
-
* <p>The timestamp when you last modified the inference experiment.</p>
|
|
8926
|
-
*/
|
|
8927
|
-
LastModifiedTime: Date | undefined;
|
|
8928
|
-
/**
|
|
8929
|
-
* <p>
|
|
8930
|
-
* The ARN of the IAM role that Amazon SageMaker can assume to access model artifacts and container images, and manage
|
|
8931
|
-
* Amazon SageMaker Inference endpoints for model deployment.
|
|
8932
|
-
* </p>
|
|
8933
|
-
*/
|
|
8934
|
-
RoleArn?: string;
|
|
8935
|
-
}
|
|
8936
|
-
/**
|
|
8937
|
-
* @public
|
|
8938
|
-
* @enum
|
|
8939
|
-
*/
|
|
8940
|
-
export declare const InferenceExperimentStopDesiredState: {
|
|
8941
|
-
readonly CANCELLED: "Cancelled";
|
|
8942
|
-
readonly COMPLETED: "Completed";
|
|
8943
|
-
};
|
|
8944
|
-
/**
|
|
8945
|
-
* @public
|
|
8946
|
-
*/
|
|
8947
|
-
export type InferenceExperimentStopDesiredState = (typeof InferenceExperimentStopDesiredState)[keyof typeof InferenceExperimentStopDesiredState];
|
|
8948
|
-
/**
|
|
8949
|
-
* @public
|
|
8950
|
-
* <p>A structure that contains a list of recommendation jobs.</p>
|
|
8951
|
-
*/
|
|
8952
|
-
export interface InferenceRecommendationsJob {
|
|
8953
|
-
/**
|
|
8954
|
-
* <p>The name of the job.</p>
|
|
8955
|
-
*/
|
|
8956
|
-
JobName: string | undefined;
|
|
8957
|
-
/**
|
|
8958
|
-
* <p>The job description.</p>
|
|
8959
|
-
*/
|
|
8960
|
-
JobDescription: string | undefined;
|
|
8961
|
-
/**
|
|
8962
|
-
* <p>The recommendation job type.</p>
|
|
8963
|
-
*/
|
|
8964
|
-
JobType: RecommendationJobType | string | undefined;
|
|
8965
|
-
/**
|
|
8966
|
-
* <p>The Amazon Resource Name (ARN) of the recommendation job.</p>
|
|
8967
|
-
*/
|
|
8968
|
-
JobArn: string | undefined;
|
|
8969
|
-
/**
|
|
8970
|
-
* <p>The status of the job.</p>
|
|
8971
|
-
*/
|
|
8972
|
-
Status: RecommendationJobStatus | string | undefined;
|
|
8973
|
-
/**
|
|
8974
|
-
* <p>A timestamp that shows when the job was created.</p>
|
|
8975
|
-
*/
|
|
8976
|
-
CreationTime: Date | undefined;
|
|
8977
|
-
/**
|
|
8978
|
-
* <p>A timestamp that shows when the job completed.</p>
|
|
8979
|
-
*/
|
|
8980
|
-
CompletionTime?: Date;
|
|
8981
|
-
/**
|
|
8982
|
-
* <p>The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker
|
|
8983
|
-
* to perform tasks on your behalf.</p>
|
|
8984
|
-
*/
|
|
8985
|
-
RoleArn: string | undefined;
|
|
8986
|
-
/**
|
|
8987
|
-
* <p>A timestamp that shows when the job was last modified.</p>
|
|
8988
|
-
*/
|
|
8989
|
-
LastModifiedTime: Date | undefined;
|
|
8990
|
-
/**
|
|
8991
|
-
* <p>If the job fails, provides information why the job failed.</p>
|
|
8992
|
-
*/
|
|
8993
|
-
FailureReason?: string;
|
|
8994
|
-
/**
|
|
8995
|
-
* <p>The name of the created model.</p>
|
|
8996
|
-
*/
|
|
8997
|
-
ModelName?: string;
|
|
8998
|
-
/**
|
|
8999
|
-
* <p>The Amazon Simple Storage Service (Amazon S3) path where the sample payload is stored.
|
|
9000
|
-
* This path must point to a single gzip compressed tar archive (.tar.gz suffix).</p>
|
|
9001
|
-
*/
|
|
9002
|
-
SamplePayloadUrl?: string;
|
|
9003
|
-
/**
|
|
9004
|
-
* <p>The Amazon Resource Name (ARN) of a versioned model package.</p>
|
|
9005
|
-
*/
|
|
9006
|
-
ModelPackageVersionArn?: string;
|
|
9007
|
-
}
|
|
9008
8921
|
/**
|
|
9009
8922
|
* @internal
|
|
9010
8923
|
*/
|
|
@@ -1,6 +1,128 @@
|
|
|
1
1
|
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobStepMetadata, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, HubContentType, InferenceExecutionConfig, InferenceExperimentType, LabelingJobInputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, MonitoringType, NetworkConfig, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, RetryStrategy, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, UiTemplate } from "./models_1";
|
|
3
|
-
import { DeploymentRecommendation, Device, DeviceDeploymentSummary, DeviceFleetSummary, DeviceSummary, Direction, DomainDetails, Edge, EdgeDeploymentPlanSummary, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, Endpoint, EndpointConfigSortKey, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointSummary, ExecutionStatus, Experiment, ExperimentSummary, FailStepMetadata, FeatureGroup, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FeatureMetadata, Filter, FlowDefinitionSummary, HubContentInfo, HubContentSortBy, HubInfo, HubSortBy, HumanTaskUiSummary, HyperParameterTrainingJobSummary, HyperParameterTuningJobSearchEntity, HyperParameterTuningJobSortByOptions, HyperParameterTuningJobStatus, HyperParameterTuningJobSummary, Image, ImageSortBy, ImageSortOrder, ImageVersion, ImageVersionSortBy, ImageVersionSortOrder, InferenceExperimentStatus,
|
|
2
|
+
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, HubContentType, InferenceExecutionConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, MonitoringType, NetworkConfig, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, RecommendationJobType, RetryStrategy, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, UiTemplate } from "./models_1";
|
|
3
|
+
import { DeploymentRecommendation, Device, DeviceDeploymentSummary, DeviceFleetSummary, DeviceSummary, Direction, DomainDetails, Edge, EdgeDeploymentPlanSummary, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, Endpoint, EndpointConfigSortKey, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointSummary, ExecutionStatus, Experiment, ExperimentSummary, FailStepMetadata, FeatureGroup, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FeatureMetadata, Filter, FlowDefinitionSummary, HubContentInfo, HubContentSortBy, HubInfo, HubSortBy, HumanTaskUiSummary, HyperParameterTrainingJobSummary, HyperParameterTuningJobSearchEntity, HyperParameterTuningJobSortByOptions, HyperParameterTuningJobStatus, HyperParameterTuningJobSummary, Image, ImageSortBy, ImageSortOrder, ImageVersion, ImageVersionSortBy, ImageVersionSortOrder, InferenceExperimentStatus, InferenceMetrics, LabelCounters, LabelingJobOutput, LabelingJobStatus, MetricData, ModelArtifacts, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotebookInstanceStatus, OfflineStoreStatusValue, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ScheduleStatus, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SpaceStatus, SubscribedWorkteam, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* <p>Lists a summary of properties of an inference experiment.</p>
|
|
7
|
+
*/
|
|
8
|
+
export interface InferenceExperimentSummary {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The name of the inference experiment.</p>
|
|
11
|
+
*/
|
|
12
|
+
Name: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The type of the inference experiment.</p>
|
|
15
|
+
*/
|
|
16
|
+
Type: InferenceExperimentType | string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The duration for which the inference experiment ran or will run.</p>
|
|
19
|
+
* <p>The maximum duration that you can set for an inference experiment is 30 days.</p>
|
|
20
|
+
*/
|
|
21
|
+
Schedule?: InferenceExperimentSchedule;
|
|
22
|
+
/**
|
|
23
|
+
* <p>The status of the inference experiment.</p>
|
|
24
|
+
*/
|
|
25
|
+
Status: InferenceExperimentStatus | string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The error message for the inference experiment status result.</p>
|
|
28
|
+
*/
|
|
29
|
+
StatusReason?: string;
|
|
30
|
+
/**
|
|
31
|
+
* <p>The description of the inference experiment.</p>
|
|
32
|
+
*/
|
|
33
|
+
Description?: string;
|
|
34
|
+
/**
|
|
35
|
+
* <p>The timestamp at which the inference experiment was created.</p>
|
|
36
|
+
*/
|
|
37
|
+
CreationTime: Date | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The timestamp at which the inference experiment was completed.</p>
|
|
40
|
+
*/
|
|
41
|
+
CompletionTime?: Date;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The timestamp when you last modified the inference experiment.</p>
|
|
44
|
+
*/
|
|
45
|
+
LastModifiedTime: Date | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* <p>
|
|
48
|
+
* The ARN of the IAM role that Amazon SageMaker can assume to access model artifacts and container images, and manage
|
|
49
|
+
* Amazon SageMaker Inference endpoints for model deployment.
|
|
50
|
+
* </p>
|
|
51
|
+
*/
|
|
52
|
+
RoleArn?: string;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* @enum
|
|
57
|
+
*/
|
|
58
|
+
export declare const InferenceExperimentStopDesiredState: {
|
|
59
|
+
readonly CANCELLED: "Cancelled";
|
|
60
|
+
readonly COMPLETED: "Completed";
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export type InferenceExperimentStopDesiredState = (typeof InferenceExperimentStopDesiredState)[keyof typeof InferenceExperimentStopDesiredState];
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* <p>A structure that contains a list of recommendation jobs.</p>
|
|
69
|
+
*/
|
|
70
|
+
export interface InferenceRecommendationsJob {
|
|
71
|
+
/**
|
|
72
|
+
* <p>The name of the job.</p>
|
|
73
|
+
*/
|
|
74
|
+
JobName: string | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* <p>The job description.</p>
|
|
77
|
+
*/
|
|
78
|
+
JobDescription: string | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* <p>The recommendation job type.</p>
|
|
81
|
+
*/
|
|
82
|
+
JobType: RecommendationJobType | string | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* <p>The Amazon Resource Name (ARN) of the recommendation job.</p>
|
|
85
|
+
*/
|
|
86
|
+
JobArn: string | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The status of the job.</p>
|
|
89
|
+
*/
|
|
90
|
+
Status: RecommendationJobStatus | string | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p>A timestamp that shows when the job was created.</p>
|
|
93
|
+
*/
|
|
94
|
+
CreationTime: Date | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* <p>A timestamp that shows when the job completed.</p>
|
|
97
|
+
*/
|
|
98
|
+
CompletionTime?: Date;
|
|
99
|
+
/**
|
|
100
|
+
* <p>The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker
|
|
101
|
+
* to perform tasks on your behalf.</p>
|
|
102
|
+
*/
|
|
103
|
+
RoleArn: string | undefined;
|
|
104
|
+
/**
|
|
105
|
+
* <p>A timestamp that shows when the job was last modified.</p>
|
|
106
|
+
*/
|
|
107
|
+
LastModifiedTime: Date | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>If the job fails, provides information why the job failed.</p>
|
|
110
|
+
*/
|
|
111
|
+
FailureReason?: string;
|
|
112
|
+
/**
|
|
113
|
+
* <p>The name of the created model.</p>
|
|
114
|
+
*/
|
|
115
|
+
ModelName?: string;
|
|
116
|
+
/**
|
|
117
|
+
* <p>The Amazon Simple Storage Service (Amazon S3) path where the sample payload is stored.
|
|
118
|
+
* This path must point to a single gzip compressed tar archive (.tar.gz suffix).</p>
|
|
119
|
+
*/
|
|
120
|
+
SamplePayloadUrl?: string;
|
|
121
|
+
/**
|
|
122
|
+
* <p>The Amazon Resource Name (ARN) of a versioned model package.</p>
|
|
123
|
+
*/
|
|
124
|
+
ModelPackageVersionArn?: string;
|
|
125
|
+
}
|
|
4
126
|
/**
|
|
5
127
|
* @public
|
|
6
128
|
* <p>The details for a specific benchmark from an Inference Recommender job.</p>
|
|
@@ -8143,38 +8265,6 @@ export interface StopMonitoringScheduleRequest {
|
|
|
8143
8265
|
*/
|
|
8144
8266
|
MonitoringScheduleName: string | undefined;
|
|
8145
8267
|
}
|
|
8146
|
-
/**
|
|
8147
|
-
* @public
|
|
8148
|
-
*/
|
|
8149
|
-
export interface StopNotebookInstanceInput {
|
|
8150
|
-
/**
|
|
8151
|
-
* <p>The name of the notebook instance to terminate.</p>
|
|
8152
|
-
*/
|
|
8153
|
-
NotebookInstanceName: string | undefined;
|
|
8154
|
-
}
|
|
8155
|
-
/**
|
|
8156
|
-
* @public
|
|
8157
|
-
*/
|
|
8158
|
-
export interface StopPipelineExecutionRequest {
|
|
8159
|
-
/**
|
|
8160
|
-
* <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
|
|
8161
|
-
*/
|
|
8162
|
-
PipelineExecutionArn: string | undefined;
|
|
8163
|
-
/**
|
|
8164
|
-
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
8165
|
-
* operation. An idempotent operation completes no more than once.</p>
|
|
8166
|
-
*/
|
|
8167
|
-
ClientRequestToken?: string;
|
|
8168
|
-
}
|
|
8169
|
-
/**
|
|
8170
|
-
* @public
|
|
8171
|
-
*/
|
|
8172
|
-
export interface StopPipelineExecutionResponse {
|
|
8173
|
-
/**
|
|
8174
|
-
* <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
|
|
8175
|
-
*/
|
|
8176
|
-
PipelineExecutionArn?: string;
|
|
8177
|
-
}
|
|
8178
8268
|
/**
|
|
8179
8269
|
* @internal
|
|
8180
8270
|
*/
|