Module Values_1.OutputColumnNameOverrideSource

Specifies a mapping to override the name of an output column from a transform operation.

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

    The original name of the column from the source transform operation.

    *)
  2. outputColumnName : Values_0.ColumnName.t;
    (*

    The new name to assign to the column in the output.

    *)
}
Sourceval context_ : string
Sourceval make : ?sourceColumnName:??? -> outputColumnName:Values_0.ColumnName.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