Module Values.PartitionKeySource

Contains information about a partition key for an event data store.

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

    The name of the partition key.

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

    The data type of the partition key. For example, bigint or string.

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