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

com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisDateTimeParameterDeclarationArgs.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.AnalysisDateTimeParameterDeclarationArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisTimeGranularity
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property defaultValues The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.
 * @property mappedDataSetParameters
 * @property name The name of the parameter that is being declared.
 * @property timeGranularity The level of time precision that is used to aggregate `DateTime` values.
 * @property valueWhenUnset The configuration that defines the default value of a `DateTime` parameter when a value has not been set.
 */
public data class AnalysisDateTimeParameterDeclarationArgs(
    public val defaultValues: Output? = null,
    public val mappedDataSetParameters: Output>? = null,
    public val name: Output,
    public val timeGranularity: Output? = null,
    public val valueWhenUnset: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisDateTimeParameterDeclarationArgs =
        com.pulumi.awsnative.quicksight.inputs.AnalysisDateTimeParameterDeclarationArgs.builder()
            .defaultValues(defaultValues?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .mappedDataSetParameters(
                mappedDataSetParameters?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 -> args0.toJava() })
                    })
                }),
            )
            .name(name.applyValue({ args0 -> args0 }))
            .timeGranularity(timeGranularity?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .valueWhenUnset(
                valueWhenUnset?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [AnalysisDateTimeParameterDeclarationArgs].
 */
@PulumiTagMarker
public class AnalysisDateTimeParameterDeclarationArgsBuilder internal constructor() {
    private var defaultValues: Output? = null

    private var mappedDataSetParameters: Output>? = null

    private var name: Output? = null

    private var timeGranularity: Output? = null

    private var valueWhenUnset: Output? = null

    /**
     * @param value The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.
     */
    @JvmName("afhtqjyoiqeilxap")
    public suspend fun defaultValues(`value`: Output) {
        this.defaultValues = value
    }

    /**
     * @param value
     */
    @JvmName("wjuboympsxuyuiyx")
    public suspend fun mappedDataSetParameters(`value`: Output>) {
        this.mappedDataSetParameters = value
    }

    @JvmName("wdyvfrpojejbixev")
    public suspend fun mappedDataSetParameters(vararg values: Output) {
        this.mappedDataSetParameters = Output.all(values.asList())
    }

    /**
     * @param values
     */
    @JvmName("ogfwwbvouarofmkn")
    public suspend fun mappedDataSetParameters(values: List>) {
        this.mappedDataSetParameters = Output.all(values)
    }

    /**
     * @param value The name of the parameter that is being declared.
     */
    @JvmName("iwvegferxkhykdhs")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The level of time precision that is used to aggregate `DateTime` values.
     */
    @JvmName("mbgqftuoyqbrpmgv")
    public suspend fun timeGranularity(`value`: Output) {
        this.timeGranularity = value
    }

    /**
     * @param value The configuration that defines the default value of a `DateTime` parameter when a value has not been set.
     */
    @JvmName("qnqrwegbpbstndcm")
    public suspend fun valueWhenUnset(`value`: Output) {
        this.valueWhenUnset = value
    }

    /**
     * @param value The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.
     */
    @JvmName("marcyiehadfnhqkr")
    public suspend fun defaultValues(`value`: AnalysisDateTimeDefaultValuesArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.defaultValues = mapped
    }

    /**
     * @param argument The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.
     */
    @JvmName("oagpmavnuvnkbrdk")
    public suspend fun defaultValues(argument: suspend AnalysisDateTimeDefaultValuesArgsBuilder.() -> Unit) {
        val toBeMapped = AnalysisDateTimeDefaultValuesArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.defaultValues = mapped
    }

    /**
     * @param value
     */
    @JvmName("roxlxquiktoaixga")
    public suspend fun mappedDataSetParameters(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.mappedDataSetParameters = mapped
    }

    /**
     * @param argument
     */
    @JvmName("bquexnvbyqyfjquh")
    public suspend fun mappedDataSetParameters(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            AnalysisMappedDataSetParameterArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.mappedDataSetParameters = mapped
    }

    /**
     * @param argument
     */
    @JvmName("phyxwjqiqwtkhxys")
    public suspend fun mappedDataSetParameters(vararg argument: suspend AnalysisMappedDataSetParameterArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            AnalysisMappedDataSetParameterArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.mappedDataSetParameters = mapped
    }

    /**
     * @param argument
     */
    @JvmName("rxsumeqwfpmmqbgx")
    public suspend fun mappedDataSetParameters(argument: suspend AnalysisMappedDataSetParameterArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(
            AnalysisMappedDataSetParameterArgsBuilder().applySuspend {
                argument()
            }.build(),
        )
        val mapped = of(toBeMapped)
        this.mappedDataSetParameters = mapped
    }

    /**
     * @param values
     */
    @JvmName("aftvcoortbbovmec")
    public suspend fun mappedDataSetParameters(vararg values: AnalysisMappedDataSetParameterArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.mappedDataSetParameters = mapped
    }

    /**
     * @param value The name of the parameter that is being declared.
     */
    @JvmName("vqfhpylkpldwnuyy")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The level of time precision that is used to aggregate `DateTime` values.
     */
    @JvmName("nbvtauhjgyhtxskw")
    public suspend fun timeGranularity(`value`: AnalysisTimeGranularity?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.timeGranularity = mapped
    }

    /**
     * @param value The configuration that defines the default value of a `DateTime` parameter when a value has not been set.
     */
    @JvmName("mjvaeepssablujjc")
    public suspend fun valueWhenUnset(`value`: AnalysisDateTimeValueWhenUnsetConfigurationArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.valueWhenUnset = mapped
    }

    /**
     * @param argument The configuration that defines the default value of a `DateTime` parameter when a value has not been set.
     */
    @JvmName("iplarlhpeqslfmpa")
    public suspend fun valueWhenUnset(argument: suspend AnalysisDateTimeValueWhenUnsetConfigurationArgsBuilder.() -> Unit) {
        val toBeMapped = AnalysisDateTimeValueWhenUnsetConfigurationArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.valueWhenUnset = mapped
    }

    internal fun build(): AnalysisDateTimeParameterDeclarationArgs =
        AnalysisDateTimeParameterDeclarationArgs(
            defaultValues = defaultValues,
            mappedDataSetParameters = mappedDataSetParameters,
            name = name ?: throw PulumiNullFieldException("name"),
            timeGranularity = timeGranularity,
            valueWhenUnset = valueWhenUnset,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy