deleteAppInstanceUser method

Future<void> deleteAppInstanceUser({
  1. required String appInstanceUserArn,
})

Deletes an AppInstanceUser.

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 appInstanceUserArn : The ARN of the user request being deleted.

Implementation

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