stopEvaluationJob method

Future<void> stopEvaluationJob({
  1. required String jobIdentifier,
})

Stops an evaluation job that is current being created or running.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter jobIdentifier : The Amazon Resource Name (ARN) of the evaluation job you want to stop.

Implementation

Future<void> stopEvaluationJob({
  required String jobIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri: '/evaluation-job/${Uri.encodeComponent(jobIdentifier)}/stop',
    exceptionFnMap: _exceptionFns,
  );
}