deleteSubscriptionRequest method
Deletes a subscription request in Amazon DataZone.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter domainIdentifier :
The ID of the Amazon DataZone domain in which the subscription request is
deleted.
Parameter identifier :
The ID of the subscription request that is deleted.
Implementation
Future<void> deleteSubscriptionRequest({
required String domainIdentifier,
required String identifier,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/v2/domains/${Uri.encodeComponent(domainIdentifier)}/subscription-requests/${Uri.encodeComponent(identifier)}',
exceptionFnMap: _exceptionFns,
);
}