com.pulumi.aws.wafv2.kotlin.outputs.WebAclAssociationConfigRequestBodyCognitoUserPool.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.wafv2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property defaultSizeInspectionLimit Specifies the maximum size of the web request body component that an associated Amazon Cognito user pools should send to AWS WAF for inspection. This applies to statements in the web ACL that inspect the body or JSON body. Valid values are `KB_16`, `KB_32`, `KB_48` and `KB_64`.
*/
public data class WebAclAssociationConfigRequestBodyCognitoUserPool(
public val defaultSizeInspectionLimit: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.wafv2.outputs.WebAclAssociationConfigRequestBodyCognitoUserPool): WebAclAssociationConfigRequestBodyCognitoUserPool =
WebAclAssociationConfigRequestBodyCognitoUserPool(
defaultSizeInspectionLimit = javaType.defaultSizeInspectionLimit(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy