Module Values.DatasourcePackageUsageInfoSource

Information on the usage of a data source package in the behavior graph.

Sourcetype nonrec t = {
  1. volumeUsageInBytes : ByteValue.t option;
    (*

    Total volume of data in bytes per day ingested for a given data source package.

    *)
  2. volumeUsageUpdateTime : Timestamp.t option;
    (*

    The data and time when the member account data volume was last updated. The value is an ISO8601 formatted string. For example, 2021-08-18T16:35:56.284Z.

    *)
}
Sourceval make : ?volumeUsageInBytes:??? -> ?volumeUsageUpdateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ByteValue.t | `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