Interface DomainEvents.VoiceIdStartSessionAction.Session
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DomainEvents.VoiceIdStartSessionAction.Session.Jsii$Proxy
- Enclosing class:
DomainEvents.VoiceIdStartSessionAction
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()
.authenticationAudioProgress(AuthenticationAudioProgress.builder()
.audioAggregationEndedAt(List.of("audioAggregationEndedAt"))
.audioAggregationStartedAt(List.of("audioAggregationStartedAt"))
.build())
.authenticationConfiguration(AuthenticationConfiguration.builder()
.acceptanceThreshold(List.of("acceptanceThreshold"))
.build())
.enrollmentAudioProgress(EnrollmentAudioProgress.builder()
.audioAggregationEndedAt(List.of("audioAggregationEndedAt"))
.audioAggregationStartedAt(List.of("audioAggregationStartedAt"))
.audioAggregationStatus(List.of("audioAggregationStatus"))
.build())
.fraudDetectionAudioProgress(AuthenticationAudioProgress.builder()
.audioAggregationEndedAt(List.of("audioAggregationEndedAt"))
.audioAggregationStartedAt(List.of("audioAggregationStartedAt"))
.build())
.fraudDetectionConfiguration(FraudDetectionConfiguration.builder()
.riskThreshold(List.of("riskThreshold"))
.watchlistId(List.of("watchlistId"))
.build())
.generatedSpeakerId(List.of("generatedSpeakerId"))
.sessionId(List.of("sessionId"))
.sessionName(List.of("sessionName"))
.streamingConfiguration(StreamingConfiguration.builder()
.authenticationMinimumSpeechInSeconds(List.of("authenticationMinimumSpeechInSeconds"))
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDomainEvents.VoiceIdStartSessionAction.Sessionstatic final classAn implementation forDomainEvents.VoiceIdStartSessionAction.Session -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) authenticationAudioProgress property.(experimental) authenticationConfiguration property.(experimental) enrollmentAudioProgress property.(experimental) fraudDetectionAudioProgress property.(experimental) fraudDetectionConfiguration property.(experimental) generatedSpeakerId property.(experimental) sessionId property.(experimental) sessionName property.(experimental) streamingConfiguration property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthenticationAudioProgress
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdStartSessionAction.AuthenticationAudioProgress getAuthenticationAudioProgress()(experimental) authenticationAudioProgress property.Specify an array of string values to match this event if the actual value of authenticationAudioProgress 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
-
getAuthenticationConfiguration
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdStartSessionAction.AuthenticationConfiguration getAuthenticationConfiguration()(experimental) authenticationConfiguration property.Specify an array of string values to match this event if the actual value of authenticationConfiguration 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
-
getEnrollmentAudioProgress
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdStartSessionAction.EnrollmentAudioProgress getEnrollmentAudioProgress()(experimental) enrollmentAudioProgress property.Specify an array of string values to match this event if the actual value of enrollmentAudioProgress 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
-
getFraudDetectionAudioProgress
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdStartSessionAction.AuthenticationAudioProgress getFraudDetectionAudioProgress()(experimental) fraudDetectionAudioProgress property.Specify an array of string values to match this event if the actual value of fraudDetectionAudioProgress 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
-
getFraudDetectionConfiguration
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdStartSessionAction.FraudDetectionConfiguration getFraudDetectionConfiguration()(experimental) fraudDetectionConfiguration property.Specify an array of string values to match this event if the actual value of fraudDetectionConfiguration 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
-
getStreamingConfiguration
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdStartSessionAction.StreamingConfiguration getStreamingConfiguration()(experimental) streamingConfiguration property.Specify an array of string values to match this event if the actual value of streamingConfiguration 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
-