aws-databrew-job/src/main/java/software/amazon/databrew/job/CreateHandler.java [65:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                model.setTags(model.getTags() == null ? new ArrayList<>() : model.getTags());
                logger.log(String.format("%s [%s] Created Successfully", ResourceModel.TYPE_NAME, jobName));
            } catch (ResourceNotFoundException ex) {
                logger.log(String.format("%s [%s] Does Not Exist", ResourceModel.TYPE_NAME, jobName));
                return ProgressEvent.defaultFailureHandler(ex, HandlerErrorCode.NotFound);
            } catch (ConflictException ex) {
                logger.log(String.format("%s [%s] Already Exists", ResourceModel.TYPE_NAME, jobName));
                return ProgressEvent.defaultFailureHandler(ex, HandlerErrorCode.AlreadyExists);
            } catch (ValidationException ex) {
                logger.log(String.format("%s [%s] Invalid Parameter", ResourceModel.TYPE_NAME, jobName));
                return ProgressEvent.defaultFailureHandler(ex, HandlerErrorCode.InvalidRequest);
            } catch (DataBrewException ex) {
                logger.log(String.format("%s Create Failed", ResourceModel.TYPE_NAME));
                return ProgressEvent.defaultFailureHandler(ex, HandlerErrorCode.ServiceInternalError);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-databrew-job/src/main/java/software/amazon/databrew/job/CreateHandler.java [101:114]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                model.setTags(model.getTags() == null ? new ArrayList<>() : model.getTags());
                logger.log(String.format("%s [%s] Created Successfully", ResourceModel.TYPE_NAME, jobName));
            } catch (ResourceNotFoundException ex) {
                logger.log(String.format("%s [%s] Does Not Exist", ResourceModel.TYPE_NAME, jobName));
                return ProgressEvent.defaultFailureHandler(ex, HandlerErrorCode.NotFound);
            } catch (ConflictException ex) {
                logger.log(String.format("%s [%s] Already Exists", ResourceModel.TYPE_NAME, jobName));
                return ProgressEvent.defaultFailureHandler(ex, HandlerErrorCode.AlreadyExists);
            } catch (ValidationException ex) {
                logger.log(String.format("%s [%s] Invalid Parameter", ResourceModel.TYPE_NAME, jobName));
                return ProgressEvent.defaultFailureHandler(ex, HandlerErrorCode.InvalidRequest);
            } catch (DataBrewException ex) {
                logger.log(String.format("%s Create Failed", ResourceModel.TYPE_NAME));
                return ProgressEvent.defaultFailureHandler(ex, HandlerErrorCode.ServiceInternalError);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



