_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 )[] )[] ) ) |
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[]
|