deleteMicrosoftTeamsChannelConfiguration method
Deletes a Microsoft Teams channel configuration for AWS Chatbot
May throw DeleteTeamsChannelConfigurationException.
May throw InvalidParameterException.
May throw InvalidRequestException.
May throw ResourceNotFoundException.
Parameter chatConfigurationArn :
The Amazon Resource Name (ARN) of the MicrosoftTeamsChannelConfiguration
associated with the user identity to delete.
Implementation
Future<void> deleteMicrosoftTeamsChannelConfiguration({
required String chatConfigurationArn,
}) async {
final $payload = <String, dynamic>{
'ChatConfigurationArn': chatConfigurationArn,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/delete-ms-teams-channel-configuration',
exceptionFnMap: _exceptionFns,
);
}