ExperimentTemplateActionArgs

data class ExperimentTemplateActionArgs(val actionId: Output<String>, val description: Output<String>? = null, val parameters: Output<Map<String, String>>? = null, val startAfter: Output<List<String>>? = null, val targets: Output<Map<String, String>>? = null) : ConvertibleToJava<ExperimentTemplateActionArgs>

Specifies an action for the experiment template.

Constructors

Link copied to clipboard
constructor(actionId: Output<String>, description: Output<String>? = null, parameters: Output<Map<String, String>>? = null, startAfter: Output<List<String>>? = null, targets: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val actionId: Output<String>

The ID of the action.

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

A description for the action.

Link copied to clipboard
val parameters: Output<Map<String, String>>? = null

The parameters for the action, if applicable.

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

The name of the action that must be completed before the current action starts.

Link copied to clipboard
val targets: Output<Map<String, String>>? = null

One or more targets for the action.

Functions

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