deleteAppAuthorization method
Deletes an app authorization. You must delete the associated ingestion before you can delete an app authorization.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter appAuthorizationIdentifier :
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of
the app authorization to use for the request.
Parameter appBundleIdentifier :
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of
the app bundle to use for the request.
Implementation
Future<void> deleteAppAuthorization({
required String appAuthorizationIdentifier,
required String appBundleIdentifier,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/appbundles/${Uri.encodeComponent(appBundleIdentifier)}/appauthorizations/${Uri.encodeComponent(appAuthorizationIdentifier)}',
exceptionFnMap: _exceptionFns,
);
}