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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.TemplateSmallMultiplesAxisPropertiesArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.TemplateSmallMultiplesAxisPlacement
import com.pulumi.awsnative.quicksight.kotlin.enums.TemplateSmallMultiplesAxisScale
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 TemplateSmallMultiplesAxisPropertiesArgs(
    public val placement: Output? = null,
    public val scale: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateSmallMultiplesAxisPropertiesArgs =
        com.pulumi.awsnative.quicksight.inputs.TemplateSmallMultiplesAxisPropertiesArgs.builder()
            .placement(placement?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .scale(scale?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [TemplateSmallMultiplesAxisPropertiesArgs].
 */
@PulumiTagMarker
public class TemplateSmallMultiplesAxisPropertiesArgsBuilder 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("syhauxuyenmafjfx")
    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("fbbidqsdhaeneqao")
    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("anvjbbfalsdlxuuv")
    public suspend fun placement(`value`: TemplateSmallMultiplesAxisPlacement?) {
        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("wirupgitehuftxsl")
    public suspend fun scale(`value`: TemplateSmallMultiplesAxisScale?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scale = mapped
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy