![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisReferenceLineCustomLabelConfigurationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.AnalysisReferenceLineCustomLabelConfigurationArgs.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 kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property customLabel The string text of the custom label.
*/
public data class AnalysisReferenceLineCustomLabelConfigurationArgs(
public val customLabel: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisReferenceLineCustomLabelConfigurationArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisReferenceLineCustomLabelConfigurationArgs.builder()
.customLabel(customLabel.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AnalysisReferenceLineCustomLabelConfigurationArgs].
*/
@PulumiTagMarker
public class AnalysisReferenceLineCustomLabelConfigurationArgsBuilder internal constructor() {
private var customLabel: Output? = null
/**
* @param value The string text of the custom label.
*/
@JvmName("pwkaoejawocskgea")
public suspend fun customLabel(`value`: Output) {
this.customLabel = value
}
/**
* @param value The string text of the custom label.
*/
@JvmName("qtfhtiackvbftoup")
public suspend fun customLabel(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.customLabel = mapped
}
internal fun build(): AnalysisReferenceLineCustomLabelConfigurationArgs =
AnalysisReferenceLineCustomLabelConfigurationArgs(
customLabel = customLabel ?: throw PulumiNullFieldException("customLabel"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy