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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.DashboardSmallMultiplesAxisPropertiesArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.DashboardSmallMultiplesAxisPlacement
import com.pulumi.awsnative.quicksight.kotlin.enums.DashboardSmallMultiplesAxisScale
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property placement Defines the placement of the axis. By default, axes are rendered `OUTSIDE` of the panels. Axes with `INDEPENDENT` scale are rendered `INSIDE` the panels.
 * @property scale Determines whether scale of the axes are shared or independent. The default value is `SHARED` .
 */
public data class DashboardSmallMultiplesAxisPropertiesArgs(
    public val placement: Output? = null,
    public val scale: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardSmallMultiplesAxisPropertiesArgs =
        com.pulumi.awsnative.quicksight.inputs.DashboardSmallMultiplesAxisPropertiesArgs.builder()
            .placement(placement?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .scale(scale?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [DashboardSmallMultiplesAxisPropertiesArgs].
 */
@PulumiTagMarker
public class DashboardSmallMultiplesAxisPropertiesArgsBuilder internal constructor() {
    private var placement: Output? = null

    private var scale: Output? = null

    /**
     * @param value Defines the placement of the axis. By default, axes are rendered `OUTSIDE` of the panels. Axes with `INDEPENDENT` scale are rendered `INSIDE` the panels.
     */
    @JvmName("frfnsnpocafxthgl")
    public suspend fun placement(`value`: Output) {
        this.placement = value
    }

    /**
     * @param value Determines whether scale of the axes are shared or independent. The default value is `SHARED` .
     */
    @JvmName("pcrxowaexyjwjvck")
    public suspend fun scale(`value`: Output) {
        this.scale = value
    }

    /**
     * @param value Defines the placement of the axis. By default, axes are rendered `OUTSIDE` of the panels. Axes with `INDEPENDENT` scale are rendered `INSIDE` the panels.
     */
    @JvmName("kbkhdwmtngokadce")
    public suspend fun placement(`value`: DashboardSmallMultiplesAxisPlacement?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.placement = mapped
    }

    /**
     * @param value Determines whether scale of the axes are shared or independent. The default value is `SHARED` .
     */
    @JvmName("hxupafbkelteyvfr")
    public suspend fun scale(`value`: DashboardSmallMultiplesAxisScale?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scale = mapped
    }

    internal fun build(): DashboardSmallMultiplesAxisPropertiesArgs =
        DashboardSmallMultiplesAxisPropertiesArgs(
            placement = placement,
            scale = scale,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy