Interface DomainEvents.VoiceIdEvaluateSessionAction.Session

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DomainEvents.VoiceIdEvaluateSessionAction.Session.Jsii$Proxy
Enclosing class:
DomainEvents.VoiceIdEvaluateSessionAction

@Stability(Experimental) public static interface DomainEvents.VoiceIdEvaluateSessionAction.Session extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for Session.

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();
 
  • 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.Match for 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getGeneratedSpeakerId

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getSessionId

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getSessionName

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getStreamingStatus

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      @Stability(Experimental) static DomainEvents.VoiceIdEvaluateSessionAction.Session.Builder builder()
      Returns:
      a DomainEvents.VoiceIdEvaluateSessionAction.Session.Builder of DomainEvents.VoiceIdEvaluateSessionAction.Session