Interface VoiceIdUpdateSessionAction.Session

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

@Stability(Experimental) public static interface VoiceIdUpdateSessionAction.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()
         .authenticationConfiguration(AuthenticationConfiguration.builder()
                 .acceptanceThreshold(List.of("acceptanceThreshold"))
                 .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"))
         .build();
 
  • Method Details

    • getAuthenticationConfiguration

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

      Default: - Do not filter on this field

    • getFraudDetectionConfiguration

      @Stability(Experimental) @Nullable default VoiceIdUpdateSessionAction.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.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

    • builder

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