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

Request to stop an edge packaging job.

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

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class StopEdgePackagingJobCommand extends StopEdgePackagingJobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StopEdgePackagingJobRequest; output: {}; }; sdk: { input: StopEdgePackagingJobCommandInput; output: StopEdgePackagingJobCommandOutput; }; }; }