com.pulumi.awsnative.wafv2.kotlin.outputs.WebAclJa3Fingerprint.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.outputs
import com.pulumi.awsnative.wafv2.kotlin.enums.WebAclJa3FingerprintFallbackBehavior
import kotlin.Suppress
/**
* Includes the JA3 fingerprint of a web request.
* @property fallbackBehavior 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 data class WebAclJa3Fingerprint(
public val fallbackBehavior: WebAclJa3FingerprintFallbackBehavior,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.wafv2.outputs.WebAclJa3Fingerprint): WebAclJa3Fingerprint = WebAclJa3Fingerprint(
fallbackBehavior = javaType.fallbackBehavior().let({ args0 ->
com.pulumi.awsnative.wafv2.kotlin.enums.WebAclJa3FingerprintFallbackBehavior.Companion.toKotlin(args0)
}),
)
}
}