Module Values.UnprocessedIdentityIdSource

An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.

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

    A unique identifier in the format REGION:GUID.

    *)
  2. errorCode : ErrorCode.t option;
    (*

    The error code indicating the type of error that occurred.

    *)
}
Sourceval make : ?identityId:??? -> ?errorCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IdentityId.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