com.pulumi.awsnative.cleanrooms.kotlin.inputs.ConfiguredTableAnalysisRulePolicyV10PropertiesArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.cleanrooms.kotlin.inputs
import com.pulumi.awsnative.cleanrooms.inputs.ConfiguredTableAnalysisRulePolicyV10PropertiesArgs.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.jvm.JvmName
/**
*
* @property list
*/
public data class ConfiguredTableAnalysisRulePolicyV10PropertiesArgs(
public val list: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.cleanrooms.inputs.ConfiguredTableAnalysisRulePolicyV10PropertiesArgs =
com.pulumi.awsnative.cleanrooms.inputs.ConfiguredTableAnalysisRulePolicyV10PropertiesArgs.builder()
.list(list.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [ConfiguredTableAnalysisRulePolicyV10PropertiesArgs].
*/
@PulumiTagMarker
public class ConfiguredTableAnalysisRulePolicyV10PropertiesArgsBuilder internal constructor() {
private var list: Output? = null
/**
* @param value
*/
@JvmName("kiwdopvxhlrrxvch")
public suspend fun list(`value`: Output) {
this.list = value
}
/**
* @param value
*/
@JvmName("aajiyapkkgvtdyfc")
public suspend fun list(`value`: ConfiguredTableAnalysisRuleListArgs) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.list = mapped
}
/**
* @param argument
*/
@JvmName("dyrerehenmbmrxyr")
public suspend fun list(argument: suspend ConfiguredTableAnalysisRuleListArgsBuilder.() -> Unit) {
val toBeMapped = ConfiguredTableAnalysisRuleListArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.list = mapped
}
internal fun build(): ConfiguredTableAnalysisRulePolicyV10PropertiesArgs =
ConfiguredTableAnalysisRulePolicyV10PropertiesArgs(
list = list ?: throw PulumiNullFieldException("list"),
)
}