stopSNOMEDCTInferenceJob method
Stops an InferSNOMEDCT inference job in progress.
May throw InternalServerException.
May throw InvalidRequestException.
May throw ResourceNotFoundException.
May throw TooManyRequestsException.
Parameter jobId :
The job id of the asynchronous InferSNOMEDCT job to be stopped.
Implementation
Future<StopSNOMEDCTInferenceJobResponse> stopSNOMEDCTInferenceJob({
required String jobId,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'ComprehendMedical_20181030.StopSNOMEDCTInferenceJob'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'JobId': jobId,
},
);
return StopSNOMEDCTInferenceJobResponse.fromJson(jsonResponse.body);
}