interface EventTypeProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.FraudDetector.CfnDetector.EventTypeProperty |
Java | software.amazon.awscdk.services.frauddetector.CfnDetector.EventTypeProperty |
Python | aws_cdk.aws_frauddetector.CfnDetector.EventTypeProperty |
TypeScript | @aws-cdk/aws-frauddetector » CfnDetector » EventTypeProperty |
The event type details.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as frauddetector from '@aws-cdk/aws-frauddetector';
const eventTypeProperty: frauddetector.CfnDetector.EventTypeProperty = {
arn: 'arn',
createdTime: 'createdTime',
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',
}],
inline: false,
labels: [{
arn: 'arn',
createdTime: 'createdTime',
description: 'description',
inline: false,
lastUpdatedTime: 'lastUpdatedTime',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
}],
lastUpdatedTime: 'lastUpdatedTime',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
arn? | string | The entity type ARN. |
created | string | Timestamp of when the event type was created. |
description? | string | The event type description. |
entity | IResolvable | IResolvable | Entity [] | The event type entity types. |
event | IResolvable | IResolvable | Event [] | The event type event variables. |
inline? | boolean | IResolvable | Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack. |
labels? | IResolvable | IResolvable | Label [] | The event type labels. |
last | string | Timestamp of when the event type was last updated. |
name? | string | The event type name. |
tags? | Cfn [] | An array of key-value pairs to apply to this resource. |
arn?
Type:
string
(optional)
The entity type ARN.
createdTime?
Type:
string
(optional)
Timestamp of when the event type was created.
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.
inline?
Type:
boolean |
IResolvable
(optional)
Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.
If the value is true
, CloudFormation will create/update/delete the resource when creating/updating/deleting the stack. If the value is false
, CloudFormation will validate that the object exists and then use it within the resource without making changes to the object.
For example, when creating AWS::FraudDetector::Detector
you must define at least two variables. You can set Inline=true
for these variables and CloudFormation will create/update/delete the Variables as part of stack operations. However, if you set Inline=false
, CloudFormation will associate the variables to your detector but not execute any changes to the variables.
labels?
Type:
IResolvable
|
IResolvable
|
Label
[]
(optional)
The event type labels.
lastUpdatedTime?
Type:
string
(optional)
Timestamp of when the event type was last updated.
name?
Type:
string
(optional)
The event type name.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .