Module Values.ScanConditionPairSource

Represents the key:value pair to be matched against given resource property.

Sourcetype nonrec t = {
  1. key : TagKey.t;
    (*

    Represents the key in the map condition.

    *)
  2. value : TagValue.t option;
    (*

    Represents optional value in the map condition. If not specified, only the key will be matched.

    *)
}
Sourceval context_ : string
Sourceval make : ?value:??? -> key:TagKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TagKey.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