Values.UpdateExperimentTemplateActionInputItemSourceSpecifies an action for an experiment template.
type nonrec t = {actionId : ActionId.t option;The ID of the action.
*)description : ExperimentTemplateActionDescription.t option;A description for the action.
*)parameters : ExperimentTemplateActionParameterMap.t option;The parameters for the action, if applicable.
*)targets : ExperimentTemplateActionTargetMap.t option;The targets for the action.
*)startAfter : ExperimentTemplateActionStartAfterList.t option;The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of ExperimentTemplateActionStartAfter.t ] list
| `Map of
([> `String of ExperimentTemplateActionParameterName.t ]
* [> `String of ExperimentTemplateActionParameter.t ])
list
| `String of ActionId.t ])
list ]