Module Values.ProtectedResourceConditionsSource

The conditions that you define for resources in your restore testing plan using tags.

Sourcetype nonrec t = {
  1. stringEquals : KeyValueList.t option;
    (*

    Filters the values of your tagged resources for only those resources that you tagged with the same value. Also called "exact matching."

    *)
  2. stringNotEquals : KeyValueList.t option;
    (*

    Filters the values of your tagged resources for only those resources that you tagged that do not have the same value. Also called "negated matching."

    *)
}
Sourceval make : ?stringEquals:??? -> ?stringNotEquals:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] 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