Module Values.VsamDetailAttributesSource

The attributes of a VSAM type data set.

Sourcetype nonrec t = {
  1. alternateKeys : AlternateKeyList.t option;
    (*

    The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.

    *)
  2. cacheAtStartup : Boolean.t option;
    (*

    If set to True, enforces loading the data set into cache before it’s used by the application.

    *)
  3. compressed : Boolean.t option;
    (*

    Indicates whether indexes for this dataset are stored as compressed values. If you have a large data set (typically > 100 Mb), consider setting this flag to True.

    *)
  4. encoding : String20.t option;
    (*

    The character set used by the data set. Can be ASCII, EBCDIC, or unknown.

    *)
  5. primaryKey : PrimaryKey.t option;
    (*

    The primary key of the data set.

    *)
  6. recordFormat : String20.t option;
    (*

    The record format of the data set.

    *)
}
Sourceval make : ?alternateKeys:??? -> ?cacheAtStartup:??? -> ?compressed:??? -> ?encoding:??? -> ?primaryKey:??? -> ?recordFormat:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String20.t | `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ]) 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