import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DeleteFlowDefinitionRequest, DeleteFlowDefinitionResponse } from "../models/models_2"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteFlowDefinitionCommand}. */ export interface DeleteFlowDefinitionCommandInput extends DeleteFlowDefinitionRequest { } /** * @public * * The output of {@link DeleteFlowDefinitionCommand}. */ export interface DeleteFlowDefinitionCommandOutput extends DeleteFlowDefinitionResponse, __MetadataBearer { } declare const DeleteFlowDefinitionCommand_base: { new (input: DeleteFlowDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteFlowDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes the specified flow definition.

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