Module Values.AuditEventFieldValueUnionSource

Object to store union of Field values.

Sourcetype nonrec t = {
  1. stringValue : AuditEventFieldValueUnionStringValueString.t option;
    (*

    Can be either null, or have a String value type. Only one value can be provided.

    *)
  2. doubleValue : Double.t option;
    (*

    Can be either null, or have a Double value type. Only one value can be provided.

    *)
  3. booleanValue : Boolean.t option;
    (*

    Can be either null, or have a Boolean value type. Only one value can be provided.

    *)
  4. emptyValue : EmptyFieldValue.t option;
  5. userArnValue : String_.t option;
    (*

    Can be either null, or have a String value type formatted as an ARN. Only one value can be provided.

    *)
}
Sourceval make : ?stringValue:??? -> ?doubleValue:??? -> ?booleanValue:??? -> ?emptyValue:??? -> ?userArnValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of AuditEventFieldValueUnionStringValueString.t | `Structure of 'a 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