deleteApplication method
Deletes an Amazon Q Business application.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter applicationId :
The identifier of the Amazon Q Business application.
Implementation
Future<void> deleteApplication({
required String applicationId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/applications/${Uri.encodeComponent(applicationId)}',
exceptionFnMap: _exceptionFns,
);
}