![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.wafv2.kotlin.enums.RuleGroupJa3FingerprintFallbackBehavior.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.wafv2.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The match status to assign to the web request if the request doesn't have a JA3 fingerprint.
* You can specify the following fallback behaviors:
* - `MATCH` - Treat the web request as matching the rule statement. AWS WAF applies the rule action to the request.
* - `NO_MATCH` - Treat the web request as not matching the rule statement.
*/
public enum class RuleGroupJa3FingerprintFallbackBehavior(
public val javaValue: com.pulumi.awsnative.wafv2.enums.RuleGroupJa3FingerprintFallbackBehavior,
) : ConvertibleToJava {
Match(com.pulumi.awsnative.wafv2.enums.RuleGroupJa3FingerprintFallbackBehavior.Match),
NoMatch(com.pulumi.awsnative.wafv2.enums.RuleGroupJa3FingerprintFallbackBehavior.NoMatch),
;
override fun toJava(): com.pulumi.awsnative.wafv2.enums.RuleGroupJa3FingerprintFallbackBehavior =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.wafv2.enums.RuleGroupJa3FingerprintFallbackBehavior): RuleGroupJa3FingerprintFallbackBehavior =
RuleGroupJa3FingerprintFallbackBehavior.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy