import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteScheduledActionType } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteScheduledActionCommand}. */ export interface DeleteScheduledActionCommandInput extends DeleteScheduledActionType { } /** * @public * * The output of {@link DeleteScheduledActionCommand}. */ export interface DeleteScheduledActionCommandOutput extends __MetadataBearer { } declare const DeleteScheduledActionCommand_base: { new (input: DeleteScheduledActionCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteScheduledActionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the specified scheduled action.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { AutoScalingClient, DeleteScheduledActionCommand } from "@aws-sdk/client-auto-scaling"; // ES Modules import * // const { AutoScalingClient, DeleteScheduledActionCommand } = require("@aws-sdk/client-auto-scaling"); // CommonJS import * // import type { AutoScalingClientConfig } from "@aws-sdk/client-auto-scaling"; * const config = {}; // type is AutoScalingClientConfig * const client = new AutoScalingClient(config); * const input = { // DeleteScheduledActionType * AutoScalingGroupName: "STRING_VALUE", // required * 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 AutoScalingClientResolvedConfig | config} for AutoScalingClient's `config` shape. * * @throws {@link ResourceContentionFault} (server fault) *

You already have a pending update to an Amazon EC2 Auto Scaling resource (for example, an Auto Scaling group, * instance, or load balancer).

* * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* * * @example To delete a scheduled action from an Auto Scaling group * ```javascript * // This example deletes the specified scheduled action from the specified Auto Scaling group. * const input = { * AutoScalingGroupName: "my-auto-scaling-group", * ScheduledActionName: "my-scheduled-action" * }; * const command = new DeleteScheduledActionCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class DeleteScheduledActionCommand extends DeleteScheduledActionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteScheduledActionType; output: {}; }; sdk: { input: DeleteScheduledActionCommandInput; output: DeleteScheduledActionCommandOutput; }; }; }