interface FraudDetectionConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VoiceID.Events.VoiceIdBatchSpeakerEnrollmentAction.FraudDetectionConfig |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvoiceid/events#VoiceIdBatchSpeakerEnrollmentAction_FraudDetectionConfig |
Java | software.amazon.awscdk.mixins.preview.services.voiceid.events.VoiceIdBatchSpeakerEnrollmentAction.FraudDetectionConfig |
Python | aws_cdk.mixins_preview.aws_voiceid.events.VoiceIdBatchSpeakerEnrollmentAction.FraudDetectionConfig |
TypeScript | @aws-cdk/mixins-preview ยป aws_voiceid ยป events ยป VoiceIdBatchSpeakerEnrollmentAction ยป FraudDetectionConfig |
Type definition for FraudDetectionConfig.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as voiceid_events } from '@aws-cdk/mixins-preview/aws-voiceid';
const fraudDetectionConfig: voiceid_events.VoiceIdBatchSpeakerEnrollmentAction.FraudDetectionConfig = {
fraudDetectionAction: ['fraudDetectionAction'],
fraudDetectionThreshold: ['fraudDetectionThreshold'],
watchlistIds: ['watchlistIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| fraud | string[] | fraudDetectionAction property. |
| fraud | string[] | fraudDetectionThreshold property. |
| watchlist | string[] | watchlistIds property. |
fraudDetectionAction?
Type:
string[]
(optional, default: Do not filter on this field)
fraudDetectionAction property.
Specify an array of string values to match this event if the actual value of fraudDetectionAction is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
fraudDetectionThreshold?
Type:
string[]
(optional, default: Do not filter on this field)
fraudDetectionThreshold property.
Specify an array of string values to match this event if the actual value of fraudDetectionThreshold is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
watchlistIds?
Type:
string[]
(optional, default: Do not filter on this field)
watchlistIds property.
Specify an array of string values to match this event if the actual value of watchlistIds is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript