Module Values.ConditionsSource

Contains information about which resources to include or exclude from a backup plan using their tags. Conditions are case sensitive.

Sourcetype nonrec t = {
  1. stringEquals : ConditionParameters.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 : ConditionParameters.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."

    *)
  3. stringLike : ConditionParameters.t option;
    (*

    Filters the values of your tagged resources for matching tag values with the use of a wildcard character (*) anywhere in the string. For example, "prod*" or "*rod*" matches the tag value "production".

    *)
  4. stringNotLike : ConditionParameters.t option;
    (*

    Filters the values of your tagged resources for non-matching tag values with the use of a wildcard character (*) anywhere in the string.

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