deleteChimeWebhookConfiguration method

Future<void> deleteChimeWebhookConfiguration({
  1. required String chatConfigurationArn,
})

Deletes a Amazon Chime webhook configuration for AWS Chatbot.

May throw DeleteChimeWebhookConfigurationException. May throw InvalidParameterException. May throw InvalidRequestException. May throw ResourceNotFoundException.

Parameter chatConfigurationArn : The Amazon Resource Name (ARN) of the ChimeWebhookConfiguration to delete.

Implementation

Future<void> deleteChimeWebhookConfiguration({
  required String chatConfigurationArn,
}) async {
  final $payload = <String, dynamic>{
    'ChatConfigurationArn': chatConfigurationArn,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/delete-chime-webhook-configuration',
    exceptionFnMap: _exceptionFns,
  );
}