removeApplicationInstance method
Removes an application instance.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter applicationInstanceId :
An application instance ID.
Implementation
Future<void> removeApplicationInstance({
required String applicationInstanceId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/application-instances/${Uri.encodeComponent(applicationInstanceId)}',
exceptionFnMap: _exceptionFns,
);
}