Skip to content

aws.customer_profiles.list_identity_resolution_jobs

Example SQL Queries

SELECT * FROM
aws.customer_profiles.list_identity_resolution_jobs
WHERE
"domain_name" = 'VALUE';

Description

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

Table Definition

Column NameColumn Data Type
domain_name Required Input Column

The unique name of the domain.

VARCHAR
max_results Input Column

The maximum number of results to return per page.

BIGINT
next_token Input Column

If there are additional results, this is the token for the next set of results.

VARCHAR
_aws_profile Input Column

The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role.

STRUCT(
"type" VARCHAR,
"name" VARCHAR,
"account_id" VARCHAR,
"via_profile_name" VARCHAR,
"assumed_role_arn" VARCHAR,
"organization" STRUCT(
"account_name" VARCHAR,
"id" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"master_account" STRUCT(
"id" VARCHAR,
"email" VARCHAR
),
"parents" STRUCT(
"type" VARCHAR,
"id" VARCHAR,
"name" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

identity_resolution_jobs_list

A list of Identity Resolution Jobs.

STRUCT(
"domain_name" VARCHAR,
"job_id" VARCHAR,
"status" VARCHAR,
"job_start_time" TIMESTAMP_S,
"job_end_time" TIMESTAMP_S,
"job_stats" STRUCT(
"number_of_profiles_reviewed" BIGINT,
"number_of_matches_found" BIGINT,
"number_of_merges_done" BIGINT
),
"exporting_location" STRUCT(
"s3_exporting" STRUCT(
"s3_bucket_name" VARCHAR,
"s3_key_name" VARCHAR
)
),
"message" VARCHAR
)[]
Show child fields
identity_resolution_jobs_list[]
Show child fields
identity_resolution_jobs_list[].domain_name

The unique name of the domain.

identity_resolution_jobs_list[].exporting_location

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

Show child fields
identity_resolution_jobs_list[].exporting_location.s3_exporting

Information about the S3 location where Identity Resolution Jobs write result files.

Show child fields
identity_resolution_jobs_list[].exporting_location.s3_exporting.s3_bucket_name

The name of the S3 bucket name where Identity Resolution Jobs write result files.

identity_resolution_jobs_list[].exporting_location.s3_exporting.s3_key_name

The S3 key name of the location where Identity Resolution Jobs write result files.

identity_resolution_jobs_list[].job_end_time

The timestamp of when the job was completed.

identity_resolution_jobs_list[].job_id

The unique identifier of the Identity Resolution Job.

identity_resolution_jobs_list[].job_start_time

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

identity_resolution_jobs_list[].job_stats

Statistics about an Identity Resolution Job.

Show child fields
identity_resolution_jobs_list[].job_stats.number_of_matches_found

The number of matches found.

identity_resolution_jobs_list[].job_stats.number_of_merges_done

The number of merges completed.

identity_resolution_jobs_list[].job_stats.number_of_profiles_reviewed

The number of profiles reviewed.

identity_resolution_jobs_list[].message

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

identity_resolution_jobs_list[].status

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.