import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { StopHyperParameterTuningJobRequest } from "../models/models_5"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link StopHyperParameterTuningJobCommand}. */ export interface StopHyperParameterTuningJobCommandInput extends StopHyperParameterTuningJobRequest { } /** * @public * * The output of {@link StopHyperParameterTuningJobCommand}. */ export interface StopHyperParameterTuningJobCommandOutput extends __MetadataBearer { } declare const StopHyperParameterTuningJobCommand_base: { new (input: StopHyperParameterTuningJobCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: StopHyperParameterTuningJobCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Stops a running hyperparameter tuning job and all running training jobs that the tuning job launched.

All model artifacts output from the training jobs are stored in Amazon Simple Storage Service (Amazon S3). All data that the training jobs write to Amazon CloudWatch Logs are still available in CloudWatch. After the tuning job moves to the Stopped state, it releases all reserved resources for the tuning job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, StopHyperParameterTuningJobCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, StopHyperParameterTuningJobCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // StopHyperParameterTuningJobRequest * HyperParameterTuningJobName: "STRING_VALUE", // required * }; * const command = new StopHyperParameterTuningJobCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param StopHyperParameterTuningJobCommandInput - {@link StopHyperParameterTuningJobCommandInput} * @returns {@link StopHyperParameterTuningJobCommandOutput} * @see {@link StopHyperParameterTuningJobCommandInput} for command's `input` shape. * @see {@link StopHyperParameterTuningJobCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ResourceNotFound} (client fault) *

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class StopHyperParameterTuningJobCommand extends StopHyperParameterTuningJobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StopHyperParameterTuningJobRequest; output: {}; }; sdk: { input: StopHyperParameterTuningJobCommandInput; output: StopHyperParameterTuningJobCommandOutput; }; }; }