Interface DomainEvents.VoiceIdEvaluateSessionAction.FraudDetectionResult
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DomainEvents.VoiceIdEvaluateSessionAction.FraudDetectionResult.Jsii$Proxy
- Enclosing class:
DomainEvents.VoiceIdEvaluateSessionAction
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.*;
FraudDetectionResult fraudDetectionResult = FraudDetectionResult.builder()
.audioAggregationEndedAt(List.of("audioAggregationEndedAt"))
.audioAggregationStartedAt(List.of("audioAggregationStartedAt"))
.configuration(ConfigurationFraud.builder()
.riskThreshold(List.of("riskThreshold"))
.watchlistId(List.of("watchlistId"))
.build())
.decision(List.of("decision"))
.fraudDetectionResultId(List.of("fraudDetectionResultId"))
.reasons(List.of("reasons"))
.riskDetails(RiskDetails.builder()
.knownFraudsterRisk(KnownFraudsterRisk.builder()
.generatedFraudsterId(List.of("generatedFraudsterId"))
.riskScore(List.of("riskScore"))
.build())
.voiceSpoofingRisk(VoiceSpoofingRisk.builder()
.riskScore(List.of("riskScore"))
.build())
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forDomainEvents.VoiceIdEvaluateSessionAction.FraudDetectionResult -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) audioAggregationEndedAt property.(experimental) audioAggregationStartedAt property.(experimental) configuration property.(experimental) decision property.(experimental) fraudDetectionResultId property.(experimental) reasons property.(experimental) riskDetails property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAudioAggregationEndedAt
(experimental) audioAggregationEndedAt property.Specify an array of string values to match this event if the actual value of audioAggregationEndedAt 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
-
getAudioAggregationStartedAt
(experimental) audioAggregationStartedAt property.Specify an array of string values to match this event if the actual value of audioAggregationStartedAt 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
-
getConfiguration
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdEvaluateSessionAction.ConfigurationFraud getConfiguration()(experimental) configuration property.Specify an array of string values to match this event if the actual value of configuration 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
-
getDecision
(experimental) decision property.Specify an array of string values to match this event if the actual value of decision 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
-
getFraudDetectionResultId
(experimental) fraudDetectionResultId property.Specify an array of string values to match this event if the actual value of fraudDetectionResultId 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
-
getReasons
(experimental) reasons property.Specify an array of string values to match this event if the actual value of reasons 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
-
getRiskDetails
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdEvaluateSessionAction.RiskDetails getRiskDetails()(experimental) riskDetails property.Specify an array of string values to match this event if the actual value of riskDetails 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
@Stability(Experimental) static DomainEvents.VoiceIdEvaluateSessionAction.FraudDetectionResult.Builder builder()
-