deleteJob method

Future<DeleteJobResponse> deleteJob({
  1. required String name,
})

Deletes the specified DataBrew job.

May throw ConflictException. May throw ResourceNotFoundException. May throw ValidationException.

Parameter name : The name of the job to be deleted.

Implementation

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