Module Values.FieldDefinitionSource

A field definition consists out of a name and a type.

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

    The identifier.

    *)
  2. type_ : GenericString.t;
    (*

    Any supported Cassandra data type, including collections and other user-defined types that are contained in the same keyspace. For more information, see Cassandra data type support in the Amazon Keyspaces Developer Guide.

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