Interface VoiceIdBatchFraudsterRegistrationAction.Data
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VoiceIdBatchFraudsterRegistrationAction.Data.Jsii$Proxy
- Enclosing class:
VoiceIdBatchFraudsterRegistrationAction
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.*;
Data data = Data.builder()
.dataAccessRoleArn(List.of("dataAccessRoleArn"))
.inputDataConfig(InputDataConfig.builder()
.s3Uri(List.of("s3Uri"))
.build())
.outputDataConfig(OutputDataConfig.builder()
.kmsKeyId(List.of("kmsKeyId"))
.s3Uri(List.of("s3Uri"))
.build())
.registrationConfig(RegistrationConfig.builder()
.duplicateRegistrationAction(List.of("duplicateRegistrationAction"))
.fraudsterSimilarityThreshold(List.of("fraudsterSimilarityThreshold"))
.watchlistIds(List.of("watchlistIds"))
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forVoiceIdBatchFraudsterRegistrationAction.Datastatic final classAn implementation forVoiceIdBatchFraudsterRegistrationAction.Data -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) dataAccessRoleArn property.(experimental) inputDataConfig property.(experimental) outputDataConfig property.(experimental) registrationConfig property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataAccessRoleArn
(experimental) dataAccessRoleArn property.Specify an array of string values to match this event if the actual value of dataAccessRoleArn 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
-
getInputDataConfig
@Stability(Experimental) @Nullable default VoiceIdBatchFraudsterRegistrationAction.InputDataConfig getInputDataConfig()(experimental) inputDataConfig property.Specify an array of string values to match this event if the actual value of inputDataConfig 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
-
getOutputDataConfig
@Stability(Experimental) @Nullable default VoiceIdBatchFraudsterRegistrationAction.OutputDataConfig getOutputDataConfig()(experimental) outputDataConfig property.Specify an array of string values to match this event if the actual value of outputDataConfig 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
-
getRegistrationConfig
@Stability(Experimental) @Nullable default VoiceIdBatchFraudsterRegistrationAction.RegistrationConfig getRegistrationConfig()(experimental) registrationConfig property.Specify an array of string values to match this event if the actual value of registrationConfig 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
-