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