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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forDomainEvents.VoiceIdBatchSpeakerEnrollmentAction.EnrollmentConfig -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) existingEnrollmentAction property.(experimental) fraudDetectionConfig property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExistingEnrollmentAction
(experimental) existingEnrollmentAction property.Specify an array of string values to match this event if the actual value of existingEnrollmentAction 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
-
getFraudDetectionConfig
@Stability(Experimental) @Nullable default DomainEvents.VoiceIdBatchSpeakerEnrollmentAction.FraudDetectionConfig getFraudDetectionConfig()(experimental) fraudDetectionConfig property.Specify an array of string values to match this event if the actual value of fraudDetectionConfig 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
@Stability(Experimental) static DomainEvents.VoiceIdBatchSpeakerEnrollmentAction.EnrollmentConfig.Builder builder()
-