batchDeleteEvaluationJob method
Deletes a batch of evaluation jobs. An evaluation job can only be deleted
if it has following status FAILED, COMPLETED,
and STOPPED. You can request up to 25 model evaluation jobs
be deleted in a single request.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter jobIdentifiers :
A list of one or more evaluation job Amazon Resource Names (ARNs) you want
to delete.
Implementation
Future<BatchDeleteEvaluationJobResponse> batchDeleteEvaluationJob({
required List<String> jobIdentifiers,
}) async {
final $payload = <String, dynamic>{
'jobIdentifiers': jobIdentifiers,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/evaluation-jobs/batch-delete',
exceptionFnMap: _exceptionFns,
);
return BatchDeleteEvaluationJobResponse.fromJson(response);
}