deleteApplication method

Future<void> deleteApplication({
  1. required String applicationId,
})

Deletes a specific application. You cannot delete a running application.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ThrottlingException. May throw ValidationException.

Parameter applicationId : The unique identifier of the application you want to delete.

Implementation

Future<void> deleteApplication({
  required String applicationId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/applications/${Uri.encodeComponent(applicationId)}',
    exceptionFnMap: _exceptionFns,
  );
}