describeClassificationJob method

Future<DescribeClassificationJobResponse> describeClassificationJob({
  1. required String jobId,
})

Retrieves the status and settings for a classification job.

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

Parameter jobId : The unique identifier for the classification job.

Implementation

Future<DescribeClassificationJobResponse> describeClassificationJob({
  required String jobId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/jobs/${Uri.encodeComponent(jobId)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeClassificationJobResponse.fromJson(response);
}