File tree Expand file tree Collapse file tree 3 files changed +19
-18
lines changed
packages/@aws-cdk/aws-iotevents/lib Expand file tree Collapse file tree 3 files changed +19
-18
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * Specifies the actions to be performed when the condition evaluates to TRUE.
3
+ */
4
+ export interface Event {
5
+ /**
6
+ * The name of the event
7
+ */
8
+ readonly eventName : string ;
9
+
10
+ /**
11
+ * The Boolean expression that, when TRUE, causes the actions to be performed.
12
+ *
13
+ * @default None - Defaults to perform the actions always.
14
+ */
15
+ readonly condition ?: string ;
16
+ }
Original file line number Diff line number Diff line change 1
- export * from './input' ;
2
1
export * from './detector-model' ;
2
+ export * from './event' ;
3
+ export * from './input' ;
3
4
export * from './state' ;
4
5
5
6
// AWS::IoTEvents CloudFormation Resources:
Original file line number Diff line number Diff line change
1
+ import { Event } from './event' ;
1
2
import { CfnDetectorModel } from './iotevents.generated' ;
2
3
3
- /**
4
- * Specifies the actions to be performed when the condition evaluates to TRUE.
5
- */
6
- export interface Event {
7
- /**
8
- * The name of the event
9
- */
10
- readonly eventName : string ;
11
-
12
- /**
13
- * The Boolean expression that, when TRUE, causes the actions to be performed.
14
- *
15
- * @default None - Defaults to perform the actions always.
16
- */
17
- readonly condition ?: string ;
18
- }
19
-
20
4
/**
21
5
* Properties for defining a state of a detector
22
6
*/
You can’t perform that action at this time.
0 commit comments