@lafken/common 0.12.8 → 0.12.10
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.
|
@@ -262,6 +262,16 @@ export interface LambdaProps {
|
|
|
262
262
|
* as Terraform outputs. Supported attributes: `'arn'`, `'invokeArn'`, `'qualifiedArn'`.
|
|
263
263
|
*/
|
|
264
264
|
outputs?: ResourceOutputType<LambdaOutputAttributes>;
|
|
265
|
+
/**
|
|
266
|
+
* Custom function name for the Lambda.
|
|
267
|
+
*
|
|
268
|
+
* When provided, this name will be used as the Lambda function name instead
|
|
269
|
+
* of the auto-generated one derived from the handler id and context.
|
|
270
|
+
* Useful when the Lambda must match a pre-existing or externally defined name.
|
|
271
|
+
*
|
|
272
|
+
* Must be unique within the AWS account and region.
|
|
273
|
+
*/
|
|
274
|
+
functionName?: string;
|
|
265
275
|
/**
|
|
266
276
|
* Registers this Lambda as a named global reference.
|
|
267
277
|
*
|
package/package.json
CHANGED