@lambda-kata/cdk 0.1.3-rc.51 → 0.1.3-rc.53

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.
@@ -41,10 +41,19 @@ export interface LicensingResponse {
41
41
  */
42
42
  entitled: boolean;
43
43
  /**
44
- * Customer-specific Lambda Layer ARN containing the Lambda Kata runtime.
44
+ * Base Lambda Layer ARN (without version number).
45
45
  * Only present if the account is entitled.
46
+ * @deprecated Use layerVersionArn for attaching to Lambda functions
46
47
  */
47
48
  layerArn?: string;
49
+ /**
50
+ * Full Lambda Layer Version ARN (with version number).
51
+ * This is the ARN that should be used when attaching layers to Lambda functions.
52
+ * Only present if the account is entitled.
53
+ *
54
+ * @example "arn:aws:lambda:eu-central-1:113258654684:layer:lambda-kata-euc:1"
55
+ */
56
+ layerVersionArn?: string;
48
57
  /**
49
58
  * Human-readable status message
50
59
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambda-kata/cdk",
3
- "version": "0.1.3-rc.51",
3
+ "version": "0.1.3-rc.53",
4
4
  "description": "AWS CDK integration for Lambda Kata - Node.js Lambdas running via Lambda Kata runtime",
5
5
  "main": "out/dist/index.js",
6
6
  "types": "out/tsc/src/index.d.ts",