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

com.pulumi.awsnative.wafv2.kotlin.outputs.WebAclJa3Fingerprint.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@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)
            }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy