
com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisLineChartLineStyleSettingsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.AnalysisLineChartLineStyleSettingsArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisLineChartLineStyle
import com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisLineInterpolation
import com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisVisibility
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property lineInterpolation Interpolation style for line series.
* - `LINEAR` : Show as default, linear style.
* - `SMOOTH` : Show as a smooth curve.
* - `STEPPED` : Show steps in line.
* @property lineStyle Line style for line series.
* - `SOLID` : Show as a solid line.
* - `DOTTED` : Show as a dotted line.
* - `DASHED` : Show as a dashed line.
* @property lineVisibility Configuration option that determines whether to show the line for the series.
* @property lineWidth String based length that is composed of value and unit in px
*/
public data class AnalysisLineChartLineStyleSettingsArgs(
public val lineInterpolation: Output? = null,
public val lineStyle: Output? = null,
public val lineVisibility: Output? = null,
public val lineWidth: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisLineChartLineStyleSettingsArgs =
com.pulumi.awsnative.quicksight.inputs.AnalysisLineChartLineStyleSettingsArgs.builder()
.lineInterpolation(lineInterpolation?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.lineStyle(lineStyle?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.lineVisibility(lineVisibility?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.lineWidth(lineWidth?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AnalysisLineChartLineStyleSettingsArgs].
*/
@PulumiTagMarker
public class AnalysisLineChartLineStyleSettingsArgsBuilder internal constructor() {
private var lineInterpolation: Output? = null
private var lineStyle: Output? = null
private var lineVisibility: Output? = null
private var lineWidth: Output? = null
/**
* @param value Interpolation style for line series.
* - `LINEAR` : Show as default, linear style.
* - `SMOOTH` : Show as a smooth curve.
* - `STEPPED` : Show steps in line.
*/
@JvmName("seuhpmipcehhhqes")
public suspend fun lineInterpolation(`value`: Output) {
this.lineInterpolation = value
}
/**
* @param value Line style for line series.
* - `SOLID` : Show as a solid line.
* - `DOTTED` : Show as a dotted line.
* - `DASHED` : Show as a dashed line.
*/
@JvmName("bmoadmmcbwvwhohd")
public suspend fun lineStyle(`value`: Output) {
this.lineStyle = value
}
/**
* @param value Configuration option that determines whether to show the line for the series.
*/
@JvmName("hjgasawthgifybts")
public suspend fun lineVisibility(`value`: Output) {
this.lineVisibility = value
}
/**
* @param value String based length that is composed of value and unit in px
*/
@JvmName("qrrsxvypaikmpjja")
public suspend fun lineWidth(`value`: Output) {
this.lineWidth = value
}
/**
* @param value Interpolation style for line series.
* - `LINEAR` : Show as default, linear style.
* - `SMOOTH` : Show as a smooth curve.
* - `STEPPED` : Show steps in line.
*/
@JvmName("tmwjvxtnwoxokfvf")
public suspend fun lineInterpolation(`value`: AnalysisLineInterpolation?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.lineInterpolation = mapped
}
/**
* @param value Line style for line series.
* - `SOLID` : Show as a solid line.
* - `DOTTED` : Show as a dotted line.
* - `DASHED` : Show as a dashed line.
*/
@JvmName("kltoufnecfbvgjhy")
public suspend fun lineStyle(`value`: AnalysisLineChartLineStyle?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.lineStyle = mapped
}
/**
* @param value Configuration option that determines whether to show the line for the series.
*/
@JvmName("cicgclwlhhfpokqw")
public suspend fun lineVisibility(`value`: AnalysisVisibility?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.lineVisibility = mapped
}
/**
* @param value String based length that is composed of value and unit in px
*/
@JvmName("nydgblirnnymyujx")
public suspend fun lineWidth(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.lineWidth = mapped
}
internal fun build(): AnalysisLineChartLineStyleSettingsArgs =
AnalysisLineChartLineStyleSettingsArgs(
lineInterpolation = lineInterpolation,
lineStyle = lineStyle,
lineVisibility = lineVisibility,
lineWidth = lineWidth,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy