import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteNotificationConfigurationType } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteNotificationConfigurationCommand}. */ export interface DeleteNotificationConfigurationCommandInput extends DeleteNotificationConfigurationType { } /** * @public * * The output of {@link DeleteNotificationConfigurationCommand}. */ export interface DeleteNotificationConfigurationCommandOutput extends __MetadataBearer { } declare const DeleteNotificationConfigurationCommand_base: { new (input: DeleteNotificationConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteNotificationConfigurationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the specified notification.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { AutoScalingClient, DeleteNotificationConfigurationCommand } from "@aws-sdk/client-auto-scaling"; // ES Modules import * // const { AutoScalingClient, DeleteNotificationConfigurationCommand } = 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 = { // DeleteNotificationConfigurationType * AutoScalingGroupName: "STRING_VALUE", // required * TopicARN: "STRING_VALUE", // required * }; * const command = new DeleteNotificationConfigurationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteNotificationConfigurationCommandInput - {@link DeleteNotificationConfigurationCommandInput} * @returns {@link DeleteNotificationConfigurationCommandOutput} * @see {@link DeleteNotificationConfigurationCommandInput} for command's `input` shape. * @see {@link DeleteNotificationConfigurationCommandOutput} 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 an Auto Scaling notification * ```javascript * // This example deletes the specified notification from the specified Auto Scaling group. * const input = { * AutoScalingGroupName: "my-auto-scaling-group", * TopicARN: "arn:aws:sns:us-west-2:123456789012:my-sns-topic" * }; * const command = new DeleteNotificationConfigurationCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class DeleteNotificationConfigurationCommand extends DeleteNotificationConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteNotificationConfigurationType; output: {}; }; sdk: { input: DeleteNotificationConfigurationCommandInput; output: DeleteNotificationConfigurationCommandOutput; }; }; }