com.pulumi.aws.wafv2.kotlin.inputs.WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountArgs.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.inputs
import com.pulumi.aws.wafv2.inputs.WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property customRequestHandling Defines custom handling for the web request. See `custom_request_handling` below for details.
*/
public data class
WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountArgs(
public val customRequestHandling: Output? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.wafv2.inputs.WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountArgs =
com.pulumi.aws.wafv2.inputs.WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountArgs.builder()
.customRequestHandling(
customRequestHandling?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountArgs].
*/
@PulumiTagMarker
public class
WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountArgsBuilder
internal constructor() {
private var customRequestHandling:
Output? =
null
/**
* @param value Defines custom handling for the web request. See `custom_request_handling` below for details.
*/
@JvmName("xeoncfknrfneluhc")
public suspend fun customRequestHandling(`value`: Output) {
this.customRequestHandling = value
}
/**
* @param value Defines custom handling for the web request. See `custom_request_handling` below for details.
*/
@JvmName("stslfepimdnvxpog")
public suspend fun customRequestHandling(`value`: WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountCustomRequestHandlingArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.customRequestHandling = mapped
}
/**
* @param argument Defines custom handling for the web request. See `custom_request_handling` below for details.
*/
@JvmName("tsopxjvbytueyoyo")
public suspend fun customRequestHandling(argument: suspend WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountCustomRequestHandlingArgsBuilder.() -> Unit) {
val toBeMapped =
WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountCustomRequestHandlingArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.customRequestHandling = mapped
}
internal fun build(): WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountArgs =
WebAclRuleStatementRuleGroupReferenceStatementRuleActionOverrideActionToUseCountArgs(
customRequestHandling = customRequestHandling,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy