describeEventsDetectionJob method
Gets the status and details of an events detection job.
May throw InvalidRequestException. May throw JobNotFoundException. May throw TooManyRequestsException. May throw InternalServerException.
Parameter jobId
:
The identifier of the events detection job.
Implementation
Future<DescribeEventsDetectionJobResponse> describeEventsDetectionJob({
required String jobId,
}) async {
ArgumentError.checkNotNull(jobId, 'jobId');
_s.validateStringLength(
'jobId',
jobId,
1,
32,
isRequired: true,
);
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'Comprehend_20171127.DescribeEventsDetectionJob'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'JobId': jobId,
},
);
return DescribeEventsDetectionJobResponse.fromJson(jsonResponse.body);
}