All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.wafv2.kotlin.enums.WebAclJsonMatchScope.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.wafv2.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * The parts of the JSON to match against using the MatchPattern.
 */
public enum class WebAclJsonMatchScope(
    public val javaValue: com.pulumi.awsnative.wafv2.enums.WebAclJsonMatchScope,
) : ConvertibleToJava {
    All(com.pulumi.awsnative.wafv2.enums.WebAclJsonMatchScope.All),
    Key(com.pulumi.awsnative.wafv2.enums.WebAclJsonMatchScope.Key),
    Value(com.pulumi.awsnative.wafv2.enums.WebAclJsonMatchScope.Value),
    ;

    override fun toJava(): com.pulumi.awsnative.wafv2.enums.WebAclJsonMatchScope = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.wafv2.enums.WebAclJsonMatchScope): WebAclJsonMatchScope = WebAclJsonMatchScope.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy