import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import type { EnableAlarmActionsInput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link EnableAlarmActionsCommand}. */ export interface EnableAlarmActionsCommandInput extends EnableAlarmActionsInput { } /** * @public * * The output of {@link EnableAlarmActionsCommand}. */ export interface EnableAlarmActionsCommandOutput extends __MetadataBearer { } declare const EnableAlarmActionsCommand_base: { new (input: EnableAlarmActionsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: EnableAlarmActionsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Enables the actions for the specified alarms.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudWatchClient, EnableAlarmActionsCommand } from "@aws-sdk/client-cloudwatch"; // ES Modules import * // const { CloudWatchClient, EnableAlarmActionsCommand } = require("@aws-sdk/client-cloudwatch"); // CommonJS import * // import type { CloudWatchClientConfig } from "@aws-sdk/client-cloudwatch"; * const config = {}; // type is CloudWatchClientConfig * const client = new CloudWatchClient(config); * const input = { // EnableAlarmActionsInput * AlarmNames: [ // AlarmNames // required * "STRING_VALUE", * ], * }; * const command = new EnableAlarmActionsCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param EnableAlarmActionsCommandInput - {@link EnableAlarmActionsCommandInput} * @returns {@link EnableAlarmActionsCommandOutput} * @see {@link EnableAlarmActionsCommandInput} for command's `input` shape. * @see {@link EnableAlarmActionsCommandOutput} for command's `response` shape. * @see {@link CloudWatchClientResolvedConfig | config} for CloudWatchClient's `config` shape. * * @throws {@link CloudWatchServiceException} *

Base exception class for all service exceptions from CloudWatch service.

* * * @public */ export declare class EnableAlarmActionsCommand extends EnableAlarmActionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: EnableAlarmActionsInput; output: {}; }; sdk: { input: EnableAlarmActionsCommandInput; output: EnableAlarmActionsCommandOutput; }; }; }