InstructionStepArgs

data class InstructionStepArgs(val description: Output<String>? = null, val innerSteps: Output<List<InstructionStepArgs>>? = null, val instructions: Output<List<InstructionStepDetailsArgs>>? = null, val title: Output<String>? = null) : ConvertibleToJava<InstructionStepArgs>

Instruction steps to enable the connector.

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, innerSteps: Output<List<InstructionStepArgs>>? = null, instructions: Output<List<InstructionStepDetailsArgs>>? = null, title: Output<String>? = null)

Properties

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

Gets or sets the instruction step description.

Link copied to clipboard
val innerSteps: Output<List<InstructionStepArgs>>? = null

Gets or sets the inner instruction steps details. Foe Example: instruction step 1 might contain inner instruction steps: instruction step 1.1, instruction step 1.2.

Link copied to clipboard

Gets or sets the instruction step details.

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

Gets or sets the instruction step title.

Functions

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