Class: Aws::VoiceID::Types::FraudDetectionConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#risk_thresholdInteger

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.

Returns:

  • (Integer)


848
849
850
851
852
853
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 848

class FraudDetectionConfiguration < Struct.new(
  :risk_threshold,
  :watchlist_id)
  SENSITIVE = []
  include Aws::Structure
end

#watchlist_idString

The identifier of the watchlist against which fraud detection is performed.

Returns:

  • (String)


848
849
850
851
852
853
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 848

class FraudDetectionConfiguration < Struct.new(
  :risk_threshold,
  :watchlist_id)
  SENSITIVE = []
  include Aws::Structure
end