import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteUsageLimitMessage } from "../models/models_0"; import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteUsageLimitCommand}. */ export interface DeleteUsageLimitCommandInput extends DeleteUsageLimitMessage { } /** * @public * * The output of {@link DeleteUsageLimitCommand}. */ export interface DeleteUsageLimitCommandOutput extends __MetadataBearer { } declare const DeleteUsageLimitCommand_base: { new (input: DeleteUsageLimitCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteUsageLimitCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes a usage limit from a cluster.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, DeleteUsageLimitCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, DeleteUsageLimitCommand } = require("@aws-sdk/client-redshift"); // CommonJS import * // import type { RedshiftClientConfig } from "@aws-sdk/client-redshift"; * const config = {}; // type is RedshiftClientConfig * const client = new RedshiftClient(config); * const input = { // DeleteUsageLimitMessage * UsageLimitId: "STRING_VALUE", // required * }; * const command = new DeleteUsageLimitCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteUsageLimitCommandInput - {@link DeleteUsageLimitCommandInput} * @returns {@link DeleteUsageLimitCommandOutput} * @see {@link DeleteUsageLimitCommandInput} for command's `input` shape. * @see {@link DeleteUsageLimitCommandOutput} for command's `response` shape. * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape. * * @throws {@link UnsupportedOperationFault} (client fault) *

The requested operation isn't supported.

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

The usage limit identifier can't be found.

* * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* * * @public */ export declare class DeleteUsageLimitCommand extends DeleteUsageLimitCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteUsageLimitMessage; output: {}; }; sdk: { input: DeleteUsageLimitCommandInput; output: DeleteUsageLimitCommandOutput; }; }; }