Class: Aws::VoiceID::Types::EnrollmentConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb

Overview

Contains configurations defining enrollment behavior for the batch job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#existing_enrollment_actionString

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.

Returns:

  • (String)


707
708
709
710
711
712
# File 'gems/aws-sdk-voiceid/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_configTypes::EnrollmentJobFraudDetectionConfig

The fraud detection configuration to use for the speaker enrollment job.



707
708
709
710
711
712
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 707

class EnrollmentConfig < Struct.new(
  :existing_enrollment_action,
  :fraud_detection_config)
  SENSITIVE = []
  include Aws::Structure
end