Module Values.LookupAttributeSource

Specifies an attribute and value that filter the events returned.

Sourcetype nonrec t = {
  1. attributeKey : LookupAttributeKey.t;
    (*

    Specifies an attribute on which to filter the events returned.

    *)
  2. attributeValue : LookupAttributeValue.t;
    (*

    Specifies a value for the specified AttributeKey. The maximum length for the AttributeValue is 2000 characters. The following characters ('_', ' ', ',', '\\n') count as two characters towards the 2000 character limit.

    *)
}
Sourceval context_ : string
Sourceval make : attributeKey:LookupAttributeKey.t -> attributeValue:LookupAttributeValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LookupAttributeValue.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