Interface DomainEvents.VoiceIdBatchSpeakerEnrollmentAction.EnrollmentConfig

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

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

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.*;
 EnrollmentConfig enrollmentConfig = EnrollmentConfig.builder()
         .existingEnrollmentAction(List.of("existingEnrollmentAction"))
         .fraudDetectionConfig(FraudDetectionConfig.builder()
                 .fraudDetectionAction(List.of("fraudDetectionAction"))
                 .fraudDetectionThreshold(List.of("fraudDetectionThreshold"))
                 .watchlistIds(List.of("watchlistIds"))
                 .build())
         .build();