deleteConfiguredModelAlgorithm method
Deletes a configured model algorithm.
May throw AccessDeniedException.
May throw ConflictException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter configuredModelAlgorithmArn :
The Amazon Resource Name (ARN) of the configured model algorithm that you
want to delete.
Implementation
Future<void> deleteConfiguredModelAlgorithm({
required String configuredModelAlgorithmArn,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/configured-model-algorithms/${Uri.encodeComponent(configuredModelAlgorithmArn)}',
exceptionFnMap: _exceptionFns,
);
}