com.pulumi.aws.wafv2.kotlin.inputs.WebAclRuleStatementNotStatementArgs.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.WebAclRuleStatementNotStatementArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property statements The statements to combine.
*/
public data class WebAclRuleStatementNotStatementArgs(
public val statements: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.wafv2.inputs.WebAclRuleStatementNotStatementArgs =
com.pulumi.aws.wafv2.inputs.WebAclRuleStatementNotStatementArgs.builder()
.statements(
statements.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [WebAclRuleStatementNotStatementArgs].
*/
@PulumiTagMarker
public class WebAclRuleStatementNotStatementArgsBuilder internal constructor() {
private var statements: Output>? = null
/**
* @param value The statements to combine.
*/
@JvmName("jhiusocfgreyogfd")
public suspend fun statements(`value`: Output>) {
this.statements = value
}
@JvmName("fibrlrjugjonqany")
public suspend fun statements(vararg values: Output) {
this.statements = Output.all(values.asList())
}
/**
* @param values The statements to combine.
*/
@JvmName("guxucnaurlqejpvw")
public suspend fun statements(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy