Module Values.CreateSnapshotScheduleMessageSource

Create a snapshot schedule that can be associated to a cluster and which overrides the default system backup schedule.

Sourcetype nonrec t = {
  1. scheduleDefinitions : ScheduleDefinitionList.t option;
    (*

    The definition of the snapshot schedule. The definition is made up of schedule expressions, for example "cron(30 12 *)" or "rate(12 hours)".

    *)
  2. scheduleIdentifier : String_.t option;
    (*

    A unique identifier for a snapshot schedule. Only alphanumeric characters are allowed for the identifier.

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

    The description of the snapshot schedule.

    *)
  4. tags : TagList.t option;
    (*

    An optional set of tags you can use to search for the schedule.

    *)
  5. dryRun : BooleanOptional.t option;
  6. nextInvocations : IntegerOptional.t option;
}
Sourceval make : ?scheduleDefinitions:??? -> ?scheduleIdentifier:??? -> ?scheduleDescription:??? -> ?tags:??? -> ?dryRun:??? -> ?nextInvocations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Integer of IntegerOptional.t | `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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