Module Values.GetIdentityResolutionJobResponseSource

Returns information about an Identity Resolution Job in a specific domain. Identity Resolution Jobs are set up using the Amazon Connect admin console. For more information, see Use Identity Resolution to consolidate similar profiles.

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. message : StringTo2048.t option;
    (*

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

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

    The timestamp of when the Identity Resolution Job was started or will be started.

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

    The timestamp of when the Identity Resolution Job was completed.

    *)
  7. lastUpdatedAt : Timestamp.t option;
    (*

    The timestamp of when the Identity Resolution Job was most recently edited.

    *)
  8. jobExpirationTime : Timestamp.t option;
    (*

    The timestamp of when the Identity Resolution Job will expire.

    *)
  9. autoMerging : AutoMerging.t option;
    (*

    Configuration settings for how to perform the auto-merging of profiles.

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

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

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

    Statistics about the Identity Resolution Job.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainName:??? -> ?jobId:??? -> ?status:??? -> ?message:??? -> ?jobStartTime:??? -> ?jobEndTime:??? -> ?lastUpdatedAt:??? -> ?jobExpirationTime:??? -> ?autoMerging:??? -> ?exportingLocation:??? -> ?jobStats:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.t | `Structure of (string * [> `Boolean of OptionalBoolean.t | `Double of Double0To1.t | `Long of Long.t | `Structure of (string * [> `Enum of string | `List of [> `List of [> `String of String1To255.t ] list ] list | `String of String1To255.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