Module Values.ScheduledPlanExecutionMemberSource

Contains information about a scheduled backup plan execution, including the execution time, rule type, and associated rule identifier.

Sourcetype nonrec t = {
  1. executionTime : string option;
    (*

    The timestamp when the backup is scheduled to run, in Unix format and Coordinated Universal Time (UTC). The value is accurate to milliseconds.

    *)
  2. ruleId : string option;
    (*

    The unique identifier of the backup rule that will execute at the scheduled time.

    *)
  3. ruleExecutionType : RuleExecutionType.t option;
    (*

    The type of backup rule execution. Valid values are CONTINUOUS (point-in-time recovery), SNAPSHOTS (snapshot backups), or CONTINUOUS_AND_SNAPSHOTS (both types combined).

    *)
}
Sourceval make : ?executionTime:??? -> ?ruleId:??? -> ?ruleExecutionType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Timestamp of string ]) 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