import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import type { DescribeDeliveryChannelsRequest, DescribeDeliveryChannelsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeDeliveryChannelsCommand}. */ export interface DescribeDeliveryChannelsCommandInput extends DescribeDeliveryChannelsRequest { } /** * @public * * The output of {@link DescribeDeliveryChannelsCommand}. */ export interface DescribeDeliveryChannelsCommandOutput extends DescribeDeliveryChannelsResponse, __MetadataBearer { } declare const DescribeDeliveryChannelsCommand_base: { new (input: DescribeDeliveryChannelsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeDeliveryChannelsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns details about the specified delivery channel. If a * delivery channel is not specified, this operation returns the details * of all delivery channels associated with the account.

* *

Currently, you can specify only one delivery channel per * region in your account.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, DescribeDeliveryChannelsCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, DescribeDeliveryChannelsCommand } = require("@aws-sdk/client-config-service"); // CommonJS import * // import type { ConfigServiceClientConfig } from "@aws-sdk/client-config-service"; * const config = {}; // type is ConfigServiceClientConfig * const client = new ConfigServiceClient(config); * const input = { // DescribeDeliveryChannelsRequest * DeliveryChannelNames: [ // DeliveryChannelNameList * "STRING_VALUE", * ], * }; * const command = new DescribeDeliveryChannelsCommand(input); * const response = await client.send(command); * // { // DescribeDeliveryChannelsResponse * // DeliveryChannels: [ // DeliveryChannelList * // { // DeliveryChannel * // name: "STRING_VALUE", * // s3BucketName: "STRING_VALUE", * // s3KeyPrefix: "STRING_VALUE", * // s3KmsKeyArn: "STRING_VALUE", * // snsTopicARN: "STRING_VALUE", * // configSnapshotDeliveryProperties: { // ConfigSnapshotDeliveryProperties * // deliveryFrequency: "One_Hour" || "Three_Hours" || "Six_Hours" || "Twelve_Hours" || "TwentyFour_Hours", * // }, * // }, * // ], * // }; * * ``` * * @param DescribeDeliveryChannelsCommandInput - {@link DescribeDeliveryChannelsCommandInput} * @returns {@link DescribeDeliveryChannelsCommandOutput} * @see {@link DescribeDeliveryChannelsCommandInput} for command's `input` shape. * @see {@link DescribeDeliveryChannelsCommandOutput} for command's `response` shape. * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape. * * @throws {@link NoSuchDeliveryChannelException} (client fault) *

You have specified a delivery channel that does not * exist.

* * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DescribeDeliveryChannelsCommand extends DescribeDeliveryChannelsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeDeliveryChannelsRequest; output: DescribeDeliveryChannelsResponse; }; sdk: { input: DescribeDeliveryChannelsCommandInput; output: DescribeDeliveryChannelsCommandOutput; }; }; }