Module Values.RecoveryPointSelectionSource

This specifies criteria to assign a set of resources, such as resource types or backup vaults.

Sourcetype nonrec t = {
  1. vaultNames : VaultNames.t option;
    (*

    These are the names of the vaults in which the selected recovery points are contained.

    *)
  2. resourceIdentifiers : ResourceIdentifiers.t option;
    (*

    These are the resources included in the resource selection (including type of resources and vaults).

    *)
  3. dateRange : DateRange.t option;
}
Sourceval make : ?vaultNames:??? -> ?resourceIdentifiers:??? -> ?dateRange:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `Structure of (string * [> `Timestamp of string ]) 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