import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ScalingProcessQuery } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ResumeProcessesCommand}. */ export interface ResumeProcessesCommandInput extends ScalingProcessQuery { } /** * @public * * The output of {@link ResumeProcessesCommand}. */ export interface ResumeProcessesCommandOutput extends __MetadataBearer { } declare const ResumeProcessesCommand_base: { new (input: ResumeProcessesCommandInput): import("@smithy/core/client").CommandImpl; new (input: ResumeProcessesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Resumes the specified suspended auto scaling processes, or all suspended process, for * the specified Auto Scaling group.

*

For more information, see Suspend and resume * Amazon EC2 Auto Scaling processes in the Amazon EC2 Auto Scaling User Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { AutoScalingClient, ResumeProcessesCommand } from "@aws-sdk/client-auto-scaling"; // ES Modules import * // const { AutoScalingClient, ResumeProcessesCommand } = 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 = { // ScalingProcessQuery * AutoScalingGroupName: "STRING_VALUE", // required * ScalingProcesses: [ // ProcessNames * "STRING_VALUE", * ], * }; * const command = new ResumeProcessesCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param ResumeProcessesCommandInput - {@link ResumeProcessesCommandInput} * @returns {@link ResumeProcessesCommandOutput} * @see {@link ResumeProcessesCommandInput} for command's `input` shape. * @see {@link ResumeProcessesCommandOutput} 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 ResourceInUseFault} (client fault) *

The operation can't be performed because the resource is in use.

* * @throws {@link AutoScalingServiceException} *

Base exception class for all service exceptions from AutoScaling service.

* * * @example To resume Auto Scaling processes * ```javascript * // This example resumes the specified suspended scaling process for the specified Auto Scaling group. * const input = { * AutoScalingGroupName: "my-auto-scaling-group", * ScalingProcesses: [ * "AlarmNotification" * ] * }; * const command = new ResumeProcessesCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class ResumeProcessesCommand extends ResumeProcessesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ScalingProcessQuery; output: {}; }; sdk: { input: ResumeProcessesCommandInput; output: ResumeProcessesCommandOutput; }; }; }