interface CfnEventTypeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FraudDetector.Mixins.CfnEventTypeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfrauddetector/mixins#CfnEventTypeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.frauddetector.mixins.CfnEventTypeMixinProps |
Python | aws_cdk.mixins_preview.aws_frauddetector.mixins.CfnEventTypeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_frauddetector » mixins » CfnEventTypeMixinProps |
Properties for CfnEventTypePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as frauddetector_mixins } from '@aws-cdk/mixins-preview/aws-frauddetector';
const cfnEventTypeMixinProps: frauddetector_mixins.CfnEventTypeMixinProps = {
description: 'description',
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',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The event 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. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
The event type description.
entityTypes?
Type:
IResolvable | (IResolvable | Entity)[]
(optional)
The event type entity types.
eventVariables?
Type:
IResolvable | (IResolvable | Event)[]
(optional)
The event type event variables.
labels?
Type:
IResolvable | (IResolvable | Label)[]
(optional)
The event type labels.
name?
Type:
string
(optional)
The event type name.
Pattern : ^[0-9a-z_-]+$
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