describeJob method
Returns the definition of a specific DataBrew job.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter name :
The name of the job to be described.
Implementation
Future<DescribeJobResponse> describeJob({
required String name,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/jobs/${Uri.encodeComponent(name)}',
exceptionFnMap: _exceptionFns,
);
return DescribeJobResponse.fromJson(response);
}