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

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

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import com.pulumi.awsnative.quicksight.inputs.AnalysisAxisTickLabelOptionsArgs.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.Double
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property labelOptions Determines whether or not the axis ticks are visible.
 * @property rotationAngle The rotation angle of the axis tick labels.
 */
public data class AnalysisAxisTickLabelOptionsArgs(
    public val labelOptions: Output? = null,
    public val rotationAngle: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisAxisTickLabelOptionsArgs =
        com.pulumi.awsnative.quicksight.inputs.AnalysisAxisTickLabelOptionsArgs.builder()
            .labelOptions(labelOptions?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .rotationAngle(rotationAngle?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AnalysisAxisTickLabelOptionsArgs].
 */
@PulumiTagMarker
public class AnalysisAxisTickLabelOptionsArgsBuilder internal constructor() {
    private var labelOptions: Output? = null

    private var rotationAngle: Output? = null

    /**
     * @param value Determines whether or not the axis ticks are visible.
     */
    @JvmName("kjoqfcftxivjlhrs")
    public suspend fun labelOptions(`value`: Output) {
        this.labelOptions = value
    }

    /**
     * @param value The rotation angle of the axis tick labels.
     */
    @JvmName("swshkaldwcwgotpc")
    public suspend fun rotationAngle(`value`: Output) {
        this.rotationAngle = value
    }

    /**
     * @param value Determines whether or not the axis ticks are visible.
     */
    @JvmName("omgsexypjaxaigtx")
    public suspend fun labelOptions(`value`: AnalysisLabelOptionsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.labelOptions = mapped
    }

    /**
     * @param argument Determines whether or not the axis ticks are visible.
     */
    @JvmName("jfcrwookdcjhcqei")
    public suspend fun labelOptions(argument: suspend AnalysisLabelOptionsArgsBuilder.() -> Unit) {
        val toBeMapped = AnalysisLabelOptionsArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.labelOptions = mapped
    }

    /**
     * @param value The rotation angle of the axis tick labels.
     */
    @JvmName("etntxylygylngmbl")
    public suspend fun rotationAngle(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.rotationAngle = mapped
    }

    internal fun build(): AnalysisAxisTickLabelOptionsArgs = AnalysisAxisTickLabelOptionsArgs(
        labelOptions = labelOptions,
        rotationAngle = rotationAngle,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy