@gradientedge/cdk-utils 9.0.0 → 9.1.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.
|
@@ -225,6 +225,9 @@ class EventManager {
|
|
|
225
225
|
},
|
|
226
226
|
},
|
|
227
227
|
target: targetLambdaFunction.functionArn,
|
|
228
|
+
targetParameters: {
|
|
229
|
+
inputTemplate: props.lambdaInputTemplate,
|
|
230
|
+
},
|
|
228
231
|
});
|
|
229
232
|
(0, utils_1.createCfnOutput)(`${id}-pipeArn`, scope, pipe.attrArn);
|
|
230
233
|
(0, utils_1.createCfnOutput)(`${id}-pipeName`, scope, pipe.name);
|
|
@@ -15,6 +15,7 @@ export interface SqsToSfnPipeProps extends CfnPipeProps {
|
|
|
15
15
|
export interface SqsToLambdaPipeProps extends CfnPipeProps {
|
|
16
16
|
pipeFilterPattern?: any;
|
|
17
17
|
sqsBatchSize?: number;
|
|
18
|
+
lambdaInputTemplate?: string;
|
|
18
19
|
sqsMaximumBatchingWindowInSeconds?: number;
|
|
19
20
|
}
|
|
20
21
|
/**
|
package/package.json
CHANGED