Class: Aws::VoiceID::Types::KnownFraudsterRisk

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

Overview

Contains details produced as a result of performing known fraudster risk analysis on a speaker.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#generated_fraudster_idString

The identifier of the fraudster that is the closest match to the speaker. If there are no fraudsters registered in a given domain, or if there are no fraudsters with a non-zero RiskScore, this value is null.

Returns:

  • (String)


1190
1191
1192
1193
1194
1195
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 1190

class KnownFraudsterRisk < Struct.new(
  :generated_fraudster_id,
  :risk_score)
  SENSITIVE = []
  include Aws::Structure
end

#risk_scoreInteger

The score indicating the likelihood the speaker is a known fraudster.

Returns:

  • (Integer)


1190
1191
1192
1193
1194
1195
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 1190

class KnownFraudsterRisk < Struct.new(
  :generated_fraudster_id,
  :risk_score)
  SENSITIVE = []
  include Aws::Structure
end