Module Values_1.InputColumnSource

Metadata for a column that is used as the input of a transform operation.

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

    The name of this column in the underlying data source.

    *)
  2. id : Values_0.ColumnId.t option;
    (*

    A unique identifier for the input column.

    *)
  3. type_ : InputColumnDataType.t;
    (*

    The data type of the column. Note: SEMISTRUCT represents Athena's map, row, and struct data types. It is supported when using the new data preparation experience.

    *)
  4. subType : ColumnDataSubType.t option;
    (*

    The sub data type of the column. Sub types are only available for decimal columns that are part of a SPICE dataset.

    *)
}
Sourceval context_ : string
Sourceval make : ?id:??? -> ?subType:??? -> name:Values_0.ColumnName.t -> type_:InputColumnDataType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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