Values.CreateExperimentTemplateActionInputSourceSpecifies an action for an experiment template. For more information, see Actions in the Fault Injection Service User Guide.
type nonrec t = {actionId : ActionId.t;The ID of the action. The format of the action ID is: aws:service-name:action-type.
*)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 make :
?description:??? ->
?parameters:??? ->
?targets:??? ->
?startAfter:??? ->
actionId:ActionId.t ->
unit ->
tval 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 ]