Class: Aws::VoiceID::Types::EnrollmentConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::VoiceID::Types::EnrollmentConfig
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-voiceid/types.rb
Overview
Contains configurations defining enrollment behavior for the batch job.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #existing_enrollment_action  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The action to take when the specified speaker is already enrolled in the specified domain. 
- 
  
    
      #fraud_detection_config  ⇒ Types::EnrollmentJobFraudDetectionConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The fraud detection configuration to use for the speaker enrollment job. 
Instance Attribute Details
#existing_enrollment_action ⇒ String
The action to take when the specified speaker is already enrolled in the specified domain. The default value is ‘SKIP`, which skips the enrollment for the existing speaker. Setting the value to `OVERWRITE` replaces the existing voice prints and enrollment audio stored for that speaker with new data generated from the latest audio.
| 707 708 709 710 711 712 | # File 'lib/aws-sdk-voiceid/types.rb', line 707 class EnrollmentConfig < Struct.new( :existing_enrollment_action, :fraud_detection_config) SENSITIVE = [] include Aws::Structure end | 
#fraud_detection_config ⇒ Types::EnrollmentJobFraudDetectionConfig
The fraud detection configuration to use for the speaker enrollment job.
| 707 708 709 710 711 712 | # File 'lib/aws-sdk-voiceid/types.rb', line 707 class EnrollmentConfig < Struct.new( :existing_enrollment_action, :fraud_detection_config) SENSITIVE = [] include Aws::Structure end |