![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.outputs.DataSetLogicalTableSource.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Information about the source of a logical table. This is a variant type structure. For
* this structure to be valid, only one of the attributes can be non-null.
* @property dataSetArn The Amazon Resource Number (ARN) of the parent dataset.
* @property joinInstruction Specifies the result of a join of two logical tables.
* @property physicalTableId Physical table ID.
*/
public data class DataSetLogicalTableSource(
public val dataSetArn: String? = null,
public val joinInstruction: DataSetJoinInstruction? = null,
public val physicalTableId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.DataSetLogicalTableSource): DataSetLogicalTableSource = DataSetLogicalTableSource(
dataSetArn = javaType.dataSetArn().map({ args0 -> args0 }).orElse(null),
joinInstruction = javaType.joinInstruction().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.DataSetJoinInstruction.Companion.toKotlin(args0)
})
}).orElse(null),
physicalTableId = javaType.physicalTableId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy