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

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

/**
 * Builder for [AnalysisSmallMultiplesAxisPropertiesArgs].
 */
@PulumiTagMarker
public class AnalysisSmallMultiplesAxisPropertiesArgsBuilder 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("vvggfygfjasxaoad")
    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("iiypjfkcegqjoqld")
    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("rrysrwlnuwcflymy")
    public suspend fun placement(`value`: AnalysisSmallMultiplesAxisPlacement?) {
        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("acmfvtgmlsvevfok")
    public suspend fun scale(`value`: AnalysisSmallMultiplesAxisScale?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scale = mapped
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy