OutcomeArgs

data class OutcomeArgs(val description: Output<String>? = null, val name: Output<String>? = null, val tags: Output<List<TagArgs>>? = null) : ConvertibleToJava<OutcomeArgs>

An outcome for rule evaluation.

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, name: Output<String>? = null, tags: Output<List<TagArgs>>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

The outcome description.

Link copied to clipboard
val name: Output<String>? = null

The name of the outcome.

Link copied to clipboard
val tags: Output<List<TagArgs>>? = null

Tags associated with this outcome.

Functions

Link copied to clipboard
open override fun toJava(): OutcomeArgs