describeDocumentClassificationJob method

Future<DescribeDocumentClassificationJobResponse> describeDocumentClassificationJob({
  1. required String jobId,
})

Gets the properties associated with a document classification job. Use this operation to get the status of a classification job.

May throw InvalidRequestException. May throw TooManyRequestsException. May throw JobNotFoundException. May throw InternalServerException.

Parameter jobId : The identifier that Amazon Comprehend generated for the job. The operation returns this identifier in its response.

Implementation

Future<DescribeDocumentClassificationJobResponse>
    describeDocumentClassificationJob({
  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.DescribeDocumentClassificationJob'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'JobId': jobId,
    },
  );

  return DescribeDocumentClassificationJobResponse.fromJson(
      jsonResponse.body);
}