Module Values.IdentityResolutionJobSource

Information about the Identity Resolution Job.

Sourcetype nonrec t = {
  1. domainName : Name.t option;
    (*

    The unique name of the domain.

    *)
  2. jobId : Uuid.t option;
    (*

    The unique identifier of the Identity Resolution Job.

    *)
  3. status : IdentityResolutionJobStatus.t option;
    (*

    The status of the Identity Resolution Job. PENDING: The Identity Resolution Job is scheduled but has not started yet. If you turn off the Identity Resolution feature in your domain, jobs in the PENDING state are deleted. PREPROCESSING: The Identity Resolution Job is loading your data. FIND_MATCHING: The Identity Resolution Job is using the machine learning model to identify profiles that belong to the same matching group. MERGING: The Identity Resolution Job is merging duplicate profiles. COMPLETED: The Identity Resolution Job completed successfully. PARTIAL_SUCCESS: There's a system error and not all of the data is merged. The Identity Resolution Job writes a message indicating the source of the problem. FAILED: The Identity Resolution Job did not merge any data. It writes a message indicating the source of the problem.

    *)
  4. jobStartTime : Timestamp.t option;
    (*

    The timestamp of when the job was started or will be started.

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

    The timestamp of when the job was completed.

    *)
  6. jobStats : JobStats.t option;
    (*

    Statistics about an Identity Resolution Job.

    *)
  7. exportingLocation : ExportingLocation.t option;
    (*

    The S3 location where the Identity Resolution Job writes result files.

    *)
  8. message : StringTo2048.t option;
    (*

    The error messages that are generated when the Identity Resolution Job runs.

    *)
}
Sourceval make : ?domainName:??? -> ?jobId:??? -> ?status:??? -> ?jobStartTime:??? -> ?jobEndTime:??? -> ?jobStats:??? -> ?exportingLocation:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.t | `Structure of (string * [> `Long of Long.t | `Structure of (string * [> `String of S3BucketName.t ]) list ]) 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