Module Values.ObjectAttributeSource

The criteria that a specific object attribute must meet to trigger the destination.

Sourcetype nonrec t = {
  1. source : Text.t option;
    (*

    An attribute contained within a source object.

    *)
  2. fieldName : FieldName.t option;
    (*

    A field defined within an object type.

    *)
  3. comparisonOperator : ComparisonOperator.t;
    (*

    The operator used to compare an attribute against a list of values.

    *)
  4. values : EventTriggerValues.t;
    (*

    A list of attribute values used for comparison.

    *)
}
Sourceval context_ : string
Sourceval make : ?source:??? -> ?fieldName:??? -> comparisonOperator:ComparisonOperator.t -> values:EventTriggerValues.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String1To255.t ] list | `String of Text.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