deleteAppInstanceBot method

Future<void> deleteAppInstanceBot({
  1. required String appInstanceBotArn,
})

Deletes an AppInstanceBot.

May throw BadRequestException. May throw ConflictException. May throw ForbiddenException. May throw ResourceLimitExceededException. May throw ServiceFailureException. May throw ServiceUnavailableException. May throw ThrottledClientException. May throw UnauthorizedClientException.

Parameter appInstanceBotArn : The ARN of the AppInstanceBot being deleted.

Implementation

Future<void> deleteAppInstanceBot({
  required String appInstanceBotArn,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/app-instance-bots/${Uri.encodeComponent(appInstanceBotArn)}',
    exceptionFnMap: _exceptionFns,
  );
}