Interface DomainEvents.VoiceIdEvaluateSessionAction.Session
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DomainEvents.VoiceIdEvaluateSessionAction.Session.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.*;
Session session = Session.builder()
.authenticationResult(AuthenticationResult.builder()
.audioAggregationEndedAt(List.of("audioAggregationEndedAt"))
.audioAggregationStartedAt(List.of("audioAggregationStartedAt"))
.authenticationResultId(List.of("authenticationResultId"))
.configuration(ConfigurationAuthentication.builder()
.acceptanceThreshold(List.of("acceptanceThreshold"))
.build())
.decision(List.of("decision"))
.score(List.of("score"))
.build())
.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())
.generatedSpeakerId(List.of("generatedSpeakerId"))
.sessionId(List.of("sessionId"))
.sessionName(List.of("sessionName"))
.streamingStatus(List.of("streamingStatus"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDomainEvents.VoiceIdEvaluateSessionAction.Sessionstatic final classAn implementation forDomainEvents.VoiceIdEvaluateSessionAction.Session -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) authenticationResult property.(experimental) fraudDetectionResult property.(experimental) generatedSpeakerId property.(experimental) sessionId property.(experimental) sessionName property.(experimental) streamingStatus property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthenticationResult
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdEvaluateSessionAction.AuthenticationResult getAuthenticationResult()(experimental) authenticationResult property.Specify an array of string values to match this event if the actual value of authenticationResult 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
-
getFraudDetectionResult
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdEvaluateSessionAction.FraudDetectionResult getFraudDetectionResult()(experimental) fraudDetectionResult property.Specify an array of string values to match this event if the actual value of fraudDetectionResult 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
-
getGeneratedSpeakerId
(experimental) generatedSpeakerId property.Specify an array of string values to match this event if the actual value of generatedSpeakerId 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
-
getSessionId
(experimental) sessionId property.Specify an array of string values to match this event if the actual value of sessionId 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
-
getSessionName
(experimental) sessionName property.Specify an array of string values to match this event if the actual value of sessionName 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
-
getStreamingStatus
(experimental) streamingStatus property.Specify an array of string values to match this event if the actual value of streamingStatus 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
-