import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateChimeWebhookConfigurationRequest, UpdateChimeWebhookConfigurationResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateChimeWebhookConfigurationCommand}. */ export interface UpdateChimeWebhookConfigurationCommandInput extends UpdateChimeWebhookConfigurationRequest { } /** * @public * * The output of {@link UpdateChimeWebhookConfigurationCommand}. */ export interface UpdateChimeWebhookConfigurationCommandOutput extends UpdateChimeWebhookConfigurationResult, __MetadataBearer { } declare const UpdateChimeWebhookConfigurationCommand_base: { new (input: UpdateChimeWebhookConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateChimeWebhookConfigurationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Updates a Amazon Chime webhook configuration.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ChatbotClient, UpdateChimeWebhookConfigurationCommand } from "@aws-sdk/client-chatbot"; // ES Modules import * // const { ChatbotClient, UpdateChimeWebhookConfigurationCommand } = 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 = { // UpdateChimeWebhookConfigurationRequest * ChatConfigurationArn: "STRING_VALUE", // required * WebhookDescription: "STRING_VALUE", * WebhookUrl: "STRING_VALUE", * SnsTopicArns: [ // SnsTopicArnList * "STRING_VALUE", * ], * IamRoleArn: "STRING_VALUE", * LoggingLevel: "STRING_VALUE", * }; * const command = new UpdateChimeWebhookConfigurationCommand(input); * const response = await client.send(command); * // { // UpdateChimeWebhookConfigurationResult * // WebhookConfiguration: { // 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 UpdateChimeWebhookConfigurationCommandInput - {@link UpdateChimeWebhookConfigurationCommandInput} * @returns {@link UpdateChimeWebhookConfigurationCommandOutput} * @see {@link UpdateChimeWebhookConfigurationCommandInput} for command's `input` shape. * @see {@link UpdateChimeWebhookConfigurationCommandOutput} for command's `response` shape. * @see {@link ChatbotClientResolvedConfig | config} for ChatbotClient's `config` shape. * * @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 ResourceNotFoundException} (client fault) *

We were unable to find the resource for your request

* * @throws {@link UpdateChimeWebhookConfigurationException} (server fault) *

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

* * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* * * @public */ export declare class UpdateChimeWebhookConfigurationCommand extends UpdateChimeWebhookConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateChimeWebhookConfigurationRequest; output: UpdateChimeWebhookConfigurationResult; }; sdk: { input: UpdateChimeWebhookConfigurationCommandInput; output: UpdateChimeWebhookConfigurationCommandOutput; }; }; }