startJobRun method
Runs a DataBrew job.
May throw ConflictException.
May throw ResourceNotFoundException.
May throw ServiceQuotaExceededException.
May throw ValidationException.
Parameter name :
The name of the job to be run.
Implementation
Future<StartJobRunResponse> startJobRun({
required String name,
}) async {
final response = await _protocol.send(
payload: null,
method: 'POST',
requestUri: '/jobs/${Uri.encodeComponent(name)}/startJobRun',
exceptionFnMap: _exceptionFns,
);
return StartJobRunResponse.fromJson(response);
}