Skip to content

aws.voice_id.describe_fraudster_registration_job

Example SQL Queries

SELECT * FROM
aws.voice_id.describe_fraudster_registration_job
WHERE
"domain_id" = 'VALUE'
AND "job_id" = 'VALUE';

Description

Describes the specified fraudster registration job.

Table Definition

Column NameColumn Data Type
domain_id Required Input Column

The identifier of the domain that contains the fraudster registration job.

VARCHAR
job_id Required Input Column

The identifier of the fraudster registration job you are describing.

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.

job

Contains details about the specified fraudster registration job.

STRUCT(
"created_at" TIMESTAMP_S,
"data_access_role_arn" VARCHAR,
"domain_id" VARCHAR,
"ended_at" TIMESTAMP_S,
"failure_details" STRUCT(
"message" VARCHAR,
"status_code" BIGINT
),
"input_data_config" STRUCT(
"s3_uri" VARCHAR
),
"job_id" VARCHAR,
"job_name" VARCHAR,
"job_progress" STRUCT(
"percent_complete" BIGINT
),
"job_status" VARCHAR,
"output_data_config" STRUCT(
"kms_key_id" VARCHAR,
"s3_uri" VARCHAR
),
"registration_config" STRUCT(
"duplicate_registration_action" VARCHAR,
"fraudster_similarity_threshold" BIGINT,
"watchlist_ids" VARCHAR[]
)
)
Show child fields
job.created_at

A timestamp of when the fraudster registration job was created.

job.data_access_role_arn

The IAM role Amazon Resource Name (ARN) that grants Voice ID permissions to access customer's buckets to read the input manifest file and write the job output file.

job.domain_id

The identifier of the domain that contains the fraudster registration job.

job.ended_at

A timestamp of when the fraudster registration job ended.

job.failure_details

Contains details that are populated when an entire batch job fails. In cases of individual registration job failures, the batch job as a whole doesn't fail; it is completed with a JobStatus of COMPLETED_WITH_ERRORS. You can use the job output file to identify the individual registration requests that failed.

Show child fields
job.failure_details.message

A description of the error that caused the batch job failure.

job.failure_details.status_code

An HTTP status code representing the nature of the error.

job.input_data_config

The input data config containing an S3 URI for the input manifest file that contains the list of fraudster registration job requests.

Show child fields
job.input_data_config.s3_uri

The S3 location for the input manifest file that contains the list of individual enrollment or registration job requests.

job.job_id

The service-generated identifier for the fraudster registration job.

job.job_name

The client-provided name for the fraudster registration job.

job.job_progress

Shows the completed percentage of registration requests listed in the input file.

Show child fields
job.job_progress.percent_complete

Shows the completed percentage of enrollment or registration requests listed in the input file.

job.job_status

The current status of the fraudster registration job.

job.output_data_config

The output data config containing the S3 location where you want Voice ID to write your job output file; you must also include a KMS key ID in order to encrypt the file.

Show child fields
job.output_data_config.kms_key_id

The identifier of the KMS key you want Voice ID to use to encrypt the output file of a speaker enrollment job/fraudster registration job.

job.output_data_config.s3_uri

The S3 path of the folder where Voice ID writes the job output file. It has a *.out extension. For example, if the input file name is input-file.json and the output folder path is s3://output-bucket/output-folder, the full output file path is s3://output-bucket/output-folder/job-Id/input-file.json.out.

job.registration_config

The registration config containing details such as the action to take when a duplicate fraudster is detected, and the similarity threshold to use for detecting a duplicate fraudster.

Show child fields
job.registration_config.duplicate_registration_action

The action to take when a fraudster is identified as a duplicate. The default action is SKIP, which skips registering the duplicate fraudster. Setting the value to REGISTER_AS_NEW always registers a new fraudster into the specified domain.

job.registration_config.fraudster_similarity_threshold

The minimum similarity score between the new and old fraudsters in order to consider the new fraudster a duplicate.

job.registration_config.watchlist_ids[]