Module Values.BatchModifyClusterSnapshotsMessageSource

Modifies the settings for a set of cluster snapshots.

Sourcetype nonrec t = {
  1. snapshotIdentifierList : SnapshotIdentifierList.t;
    (*

    A list of snapshot identifiers you want to modify.

    *)
  2. manualSnapshotRetentionPeriod : IntegerOptional.t option;
    (*

    The number of days that a manual snapshot is retained. If you specify the value -1, the manual snapshot is retained indefinitely. The number must be either -1 or an integer between 1 and 3,653. If you decrease the manual snapshot retention period from its current value, existing manual snapshots that fall outside of the new retention period will return an error. If you want to suppress the errors and delete the snapshots, use the force option.

    *)
  3. force : Boolean.t option;
    (*

    A boolean value indicating whether to override an exception if the retention period has passed.

    *)
}
Sourceval context_ : string
Sourceval make : ?manualSnapshotRetentionPeriod:??? -> ?force:??? -> snapshotIdentifierList:SnapshotIdentifierList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of IntegerOptional.t | `List of [> `String of String_.t ] list ]) 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