import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteProcessingJobRequest } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteProcessingJobCommand}. */ export interface DeleteProcessingJobCommandInput extends DeleteProcessingJobRequest { } /** * @public * * The output of {@link DeleteProcessingJobCommand}. */ export interface DeleteProcessingJobCommandOutput extends __MetadataBearer { } declare const DeleteProcessingJobCommand_base: { new (input: DeleteProcessingJobCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteProcessingJobCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a processing job. After Amazon SageMaker deletes a processing job, all of the metadata for the processing job is lost. You can delete only processing jobs that are in a terminal state (Stopped, Failed, or Completed). You cannot delete a job that is in the InProgress or Stopping state. After deleting the job, you can reuse its name to create another processing job.

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

Resource being accessed is in use.

* * @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 DeleteProcessingJobCommand extends DeleteProcessingJobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteProcessingJobRequest; output: {}; }; sdk: { input: DeleteProcessingJobCommandInput; output: DeleteProcessingJobCommandOutput; }; }; }