import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; import type { DeleteBlueprintRequest, DeleteBlueprintResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteBlueprintCommand}. */ export interface DeleteBlueprintCommandInput extends DeleteBlueprintRequest { } /** * @public * * The output of {@link DeleteBlueprintCommand}. */ export interface DeleteBlueprintCommandOutput extends DeleteBlueprintResponse, __MetadataBearer { } declare const DeleteBlueprintCommand_base: { new (input: DeleteBlueprintCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteBlueprintCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Deletes an existing blueprint.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, DeleteBlueprintCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, DeleteBlueprintCommand } = require("@aws-sdk/client-glue"); // CommonJS import * // import type { GlueClientConfig } from "@aws-sdk/client-glue"; * const config = {}; // type is GlueClientConfig * const client = new GlueClient(config); * const input = { // DeleteBlueprintRequest * Name: "STRING_VALUE", // required * }; * const command = new DeleteBlueprintCommand(input); * const response = await client.send(command); * // { // DeleteBlueprintResponse * // Name: "STRING_VALUE", * // }; * * ``` * * @param DeleteBlueprintCommandInput - {@link DeleteBlueprintCommandInput} * @returns {@link DeleteBlueprintCommandOutput} * @see {@link DeleteBlueprintCommandInput} for command's `input` shape. * @see {@link DeleteBlueprintCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link InternalServiceException} (server fault) *

An internal service error occurred.

* * @throws {@link InvalidInputException} (client fault) *

The input provided was not valid.

* * @throws {@link OperationTimeoutException} (client fault) *

The operation timed out.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class DeleteBlueprintCommand extends DeleteBlueprintCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteBlueprintRequest; output: DeleteBlueprintResponse; }; sdk: { input: DeleteBlueprintCommandInput; output: DeleteBlueprintCommandOutput; }; }; }