Module Values.RemediationExecutionStepSource

Name of the step from the SSM document.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The details of the step.

    *)
  2. state : RemediationExecutionStepState.t option;
    (*

    The valid status of the step.

    *)
  3. errorMessage : String_.t option;
    (*

    An error message if the step was interrupted during execution.

    *)
  4. startTime : Date.t option;
    (*

    The time when the step started.

    *)
  5. stopTime : Date.t option;
    (*

    The time when the step stopped.

    *)
}
Sourceval make : ?name:??? -> ?state:??? -> ?errorMessage:??? -> ?startTime:??? -> ?stopTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Date.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