All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardArcConfigurationArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.quicksight.kotlin.inputs

import com.pulumi.awsnative.quicksight.inputs.DashboardArcConfigurationArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.DashboardArcThicknessOptions
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Double
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property arcAngle The option that determines the arc angle of a `GaugeChartVisual` .
 * @property arcThickness The options that determine the arc thickness of a `GaugeChartVisual` .
 */
public data class DashboardArcConfigurationArgs(
    public val arcAngle: Output? = null,
    public val arcThickness: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardArcConfigurationArgs =
        com.pulumi.awsnative.quicksight.inputs.DashboardArcConfigurationArgs.builder()
            .arcAngle(arcAngle?.applyValue({ args0 -> args0 }))
            .arcThickness(arcThickness?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [DashboardArcConfigurationArgs].
 */
@PulumiTagMarker
public class DashboardArcConfigurationArgsBuilder internal constructor() {
    private var arcAngle: Output? = null

    private var arcThickness: Output? = null

    /**
     * @param value The option that determines the arc angle of a `GaugeChartVisual` .
     */
    @JvmName("kbxlgmnoctswqllp")
    public suspend fun arcAngle(`value`: Output) {
        this.arcAngle = value
    }

    /**
     * @param value The options that determine the arc thickness of a `GaugeChartVisual` .
     */
    @JvmName("mprmmbawrtcqimxg")
    public suspend fun arcThickness(`value`: Output) {
        this.arcThickness = value
    }

    /**
     * @param value The option that determines the arc angle of a `GaugeChartVisual` .
     */
    @JvmName("anqumsgosjklttmd")
    public suspend fun arcAngle(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.arcAngle = mapped
    }

    /**
     * @param value The options that determine the arc thickness of a `GaugeChartVisual` .
     */
    @JvmName("bkrrpoabvhpcxbvb")
    public suspend fun arcThickness(`value`: DashboardArcThicknessOptions?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.arcThickness = mapped
    }

    internal fun build(): DashboardArcConfigurationArgs = DashboardArcConfigurationArgs(
        arcAngle = arcAngle,
        arcThickness = arcThickness,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy