Module Values.OutputAttributeSource

A list of OutputAttribute objects, each of which have the fields Name and Hashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.

Sourcetype nonrec t = {
  1. name : AttributeName.t;
    (*

    A name of a column to be written to the output. This must be an InputField name in the schema mapping.

    *)
  2. hashed : Boolean.t option;
    (*

    Enables the ability to hash the column values in the output.

    *)
}
Sourceval context_ : string
Sourceval make : ?hashed:??? -> name:AttributeName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of AttributeName.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