import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteDatasetCommand}. */ export interface DeleteDatasetCommandInput extends DeleteDatasetRequest { } /** * @public * * The output of {@link DeleteDatasetCommand}. */ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __MetadataBearer { } declare const DeleteDatasetCommand_base: { new (input: DeleteDatasetCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteDatasetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a dataset from DataBrew.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, DeleteDatasetCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, DeleteDatasetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import * // import type { DataBrewClientConfig } from "@aws-sdk/client-databrew"; * const config = {}; // type is DataBrewClientConfig * const client = new DataBrewClient(config); * const input = { // DeleteDatasetRequest * Name: "STRING_VALUE", // required * }; * const command = new DeleteDatasetCommand(input); * const response = await client.send(command); * // { // DeleteDatasetResponse * // Name: "STRING_VALUE", // required * // }; * * ``` * * @param DeleteDatasetCommandInput - {@link DeleteDatasetCommandInput} * @returns {@link DeleteDatasetCommandOutput} * @see {@link DeleteDatasetCommandInput} for command's `input` shape. * @see {@link DeleteDatasetCommandOutput} for command's `response` shape. * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

Updating or deleting a resource can cause an inconsistent state.

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

One or more resources can't be found.

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

The input parameters for this request failed validation.

* * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* * * @public */ export declare class DeleteDatasetCommand extends DeleteDatasetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteDatasetRequest; output: DeleteDatasetResponse; }; sdk: { input: DeleteDatasetCommandInput; output: DeleteDatasetCommandOutput; }; }; }