fun defineCustomProperties()

in src/main/kotlin/software/aws/mcs/cql2cfn/cql/Properties.kt [37:42]


    fun defineCustomProperties(customProperties: PropertyMap<String, PropertyMap<String, String>>) {
        if (this.customProperties != null) {
            throw ParsingException("multiple definition for property 'custom_properties'")
        }
        this.customProperties = customProperties
    }