deleteCrossAccountAuthorization method
Deletes cross account readiness authorization.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter crossAccountAuthorization :
The cross-account authorization.
Implementation
Future<void> deleteCrossAccountAuthorization({
required String crossAccountAuthorization,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/crossaccountauthorizations/${Uri.encodeComponent(crossAccountAuthorization)}',
exceptionFnMap: _exceptionFns,
);
}