com.pulumi.aws.quicksight.kotlin.inputs.GetQuicksightAnalysisPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.quicksight.kotlin.inputs
import com.pulumi.aws.quicksight.inputs.GetQuicksightAnalysisPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getQuicksightAnalysis.
* @property analysisId Identifier for the analysis.
* The following arguments are optional:
* @property awsAccountId AWS account ID.
* @property tags
*/
public data class GetQuicksightAnalysisPlainArgs(
public val analysisId: String,
public val awsAccountId: String? = null,
public val tags: Map? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.quicksight.inputs.GetQuicksightAnalysisPlainArgs =
com.pulumi.aws.quicksight.inputs.GetQuicksightAnalysisPlainArgs.builder()
.analysisId(analysisId.let({ args0 -> args0 }))
.awsAccountId(awsAccountId?.let({ args0 -> args0 }))
.tags(tags?.let({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() })).build()
}
/**
* Builder for [GetQuicksightAnalysisPlainArgs].
*/
@PulumiTagMarker
public class GetQuicksightAnalysisPlainArgsBuilder internal constructor() {
private var analysisId: String? = null
private var awsAccountId: String? = null
private var tags: Map? = null
/**
* @param value Identifier for the analysis.
* The following arguments are optional:
*/
@JvmName("ngjfyrldrijbwrxp")
public suspend fun analysisId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.analysisId = mapped
}
/**
* @param value AWS account ID.
*/
@JvmName("nwtbwrpaksbphaoq")
public suspend fun awsAccountId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.awsAccountId = mapped
}
/**
* @param value
*/
@JvmName("klyonemktlgotlyk")
public suspend fun tags(`value`: Map?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.tags = mapped
}
/**
* @param values
*/
@JvmName("cfevuedxwiendhlc")
public fun tags(vararg values: Pair) {
val toBeMapped = values.toMap()
val mapped = toBeMapped.let({ args0 -> args0 })
this.tags = mapped
}
internal fun build(): GetQuicksightAnalysisPlainArgs = GetQuicksightAnalysisPlainArgs(
analysisId = analysisId ?: throw PulumiNullFieldException("analysisId"),
awsAccountId = awsAccountId,
tags = tags,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy