Module Values.LaunchActionRunSource

Launch action run.

Sourcetype nonrec t = {
  1. action : LaunchAction.t option;
    (*

    Action.

    *)
  2. runId : LaunchActionRunId.t option;
    (*

    Run Id.

    *)
  3. status : LaunchActionRunStatus.t option;
    (*

    Run status.

    *)
  4. failureReason : FailureReason.t option;
    (*

    Failure reason.

    *)
}
Sourceval make : ?action:??? -> ?runId:??? -> ?status:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LaunchActionRunId.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of LaunchActionOrder.t | `Map of ([> `String of LaunchActionParameterName.t ] * [> `Structure of (string * [> `Enum of string | `String of LaunchActionParameterValue.t ]) list ]) list | `String of LaunchActionId.t ]) list ]) 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