@aws-cdk/aws-iotevents-actions-alpha 2.232.0-alpha.0 → 2.232.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/clear-timer-action.d.ts +5 -0
- package/lib/clear-timer-action.js +1 -1
- package/lib/lambda-invoke-action.d.ts +5 -0
- package/lib/lambda-invoke-action.js +1 -1
- package/lib/reset-timer-action.d.ts +5 -0
- package/lib/reset-timer-action.js +1 -1
- package/lib/set-timer-action.d.ts +5 -0
- package/lib/set-timer-action.js +1 -1
- package/lib/set-variable-action.d.ts +5 -0
- package/lib/set-variable-action.js +1 -1
- package/lib/timer-duration.d.ts +4 -0
- package/lib/timer-duration.js +1 -1
- package/package.json +8 -8
package/.jsii
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"url": "https://aws.amazon.com"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@aws-cdk/aws-iotevents-alpha": "2.232.
|
|
12
|
-
"aws-cdk-lib": "^2.232.
|
|
11
|
+
"@aws-cdk/aws-iotevents-alpha": "2.232.2-alpha.0",
|
|
12
|
+
"aws-cdk-lib": "^2.232.2",
|
|
13
13
|
"constructs": "^10.0.0"
|
|
14
14
|
},
|
|
15
15
|
"dependencyClosure": {
|
|
@@ -8838,6 +8838,6 @@
|
|
|
8838
8838
|
"symbolId": "lib/timer-duration:TimerDuration"
|
|
8839
8839
|
}
|
|
8840
8840
|
},
|
|
8841
|
-
"version": "2.232.
|
|
8841
|
+
"version": "2.232.2-alpha.0",
|
|
8842
8842
|
"fingerprint": "**********"
|
|
8843
8843
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as iotevents from '@aws-cdk/aws-iotevents-alpha';
|
|
2
|
+
import { Construct } from 'constructs';
|
|
2
3
|
/**
|
|
3
4
|
* The action to delete an existing timer.
|
|
4
5
|
*/
|
|
@@ -8,4 +9,8 @@ export declare class ClearTimerAction implements iotevents.IAction {
|
|
|
8
9
|
* @param timerName the name of the timer
|
|
9
10
|
*/
|
|
10
11
|
constructor(timerName: string);
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
_bind(_scope: Construct, _options: iotevents.ActionBindOptions): iotevents.ActionConfig;
|
|
11
16
|
}
|
|
@@ -7,7 +7,7 @@ const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
|
7
7
|
*/
|
|
8
8
|
class ClearTimerAction {
|
|
9
9
|
timerName;
|
|
10
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.ClearTimerAction", version: "2.232.
|
|
10
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.ClearTimerAction", version: "2.232.2-alpha.0" };
|
|
11
11
|
/**
|
|
12
12
|
* @param timerName the name of the timer
|
|
13
13
|
*/
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as iotevents from '@aws-cdk/aws-iotevents-alpha';
|
|
2
2
|
import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
3
|
+
import { Construct } from 'constructs';
|
|
3
4
|
/**
|
|
4
5
|
* The action to write the data to an AWS Lambda function.
|
|
5
6
|
*/
|
|
@@ -9,4 +10,8 @@ export declare class LambdaInvokeAction implements iotevents.IAction {
|
|
|
9
10
|
* @param func the AWS Lambda function to be invoked by this action
|
|
10
11
|
*/
|
|
11
12
|
constructor(func: lambda.IFunction);
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
_bind(_scope: Construct, options: iotevents.ActionBindOptions): iotevents.ActionConfig;
|
|
12
17
|
}
|
|
@@ -7,7 +7,7 @@ const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
|
7
7
|
*/
|
|
8
8
|
class LambdaInvokeAction {
|
|
9
9
|
func;
|
|
10
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.LambdaInvokeAction", version: "2.232.
|
|
10
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.LambdaInvokeAction", version: "2.232.2-alpha.0" };
|
|
11
11
|
/**
|
|
12
12
|
* @param func the AWS Lambda function to be invoked by this action
|
|
13
13
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as iotevents from '@aws-cdk/aws-iotevents-alpha';
|
|
2
|
+
import { Construct } from 'constructs';
|
|
2
3
|
/**
|
|
3
4
|
* The action to reset an existing timer.
|
|
4
5
|
*/
|
|
@@ -8,4 +9,8 @@ export declare class ResetTimerAction implements iotevents.IAction {
|
|
|
8
9
|
* @param timerName the name of the timer
|
|
9
10
|
*/
|
|
10
11
|
constructor(timerName: string);
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
_bind(_scope: Construct, _options: iotevents.ActionBindOptions): iotevents.ActionConfig;
|
|
11
16
|
}
|
|
@@ -7,7 +7,7 @@ const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
|
7
7
|
*/
|
|
8
8
|
class ResetTimerAction {
|
|
9
9
|
timerName;
|
|
10
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.ResetTimerAction", version: "2.232.
|
|
10
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.ResetTimerAction", version: "2.232.2-alpha.0" };
|
|
11
11
|
/**
|
|
12
12
|
* @param timerName the name of the timer
|
|
13
13
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as iotevents from '@aws-cdk/aws-iotevents-alpha';
|
|
2
|
+
import { Construct } from 'constructs';
|
|
2
3
|
import { TimerDuration } from './timer-duration';
|
|
3
4
|
/**
|
|
4
5
|
* The action to create a timer with duration in seconds.
|
|
@@ -11,4 +12,8 @@ export declare class SetTimerAction implements iotevents.IAction {
|
|
|
11
12
|
* @param timerDuration the duration of the timer
|
|
12
13
|
*/
|
|
13
14
|
constructor(timerName: string, timerDuration: TimerDuration);
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
_bind(_scope: Construct, _options: iotevents.ActionBindOptions): iotevents.ActionConfig;
|
|
14
19
|
}
|
package/lib/set-timer-action.js
CHANGED
|
@@ -9,7 +9,7 @@ const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
|
9
9
|
class SetTimerAction {
|
|
10
10
|
timerName;
|
|
11
11
|
timerDuration;
|
|
12
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.SetTimerAction", version: "2.232.
|
|
12
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.SetTimerAction", version: "2.232.2-alpha.0" };
|
|
13
13
|
/**
|
|
14
14
|
* @param timerName the name of the timer
|
|
15
15
|
* @param timerDuration the duration of the timer
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as iotevents from '@aws-cdk/aws-iotevents-alpha';
|
|
2
|
+
import { Construct } from 'constructs';
|
|
2
3
|
/**
|
|
3
4
|
* The action to create a variable with a specified value.
|
|
4
5
|
*/
|
|
@@ -10,4 +11,8 @@ export declare class SetVariableAction implements iotevents.IAction {
|
|
|
10
11
|
* @param value the new value of the variable
|
|
11
12
|
*/
|
|
12
13
|
constructor(variableName: string, value: iotevents.Expression);
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
_bind(_scope: Construct, _options: iotevents.ActionBindOptions): iotevents.ActionConfig;
|
|
13
18
|
}
|
|
@@ -8,7 +8,7 @@ const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
|
8
8
|
class SetVariableAction {
|
|
9
9
|
variableName;
|
|
10
10
|
value;
|
|
11
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.SetVariableAction", version: "2.232.
|
|
11
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.SetVariableAction", version: "2.232.2-alpha.0" };
|
|
12
12
|
/**
|
|
13
13
|
* @param variableName the name of the variable
|
|
14
14
|
* @param value the new value of the variable
|
package/lib/timer-duration.d.ts
CHANGED
|
@@ -23,4 +23,8 @@ export declare abstract class TimerDuration {
|
|
|
23
23
|
* For example, if you set the timer to 60.99 seconds, the evaluated result of the duration expression is 60 seconds.
|
|
24
24
|
*/
|
|
25
25
|
static fromExpression(expression: iotevents.Expression): TimerDuration;
|
|
26
|
+
/**
|
|
27
|
+
* @internal
|
|
28
|
+
*/
|
|
29
|
+
abstract _bind(): string;
|
|
26
30
|
}
|
package/lib/timer-duration.js
CHANGED
|
@@ -6,7 +6,7 @@ const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
|
|
|
6
6
|
* The duration of the timer.
|
|
7
7
|
*/
|
|
8
8
|
class TimerDuration {
|
|
9
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.TimerDuration", version: "2.232.
|
|
9
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-iotevents-actions-alpha.TimerDuration", version: "2.232.2-alpha.0" };
|
|
10
10
|
/**
|
|
11
11
|
* Create a timer-duration from Duration.
|
|
12
12
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-cdk/aws-iotevents-actions-alpha",
|
|
3
|
-
"version": "2.232.
|
|
3
|
+
"version": "2.232.2-alpha.0",
|
|
4
4
|
"description": "Receipt Detector Model actions for AWS IoT Events",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -75,21 +75,21 @@
|
|
|
75
75
|
},
|
|
76
76
|
"license": "Apache-2.0",
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@aws-cdk/cdk-build-tools": "2.232.
|
|
78
|
+
"@aws-cdk/cdk-build-tools": "2.232.2-alpha.0",
|
|
79
79
|
"@aws-cdk/integ-runner": "^2.192.2",
|
|
80
|
-
"@aws-cdk/pkglint": "2.232.
|
|
80
|
+
"@aws-cdk/pkglint": "2.232.2-alpha.0",
|
|
81
81
|
"@types/jest": "^29.5.14",
|
|
82
82
|
"jest": "^29.7.0",
|
|
83
|
-
"aws-cdk-lib": "2.232.
|
|
83
|
+
"aws-cdk-lib": "2.232.2",
|
|
84
84
|
"constructs": "^10.0.0",
|
|
85
|
-
"@aws-cdk/integ-tests-alpha": "2.232.
|
|
86
|
-
"@aws-cdk/aws-iotevents-alpha": "2.232.
|
|
85
|
+
"@aws-cdk/integ-tests-alpha": "2.232.2-alpha.0",
|
|
86
|
+
"@aws-cdk/aws-iotevents-alpha": "2.232.2-alpha.0"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {},
|
|
89
89
|
"homepage": "https://github.com/aws/aws-cdk",
|
|
90
90
|
"peerDependencies": {
|
|
91
|
-
"@aws-cdk/aws-iotevents-alpha": "2.232.
|
|
92
|
-
"aws-cdk-lib": "^2.232.
|
|
91
|
+
"@aws-cdk/aws-iotevents-alpha": "2.232.2-alpha.0",
|
|
92
|
+
"aws-cdk-lib": "^2.232.2",
|
|
93
93
|
"constructs": "^10.0.0"
|
|
94
94
|
},
|
|
95
95
|
"engines": {
|