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

Deletes a scheduled action. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, DeleteScheduledActionCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, DeleteScheduledActionCommand } = 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 = { // DeleteScheduledActionMessage * ScheduledActionName: "STRING_VALUE", // required * }; * const command = new DeleteScheduledActionCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteScheduledActionCommandInput - {@link DeleteScheduledActionCommandInput} * @returns {@link DeleteScheduledActionCommandOutput} * @see {@link DeleteScheduledActionCommandInput} for command's `input` shape. * @see {@link DeleteScheduledActionCommandOutput} for command's `response` shape. * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape. * * @throws {@link ScheduledActionNotFoundFault} (client fault) *

The scheduled action cannot be found.

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

Your account is not authorized to perform the requested operation.

* * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* * * @public */ export declare class DeleteScheduledActionCommand extends DeleteScheduledActionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteScheduledActionMessage; output: {}; }; sdk: { input: DeleteScheduledActionCommandInput; output: DeleteScheduledActionCommandOutput; }; }; }