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

com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisSourceEntityArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.quicksight.kotlin.inputs

import com.pulumi.awsnative.quicksight.inputs.AnalysisSourceEntityArgs.builder
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.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 * 

The source entity of an analysis.

* @property sourceTemplate The source template for the source entity of the analysis. */ public data class AnalysisSourceEntityArgs( public val sourceTemplate: Output? = null, ) : ConvertibleToJava { override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisSourceEntityArgs = com.pulumi.awsnative.quicksight.inputs.AnalysisSourceEntityArgs.builder() .sourceTemplate( sourceTemplate?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }), ).build() } /** * Builder for [AnalysisSourceEntityArgs]. */ @PulumiTagMarker public class AnalysisSourceEntityArgsBuilder internal constructor() { private var sourceTemplate: Output? = null /** * @param value The source template for the source entity of the analysis. */ @JvmName("otdpibnwatcqkdty") public suspend fun sourceTemplate(`value`: Output) { this.sourceTemplate = value } /** * @param value The source template for the source entity of the analysis. */ @JvmName("jramkvaoytugxybx") public suspend fun sourceTemplate(`value`: AnalysisSourceTemplateArgs?) { val toBeMapped = value val mapped = toBeMapped?.let({ args0 -> of(args0) }) this.sourceTemplate = mapped } /** * @param argument The source template for the source entity of the analysis. */ @JvmName("uuhfudggbpanphtn") public suspend fun sourceTemplate(argument: suspend AnalysisSourceTemplateArgsBuilder.() -> Unit) { val toBeMapped = AnalysisSourceTemplateArgsBuilder().applySuspend { argument() }.build() val mapped = of(toBeMapped) this.sourceTemplate = mapped } internal fun build(): AnalysisSourceEntityArgs = AnalysisSourceEntityArgs( sourceTemplate = sourceTemplate, ) }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy