Module Values.RemediationExecutionStatusSource

Provides details of the current status of the invoked remediation action for that resource.

Sourcetype nonrec t = {
  1. resourceKey : ResourceKey.t option;
  2. state : RemediationExecutionState.t option;
    (*

    ENUM of the values.

    *)
  3. stepDetails : RemediationExecutionSteps.t option;
    (*

    Details of every step.

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

    Start time when the remediation was executed.

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

    The time when the remediation execution was last updated.

    *)
}
Sourceval make : ?resourceKey:??? -> ?state:??? -> ?stepDetails:??? -> ?invocationTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Date.t ]) list ] list | `Structure of (string * [> `Enum of string | `String of ResourceId.t ]) list | `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