import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeChimeWebhookConfigurationsRequest, DescribeChimeWebhookConfigurationsResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeChimeWebhookConfigurationsCommand}. */ export interface DescribeChimeWebhookConfigurationsCommandInput extends DescribeChimeWebhookConfigurationsRequest { } /** * @public * * The output of {@link DescribeChimeWebhookConfigurationsCommand}. */ export interface DescribeChimeWebhookConfigurationsCommandOutput extends DescribeChimeWebhookConfigurationsResult, __MetadataBearer { } declare const DescribeChimeWebhookConfigurationsCommand_base: { new (input: DescribeChimeWebhookConfigurationsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeChimeWebhookConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists Amazon Chime webhook configurations optionally filtered by ChatConfigurationArn

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ChatbotClient, DescribeChimeWebhookConfigurationsCommand } from "@aws-sdk/client-chatbot"; // ES Modules import * // const { ChatbotClient, DescribeChimeWebhookConfigurationsCommand } = require("@aws-sdk/client-chatbot"); // CommonJS import * // import type { ChatbotClientConfig } from "@aws-sdk/client-chatbot"; * const config = {}; // type is ChatbotClientConfig * const client = new ChatbotClient(config); * const input = { // DescribeChimeWebhookConfigurationsRequest * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * ChatConfigurationArn: "STRING_VALUE", * }; * const command = new DescribeChimeWebhookConfigurationsCommand(input); * const response = await client.send(command); * // { // DescribeChimeWebhookConfigurationsResult * // NextToken: "STRING_VALUE", * // WebhookConfigurations: [ // ChimeWebhookConfigurationList * // { // ChimeWebhookConfiguration * // WebhookDescription: "STRING_VALUE", // required * // ChatConfigurationArn: "STRING_VALUE", // required * // IamRoleArn: "STRING_VALUE", // required * // SnsTopicArns: [ // SnsTopicArnList // required * // "STRING_VALUE", * // ], * // ConfigurationName: "STRING_VALUE", * // LoggingLevel: "STRING_VALUE", * // Tags: [ // Tags * // { // Tag * // TagKey: "STRING_VALUE", // required * // TagValue: "STRING_VALUE", // required * // }, * // ], * // State: "STRING_VALUE", * // StateReason: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DescribeChimeWebhookConfigurationsCommandInput - {@link DescribeChimeWebhookConfigurationsCommandInput} * @returns {@link DescribeChimeWebhookConfigurationsCommandOutput} * @see {@link DescribeChimeWebhookConfigurationsCommandInput} for command's `input` shape. * @see {@link DescribeChimeWebhookConfigurationsCommandOutput} for command's `response` shape. * @see {@link ChatbotClientResolvedConfig | config} for ChatbotClient's `config` shape. * * @throws {@link DescribeChimeWebhookConfigurationsException} (server fault) *

We can’t process your request right now because of a server issue. Try again later.

* * @throws {@link InvalidParameterException} (client fault) *

Your request input doesn't meet the constraints required by AWS Chatbot.

* * @throws {@link InvalidRequestException} (client fault) *

Your request input doesn't meet the constraints required by AWS Chatbot.

* * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* * * @public */ export declare class DescribeChimeWebhookConfigurationsCommand extends DescribeChimeWebhookConfigurationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeChimeWebhookConfigurationsRequest; output: DescribeChimeWebhookConfigurationsResult; }; sdk: { input: DescribeChimeWebhookConfigurationsCommandInput; output: DescribeChimeWebhookConfigurationsCommandOutput; }; }; }