describeJobRun method

Future<DescribeJobRunResponse> describeJobRun({
  1. required String name,
  2. required String runId,
})

Represents one run of a DataBrew job.

May throw ResourceNotFoundException. May throw ValidationException.

Parameter name : The name of the job being processed during this run.

Parameter runId : The unique identifier of the job run.

Implementation

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