import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeNotificationConfigurationsAnswer, DescribeNotificationConfigurationsType } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeNotificationConfigurationsCommand}. */ export interface DescribeNotificationConfigurationsCommandInput extends DescribeNotificationConfigurationsType { } /** * @public * * The output of {@link DescribeNotificationConfigurationsCommand}. */ export interface DescribeNotificationConfigurationsCommandOutput extends DescribeNotificationConfigurationsAnswer, __MetadataBearer { } declare const DescribeNotificationConfigurationsCommand_base: { new (input: DescribeNotificationConfigurationsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeNotificationConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Gets information about the Amazon SNS notifications that are configured for one or more * Auto Scaling groups.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { AutoScalingClient, DescribeNotificationConfigurationsCommand } from "@aws-sdk/client-auto-scaling"; // ES Modules import * // const { AutoScalingClient, DescribeNotificationConfigurationsCommand } = 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 = { // DescribeNotificationConfigurationsType * AutoScalingGroupNames: [ // AutoScalingGroupNames * "STRING_VALUE", * ], * NextToken: "STRING_VALUE", * MaxRecords: Number("int"), * }; * const command = new DescribeNotificationConfigurationsCommand(input); * const response = await client.send(command); * // { // DescribeNotificationConfigurationsAnswer * // NotificationConfigurations: [ // NotificationConfigurations // required * // { // NotificationConfiguration * // AutoScalingGroupName: "STRING_VALUE", * // TopicARN: "STRING_VALUE", * // NotificationType: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeNotificationConfigurationsCommandInput - {@link DescribeNotificationConfigurationsCommandInput} * @returns {@link DescribeNotificationConfigurationsCommandOutput} * @see {@link DescribeNotificationConfigurationsCommandInput} for command's `input` shape. * @see {@link DescribeNotificationConfigurationsCommandOutput} for command's `response` shape. * @see {@link AutoScalingClientResolvedConfig | config} for AutoScalingClient's `config` shape. * * @throws {@link InvalidNextToken} (client fault) *

The NextToken value is not valid.

* * @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 describe Auto Scaling notification configurations * ```javascript * // This example describes the notification configurations for the specified Auto Scaling group. * const input = { * AutoScalingGroupNames: [ * "my-auto-scaling-group" * ] * }; * const command = new DescribeNotificationConfigurationsCommand(input); * const response = await client.send(command); * /* response is * { * NotificationConfigurations: [ * { * AutoScalingGroupName: "my-auto-scaling-group", * NotificationType: "autoscaling:TEST_NOTIFICATION", * TopicARN: "arn:aws:sns:us-west-2:123456789012:my-sns-topic-2" * }, * { * AutoScalingGroupName: "my-auto-scaling-group", * NotificationType: "autoscaling:TEST_NOTIFICATION", * TopicARN: "arn:aws:sns:us-west-2:123456789012:my-sns-topic" * } * ] * } * *\/ * ``` * * @public */ export declare class DescribeNotificationConfigurationsCommand extends DescribeNotificationConfigurationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeNotificationConfigurationsType; output: DescribeNotificationConfigurationsAnswer; }; sdk: { input: DescribeNotificationConfigurationsCommandInput; output: DescribeNotificationConfigurationsCommandOutput; }; }; }