Module Values.ModifySnapshotScheduleMessageSource

Modifies a snapshot schedule. Any schedule associated with a cluster is modified asynchronously.

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

    A unique alphanumeric identifier of the schedule to modify.

    *)
  2. scheduleDefinitions : ScheduleDefinitionList.t;
    (*

    An updated list of schedule definitions. A schedule definition is made up of schedule expressions, for example, "cron(30 12 *)" or "rate(12 hours)".

    *)
}
Sourceval context_ : string
Sourceval make : scheduleIdentifier:String_.t -> scheduleDefinitions:ScheduleDefinitionList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] 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