Module Values.ConditionParameterSource

Includes information about tags you define to assign tagged resources to a backup plan. Include the prefix aws:ResourceTag in your tags. For example, "aws:ResourceTag/TagKey1": "Value1".

Sourcetype nonrec t = {
  1. conditionKey : ConditionKey.t option;
    (*

    The key in a key-value pair. For example, in the tag Department: Accounting, Department is the key.

    *)
  2. conditionValue : ConditionValue.t option;
    (*

    The value in a key-value pair. For example, in the tag Department: Accounting, Accounting is the value.

    *)
}
Sourceval make : ?conditionKey:??? -> ?conditionValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ConditionKey.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