deleteAppBundle method
Deletes an app bundle. You must delete all associated app authorizations before you can delete an app bundle.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter appBundleIdentifier :
The ID or Amazon Resource Name (ARN) of the app bundle that needs to be
deleted.
Implementation
Future<void> deleteAppBundle({
required String appBundleIdentifier,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/appbundles/${Uri.encodeComponent(appBundleIdentifier)}',
exceptionFnMap: _exceptionFns,
);
}