Class: Aws::VoiceID::Types::EnrollmentJobFraudDetectionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::VoiceID::Types::EnrollmentJobFraudDetectionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-voiceid/types.rb
Overview
The fraud detection configuration to be used during the batch speaker enrollment job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fraud_detection_action ⇒ String
The action to take when the given speaker is flagged by the fraud detection system.
-
#risk_threshold ⇒ Integer
Threshold value for determining whether the speaker is a high risk to be fraudulent.
-
#watchlist_ids ⇒ Array<String>
The identifier of watchlists against which fraud detection is performed.
Instance Attribute Details
#fraud_detection_action ⇒ String
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.
739 740 741 742 743 744 745 |
# File 'lib/aws-sdk-voiceid/types.rb', line 739 class EnrollmentJobFraudDetectionConfig < Struct.new( :fraud_detection_action, :risk_threshold, :watchlist_ids) SENSITIVE = [] include Aws::Structure end |
#risk_threshold ⇒ Integer
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.
739 740 741 742 743 744 745 |
# File 'lib/aws-sdk-voiceid/types.rb', line 739 class EnrollmentJobFraudDetectionConfig < Struct.new( :fraud_detection_action, :risk_threshold, :watchlist_ids) SENSITIVE = [] include Aws::Structure end |
#watchlist_ids ⇒ Array<String>
The identifier of watchlists against which fraud detection is performed.
739 740 741 742 743 744 745 |
# File 'lib/aws-sdk-voiceid/types.rb', line 739 class EnrollmentJobFraudDetectionConfig < Struct.new( :fraud_detection_action, :risk_threshold, :watchlist_ids) SENSITIVE = [] include Aws::Structure end |