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 { DeleteColumnStatisticsTaskSettingsRequest, DeleteColumnStatisticsTaskSettingsResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteColumnStatisticsTaskSettingsCommand}. */ export interface DeleteColumnStatisticsTaskSettingsCommandInput extends DeleteColumnStatisticsTaskSettingsRequest { } /** * @public * * The output of {@link DeleteColumnStatisticsTaskSettingsCommand}. */ export interface DeleteColumnStatisticsTaskSettingsCommandOutput extends DeleteColumnStatisticsTaskSettingsResponse, __MetadataBearer { } declare const DeleteColumnStatisticsTaskSettingsCommand_base: { new (input: DeleteColumnStatisticsTaskSettingsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteColumnStatisticsTaskSettingsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Deletes settings for a column statistics task.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, DeleteColumnStatisticsTaskSettingsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, DeleteColumnStatisticsTaskSettingsCommand } = 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 = { // DeleteColumnStatisticsTaskSettingsRequest * DatabaseName: "STRING_VALUE", // required * TableName: "STRING_VALUE", // required * }; * const command = new DeleteColumnStatisticsTaskSettingsCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteColumnStatisticsTaskSettingsCommandInput - {@link DeleteColumnStatisticsTaskSettingsCommandInput} * @returns {@link DeleteColumnStatisticsTaskSettingsCommandOutput} * @see {@link DeleteColumnStatisticsTaskSettingsCommandInput} for command's `input` shape. * @see {@link DeleteColumnStatisticsTaskSettingsCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link EntityNotFoundException} (client fault) *

A specified entity does not exist

* * @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 DeleteColumnStatisticsTaskSettingsCommand extends DeleteColumnStatisticsTaskSettingsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteColumnStatisticsTaskSettingsRequest; output: {}; }; sdk: { input: DeleteColumnStatisticsTaskSettingsCommandInput; output: DeleteColumnStatisticsTaskSettingsCommandOutput; }; }; }