Values.DomainMetadataResultSourceReturns information about the domain, including when the domain was created, the number of items and attributes in the domain, and the size of the attribute names and values.
type domainMetadataResult = {itemCount : Integer.t option;The number of all items in the domain.
*)itemNamesSizeBytes : Long.t option;The total size of all item names in the domain, in bytes.
*)attributeNameCount : Integer.t option;The number of unique attribute names in the domain.
*)attributeNamesSizeBytes : Long.t option;The total size of all unique attribute names in the domain, in bytes.
*)attributeValueCount : Integer.t option;The number of all attribute name/value pairs in the domain.
*)attributeValuesSizeBytes : Long.t option;The total size of all attribute values in the domain, in bytes.
*)timestamp : Integer.t option;The data and time when metadata was calculated, in Epoch (UNIX) seconds.
*)}type error = [ | `MissingParameter of MissingParameter.t| `NoSuchDomain of NoSuchDomain.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `MissingParameter of MissingParameter.t
| `NoSuchDomain of NoSuchDomain.t
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `MissingParameter of MissingParameter.t
| `NoSuchDomain of NoSuchDomain.t
| `Unknown_operation_error of string * string option ]