WorkflowParameterArgs

data class WorkflowParameterArgs(val description: Output<String>? = null, val metadata: Output<Any>? = null, val type: Output<Either<String, ParameterType>>? = null, val value: Output<Any>? = null) : ConvertibleToJava<WorkflowParameterArgs>

The workflow parameters.

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, metadata: Output<Any>? = null, type: Output<Either<String, ParameterType>>? = null, value: Output<Any>? = null)

Properties

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

The description.

Link copied to clipboard
val metadata: Output<Any>? = null

The metadata.

Link copied to clipboard
val type: Output<Either<String, ParameterType>>? = null

The type.

Link copied to clipboard
val value: Output<Any>? = null

The value.

Functions

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