@gradientedge/cdk-utils 8.92.0 → 8.93.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.
@@ -32,7 +32,7 @@ export declare class GraphQLApiLambda extends CommonConstruct {
32
32
  graphQLApiLambdaPolicy: iam.PolicyDocument;
33
33
  graphQLApiLambdaRole: iam.Role;
34
34
  graphQLApiLambdaEnvironment: GraphQlApiLambdaEnvironment;
35
- graphQLApiLambdaLayers: lambda.LayerVersion[];
35
+ graphQLApiLambdaLayers: lambda.ILayerVersion[];
36
36
  graphQLApiLambdaFunction: lambda.Function;
37
37
  graphQLApi: apig.RestApi;
38
38
  graphQLApiHostedZone: route53.IHostedZone;
@@ -31,7 +31,7 @@ export declare abstract class RestApiLambda extends CommonConstruct {
31
31
  restApiLambdaPolicy: iam.PolicyDocument;
32
32
  restApiLambdaRole: iam.Role;
33
33
  restApiLambdaEnvironment: RestApiLambdaEnvironment;
34
- restApiLambdaLayers: lambda.LayerVersion[];
34
+ restApiLambdaLayers: lambda.ILayerVersion[];
35
35
  restApiLambdaFunction: lambda.Function;
36
36
  restApi: apig.RestApi;
37
37
  restApiHostedZone: route53.IHostedZone;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "8.92.0",
3
+ "version": "8.93.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -36,7 +36,7 @@ export class GraphQLApiLambda extends CommonConstruct {
36
36
  graphQLApiLambdaPolicy: iam.PolicyDocument
37
37
  graphQLApiLambdaRole: iam.Role
38
38
  graphQLApiLambdaEnvironment: GraphQlApiLambdaEnvironment
39
- graphQLApiLambdaLayers: lambda.LayerVersion[] = []
39
+ graphQLApiLambdaLayers: lambda.ILayerVersion[] = []
40
40
  graphQLApiLambdaFunction: lambda.Function
41
41
  graphQLApi: apig.RestApi
42
42
  graphQLApiHostedZone: route53.IHostedZone
@@ -35,7 +35,7 @@ export abstract class RestApiLambda extends CommonConstruct {
35
35
  restApiLambdaPolicy: iam.PolicyDocument
36
36
  restApiLambdaRole: iam.Role
37
37
  restApiLambdaEnvironment: RestApiLambdaEnvironment
38
- restApiLambdaLayers: lambda.LayerVersion[] = []
38
+ restApiLambdaLayers: lambda.ILayerVersion[] = []
39
39
  restApiLambdaFunction: lambda.Function
40
40
  restApi: apig.RestApi
41
41
  restApiHostedZone: route53.IHostedZone