Module Values_0.GlueStudioSchemaColumnSource

Specifies a single column in a Glue schema definition.

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

    The name of the column in the Glue Studio schema.

    *)
  2. type_ : ColumnTypeString.t option;
    (*

    The hive type for this column in the Glue Studio schema.

    *)
  3. glueStudioType : ColumnTypeString.t option;
    (*

    The data type of the column as defined in Glue Studio.

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