Module Values_0.DataTableValueSource

A data table value.

Sourcetype nonrec t = {
  1. primaryValues : PrimaryValuesSet.t option;
    (*

    The value's primary values.

    *)
  2. attributeName : DataTableName.t;
    (*

    The value's attribute name.

    *)
  3. value : String_.t;
    (*

    The value's value.

    *)
  4. lockVersion : DataTableLockVersion.t option;
    (*

    The value's lock version.

    *)
  5. lastModifiedTime : Timestamp.t option;
    (*

    The value's last modified time.

    *)
  6. lastModifiedRegion : RegionName.t option;
    (*

    The value's last modified region.

    *)
}
Sourceval context_ : string
Sourceval make : ?primaryValues:??? -> ?lockVersion:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> attributeName:DataTableName.t -> value:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of DataTableName.t ]) list ] list | `String of DataTableName.t | `Structure of (string * [> `String of String_.t ]) list | `Timestamp of Timestamp.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