deleteAggregatorV2 method
Deletes the Aggregator V2.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter aggregatorV2Arn :
The ARN of the Aggregator V2.
Implementation
Future<void> deleteAggregatorV2({
required String aggregatorV2Arn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/aggregatorv2/delete/${aggregatorV2Arn.split('/').map(Uri.encodeComponent).join('/')}',
exceptionFnMap: _exceptionFns,
);
}