com.pulumi.awsnative.frauddetector.kotlin.OutcomeArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.frauddetector.kotlin
import com.pulumi.awsnative.frauddetector.OutcomeArgs.builder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
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
/**
* An outcome for rule evaluation.
* @property description The outcome description.
* @property name The name of the outcome.
* @property tags Tags associated with this outcome.
*/
public data class OutcomeArgs(
public val description: Output? = null,
public val name: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.frauddetector.OutcomeArgs =
com.pulumi.awsnative.frauddetector.OutcomeArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [OutcomeArgs].
*/
@PulumiTagMarker
public class OutcomeArgsBuilder internal constructor() {
private var description: Output? = null
private var name: Output? = null
private var tags: Output>? = null
/**
* @param value The outcome description.
*/
@JvmName("dmslnadqnpbwckcw")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value The name of the outcome.
*/
@JvmName("pcvmoyjdefrkwlhi")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Tags associated with this outcome.
*/
@JvmName("erexcxftqrhgwfjt")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("hprhctsjoehhrapm")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values Tags associated with this outcome.
*/
@JvmName("xpuijddfncxhtviv")
public suspend fun tags(values: List