import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteTeamsChannelConfigurationRequest, DeleteTeamsChannelConfigurationResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteMicrosoftTeamsChannelConfigurationCommand}. */ export interface DeleteMicrosoftTeamsChannelConfigurationCommandInput extends DeleteTeamsChannelConfigurationRequest { } /** * @public * * The output of {@link DeleteMicrosoftTeamsChannelConfigurationCommand}. */ export interface DeleteMicrosoftTeamsChannelConfigurationCommandOutput extends DeleteTeamsChannelConfigurationResult, __MetadataBearer { } declare const DeleteMicrosoftTeamsChannelConfigurationCommand_base: { new (input: DeleteMicrosoftTeamsChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteMicrosoftTeamsChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a Microsoft Teams channel configuration for AWS Chatbot

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ChatbotClient, DeleteMicrosoftTeamsChannelConfigurationCommand } from "@aws-sdk/client-chatbot"; // ES Modules import * // const { ChatbotClient, DeleteMicrosoftTeamsChannelConfigurationCommand } = 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 = { // DeleteTeamsChannelConfigurationRequest * ChatConfigurationArn: "STRING_VALUE", // required * }; * const command = new DeleteMicrosoftTeamsChannelConfigurationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteMicrosoftTeamsChannelConfigurationCommandInput - {@link DeleteMicrosoftTeamsChannelConfigurationCommandInput} * @returns {@link DeleteMicrosoftTeamsChannelConfigurationCommandOutput} * @see {@link DeleteMicrosoftTeamsChannelConfigurationCommandInput} for command's `input` shape. * @see {@link DeleteMicrosoftTeamsChannelConfigurationCommandOutput} for command's `response` shape. * @see {@link ChatbotClientResolvedConfig | config} for ChatbotClient's `config` shape. * * @throws {@link DeleteTeamsChannelConfigurationException} (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 ResourceNotFoundException} (client fault) *

We were unable to find the resource for your request

* * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* * * @public */ export declare class DeleteMicrosoftTeamsChannelConfigurationCommand extends DeleteMicrosoftTeamsChannelConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteTeamsChannelConfigurationRequest; output: {}; }; sdk: { input: DeleteMicrosoftTeamsChannelConfigurationCommandInput; output: DeleteMicrosoftTeamsChannelConfigurationCommandOutput; }; }; }