Interface VoiceIdEvaluateSessionAction.RiskDetails
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VoiceIdEvaluateSessionAction.RiskDetails.Jsii$Proxy
- Enclosing class:
VoiceIdEvaluateSessionAction
@Stability(Experimental)
public static interface VoiceIdEvaluateSessionAction.RiskDetails
extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for RiskDetails.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.voiceid.events.*;
RiskDetails riskDetails = RiskDetails.builder()
.knownFraudsterRisk(KnownFraudsterRisk.builder()
.generatedFraudsterId(List.of("generatedFraudsterId"))
.riskScore(List.of("riskScore"))
.build())
.voiceSpoofingRisk(VoiceSpoofingRisk.builder()
.riskScore(List.of("riskScore"))
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forVoiceIdEvaluateSessionAction.RiskDetailsstatic final classAn implementation forVoiceIdEvaluateSessionAction.RiskDetails -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) knownFraudsterRisk property.(experimental) voiceSpoofingRisk property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKnownFraudsterRisk
@Stability(Experimental) @Nullable default VoiceIdEvaluateSessionAction.KnownFraudsterRisk getKnownFraudsterRisk()(experimental) knownFraudsterRisk property.Specify an array of string values to match this event if the actual value of knownFraudsterRisk is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getVoiceSpoofingRisk
@Stability(Experimental) @Nullable default VoiceIdEvaluateSessionAction.VoiceSpoofingRisk getVoiceSpoofingRisk()(experimental) voiceSpoofingRisk property.Specify an array of string values to match this event if the actual value of voiceSpoofingRisk is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-