Module Values.ModifyClusterSnapshotScheduleMessageSource

Modifies a snapshot schedule for a cluster.

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

    A unique identifier for the cluster whose snapshot schedule you want to modify.

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

    A unique alphanumeric identifier for the schedule that you want to associate with the cluster.

    *)
  3. disassociateSchedule : BooleanOptional.t option;
    (*

    A boolean to indicate whether to remove the assoiciation between the cluster and the schedule.

    *)
}
Sourceval context_ : string
Sourceval make : ?scheduleIdentifier:??? -> ?disassociateSchedule:??? -> clusterIdentifier:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `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