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