aws-databrew-recipe/src/main/java/software/amazon/databrew/recipe/ModelHelper.java [20:28]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static ResourceModel constructModel(final DescribeRecipeResponse recipe) {
        Map<String, String> tags = recipe.tags();
        return ResourceModel.builder()
                .description(recipe.description())
                .name(recipe.name())
                .steps(buildModelRecipeSteps(recipe.steps()))
                .tags(tags != null ? buildModelTags(tags) : null)
                .build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-databrew-recipe/src/main/java/software/amazon/databrew/recipe/ModelHelper.java [30:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static ResourceModel constructModel(final Recipe recipe) {
        Map<String, String> tags = recipe.tags();
        return ResourceModel.builder()
                .description(recipe.description())
                .name(recipe.name())
                .steps(buildModelRecipeSteps(recipe.steps()))
                .tags(tags != null ? buildModelTags(tags) : null)
                .build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



