public void removeWriteOnlyProperties()

in src/main/java/software/amazon/cloudformation/resource/ResourceTypeSchema.java [250:253]


    public void removeWriteOnlyProperties(final JSONObject resourceModel) {
        this.getWriteOnlyPropertiesAsStrings().stream().forEach(writeOnlyProperty -> removeProperty(
            new PublicJSONPointer(writeOnlyProperty.replaceFirst("^/properties", "")), resourceModel));
    }