![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.wafv2.kotlin.enums.RuleGroupJsonMatchScope.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 RuleGroupJsonMatchScope(
public val javaValue: com.pulumi.awsnative.wafv2.enums.RuleGroupJsonMatchScope,
) : ConvertibleToJava {
All(com.pulumi.awsnative.wafv2.enums.RuleGroupJsonMatchScope.All),
Key(com.pulumi.awsnative.wafv2.enums.RuleGroupJsonMatchScope.Key),
Value(com.pulumi.awsnative.wafv2.enums.RuleGroupJsonMatchScope.Value),
;
override fun toJava(): com.pulumi.awsnative.wafv2.enums.RuleGroupJsonMatchScope = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.wafv2.enums.RuleGroupJsonMatchScope): RuleGroupJsonMatchScope =
RuleGroupJsonMatchScope.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy