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