@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.
- package/out/dist/index.js +3 -3
- package/out/tsc/src/types.d.ts +10 -1
- package/package.json +1 -1
package/out/tsc/src/types.d.ts
CHANGED
|
@@ -41,10 +41,19 @@ export interface LicensingResponse {
|
|
|
41
41
|
*/
|
|
42
42
|
entitled: boolean;
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
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