deregisterSubscriptionProvider method
Remove a third-party subscription provider from the Bring Your Own License (BYOL) subscriptions registered to your account.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter subscriptionProviderArn :
The Amazon Resource Name (ARN) of the subscription provider resource to
deregister.
Implementation
Future<void> deregisterSubscriptionProvider({
required String subscriptionProviderArn,
}) async {
final $payload = <String, dynamic>{
'SubscriptionProviderArn': subscriptionProviderArn,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/subscription/DeregisterSubscriptionProvider',
exceptionFnMap: _exceptionFns,
);
}