@jaypie/constructs 1.2.37 → 1.2.38
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/dist/cjs/index.cjs +2 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -1557,7 +1557,7 @@ class JaypieQueuedLambda extends Construct {
|
|
|
1557
1557
|
super(scope, id);
|
|
1558
1558
|
const { allowAllOutbound, allowPublicSubnet, architecture, batchSize = 1, code, datadogApiKeyArn, deadLetterQueue, deadLetterQueueEnabled, deadLetterTopic, description, environment = {}, envSecrets = {}, ephemeralStorageSize, fifo = true, filesystem, handler = "index.handler", initialPolicy, layers = [], logGroup, logRetention = CDK$2.LAMBDA.LOG_RETENTION, maxEventAge, memorySize = CDK$2.LAMBDA.MEMORY_SIZE, paramsAndSecrets, paramsAndSecretsOptions, profiling, profilingGroup, provisionedConcurrentExecutions, reservedConcurrentExecutions, retryAttempts, roleTag, runtime = new lambda.Runtime("nodejs24.x", lambda.RuntimeFamily.NODEJS, {
|
|
1559
1559
|
supportsInlineCode: true,
|
|
1560
|
-
}), runtimeManagementMode, secrets = [], securityGroups, timeout = Duration.seconds(CDK$2.DURATION.LAMBDA_WORKER), tracing, vendorTag, visibilityTimeout = Duration.seconds(CDK$2.DURATION.LAMBDA_WORKER), vpc, vpcSubnets, } = props;
|
|
1560
|
+
}), runtimeManagementMode, secrets = [], securityGroups, tables = [], timeout = Duration.seconds(CDK$2.DURATION.LAMBDA_WORKER), tracing, vendorTag, visibilityTimeout = Duration.seconds(CDK$2.DURATION.LAMBDA_WORKER), vpc, vpcSubnets, } = props;
|
|
1561
1561
|
// Create SQS Queue
|
|
1562
1562
|
this._queue = new sqs.Queue(this, "Queue", {
|
|
1563
1563
|
fifo,
|
|
@@ -1605,6 +1605,7 @@ class JaypieQueuedLambda extends Construct {
|
|
|
1605
1605
|
runtimeManagementMode,
|
|
1606
1606
|
secrets,
|
|
1607
1607
|
securityGroups,
|
|
1608
|
+
tables,
|
|
1608
1609
|
timeout,
|
|
1609
1610
|
tracing,
|
|
1610
1611
|
vendorTag,
|