Skip to content

Get Identity Resolution Job

customerprofiles_get_identity_resolution_job R Documentation

Returns information about an Identity Resolution Job in a specific domain

Description

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.

Usage

customerprofiles_get_identity_resolution_job(DomainName, JobId)

Arguments

DomainName

[required] The unique name of the domain.

JobId

[required] The unique identifier of the Identity Resolution Job.

Value

A list with the following syntax:

list(
  DomainName = "string",
  JobId = "string",
  Status = "PENDING"|"PREPROCESSING"|"FIND_MATCHING"|"MERGING"|"COMPLETED"|"PARTIAL_SUCCESS"|"FAILED",
  Message = "string",
  JobStartTime = as.POSIXct(
    "2015-01-01"
  ),
  JobEndTime = as.POSIXct(
    "2015-01-01"
  ),
  LastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  JobExpirationTime = as.POSIXct(
    "2015-01-01"
  ),
  AutoMerging = list(
    Enabled = TRUE|FALSE,
    Consolidation = list(
      MatchingAttributesList = list(
        list(
          "string"
        )
      )
    ),
    ConflictResolution = list(
      ConflictResolvingModel = "RECENCY"|"SOURCE",
      SourceName = "string"
    ),
    MinAllowedConfidenceScoreForMerging = 123.0
  ),
  ExportingLocation = list(
    S3Exporting = list(
      S3BucketName = "string",
      S3KeyName = "string"
    )
  ),
  JobStats = list(
    NumberOfProfilesReviewed = 123,
    NumberOfMatchesFound = 123,
    NumberOfMergesDone = 123
  )
)

Request syntax

svc$get_identity_resolution_job(
  DomainName = "string",
  JobId = "string"
)