deleteApplication method
Deletes the specified application.
May throw BadRequestException. May throw InternalServerErrorException. May throw ForbiddenException. May throw NotFoundException. May throw TooManyRequestsException. May throw ConflictException.
Parameter applicationId
:
The Amazon Resource Name (ARN) of the application.
Implementation
Future<void> deleteApplication({
required String applicationId,
}) async {
ArgumentError.checkNotNull(applicationId, 'applicationId');
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/applications/${Uri.encodeComponent(applicationId)}',
exceptionFnMap: _exceptionFns,
);
}