aws-databrew-dataset/src/main/java/software/amazon/databrew/dataset/ModelHelper.java [30:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static ResourceModel constructModel(final DescribeDatasetResponse dataset) {
        Map<String, String> tags = dataset.tags();
        return ResourceModel.builder()
                .name(dataset.name())
                .format(dataset.format() != null ? dataset.format().toString() : null)
                .input(buildModelInput(dataset.input()))
                .formatOptions(buildModelFormatOptions(dataset.formatOptions()))
                .pathOptions(buildModelPathOptions(dataset.pathOptions()))
                .tags(tags != null ? buildModelTags(tags) : null)
                .build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-databrew-dataset/src/main/java/software/amazon/databrew/dataset/ModelHelper.java [42:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static ResourceModel constructModel(final Dataset dataset) {
        Map<String, String> tags = dataset.tags();
        return ResourceModel.builder()
                .name(dataset.name())
                .format(dataset.format() != null ? dataset.format().toString() : null)
                .input(buildModelInput(dataset.input()))
                .formatOptions(buildModelFormatOptions(dataset.formatOptions()))
                .pathOptions(buildModelPathOptions(dataset.pathOptions()))
                .tags(tags != null ? buildModelTags(tags) : null)
                .build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



