![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.ThemeGutterStyleArgs.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.ThemeGutterStyleArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The display options for gutter spacing between tiles on a sheet.
* @property show This Boolean value controls whether to display a gutter space between sheet tiles.
*
*/
public data class ThemeGutterStyleArgs(
public val show: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.ThemeGutterStyleArgs =
com.pulumi.awsnative.quicksight.inputs.ThemeGutterStyleArgs.builder()
.show(show?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ThemeGutterStyleArgs].
*/
@PulumiTagMarker
public class ThemeGutterStyleArgsBuilder internal constructor() {
private var show: Output? = null
/**
* @param value This Boolean value controls whether to display a gutter space between sheet tiles.
*
*/
@JvmName("wxkhnggnhowrkufd")
public suspend fun show(`value`: Output) {
this.show = value
}
/**
* @param value This Boolean value controls whether to display a gutter space between sheet tiles.
*
*/
@JvmName("dmrqmpubyfqvkvyy")
public suspend fun show(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.show = mapped
}
internal fun build(): ThemeGutterStyleArgs = ThemeGutterStyleArgs(
show = show,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy