Module Values.ManagedActionHistoryItemSource

The record of a completed or failed managed action.

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

    A unique identifier for the managed action.

    *)
  2. actionType : ActionType.t option;
    (*

    The type of the managed action.

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

    A description of the managed action.

    *)
  4. failureType : FailureType.t option;
    (*

    If the action failed, the type of failure.

    *)
  5. status : ActionHistoryStatus.t option;
    (*

    The status of the action.

    *)
  6. failureDescription : String_.t option;
    (*

    If the action failed, a description of the failure.

    *)
  7. executedTime : Timestamp.t option;
    (*

    The date and time that the action started executing.

    *)
  8. finishedTime : Timestamp.t option;
    (*

    The date and time that the action finished executing.

    *)
}
Sourceval make : ?actionId:??? -> ?actionType:??? -> ?actionDescription:??? -> ?failureType:??? -> ?status:??? -> ?failureDescription:??? -> ?executedTime:??? -> ?finishedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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