Skip to content

List Identity Resolution Jobs

customerprofiles_list_identity_resolution_jobs R Documentation

Lists all of the Identity Resolution Jobs in your domain

Description

Lists all of the Identity Resolution Jobs in your domain. The response sorts the list by JobStartTime.

Usage

customerprofiles_list_identity_resolution_jobs(DomainName, NextToken,
  MaxResults)

Arguments

DomainName

[required] The unique name of the domain.

NextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

MaxResults

The maximum number of results to return per page.

Value

A list with the following syntax:

list(
  IdentityResolutionJobsList = list(
    list(
      DomainName = "string",
      JobId = "string",
      Status = "PENDING"|"PREPROCESSING"|"FIND_MATCHING"|"MERGING"|"COMPLETED"|"PARTIAL_SUCCESS"|"FAILED",
      JobStartTime = as.POSIXct(
        "2015-01-01"
      ),
      JobEndTime = as.POSIXct(
        "2015-01-01"
      ),
      JobStats = list(
        NumberOfProfilesReviewed = 123,
        NumberOfMatchesFound = 123,
        NumberOfMergesDone = 123
      ),
      ExportingLocation = list(
        S3Exporting = list(
          S3BucketName = "string",
          S3KeyName = "string"
        )
      ),
      Message = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_identity_resolution_jobs(
  DomainName = "string",
  NextToken = "string",
  MaxResults = 123
)