interface RegistrationConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VoiceID.Events.VoiceIdBatchFraudsterRegistrationAction.RegistrationConfig |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvoiceid/events#VoiceIdBatchFraudsterRegistrationAction_RegistrationConfig |
Java | software.amazon.awscdk.mixins.preview.services.voiceid.events.VoiceIdBatchFraudsterRegistrationAction.RegistrationConfig |
Python | aws_cdk.mixins_preview.aws_voiceid.events.VoiceIdBatchFraudsterRegistrationAction.RegistrationConfig |
TypeScript | @aws-cdk/mixins-preview ยป aws_voiceid ยป events ยป VoiceIdBatchFraudsterRegistrationAction ยป RegistrationConfig |
Type definition for RegistrationConfig.
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 registrationConfig: voiceid_events.VoiceIdBatchFraudsterRegistrationAction.RegistrationConfig = {
duplicateRegistrationAction: ['duplicateRegistrationAction'],
fraudsterSimilarityThreshold: ['fraudsterSimilarityThreshold'],
watchlistIds: ['watchlistIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| duplicate | string[] | duplicateRegistrationAction property. |
| fraudster | string[] | fraudsterSimilarityThreshold property. |
| watchlist | string[] | watchlistIds property. |
duplicateRegistrationAction?
Type:
string[]
(optional, default: Do not filter on this field)
duplicateRegistrationAction property.
Specify an array of string values to match this event if the actual value of duplicateRegistrationAction is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
fraudsterSimilarityThreshold?
Type:
string[]
(optional, default: Do not filter on this field)
fraudsterSimilarityThreshold property.
Specify an array of string values to match this event if the actual value of fraudsterSimilarityThreshold 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