![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.cleanrooms.kotlin.ConfiguredTableAssociationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.cleanrooms.kotlin
import com.pulumi.awsnative.cleanrooms.ConfiguredTableAssociationArgs.builder
import com.pulumi.awsnative.cleanrooms.kotlin.inputs.ConfiguredTableAssociationAnalysisRuleArgs
import com.pulumi.awsnative.cleanrooms.kotlin.inputs.ConfiguredTableAssociationAnalysisRuleArgsBuilder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
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
/**
* Represents a table that can be queried within a collaboration
* @property configuredTableAssociationAnalysisRules An analysis rule for a configured table association. This analysis rule specifies how data from the table can be used within its associated collaboration. In the console, the `ConfiguredTableAssociationAnalysisRule` is referred to as the *collaboration analysis rule* .
* @property configuredTableIdentifier A unique identifier for the configured table to be associated to. Currently accepts a configured table ID.
* @property description A description of the configured table association.
* @property membershipIdentifier The unique ID for the membership this configured table association belongs to.
* @property name The name of the configured table association, in lowercase. The table is identified by this name when running protected queries against the underlying data.
* @property roleArn The service will assume this role to access catalog metadata and query the table.
* @property tags An arbitrary set of tags (key-value pairs) for this cleanrooms collaboration.
*/
public data class ConfiguredTableAssociationArgs(
public val configuredTableAssociationAnalysisRules: Output>? = null,
public val configuredTableIdentifier: Output? = null,
public val description: Output? = null,
public val membershipIdentifier: Output? = null,
public val name: Output? = null,
public val roleArn: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.cleanrooms.ConfiguredTableAssociationArgs =
com.pulumi.awsnative.cleanrooms.ConfiguredTableAssociationArgs.builder()
.configuredTableAssociationAnalysisRules(
configuredTableAssociationAnalysisRules?.applyValue({ args0 ->
args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.configuredTableIdentifier(configuredTableIdentifier?.applyValue({ args0 -> args0 }))
.description(description?.applyValue({ args0 -> args0 }))
.membershipIdentifier(membershipIdentifier?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.roleArn(roleArn?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ConfiguredTableAssociationArgs].
*/
@PulumiTagMarker
public class ConfiguredTableAssociationArgsBuilder internal constructor() {
private var configuredTableAssociationAnalysisRules:
Output>? = null
private var configuredTableIdentifier: Output? = null
private var description: Output? = null
private var membershipIdentifier: Output? = null
private var name: Output? = null
private var roleArn: Output? = null
private var tags: Output>? = null
/**
* @param value An analysis rule for a configured table association. This analysis rule specifies how data from the table can be used within its associated collaboration. In the console, the `ConfiguredTableAssociationAnalysisRule` is referred to as the *collaboration analysis rule* .
*/
@JvmName("ukabfeqmfipcpueq")
public suspend fun configuredTableAssociationAnalysisRules(`value`: Output>) {
this.configuredTableAssociationAnalysisRules = value
}
@JvmName("lihdtmanmedtmofx")
public suspend fun configuredTableAssociationAnalysisRules(vararg values: Output) {
this.configuredTableAssociationAnalysisRules = Output.all(values.asList())
}
/**
* @param values An analysis rule for a configured table association. This analysis rule specifies how data from the table can be used within its associated collaboration. In the console, the `ConfiguredTableAssociationAnalysisRule` is referred to as the *collaboration analysis rule* .
*/
@JvmName("cbgfhsfsmuawcrfq")
public suspend fun configuredTableAssociationAnalysisRules(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy