@aws-solutions-constructs/aws-lambda-sns 2.60.0 → 2.62.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.
Files changed (21) hide show
  1. package/.jsii +19 -6
  2. package/lib/index.js +1 -1
  3. package/package.json +6 -6
  4. package/test/integ.lamsns-deployFunction.js +3 -2
  5. package/test/integ.lamsns-deployFunction.js.snapshot/lamsns-deployFunction.assets.json +2 -2
  6. package/test/integ.lamsns-deployFunction.js.snapshot/lamsns-deployFunction.template.json +1 -1
  7. package/test/integ.lamsns-deployFunction.js.snapshot/manifest.json +1 -1
  8. package/test/integ.lamsns-deployFunction.js.snapshot/tree.json +28 -28
  9. package/test/integ.lamsns-deployFunctionWithVpc.js +3 -2
  10. package/test/integ.lamsns-deployFunctionWithVpc.js.snapshot/{asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e → asset.ee7de53d64cc9d6248fa6aa550f92358f6c907b5efd6f3298aeab1b5e7ea358a}/__entrypoint__.js +1 -1
  11. package/test/integ.lamsns-deployFunctionWithVpc.js.snapshot/lamsns-deployFunctionWithVpc.assets.json +5 -5
  12. package/test/integ.lamsns-deployFunctionWithVpc.js.snapshot/lamsns-deployFunctionWithVpc.template.json +120 -3
  13. package/test/integ.lamsns-deployFunctionWithVpc.js.snapshot/manifest.json +7 -1
  14. package/test/integ.lamsns-deployFunctionWithVpc.js.snapshot/tree.json +67 -59
  15. package/test/integ.lamsns-existingFunction.js +2 -2
  16. package/test/integ.lamsns-existingFunction.js.snapshot/lamsns-existingFunction.assets.json +2 -2
  17. package/test/integ.lamsns-existingFunction.js.snapshot/lamsns-existingFunction.template.json +1 -1
  18. package/test/integ.lamsns-existingFunction.js.snapshot/manifest.json +1 -1
  19. package/test/integ.lamsns-existingFunction.js.snapshot/tree.json +28 -28
  20. package/test/lambda-sns.test.js +20 -19
  21. /package/test/integ.lamsns-deployFunctionWithVpc.js.snapshot/{asset.dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e → asset.ee7de53d64cc9d6248fa6aa550f92358f6c907b5efd6f3298aeab1b5e7ea358a}/index.js +0 -0
@@ -162,7 +162,7 @@
162
162
  "Arn"
163
163
  ]
164
164
  },
165
- "Runtime": "nodejs16.x",
165
+ "Runtime": "nodejs20.x",
166
166
  "TracingConfig": {
167
167
  "Mode": "Active"
168
168
  },
@@ -697,7 +697,7 @@
697
697
  "S3Bucket": {
698
698
  "Fn::Sub": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}"
699
699
  },
700
- "S3Key": "dd5711540f04e06aa955d7f4862fc04e8cdea464cb590dae91ed2976bb78098e.zip"
700
+ "S3Key": "ee7de53d64cc9d6248fa6aa550f92358f6c907b5efd6f3298aeab1b5e7ea358a.zip"
701
701
  },
702
702
  "Timeout": 900,
703
703
  "MemorySize": 128,
@@ -708,7 +708,15 @@
708
708
  "Arn"
709
709
  ]
710
710
  },
711
- "Runtime": "nodejs18.x",
711
+ "Runtime": {
712
+ "Fn::FindInMap": [
713
+ "LatestNodeRuntimeMap",
714
+ {
715
+ "Ref": "AWS::Region"
716
+ },
717
+ "value"
718
+ ]
719
+ },
712
720
  "Description": "Lambda function for removing all inbound/outbound rules from the VPC default security group"
713
721
  },
714
722
  "DependsOn": [
@@ -792,6 +800,115 @@
792
800
  }
793
801
  }
794
802
  },
803
+ "Mappings": {
804
+ "LatestNodeRuntimeMap": {
805
+ "af-south-1": {
806
+ "value": "nodejs20.x"
807
+ },
808
+ "ap-east-1": {
809
+ "value": "nodejs20.x"
810
+ },
811
+ "ap-northeast-1": {
812
+ "value": "nodejs20.x"
813
+ },
814
+ "ap-northeast-2": {
815
+ "value": "nodejs20.x"
816
+ },
817
+ "ap-northeast-3": {
818
+ "value": "nodejs20.x"
819
+ },
820
+ "ap-south-1": {
821
+ "value": "nodejs20.x"
822
+ },
823
+ "ap-south-2": {
824
+ "value": "nodejs20.x"
825
+ },
826
+ "ap-southeast-1": {
827
+ "value": "nodejs20.x"
828
+ },
829
+ "ap-southeast-2": {
830
+ "value": "nodejs20.x"
831
+ },
832
+ "ap-southeast-3": {
833
+ "value": "nodejs20.x"
834
+ },
835
+ "ap-southeast-4": {
836
+ "value": "nodejs20.x"
837
+ },
838
+ "ca-central-1": {
839
+ "value": "nodejs20.x"
840
+ },
841
+ "cn-north-1": {
842
+ "value": "nodejs18.x"
843
+ },
844
+ "cn-northwest-1": {
845
+ "value": "nodejs18.x"
846
+ },
847
+ "eu-central-1": {
848
+ "value": "nodejs20.x"
849
+ },
850
+ "eu-central-2": {
851
+ "value": "nodejs20.x"
852
+ },
853
+ "eu-north-1": {
854
+ "value": "nodejs20.x"
855
+ },
856
+ "eu-south-1": {
857
+ "value": "nodejs20.x"
858
+ },
859
+ "eu-south-2": {
860
+ "value": "nodejs20.x"
861
+ },
862
+ "eu-west-1": {
863
+ "value": "nodejs20.x"
864
+ },
865
+ "eu-west-2": {
866
+ "value": "nodejs20.x"
867
+ },
868
+ "eu-west-3": {
869
+ "value": "nodejs20.x"
870
+ },
871
+ "il-central-1": {
872
+ "value": "nodejs20.x"
873
+ },
874
+ "me-central-1": {
875
+ "value": "nodejs20.x"
876
+ },
877
+ "me-south-1": {
878
+ "value": "nodejs20.x"
879
+ },
880
+ "sa-east-1": {
881
+ "value": "nodejs20.x"
882
+ },
883
+ "us-east-1": {
884
+ "value": "nodejs20.x"
885
+ },
886
+ "us-east-2": {
887
+ "value": "nodejs20.x"
888
+ },
889
+ "us-gov-east-1": {
890
+ "value": "nodejs18.x"
891
+ },
892
+ "us-gov-west-1": {
893
+ "value": "nodejs18.x"
894
+ },
895
+ "us-iso-east-1": {
896
+ "value": "nodejs18.x"
897
+ },
898
+ "us-iso-west-1": {
899
+ "value": "nodejs18.x"
900
+ },
901
+ "us-isob-east-1": {
902
+ "value": "nodejs18.x"
903
+ },
904
+ "us-west-1": {
905
+ "value": "nodejs20.x"
906
+ },
907
+ "us-west-2": {
908
+ "value": "nodejs20.x"
909
+ }
910
+ }
911
+ },
795
912
  "Parameters": {
796
913
  "BootstrapVersion": {
797
914
  "Type": "AWS::SSM::Parameter::Value<String>",
@@ -66,7 +66,7 @@
66
66
  "validateOnSynth": false,
67
67
  "assumeRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-deploy-role-${AWS::AccountId}-${AWS::Region}",
68
68
  "cloudFormationExecutionRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-cfn-exec-role-${AWS::AccountId}-${AWS::Region}",
69
- "stackTemplateAssetObjectUrl": "s3://cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}/eaa0346c4ff539bfe6679152cc21c124666aaee311fcd3a0fbd5d5f8f0a70943.json",
69
+ "stackTemplateAssetObjectUrl": "s3://cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}/505afffea273f062c22221cacb18bd174f863a09744ada2d1428dcb595ebfa5c.json",
70
70
  "requiresBootstrapStackVersion": 6,
71
71
  "bootstrapStackVersionSsmParameter": "/cdk-bootstrap/hnb659fds/version",
72
72
  "additionalDependencies": [
@@ -196,6 +196,12 @@
196
196
  "data": "VpcSNS5B664381"
197
197
  }
198
198
  ],
199
+ "/lamsns-deployFunctionWithVpc/LatestNodeRuntimeMap": [
200
+ {
201
+ "type": "aws:cdk:logicalId",
202
+ "data": "LatestNodeRuntimeMap"
203
+ }
204
+ ],
199
205
  "/lamsns-deployFunctionWithVpc/Custom::VpcRestrictDefaultSGCustomResourceProvider/Role": [
200
206
  {
201
207
  "type": "aws:cdk:logicalId",
@@ -21,7 +21,7 @@
21
21
  "path": "lamsns-deployFunctionWithVpc/test-lambda-sns/LambdaFunctionServiceRole/ImportLambdaFunctionServiceRole",
22
22
  "constructInfo": {
23
23
  "fqn": "aws-cdk-lib.Resource",
24
- "version": "2.118.0"
24
+ "version": "2.147.3"
25
25
  }
26
26
  },
27
27
  "Resource": {
@@ -84,7 +84,7 @@
84
84
  },
85
85
  "constructInfo": {
86
86
  "fqn": "aws-cdk-lib.aws_iam.CfnRole",
87
- "version": "2.118.0"
87
+ "version": "2.147.3"
88
88
  }
89
89
  },
90
90
  "DefaultPolicy": {
@@ -132,19 +132,19 @@
132
132
  },
133
133
  "constructInfo": {
134
134
  "fqn": "aws-cdk-lib.aws_iam.CfnPolicy",
135
- "version": "2.118.0"
135
+ "version": "2.147.3"
136
136
  }
137
137
  }
138
138
  },
139
139
  "constructInfo": {
140
140
  "fqn": "aws-cdk-lib.aws_iam.Policy",
141
- "version": "2.118.0"
141
+ "version": "2.147.3"
142
142
  }
143
143
  }
144
144
  },
145
145
  "constructInfo": {
146
146
  "fqn": "aws-cdk-lib.aws_iam.Role",
147
- "version": "2.118.0"
147
+ "version": "2.147.3"
148
148
  }
149
149
  },
150
150
  "ReplaceDefaultSecurityGroup-security-group": {
@@ -172,13 +172,13 @@
172
172
  },
173
173
  "constructInfo": {
174
174
  "fqn": "aws-cdk-lib.aws_ec2.CfnSecurityGroup",
175
- "version": "2.118.0"
175
+ "version": "2.147.3"
176
176
  }
177
177
  }
178
178
  },
179
179
  "constructInfo": {
180
180
  "fqn": "aws-cdk-lib.aws_ec2.SecurityGroup",
181
- "version": "2.118.0"
181
+ "version": "2.147.3"
182
182
  }
183
183
  },
184
184
  "LambdaFunction": {
@@ -194,7 +194,7 @@
194
194
  "path": "lamsns-deployFunctionWithVpc/test-lambda-sns/LambdaFunction/Code/Stage",
195
195
  "constructInfo": {
196
196
  "fqn": "aws-cdk-lib.AssetStaging",
197
- "version": "2.118.0"
197
+ "version": "2.147.3"
198
198
  }
199
199
  },
200
200
  "AssetBucket": {
@@ -202,13 +202,13 @@
202
202
  "path": "lamsns-deployFunctionWithVpc/test-lambda-sns/LambdaFunction/Code/AssetBucket",
203
203
  "constructInfo": {
204
204
  "fqn": "aws-cdk-lib.aws_s3.BucketBase",
205
- "version": "2.118.0"
205
+ "version": "2.147.3"
206
206
  }
207
207
  }
208
208
  },
209
209
  "constructInfo": {
210
210
  "fqn": "aws-cdk-lib.aws_s3_assets.Asset",
211
- "version": "2.118.0"
211
+ "version": "2.147.3"
212
212
  }
213
213
  },
214
214
  "Resource": {
@@ -244,7 +244,7 @@
244
244
  "Arn"
245
245
  ]
246
246
  },
247
- "runtime": "nodejs16.x",
247
+ "runtime": "nodejs20.x",
248
248
  "tracingConfig": {
249
249
  "mode": "Active"
250
250
  },
@@ -270,13 +270,13 @@
270
270
  },
271
271
  "constructInfo": {
272
272
  "fqn": "aws-cdk-lib.aws_lambda.CfnFunction",
273
- "version": "2.118.0"
273
+ "version": "2.147.3"
274
274
  }
275
275
  }
276
276
  },
277
277
  "constructInfo": {
278
278
  "fqn": "aws-cdk-lib.aws_lambda.Function",
279
- "version": "2.118.0"
279
+ "version": "2.147.3"
280
280
  }
281
281
  },
282
282
  "aws-managed-key": {
@@ -284,7 +284,7 @@
284
284
  "path": "lamsns-deployFunctionWithVpc/test-lambda-sns/aws-managed-key",
285
285
  "constructInfo": {
286
286
  "fqn": "aws-cdk-lib.Resource",
287
- "version": "2.118.0"
287
+ "version": "2.147.3"
288
288
  }
289
289
  },
290
290
  "SnsTopic": {
@@ -321,7 +321,7 @@
321
321
  },
322
322
  "constructInfo": {
323
323
  "fqn": "aws-cdk-lib.aws_sns.CfnTopic",
324
- "version": "2.118.0"
324
+ "version": "2.147.3"
325
325
  }
326
326
  },
327
327
  "Policy": {
@@ -417,25 +417,25 @@
417
417
  },
418
418
  "constructInfo": {
419
419
  "fqn": "aws-cdk-lib.aws_sns.CfnTopicPolicy",
420
- "version": "2.118.0"
420
+ "version": "2.147.3"
421
421
  }
422
422
  }
423
423
  },
424
424
  "constructInfo": {
425
425
  "fqn": "aws-cdk-lib.aws_sns.TopicPolicy",
426
- "version": "2.118.0"
426
+ "version": "2.147.3"
427
427
  }
428
428
  }
429
429
  },
430
430
  "constructInfo": {
431
431
  "fqn": "aws-cdk-lib.aws_sns.Topic",
432
- "version": "2.118.0"
432
+ "version": "2.147.3"
433
433
  }
434
434
  }
435
435
  },
436
436
  "constructInfo": {
437
437
  "fqn": "@aws-solutions-constructs/aws-lambda-sns.LambdaToSns",
438
- "version": "2.51.0"
438
+ "version": "2.60.0"
439
439
  }
440
440
  },
441
441
  "Vpc": {
@@ -462,7 +462,7 @@
462
462
  },
463
463
  "constructInfo": {
464
464
  "fqn": "aws-cdk-lib.aws_ec2.CfnVPC",
465
- "version": "2.118.0"
465
+ "version": "2.147.3"
466
466
  }
467
467
  },
468
468
  "isolatedSubnet1": {
@@ -506,7 +506,7 @@
506
506
  },
507
507
  "constructInfo": {
508
508
  "fqn": "aws-cdk-lib.aws_ec2.CfnSubnet",
509
- "version": "2.118.0"
509
+ "version": "2.147.3"
510
510
  }
511
511
  },
512
512
  "Acl": {
@@ -514,7 +514,7 @@
514
514
  "path": "lamsns-deployFunctionWithVpc/Vpc/isolatedSubnet1/Acl",
515
515
  "constructInfo": {
516
516
  "fqn": "aws-cdk-lib.Resource",
517
- "version": "2.118.0"
517
+ "version": "2.147.3"
518
518
  }
519
519
  },
520
520
  "RouteTable": {
@@ -536,7 +536,7 @@
536
536
  },
537
537
  "constructInfo": {
538
538
  "fqn": "aws-cdk-lib.aws_ec2.CfnRouteTable",
539
- "version": "2.118.0"
539
+ "version": "2.147.3"
540
540
  }
541
541
  },
542
542
  "RouteTableAssociation": {
@@ -555,13 +555,13 @@
555
555
  },
556
556
  "constructInfo": {
557
557
  "fqn": "aws-cdk-lib.aws_ec2.CfnSubnetRouteTableAssociation",
558
- "version": "2.118.0"
558
+ "version": "2.147.3"
559
559
  }
560
560
  }
561
561
  },
562
562
  "constructInfo": {
563
563
  "fqn": "aws-cdk-lib.aws_ec2.PrivateSubnet",
564
- "version": "2.118.0"
564
+ "version": "2.147.3"
565
565
  }
566
566
  },
567
567
  "isolatedSubnet2": {
@@ -605,7 +605,7 @@
605
605
  },
606
606
  "constructInfo": {
607
607
  "fqn": "aws-cdk-lib.aws_ec2.CfnSubnet",
608
- "version": "2.118.0"
608
+ "version": "2.147.3"
609
609
  }
610
610
  },
611
611
  "Acl": {
@@ -613,7 +613,7 @@
613
613
  "path": "lamsns-deployFunctionWithVpc/Vpc/isolatedSubnet2/Acl",
614
614
  "constructInfo": {
615
615
  "fqn": "aws-cdk-lib.Resource",
616
- "version": "2.118.0"
616
+ "version": "2.147.3"
617
617
  }
618
618
  },
619
619
  "RouteTable": {
@@ -635,7 +635,7 @@
635
635
  },
636
636
  "constructInfo": {
637
637
  "fqn": "aws-cdk-lib.aws_ec2.CfnRouteTable",
638
- "version": "2.118.0"
638
+ "version": "2.147.3"
639
639
  }
640
640
  },
641
641
  "RouteTableAssociation": {
@@ -654,13 +654,13 @@
654
654
  },
655
655
  "constructInfo": {
656
656
  "fqn": "aws-cdk-lib.aws_ec2.CfnSubnetRouteTableAssociation",
657
- "version": "2.118.0"
657
+ "version": "2.147.3"
658
658
  }
659
659
  }
660
660
  },
661
661
  "constructInfo": {
662
662
  "fqn": "aws-cdk-lib.aws_ec2.PrivateSubnet",
663
- "version": "2.118.0"
663
+ "version": "2.147.3"
664
664
  }
665
665
  },
666
666
  "RestrictDefaultSecurityGroupCustomResource": {
@@ -672,13 +672,13 @@
672
672
  "path": "lamsns-deployFunctionWithVpc/Vpc/RestrictDefaultSecurityGroupCustomResource/Default",
673
673
  "constructInfo": {
674
674
  "fqn": "aws-cdk-lib.CfnResource",
675
- "version": "2.118.0"
675
+ "version": "2.147.3"
676
676
  }
677
677
  }
678
678
  },
679
679
  "constructInfo": {
680
680
  "fqn": "aws-cdk-lib.CustomResource",
681
- "version": "2.118.0"
681
+ "version": "2.147.3"
682
682
  }
683
683
  },
684
684
  "FlowLog": {
@@ -694,7 +694,7 @@
694
694
  "path": "lamsns-deployFunctionWithVpc/Vpc/FlowLog/IAMRole/ImportIAMRole",
695
695
  "constructInfo": {
696
696
  "fqn": "aws-cdk-lib.Resource",
697
- "version": "2.118.0"
697
+ "version": "2.147.3"
698
698
  }
699
699
  },
700
700
  "Resource": {
@@ -725,7 +725,7 @@
725
725
  },
726
726
  "constructInfo": {
727
727
  "fqn": "aws-cdk-lib.aws_iam.CfnRole",
728
- "version": "2.118.0"
728
+ "version": "2.147.3"
729
729
  }
730
730
  },
731
731
  "DefaultPolicy": {
@@ -777,19 +777,19 @@
777
777
  },
778
778
  "constructInfo": {
779
779
  "fqn": "aws-cdk-lib.aws_iam.CfnPolicy",
780
- "version": "2.118.0"
780
+ "version": "2.147.3"
781
781
  }
782
782
  }
783
783
  },
784
784
  "constructInfo": {
785
785
  "fqn": "aws-cdk-lib.aws_iam.Policy",
786
- "version": "2.118.0"
786
+ "version": "2.147.3"
787
787
  }
788
788
  }
789
789
  },
790
790
  "constructInfo": {
791
791
  "fqn": "aws-cdk-lib.aws_iam.Role",
792
- "version": "2.118.0"
792
+ "version": "2.147.3"
793
793
  }
794
794
  },
795
795
  "LogGroup": {
@@ -813,13 +813,13 @@
813
813
  },
814
814
  "constructInfo": {
815
815
  "fqn": "aws-cdk-lib.aws_logs.CfnLogGroup",
816
- "version": "2.118.0"
816
+ "version": "2.147.3"
817
817
  }
818
818
  }
819
819
  },
820
820
  "constructInfo": {
821
821
  "fqn": "aws-cdk-lib.aws_logs.LogGroup",
822
- "version": "2.118.0"
822
+ "version": "2.147.3"
823
823
  }
824
824
  },
825
825
  "FlowLog": {
@@ -853,13 +853,13 @@
853
853
  },
854
854
  "constructInfo": {
855
855
  "fqn": "aws-cdk-lib.aws_ec2.CfnFlowLog",
856
- "version": "2.118.0"
856
+ "version": "2.147.3"
857
857
  }
858
858
  }
859
859
  },
860
860
  "constructInfo": {
861
861
  "fqn": "aws-cdk-lib.aws_ec2.FlowLog",
862
- "version": "2.118.0"
862
+ "version": "2.147.3"
863
863
  }
864
864
  },
865
865
  "SNS": {
@@ -909,19 +909,27 @@
909
909
  },
910
910
  "constructInfo": {
911
911
  "fqn": "aws-cdk-lib.aws_ec2.CfnVPCEndpoint",
912
- "version": "2.118.0"
912
+ "version": "2.147.3"
913
913
  }
914
914
  }
915
915
  },
916
916
  "constructInfo": {
917
917
  "fqn": "aws-cdk-lib.aws_ec2.InterfaceVpcEndpoint",
918
- "version": "2.118.0"
918
+ "version": "2.147.3"
919
919
  }
920
920
  }
921
921
  },
922
922
  "constructInfo": {
923
923
  "fqn": "aws-cdk-lib.aws_ec2.Vpc",
924
- "version": "2.118.0"
924
+ "version": "2.147.3"
925
+ }
926
+ },
927
+ "LatestNodeRuntimeMap": {
928
+ "id": "LatestNodeRuntimeMap",
929
+ "path": "lamsns-deployFunctionWithVpc/LatestNodeRuntimeMap",
930
+ "constructInfo": {
931
+ "fqn": "aws-cdk-lib.CfnMapping",
932
+ "version": "2.147.3"
925
933
  }
926
934
  },
927
935
  "Custom::VpcRestrictDefaultSGCustomResourceProvider": {
@@ -933,7 +941,7 @@
933
941
  "path": "lamsns-deployFunctionWithVpc/Custom::VpcRestrictDefaultSGCustomResourceProvider/Staging",
934
942
  "constructInfo": {
935
943
  "fqn": "aws-cdk-lib.AssetStaging",
936
- "version": "2.118.0"
944
+ "version": "2.147.3"
937
945
  }
938
946
  },
939
947
  "Role": {
@@ -941,7 +949,7 @@
941
949
  "path": "lamsns-deployFunctionWithVpc/Custom::VpcRestrictDefaultSGCustomResourceProvider/Role",
942
950
  "constructInfo": {
943
951
  "fqn": "aws-cdk-lib.CfnResource",
944
- "version": "2.118.0"
952
+ "version": "2.147.3"
945
953
  }
946
954
  },
947
955
  "Handler": {
@@ -949,13 +957,13 @@
949
957
  "path": "lamsns-deployFunctionWithVpc/Custom::VpcRestrictDefaultSGCustomResourceProvider/Handler",
950
958
  "constructInfo": {
951
959
  "fqn": "aws-cdk-lib.CfnResource",
952
- "version": "2.118.0"
960
+ "version": "2.147.3"
953
961
  }
954
962
  }
955
963
  },
956
964
  "constructInfo": {
957
965
  "fqn": "aws-cdk-lib.CustomResourceProviderBase",
958
- "version": "2.118.0"
966
+ "version": "2.147.3"
959
967
  }
