Skip to main content

fraudster_registration_jobs

Creates, updates, deletes, gets or lists a fraudster_registration_jobs resource.

Overview

Namefraudster_registration_jobs
TypeResource
Idaws.voice_id.fraudster_registration_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_atstring (date-time)A timestamp of when the fraudster registration job was created.
data_access_role_arnstringThe 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. (pattern: <code>^arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+$</code>)
domain_idstringThe identifier of the domain that contains the fraudster registration job. (pattern: <code>^[a-zA-Z0-9]{22}$</code>)
ended_atstring (date-time)A timestamp of when the fraudster registration job ended.
failure_detailsobjectContains 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.
input_data_configobjectThe input data config containing an S3 URI for the input manifest file that contains the list of fraudster registration job requests.
job_idstringThe service-generated identifier for the fraudster registration job. (pattern: <code>^[a-zA-Z0-9]{22}$</code>)
job_namestringThe client-provided name for the fraudster registration job. (pattern: <code>^[a-zA-Z0-9][a-zA-Z0-9_-]*$</code>)
job_progressobjectShows the completed percentage of registration requests listed in the input file.
job_statusstringThe current status of the fraudster registration job. (SUBMITTED, IN_PROGRESS, COMPLETED, COMPLETED_WITH_ERRORS, FAILED)
output_data_configobjectThe 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.
registration_configobjectThe 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.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_fraudster_registration_jobselectregionDescribes the specified fraudster registration job.
list_fraudster_registration_jobsselectregionLists all the fraudster registration jobs in the domain with the given JobStatus. If JobStatus is not provided, this lists all fraudster registration jobs in the given domain.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Describes the specified fraudster registration job.

SELECT
created_at,
data_access_role_arn,
domain_id,
ended_at,
failure_details,
input_data_config,
job_id,
job_name,
job_progress,
job_status,
output_data_config,
registration_config
FROM aws.voice_id.fraudster_registration_jobs
WHERE region = '{{ region }}' -- required
;