import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteAIWorkloadConfigRequest, DeleteAIWorkloadConfigResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteAIWorkloadConfigCommand}. */ export interface DeleteAIWorkloadConfigCommandInput extends DeleteAIWorkloadConfigRequest { } /** * @public * * The output of {@link DeleteAIWorkloadConfigCommand}. */ export interface DeleteAIWorkloadConfigCommandOutput extends DeleteAIWorkloadConfigResponse, __MetadataBearer { } declare const DeleteAIWorkloadConfigCommand_base: { new (input: DeleteAIWorkloadConfigCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteAIWorkloadConfigCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the specified AI workload configuration. You cannot delete a configuration that is referenced by an active benchmark job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DeleteAIWorkloadConfigCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DeleteAIWorkloadConfigCommand } = 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 = { // DeleteAIWorkloadConfigRequest * AIWorkloadConfigName: "STRING_VALUE", // required * }; * const command = new DeleteAIWorkloadConfigCommand(input); * const response = await client.send(command); * // { // DeleteAIWorkloadConfigResponse * // AIWorkloadConfigArn: "STRING_VALUE", * // }; * * ``` * * @param DeleteAIWorkloadConfigCommandInput - {@link DeleteAIWorkloadConfigCommandInput} * @returns {@link DeleteAIWorkloadConfigCommandOutput} * @see {@link DeleteAIWorkloadConfigCommandInput} for command's `input` shape. * @see {@link DeleteAIWorkloadConfigCommandOutput} 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 DeleteAIWorkloadConfigCommand extends DeleteAIWorkloadConfigCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteAIWorkloadConfigRequest; output: DeleteAIWorkloadConfigResponse; }; sdk: { input: DeleteAIWorkloadConfigCommandInput; output: DeleteAIWorkloadConfigCommandOutput; }; }; }