Module Values_1.CalculatedColumnSource

A calculated column for a dataset.

Sourcetype nonrec t = {
  1. columnName : Values_0.ColumnName.t;
    (*

    Column name.

    *)
  2. columnId : Values_0.ColumnId.t;
    (*

    A unique ID to identify a calculated column. During a dataset update, if the column ID of a calculated column matches that of an existing calculated column, Quick Sight preserves the existing calculated column.

    *)
  3. expression : DataSetCalculatedFieldExpression.t;
    (*

    An expression that defines the calculated column.

    *)
}
Sourceval context_ : string
Sourceval make : columnName:Values_0.ColumnName.t -> columnId:Values_0.ColumnId.t -> expression:DataSetCalculatedFieldExpression.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ColumnName.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