Module Values.AutomatedSnapshotPauseOptionsSource

Specifies the automated snapshot pause options for the domain. These options allow you to temporarily pause automated snapshots for a specified time period.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    Whether automated snapshot pause is enabled for the domain.

    *)
  2. startTime : UpdateTimestamp.t option;
    (*

    The timestamp at which the automated snapshot pause begins.

    *)
  3. endTime : UpdateTimestamp.t option;
    (*

    The timestamp at which the automated snapshot pause ends.

    *)
  4. state : PauseState.t option;
    (*

    The current state of the automated snapshot pause. Valid values are Active, Completed, Scheduled, and Disabled.

    *)
}
Sourceval make : ?enabled:??? -> ?startTime:??? -> ?endTime:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Timestamp of UpdateTimestamp.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