Module Values.CreateExperimentTemplateActionInputSource

Specifies an action for an experiment template. For more information, see Actions in the Fault Injection Service User Guide.

Sourcetype nonrec t = {
  1. actionId : ActionId.t;
    (*

    The ID of the action. The format of the action ID is: aws:service-name:action-type.

    *)
  2. description : ExperimentTemplateActionDescription.t option;
    (*

    A description for the action.

    *)
  3. parameters : ExperimentTemplateActionParameterMap.t option;
    (*

    The parameters for the action, if applicable.

    *)
  4. targets : ExperimentTemplateActionTargetMap.t option;
    (*

    The targets for the action.

    *)
  5. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?parameters:??? -> ?targets:??? -> ?startAfter:??? -> actionId:ActionId.t -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t