Class: Aws::VoiceID::Types::FraudDetectionConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::VoiceID::Types::FraudDetectionConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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.
 - 
  
    
      #watchlist_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the watchlist against which fraud detection is performed.
 
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.
      848 849 850 851 852 853  | 
    
      # File 'lib/aws-sdk-voiceid/types.rb', line 848 class FraudDetectionConfiguration < Struct.new( :risk_threshold, :watchlist_id) SENSITIVE = [] include Aws::Structure end  | 
  
#watchlist_id ⇒ String
The identifier of the watchlist against which fraud detection is performed.
      848 849 850 851 852 853  | 
    
      # File 'lib/aws-sdk-voiceid/types.rb', line 848 class FraudDetectionConfiguration < Struct.new( :risk_threshold, :watchlist_id) SENSITIVE = [] include Aws::Structure end  |