interface VoiceIdFraudsterActionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VoiceID.Events.VoiceIdFraudsterAction.VoiceIdFraudsterActionProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvoiceid/events#VoiceIdFraudsterAction_VoiceIdFraudsterActionProps |
Java | software.amazon.awscdk.mixins.preview.services.voiceid.events.VoiceIdFraudsterAction.VoiceIdFraudsterActionProps |
Python | aws_cdk.mixins_preview.aws_voiceid.events.VoiceIdFraudsterAction.VoiceIdFraudsterActionProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_voiceid ยป events ยป VoiceIdFraudsterAction ยป VoiceIdFraudsterActionProps |
Props type for aws.voiceid@VoiceIdFraudsterAction event.
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 voiceIdFraudsterActionProps: voiceid_events.VoiceIdFraudsterAction.VoiceIdFraudsterActionProps = {
action: ['action'],
data: {
registrationSource: ['registrationSource'],
registrationSourceId: ['registrationSourceId'],
registrationStatus: ['registrationStatus'],
},
domainId: ['domainId'],
errorInfo: {
errorCode: ['errorCode'],
errorMessage: ['errorMessage'],
errorType: ['errorType'],
},
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
generatedFraudsterId: ['generatedFraudsterId'],
sourceId: ['sourceId'],
status: ['status'],
watchlistIds: ['watchlistIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string[] | action property. |
| data? | Data | data property. |
| domain | string[] | domainId property. |
| error | Error | errorInfo property. |
| event | AWSEvent | EventBridge event metadata. |
| generated | string[] | generatedFraudsterId property. |
| source | string[] | sourceId property. |
| status? | string[] | status property. |
| watchlist | string[] | watchlistIds property. |
action?
Type:
string[]
(optional, default: Do not filter on this field)
action property.
Specify an array of string values to match this event if the actual value of action is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
data?
Type:
Data
(optional, default: Do not filter on this field)
data property.
Specify an array of string values to match this event if the actual value of data is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
domainId?
Type:
string[]
(optional, default: Filter with the Domain reference)
domainId property.
Specify an array of string values to match this event if the actual value of domainId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
errorInfo?
Type:
Error
(optional, default: Do not filter on this field)
errorInfo property.
Specify an array of string values to match this event if the actual value of errorInfo is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
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.
sourceId?
Type:
string[]
(optional, default: Do not filter on this field)
sourceId property.
Specify an array of string values to match this event if the actual value of sourceId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
Specify an array of string values to match this event if the actual value of status 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