deleteEventsConfiguration method
Deletes the events configuration that allows a bot to receive outgoing events.
May throw BadRequestException.
May throw ForbiddenException.
May throw ResourceLimitExceededException.
May throw ServiceFailureException.
May throw ServiceUnavailableException.
May throw UnauthorizedClientException.
Parameter accountId :
The Amazon Chime account ID.
Parameter botId :
The bot ID.
Implementation
Future<void> deleteEventsConfiguration({
required String accountId,
required String botId,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/accounts/${Uri.encodeComponent(accountId)}/bots/${Uri.encodeComponent(botId)}/events-configuration',
exceptionFnMap: _exceptionFns,
);
}