Class: Aws::VoiceID::Types::RegistrationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::VoiceID::Types::RegistrationConfig
- Defined in:
- gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb
Overview
The configuration defining the action to take when a duplicate fraudster is detected, and the similarity threshold to use for detecting a duplicate fraudster during a batch fraudster registration job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duplicate_registration_action ⇒ String
The action to take when a fraudster is identified as a duplicate.
-
#fraudster_similarity_threshold ⇒ Integer
The minimum similarity score between the new and old fraudsters in order to consider the new fraudster a duplicate.
Instance Attribute Details
#duplicate_registration_action ⇒ String
The action to take when a fraudster is identified as a duplicate.
The default action is SKIP
, which skips registering the duplicate
fraudster. Setting the value to REGISTER_AS_NEW
always registers a
new fraudster into the specified domain.
1271 1272 1273 1274 1275 1276 |
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 1271 class RegistrationConfig < Struct.new( :duplicate_registration_action, :fraudster_similarity_threshold) SENSITIVE = [] include Aws::Structure end |
#fraudster_similarity_threshold ⇒ Integer
The minimum similarity score between the new and old fraudsters in order to consider the new fraudster a duplicate.
1271 1272 1273 1274 1275 1276 |
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 1271 class RegistrationConfig < Struct.new( :duplicate_registration_action, :fraudster_similarity_threshold) SENSITIVE = [] include Aws::Structure end |