Module Values.IdentityUsageSource

Usage information for the identity.

Sourcetype nonrec t = {
  1. identityId : IdentityId.t option;
    (*

    A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.

    *)
  2. identityPoolId : IdentityPoolId.t option;
    (*

    A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.

    *)
  3. lastModifiedDate : Date.t option;
    (*

    Date on which the identity was last modified.

    *)
  4. datasetCount : Integer.t option;
    (*

    Number of datasets for the identity.

    *)
  5. dataStorage : Long.t option;
    (*

    Total data storage for this identity.

    *)
}
Sourceval make : ?identityId:??? -> ?identityPoolId:??? -> ?lastModifiedDate:??? -> ?datasetCount:??? -> ?dataStorage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Long of Long.t | `String of IdentityId.t | `Timestamp of Date.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