960
968
  },
961
969
  "lamsns-deployFunctionWithVpc-SNS-security-group": {
@@ -1011,13 +1019,13 @@
1011
1019
  },
1012
1020
  "constructInfo": {
1013
1021
  "fqn": "aws-cdk-lib.aws_ec2.CfnSecurityGroup",
1014
- "version": "2.118.0"
1022
+ "version": "2.147.3"
1015
1023
  }
1016
1024
  }
1017
1025
  },
1018
1026
  "constructInfo": {
1019
1027
  "fqn": "aws-cdk-lib.aws_ec2.SecurityGroup",
1020
- "version": "2.118.0"
1028
+ "version": "2.147.3"
1021
1029
  }
1022
1030
  },
1023
1031
  "Integ": {
@@ -1045,7 +1053,7 @@
1045
1053
  "path": "lamsns-deployFunctionWithVpc/Integ/DefaultTest/DeployAssert/BootstrapVersion",
1046
1054
  "constructInfo": {
1047
1055
  "fqn": "aws-cdk-lib.CfnParameter",
1048
- "version": "2.118.0"
1056
+ "version": "2.147.3"
1049
1057
  }
1050
1058
  },
1051
1059
  "CheckBootstrapVersion": {
@@ -1053,25 +1061,25 @@
1053
1061
  "path": "lamsns-deployFunctionWithVpc/Integ/DefaultTest/DeployAssert/CheckBootstrapVersion",
1054
1062
  "constructInfo": {
1055
1063
  "fqn": "aws-cdk-lib.CfnRule",
1056
- "version": "2.118.0"
1064
+ "version": "2.147.3"
1057
1065
  }
1058
1066
  }
1059
1067
  },
1060
1068
  "constructInfo": {
1061
1069
  "fqn": "aws-cdk-lib.Stack",
1062
- "version": "2.118.0"
1070
+ "version": "2.147.3"
1063
1071
  }
1064
1072
  }
1065
1073
  },
1066
1074
  "constructInfo": {
1067
1075
  "fqn": "@aws-cdk/integ-tests-alpha.IntegTestCase",
1068
- "version": "2.118.0-alpha.0"
1076
+ "version": "2.147.3-alpha.0"
1069
1077
  }
1070
1078
  }
1071
1079
  },
1072
1080
  "constructInfo": {
1073
1081
  "fqn": "@aws-cdk/integ-tests-alpha.IntegTest",
1074
- "version": "2.118.0-alpha.0"
1082
+ "version": "2.147.3-alpha.0"
1075
1083
  }
1076
1084
  },
1077
1085
  "BootstrapVersion": {
@@ -1079,7 +1087,7 @@
1079
1087
  "path": "lamsns-deployFunctionWithVpc/BootstrapVersion",
1080
1088
  "constructInfo": {
1081
1089
  "fqn": "aws-cdk-lib.CfnParameter",
1082
- "version": "2.118.0"
1090
+ "version": "2.147.3"
1083
1091
  }
1084
1092
  },
1085
1093
  "CheckBootstrapVersion": {
@@ -1087,13 +1095,13 @@
1087
1095
  "path": "lamsns-deployFunctionWithVpc/CheckBootstrapVersion",
1088
1096
  "constructInfo": {
1089
1097
  "fqn": "aws-cdk-lib.CfnRule",
1090
- "version": "2.118.0"
1098
+ "version": "2.147.3"
1091
1099
  }
1092
1100
  }
1093
1101
  },
1094
1102
  "constructInfo": {
1095
1103
  "fqn": "aws-cdk-lib.Stack",
1096
- "version": "2.118.0"
1104
+ "version": "2.147.3"
1097
1105
  }
1098
1106
  },
1099
1107
  "Tree": {
@@ -1107,7 +1115,7 @@
1107
1115
  },
1108
1116
  "constructInfo": {
1109
1117
  "fqn": "aws-cdk-lib.App",
1110
- "version": "2.118.0"
1118
+ "version": "2.147.3"
1111
1119
  }
1112
1120
  }
1113
1121
  }