com.pulumi.aws.wafv2.kotlin.inputs.WebAclRuleStatementSqliMatchStatementFieldToMatchCookiesMatchPatternArgs.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.WebAclRuleStatementSqliMatchStatementFieldToMatchCookiesMatchPatternArgs.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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property all An empty configuration block that is used for inspecting all headers.
* @property excludedCookies
* @property includedCookies
*/
public data class WebAclRuleStatementSqliMatchStatementFieldToMatchCookiesMatchPatternArgs(
public val all: Output? = null,
public val excludedCookies: Output>? = null,
public val includedCookies: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.wafv2.inputs.WebAclRuleStatementSqliMatchStatementFieldToMatchCookiesMatchPatternArgs =
com.pulumi.aws.wafv2.inputs.WebAclRuleStatementSqliMatchStatementFieldToMatchCookiesMatchPatternArgs.builder()
.all(all?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.excludedCookies(excludedCookies?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.includedCookies(includedCookies?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [WebAclRuleStatementSqliMatchStatementFieldToMatchCookiesMatchPatternArgs].
*/
@PulumiTagMarker
public class WebAclRuleStatementSqliMatchStatementFieldToMatchCookiesMatchPatternArgsBuilder
internal constructor() {
private var all:
Output? = null
private var excludedCookies: Output>? = null
private var includedCookies: Output>? = null
/**
* @param value An empty configuration block that is used for inspecting all headers.
*/
@JvmName("bbgjxtfpphoiptdm")
public suspend fun all(`value`: Output) {
this.all = value
}
/**
* @param value
*/
@JvmName("tkryhxbhkxgioqdb")
public suspend fun excludedCookies(`value`: Output>) {
this.excludedCookies = value
}
@JvmName("ekyyqedhiqfwcqcb")
public suspend fun excludedCookies(vararg values: Output) {
this.excludedCookies = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("svadxgyaomrckcmh")
public suspend fun excludedCookies(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy