![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisTextAreaControlDisplayOptionsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.AnalysisTextAreaControlDisplayOptionsArgs.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 infoIconLabelOptions The configuration of info icon label options.
* @property placeholderOptions The configuration of the placeholder options in a text area control.
* @property titleOptions The options to configure the title visibility, name, and font size.
*/
public data class AnalysisTextAreaControlDisplayOptionsArgs(
public val infoIconLabelOptions: Output? = null,
public val placeholderOptions: Output? = null,
public val titleOptions: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisTextAreaControlDisplayOptionsArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisTextAreaControlDisplayOptionsArgs.builder()
.infoIconLabelOptions(
infoIconLabelOptions?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.placeholderOptions(
placeholderOptions?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.titleOptions(titleOptions?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [AnalysisTextAreaControlDisplayOptionsArgs].
*/
@PulumiTagMarker
public class AnalysisTextAreaControlDisplayOptionsArgsBuilder internal constructor() {
private var infoIconLabelOptions: Output? = null
private var placeholderOptions: Output? = null
private var titleOptions: Output? = null
/**
* @param value The configuration of info icon label options.
*/
@JvmName("yamarbxjsimnfxfb")
public suspend fun infoIconLabelOptions(`value`: Output) {
this.infoIconLabelOptions = value
}
/**
* @param value The configuration of the placeholder options in a text area control.
*/
@JvmName("ggactlrkmeoblcsq")
public suspend fun placeholderOptions(`value`: Output) {
this.placeholderOptions = value
}
/**
* @param value The options to configure the title visibility, name, and font size.
*/
@JvmName("wplvfetyekjlkxqq")
public suspend fun titleOptions(`value`: Output) {
this.titleOptions = value
}
/**
* @param value The configuration of info icon label options.
*/
@JvmName("inhqujtlnqmdomnv")
public suspend fun infoIconLabelOptions(`value`: AnalysisSheetControlInfoIconLabelOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.infoIconLabelOptions = mapped
}
/**
* @param argument The configuration of info icon label options.
*/
@JvmName("ekujsivgppirpgem")
public suspend fun infoIconLabelOptions(argument: suspend AnalysisSheetControlInfoIconLabelOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisSheetControlInfoIconLabelOptionsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.infoIconLabelOptions = mapped
}
/**
* @param value The configuration of the placeholder options in a text area control.
*/
@JvmName("kqoovkteamjnaygs")
public suspend fun placeholderOptions(`value`: AnalysisTextControlPlaceholderOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.placeholderOptions = mapped
}
/**
* @param argument The configuration of the placeholder options in a text area control.
*/
@JvmName("udymkexuwdhxnaiv")
public suspend fun placeholderOptions(argument: suspend AnalysisTextControlPlaceholderOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisTextControlPlaceholderOptionsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.placeholderOptions = mapped
}
/**
* @param value The options to configure the title visibility, name, and font size.
*/
@JvmName("cxkbqmuuphreuuhd")
public suspend fun titleOptions(`value`: AnalysisLabelOptionsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.titleOptions = mapped
}
/**
* @param argument The options to configure the title visibility, name, and font size.
*/
@JvmName("hdjnibvwbdpgovaw")
public suspend fun titleOptions(argument: suspend AnalysisLabelOptionsArgsBuilder.() -> Unit) {
val toBeMapped = AnalysisLabelOptionsArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.titleOptions = mapped
}
internal fun build(): AnalysisTextAreaControlDisplayOptionsArgs =
AnalysisTextAreaControlDisplayOptionsArgs(
infoIconLabelOptions = infoIconLabelOptions,
placeholderOptions = placeholderOptions,
titleOptions = titleOptions,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy