
com.pulumi.awsnative.wafv2.kotlin.outputs.RuleGroupOrStatement.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.wafv2.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property statements The statements to combine with OR logic. You can use any statements that can be nested.
*/
public data class RuleGroupOrStatement(
public val statements: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.wafv2.outputs.RuleGroupOrStatement): RuleGroupOrStatement = RuleGroupOrStatement(
statements = javaType.statements().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.wafv2.kotlin.outputs.RuleGroupStatement.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy