![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisSheetControlLayoutConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.AnalysisSheetControlLayoutConfigurationArgs.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
/**
*
* @property gridLayout The configuration that determines the elements and canvas size options of sheet control.
*/
public data class AnalysisSheetControlLayoutConfigurationArgs(
public val gridLayout: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisSheetControlLayoutConfigurationArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisSheetControlLayoutConfigurationArgs.builder()
.gridLayout(gridLayout?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [AnalysisSheetControlLayoutConfigurationArgs].
*/
@PulumiTagMarker
public class AnalysisSheetControlLayoutConfigurationArgsBuilder internal constructor() {
private var gridLayout: Output? = null
/**
* @param value The configuration that determines the elements and canvas size options of sheet control.
*/
@JvmName("tgtxeraroxntdehl")
public suspend fun gridLayout(`value`: Output) {
this.gridLayout = value
}
/**
* @param value The configuration that determines the elements and canvas size options of sheet control.
*/
@JvmName("fjhvatvfcxmuiokn")
public suspend fun gridLayout(`value`: AnalysisGridLayoutConfigurationArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.gridLayout = mapped
}
/**
* @param argument The configuration that determines the elements and canvas size options of sheet control.
*/
@JvmName("bqyvahtiahxnacfo")
public suspend fun gridLayout(argument: suspend AnalysisGridLayoutConfigurationArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisGridLayoutConfigurationArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.gridLayout = mapped
}
internal fun build(): AnalysisSheetControlLayoutConfigurationArgs =
AnalysisSheetControlLayoutConfigurationArgs(
gridLayout = gridLayout,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy