Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EnrollmentJobFraudDetectionConfig

import type { EnrollmentJobFraudDetectionConfig } from "https://aws-api.deno.dev/v0.4/services/voiceid.ts?docs=full";

The configuration defining the action to take when a speaker is flagged by the fraud detection system during a batch speaker enrollment job, and the risk threshold to use for identification.

interface EnrollmentJobFraudDetectionConfig {
FraudDetectionAction?: FraudDetectionAction | null;
RiskThreshold?: number | null;
}

§Properties

§
FraudDetectionAction?: FraudDetectionAction | null
[src]

The action to take when the given speaker is flagged by the fraud detection system. The default value is FAIL, which fails the speaker enrollment. Changing this value to IGNORE results in the speaker being enrolled even if they are flagged by the fraud detection system.

§
RiskThreshold?: number | null
[src]

Threshold value for determining whether the speaker is a high risk to be fraudulent. If the detected risk score calculated by Voice ID is greater than or equal to the threshold, the speaker is considered a fraudster.