![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisSourceTemplateArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.AnalysisSourceTemplateArgs.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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The source template of an analysis.
* @property arn The Amazon Resource Name (ARN) of the source template of an analysis.
* @property dataSetReferences The dataset references of the source template of an analysis.
*/
public data class AnalysisSourceTemplateArgs(
public val arn: Output,
public val dataSetReferences: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisSourceTemplateArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisSourceTemplateArgs.builder()
.arn(arn.applyValue({ args0 -> args0 }))
.dataSetReferences(
dataSetReferences.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [AnalysisSourceTemplateArgs].
*/
@PulumiTagMarker
public class AnalysisSourceTemplateArgsBuilder internal constructor() {
private var arn: Output? = null
private var dataSetReferences: Output>? = null
/**
* @param value The Amazon Resource Name (ARN) of the source template of an analysis.
*/
@JvmName("ilvmfneaocbcynbn")
public suspend fun arn(`value`: Output) {
this.arn = value
}
/**
* @param value The dataset references of the source template of an analysis.
*/
@JvmName("farctpdwdswjnwow")
public suspend fun dataSetReferences(`value`: Output>) {
this.dataSetReferences = value
}
@JvmName("uxwmkvyeuexpjnpk")
public suspend fun dataSetReferences(vararg values: Output) {
this.dataSetReferences = Output.all(values.asList())
}
/**
* @param values The dataset references of the source template of an analysis.
*/
@JvmName("rvlcnjktenxvcyqo")
public suspend fun dataSetReferences(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy