Class: Aws::VoiceID::Types::FraudDetectionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::VoiceID::Types::FraudDetectionConfiguration
- Defined in:
- gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb
Overview
The configuration used for performing fraud detection over a speaker during a session.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#risk_threshold ⇒ Integer
Threshold value for determining whether the speaker is a fraudster.
Instance Attribute Details
#risk_threshold ⇒ Integer
Threshold value for determining whether the speaker is a fraudster. If the detected risk score calculated by Voice ID is higher than the threshold, the speaker is considered a fraudster.
761 762 763 764 765 |
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 761 class FraudDetectionConfiguration < Struct.new( :risk_threshold) SENSITIVE = [] include Aws::Structure end |