All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.cleanrooms.kotlin.inputs.ConfiguredTableAnalysisRulePolicyArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.cleanrooms.kotlin.inputs

import com.pulumi.awsnative.cleanrooms.inputs.ConfiguredTableAnalysisRulePolicyArgs.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 kotlin.Any
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property v1 Controls on the query specifications that can be run on a configured table.
 */
public data class ConfiguredTableAnalysisRulePolicyArgs(
    public val v1: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.cleanrooms.inputs.ConfiguredTableAnalysisRulePolicyArgs =
        com.pulumi.awsnative.cleanrooms.inputs.ConfiguredTableAnalysisRulePolicyArgs.builder()
            .v1(v1.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ConfiguredTableAnalysisRulePolicyArgs].
 */
@PulumiTagMarker
public class ConfiguredTableAnalysisRulePolicyArgsBuilder internal constructor() {
    private var v1: Output? = null

    /**
     * @param value Controls on the query specifications that can be run on a configured table.
     */
    @JvmName("fckivgdamgvqjafh")
    public suspend fun v1(`value`: Output) {
        this.v1 = value
    }

    /**
     * @param value Controls on the query specifications that can be run on a configured table.
     */
    @JvmName("fmfjxqbvsvjgbjqn")
    public suspend fun v1(`value`: Any) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.v1 = mapped
    }

    internal fun build(): ConfiguredTableAnalysisRulePolicyArgs =
        ConfiguredTableAnalysisRulePolicyArgs(
            v1 = v1 ?: throw PulumiNullFieldException("v1"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy