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