Class: Aws::VoiceID::Types::KnownFraudsterRisk
- Inherits:
-
Struct
- Object
- Struct
- Aws::VoiceID::Types::KnownFraudsterRisk
- Includes:
- Structure
- Defined in:
- 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
-
#generated_fraudster_id ⇒ String
The identifier of the fraudster that is the closest match to the speaker.
-
#risk_score ⇒ Integer
The score indicating the likelihood the speaker is a known fraudster.
Instance Attribute Details
#generated_fraudster_id ⇒ String
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`.
1190 1191 1192 1193 1194 1195 |
# File 'lib/aws-sdk-voiceid/types.rb', line 1190 class KnownFraudsterRisk < Struct.new( :generated_fraudster_id, :risk_score) SENSITIVE = [] include Aws::Structure end |
#risk_score ⇒ Integer
The score indicating the likelihood the speaker is a known fraudster.
1190 1191 1192 1193 1194 1195 |
# File 'lib/aws-sdk-voiceid/types.rb', line 1190 class KnownFraudsterRisk < Struct.new( :generated_fraudster_id, :risk_score) SENSITIVE = [] include Aws::Structure end |