interface CfnEventTypeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.FraudDetector.CfnEventTypeProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfrauddetector#CfnEventTypeProps |
Java | software.amazon.awscdk.services.frauddetector.CfnEventTypeProps |
Python | aws_cdk.aws_frauddetector.CfnEventTypeProps |
TypeScript | aws-cdk-lib » aws_frauddetector » CfnEventTypeProps |
Properties for defining a CfnEventType.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_frauddetector as frauddetector } from 'aws-cdk-lib';
const cfnEventTypeProps: frauddetector.CfnEventTypeProps = {
entityTypes: [{
arn: 'arn',
createdTime: 'createdTime',
description: 'description',
inline: false,
lastUpdatedTime: 'lastUpdatedTime',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
}],
eventVariables: [{
arn: 'arn',
createdTime: 'createdTime',
dataSource: 'dataSource',
dataType: 'dataType',
defaultValue: 'defaultValue',
description: 'description',
inline: false,
lastUpdatedTime: 'lastUpdatedTime',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
variableType: 'variableType',
}],
labels: [{
arn: 'arn',
createdTime: 'createdTime',
description: 'description',
inline: false,
lastUpdatedTime: 'lastUpdatedTime',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
}],
name: 'name',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| entity | IResolvable | (IResolvable | Entity)[] | The event type entity types. |
| event | IResolvable | (IResolvable | Event)[] | The event type event variables. |
| labels | IResolvable | (IResolvable | Label)[] | The event type labels. |
| name | string | The event type name. |
| description? | string | The event type description. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
entityTypes
Type:
IResolvable | (IResolvable | Entity)[]
The event type entity types.
eventVariables
Type:
IResolvable | (IResolvable | Event)[]
The event type event variables.
labels
Type:
IResolvable | (IResolvable | Label)[]
The event type labels.
name
Type:
string
The event type name.
Pattern : ^[0-9a-z_-]+$
description?
Type:
string
(optional)
The event type description.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript