startJob method
This operation starts a job.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter jobId :
The unique identifier for a job.
Implementation
Future<void> startJob({
required String jobId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'PATCH',
requestUri: '/v1/jobs/${Uri.encodeComponent(jobId)}',
exceptionFnMap: _exceptionFns,
);
}