JobStepActionArgs

data class JobStepActionArgs(val source: Output<Either<String, JobStepActionSource>>? = null, val type: Output<Either<String, JobStepActionType>>? = null, val value: Output<String>) : ConvertibleToJava<JobStepActionArgs>

The action to be executed by a job step.

Constructors

Link copied to clipboard
constructor(source: Output<Either<String, JobStepActionSource>>? = null, type: Output<Either<String, JobStepActionType>>? = null, value: Output<String>)

Properties

Link copied to clipboard
val source: Output<Either<String, JobStepActionSource>>? = null

The source of the action to execute.

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

Type of action being executed by the job step.

Link copied to clipboard
val value: Output<String>

The action value, for example the text of the T-SQL script to execute.

Functions

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