@btc-embedded/cdk-extensions 0.14.11 → 0.14.13

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 (55) hide show
  1. package/.jsii +317 -39
  2. package/API.md +406 -10
  3. package/CHANGELOG.md +19 -0
  4. package/README.md +32 -1
  5. package/lib/constructs/EventPipe.js +1 -1
  6. package/lib/constructs/S3Bucket.js +1 -1
  7. package/lib/constructs/SecureRestApi.js +1 -1
  8. package/lib/constructs/SecureRestApiV2.js +1 -1
  9. package/lib/extensions/ApiGatewayExtension.js +1 -1
  10. package/lib/extensions/ApplicationLoadBalancerExtension.d.ts +3 -1
  11. package/lib/extensions/ApplicationLoadBalancerExtension.js +15 -11
  12. package/lib/extensions/ApplicationLoadBalancerExtensionV2.d.ts +1 -1
  13. package/lib/extensions/ApplicationLoadBalancerExtensionV2.js +6 -7
  14. package/lib/extensions/CloudMapExtension.js +1 -1
  15. package/lib/extensions/DeactivatableServiceExtension.js +1 -1
  16. package/lib/extensions/DocumentDbAccessExtension.d.ts +1 -1
  17. package/lib/extensions/DocumentDbAccessExtension.js +4 -5
  18. package/lib/extensions/DomainEventMessagingExtension.js +4 -4
  19. package/lib/extensions/EfsMountExtension.d.ts +52 -0
  20. package/lib/extensions/EfsMountExtension.js +83 -0
  21. package/lib/extensions/ExtraContainerExtension.js +1 -1
  22. package/lib/extensions/HTTPApiExtension.js +1 -1
  23. package/lib/extensions/LogExtension.d.ts +1 -1
  24. package/lib/extensions/LogExtension.js +4 -5
  25. package/lib/extensions/ModifyContainerDefinitionExtension.js +1 -1
  26. package/lib/extensions/ModifyTaskDefinitionExtension.js +1 -1
  27. package/lib/extensions/OpenTelemetryExtension.js +1 -1
  28. package/lib/extensions/PostgresDbAccessExtension.d.ts +1 -1
  29. package/lib/extensions/PostgresDbAccessExtension.js +7 -8
  30. package/lib/extensions/SharedVolumeExtension.js +1 -1
  31. package/lib/extensions/TcpKeepAliveExtension.js +1 -1
  32. package/lib/extensions/index.d.ts +2 -1
  33. package/lib/extensions/index.js +3 -2
  34. package/lib/platform/ApiGateway.js +1 -1
  35. package/lib/platform/ApiGatewayV2.js +2 -2
  36. package/lib/platform/ApplicationLoadBalancer.d.ts +2 -1
  37. package/lib/platform/ApplicationLoadBalancer.js +4 -4
  38. package/lib/platform/ApplicationLoadBalancerV2.js +2 -2
  39. package/lib/platform/BTCLogGroup.js +1 -1
  40. package/lib/platform/CognitoUserPool.js +2 -2
  41. package/lib/platform/DefaultUserPoolClients.js +1 -1
  42. package/lib/platform/DocumentDB.js +2 -2
  43. package/lib/platform/PrivateDnsNamespace.js +1 -1
  44. package/lib/platform/ResourceServer.js +1 -1
  45. package/lib/platform/Vpc.js +1 -1
  46. package/lib/utils/StackParameter.js +1 -1
  47. package/package.json +2 -2
  48. package/.backstage/catalog-info.yaml +0 -19
  49. package/.gitlab-ci.yml +0 -65
  50. package/docs/RFC001-api-gateway.md +0 -77
  51. package/docs/RFC002-developer-stacks.md +0 -268
  52. package/docs/RFC003-referencing-platform-components.md +0 -125
  53. package/docs/adrs/0001-use-adrs.md +0 -36
  54. package/docs/index.md +0 -20
  55. package/mkdocs.yml +0 -8
package/.jsii CHANGED
@@ -5,7 +5,7 @@
5
5
  "roles": [
6
6
  "author"
7
7
  ],
8
- "url": "https://btc-embedded.com"
8
+ "url": "https://www.btc-embedded.com"
9
9
  },
10
10
  "bundled": {
11
11
  "yaml": "^2.8.1"
@@ -3931,7 +3931,7 @@
3931
3931
  },
3932
3932
  "name": "@btc-embedded/cdk-extensions",
3933
3933
  "readme": {
3934
- "markdown": "# replace this"
3934
+ "markdown": "# @btc-embedded/cdk-extensions\n\nA collection of reusable AWS CDK (Cloud Development Kit) extensions and constructs for building cloud infrastructure with TypeScript.\n\n## Features\n\n- **CDK Constructs**: Includes ready-to-use constructs for API Gateway, Application Load Balancer, Cognito, VPC, DocumentDB, and more.\n- **ECS Service Extensions**: Provides ECS service extensions for advanced container orchestration.\n- **Utilities**: Common utilities and helpers for stack parameters, value imports, and configuration parsing.\n- **Modular Extensions**: Easily extend AWS resources with features like logging, OpenTelemetry, EFS, Cloud Map, and custom containers.\n\n## Installation\n\n```sh\nyarn install @btc-embedded/cdk-extensions\n```\n\n## Usage Example\n\n```typescript\nimport { ApiGateway } from \"@btc-embedded/cdk-extensions\";\n\n// Use constructs and extensions in your CDK app\n```\n\n## Documentation\n\n- [API Reference](./API.md)\n\n## License\n\nApache-2.0 © BTC Embedded Systems AG\n"
3935
3935
  },
3936
3936
  "repository": {
3937
3937
  "type": "git",
@@ -4617,7 +4617,7 @@
4617
4617
  },
4618
4618
  "locationInModule": {
4619
4619
  "filename": "src/platform/ApplicationLoadBalancer.ts",
4620
- "line": 42
4620
+ "line": 44
4621
4621
  },
4622
4622
  "parameters": [
4623
4623
  {
@@ -4643,7 +4643,7 @@
4643
4643
  "kind": "class",
4644
4644
  "locationInModule": {
4645
4645
  "filename": "src/platform/ApplicationLoadBalancer.ts",
4646
- "line": 35
4646
+ "line": 36
4647
4647
  },
4648
4648
  "name": "ApplicationLoadBalancer",
4649
4649
  "properties": [
@@ -4654,7 +4654,21 @@
4654
4654
  "immutable": true,
4655
4655
  "locationInModule": {
4656
4656
  "filename": "src/platform/ApplicationLoadBalancer.ts",
4657
- "line": 36
4657
+ "line": 38
4658
+ },
4659
+ "name": "listener",
4660
+ "type": {
4661
+ "fqn": "aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationListener"
4662
+ }
4663
+ },
4664
+ {
4665
+ "docs": {
4666
+ "stability": "deprecated"
4667
+ },
4668
+ "immutable": true,
4669
+ "locationInModule": {
4670
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4671
+ "line": 37
4658
4672
  },
4659
4673
  "name": "loadbalancer",
4660
4674
  "type": {
@@ -4668,7 +4682,7 @@
4668
4682
  "immutable": true,
4669
4683
  "locationInModule": {
4670
4684
  "filename": "src/platform/ApplicationLoadBalancer.ts",
4671
- "line": 38
4685
+ "line": 40
4672
4686
  },
4673
4687
  "name": "loadBalancer",
4674
4688
  "type": {
@@ -4692,7 +4706,7 @@
4692
4706
  },
4693
4707
  "locationInModule": {
4694
4708
  "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4695
- "line": 89
4709
+ "line": 90
4696
4710
  },
4697
4711
  "parameters": [
4698
4712
  {
@@ -4706,7 +4720,7 @@
4706
4720
  "kind": "class",
4707
4721
  "locationInModule": {
4708
4722
  "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4709
- "line": 79
4723
+ "line": 80
4710
4724
  },
4711
4725
  "methods": [
4712
4726
  {
@@ -4716,7 +4730,7 @@
4716
4730
  },
4717
4731
  "locationInModule": {
4718
4732
  "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4719
- "line": 95
4733
+ "line": 96
4720
4734
  },
4721
4735
  "name": "addHooks",
4722
4736
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
@@ -4728,7 +4742,7 @@
4728
4742
  },
4729
4743
  "locationInModule": {
4730
4744
  "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4731
- "line": 164
4745
+ "line": 168
4732
4746
  },
4733
4747
  "name": "modifyServiceProps",
4734
4748
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -4753,7 +4767,7 @@
4753
4767
  },
4754
4768
  "locationInModule": {
4755
4769
  "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4756
- "line": 117
4770
+ "line": 118
4757
4771
  },
4758
4772
  "name": "prehook",
4759
4773
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -4765,7 +4779,7 @@
4765
4779
  }
4766
4780
  },
4767
4781
  {
4768
- "name": "scope",
4782
+ "name": "_scope",
4769
4783
  "type": {
4770
4784
  "fqn": "constructs.Construct"
4771
4785
  }
@@ -4780,7 +4794,7 @@
4780
4794
  },
4781
4795
  "locationInModule": {
4782
4796
  "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4783
- "line": 171
4797
+ "line": 175
4784
4798
  },
4785
4799
  "name": "useService",
4786
4800
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -4812,7 +4826,7 @@
4812
4826
  "immutable": true,
4813
4827
  "locationInModule": {
4814
4828
  "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4815
- "line": 87
4829
+ "line": 88
4816
4830
  },
4817
4831
  "name": "fqdn",
4818
4832
  "type": {
@@ -4825,7 +4839,7 @@
4825
4839
  },
4826
4840
  "locationInModule": {
4827
4841
  "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4828
- "line": 83
4842
+ "line": 84
4829
4843
  },
4830
4844
  "name": "userPool",
4831
4845
  "type": {
@@ -4838,7 +4852,7 @@
4838
4852
  },
4839
4853
  "locationInModule": {
4840
4854
  "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4841
- "line": 84
4855
+ "line": 85
4842
4856
  },
4843
4857
  "name": "userPoolClient",
4844
4858
  "type": {
@@ -4851,7 +4865,7 @@
4851
4865
  },
4852
4866
  "locationInModule": {
4853
4867
  "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4854
- "line": 85
4868
+ "line": 86
4855
4869
  },
4856
4870
  "name": "userPoolDomain",
4857
4871
  "type": {
@@ -4951,6 +4965,22 @@
4951
4965
  "primitive": "string"
4952
4966
  }
4953
4967
  },
4968
+ {
4969
+ "abstract": true,
4970
+ "docs": {
4971
+ "stability": "experimental"
4972
+ },
4973
+ "immutable": true,
4974
+ "locationInModule": {
4975
+ "filename": "src/extensions/ApplicationLoadBalancerExtension.ts",
4976
+ "line": 43
4977
+ },
4978
+ "name": "listener",
4979
+ "optional": true,
4980
+ "type": {
4981
+ "fqn": "aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationListener"
4982
+ }
4983
+ },
4954
4984
  {
4955
4985
  "abstract": true,
4956
4986
  "docs": {
@@ -5113,7 +5143,7 @@
5113
5143
  },
5114
5144
  "locationInModule": {
5115
5145
  "filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
5116
- "line": 114
5146
+ "line": 113
5117
5147
  },
5118
5148
  "name": "modifyServiceProps",
5119
5149
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -5150,7 +5180,7 @@
5150
5180
  }
5151
5181
  },
5152
5182
  {
5153
- "name": "scope",
5183
+ "name": "_scope",
5154
5184
  "type": {
5155
5185
  "fqn": "constructs.Construct"
5156
5186
  }
@@ -5165,7 +5195,7 @@
5165
5195
  },
5166
5196
  "locationInModule": {
5167
5197
  "filename": "src/extensions/ApplicationLoadBalancerExtensionV2.ts",
5168
- "line": 121
5198
+ "line": 120
5169
5199
  },
5170
5200
  "name": "useService",
5171
5201
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -5242,7 +5272,7 @@
5242
5272
  "kind": "interface",
5243
5273
  "locationInModule": {
5244
5274
  "filename": "src/platform/ApplicationLoadBalancer.ts",
5245
- "line": 24
5275
+ "line": 25
5246
5276
  },
5247
5277
  "name": "ApplicationLoadBalancerProps",
5248
5278
  "properties": [
@@ -5254,7 +5284,7 @@
5254
5284
  "immutable": true,
5255
5285
  "locationInModule": {
5256
5286
  "filename": "src/platform/ApplicationLoadBalancer.ts",
5257
- "line": 25
5287
+ "line": 26
5258
5288
  },
5259
5289
  "name": "fqdn",
5260
5290
  "type": {
@@ -5269,7 +5299,7 @@
5269
5299
  "immutable": true,
5270
5300
  "locationInModule": {
5271
5301
  "filename": "src/platform/ApplicationLoadBalancer.ts",
5272
- "line": 30
5302
+ "line": 31
5273
5303
  },
5274
5304
  "name": "hostedZone",
5275
5305
  "type": {
@@ -5284,7 +5314,7 @@
5284
5314
  "immutable": true,
5285
5315
  "locationInModule": {
5286
5316
  "filename": "src/platform/ApplicationLoadBalancer.ts",
5287
- "line": 27
5317
+ "line": 28
5288
5318
  },
5289
5319
  "name": "userPool",
5290
5320
  "type": {
@@ -5299,7 +5329,7 @@
5299
5329
  "immutable": true,
5300
5330
  "locationInModule": {
5301
5331
  "filename": "src/platform/ApplicationLoadBalancer.ts",
5302
- "line": 28
5332
+ "line": 29
5303
5333
  },
5304
5334
  "name": "userPoolClient",
5305
5335
  "type": {
@@ -5314,7 +5344,7 @@
5314
5344
  "immutable": true,
5315
5345
  "locationInModule": {
5316
5346
  "filename": "src/platform/ApplicationLoadBalancer.ts",
5317
- "line": 29
5347
+ "line": 30
5318
5348
  },
5319
5349
  "name": "userPoolDomain",
5320
5350
  "type": {
@@ -5329,7 +5359,7 @@
5329
5359
  "immutable": true,
5330
5360
  "locationInModule": {
5331
5361
  "filename": "src/platform/ApplicationLoadBalancer.ts",
5332
- "line": 26
5362
+ "line": 27
5333
5363
  },
5334
5364
  "name": "vpc",
5335
5365
  "type": {
@@ -7337,7 +7367,7 @@
7337
7367
  },
7338
7368
  "locationInModule": {
7339
7369
  "filename": "src/extensions/DocumentDbAccessExtension.ts",
7340
- "line": 60
7370
+ "line": 59
7341
7371
  },
7342
7372
  "name": "addHooks",
7343
7373
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
@@ -7361,7 +7391,7 @@
7361
7391
  }
7362
7392
  },
7363
7393
  {
7364
- "name": "scope",
7394
+ "name": "_scope",
7365
7395
  "type": {
7366
7396
  "fqn": "constructs.Construct"
7367
7397
  }
@@ -7376,7 +7406,7 @@
7376
7406
  },
7377
7407
  "locationInModule": {
7378
7408
  "filename": "src/extensions/DocumentDbAccessExtension.ts",
7379
- "line": 68
7409
+ "line": 67
7380
7410
  },
7381
7411
  "name": "useService",
7382
7412
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -7730,6 +7760,254 @@
7730
7760
  ],
7731
7761
  "symbolId": "src/extensions/DomainEventMessagingExtension:DomainEventMessagingExtension"
7732
7762
  },
7763
+ "@btc-embedded/cdk-extensions.EfsAccessMode": {
7764
+ "assembly": "@btc-embedded/cdk-extensions",
7765
+ "docs": {
7766
+ "stability": "experimental",
7767
+ "summary": "Access modes for the Efs."
7768
+ },
7769
+ "fqn": "@btc-embedded/cdk-extensions.EfsAccessMode",
7770
+ "kind": "enum",
7771
+ "locationInModule": {
7772
+ "filename": "src/extensions/EfsMountExtension.ts",
7773
+ "line": 13
7774
+ },
7775
+ "members": [
7776
+ {
7777
+ "docs": {
7778
+ "stability": "experimental",
7779
+ "summary": "Access is read-only."
7780
+ },
7781
+ "name": "READ_ONLY"
7782
+ },
7783
+ {
7784
+ "docs": {
7785
+ "stability": "experimental",
7786
+ "summary": "Read-write access."
7787
+ },
7788
+ "name": "READ_WRITE"
7789
+ },
7790
+ {
7791
+ "docs": {
7792
+ "stability": "experimental",
7793
+ "summary": "Root access is granted (includes read-write access)."
7794
+ },
7795
+ "name": "ROOT_ACCESS"
7796
+ }
7797
+ ],
7798
+ "name": "EfsAccessMode",
7799
+ "symbolId": "src/extensions/EfsMountExtension:EfsAccessMode"
7800
+ },
7801
+ "@btc-embedded/cdk-extensions.EfsMountExtension": {
7802
+ "assembly": "@btc-embedded/cdk-extensions",
7803
+ "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
7804
+ "docs": {
7805
+ "remarks": "Multiple extensions instances can be used, when different mount points are specified.",
7806
+ "stability": "experimental",
7807
+ "summary": "Extension that allows to mount an EFS to a given mount point."
7808
+ },
7809
+ "fqn": "@btc-embedded/cdk-extensions.EfsMountExtension",
7810
+ "initializer": {
7811
+ "docs": {
7812
+ "stability": "experimental"
7813
+ },
7814
+ "locationInModule": {
7815
+ "filename": "src/extensions/EfsMountExtension.ts",
7816
+ "line": 58
7817
+ },
7818
+ "parameters": [
7819
+ {
7820
+ "name": "props",
7821
+ "type": {
7822
+ "fqn": "@btc-embedded/cdk-extensions.EfsMountExtensionProperties"
7823
+ }
7824
+ }
7825
+ ]
7826
+ },
7827
+ "kind": "class",
7828
+ "locationInModule": {
7829
+ "filename": "src/extensions/EfsMountExtension.ts",
7830
+ "line": 52
7831
+ },
7832
+ "methods": [
7833
+ {
7834
+ "docs": {
7835
+ "remarks": "It is generally used to\ncreate any final resources which might depend on the service itself.",
7836
+ "stability": "experimental",
7837
+ "summary": "When this hook is implemented by extension, it allows the extension to use the service which has been created."
7838
+ },
7839
+ "locationInModule": {
7840
+ "filename": "src/extensions/EfsMountExtension.ts",
7841
+ "line": 98
7842
+ },
7843
+ "name": "useService",
7844
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
7845
+ "parameters": [
7846
+ {
7847
+ "name": "service",
7848
+ "type": {
7849
+ "union": {
7850
+ "types": [
7851
+ {
7852
+ "fqn": "aws-cdk-lib.aws_ecs.Ec2Service"
7853
+ },
7854
+ {
7855
+ "fqn": "aws-cdk-lib.aws_ecs.FargateService"
7856
+ }
7857
+ ]
7858
+ }
7859
+ }
7860
+ }
7861
+ ]
7862
+ },
7863
+ {
7864
+ "docs": {
7865
+ "stability": "experimental",
7866
+ "summary": "Once the task definition is created, this hook is called for each extension to give it a chance to add containers to the task definition, change the task definition's role to add permissions, etc."
7867
+ },
7868
+ "locationInModule": {
7869
+ "filename": "src/extensions/EfsMountExtension.ts",
7870
+ "line": 67
7871
+ },
7872
+ "name": "useTaskDefinition",
7873
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
7874
+ "parameters": [
7875
+ {
7876
+ "name": "taskDefinition",
7877
+ "type": {
7878
+ "fqn": "aws-cdk-lib.aws_ecs.TaskDefinition"
7879
+ }
7880
+ }
7881
+ ]
7882
+ }
7883
+ ],
7884
+ "name": "EfsMountExtension",
7885
+ "properties": [
7886
+ {
7887
+ "docs": {
7888
+ "stability": "experimental"
7889
+ },
7890
+ "immutable": true,
7891
+ "locationInModule": {
7892
+ "filename": "src/extensions/EfsMountExtension.ts",
7893
+ "line": 55
7894
+ },
7895
+ "name": "accessMode",
7896
+ "type": {
7897
+ "fqn": "@btc-embedded/cdk-extensions.EfsAccessMode"
7898
+ }
7899
+ },
7900
+ {
7901
+ "docs": {
7902
+ "stability": "experimental"
7903
+ },
7904
+ "immutable": true,
7905
+ "locationInModule": {
7906
+ "filename": "src/extensions/EfsMountExtension.ts",
7907
+ "line": 53
7908
+ },
7909
+ "name": "filesystem",
7910
+ "type": {
7911
+ "fqn": "aws-cdk-lib.aws_efs.IFileSystem"
7912
+ }
7913
+ },
7914
+ {
7915
+ "docs": {
7916
+ "stability": "experimental"
7917
+ },
7918
+ "immutable": true,
7919
+ "locationInModule": {
7920
+ "filename": "src/extensions/EfsMountExtension.ts",
7921
+ "line": 54
7922
+ },
7923
+ "name": "path",
7924
+ "type": {
7925
+ "primitive": "string"
7926
+ }
7927
+ },
7928
+ {
7929
+ "docs": {
7930
+ "stability": "experimental"
7931
+ },
7932
+ "immutable": true,
7933
+ "locationInModule": {
7934
+ "filename": "src/extensions/EfsMountExtension.ts",
7935
+ "line": 56
7936
+ },
7937
+ "name": "volumeName",
7938
+ "type": {
7939
+ "primitive": "string"
7940
+ }
7941
+ }
7942
+ ],
7943
+ "symbolId": "src/extensions/EfsMountExtension:EfsMountExtension"
7944
+ },
7945
+ "@btc-embedded/cdk-extensions.EfsMountExtensionProperties": {
7946
+ "assembly": "@btc-embedded/cdk-extensions",
7947
+ "datatype": true,
7948
+ "docs": {
7949
+ "stability": "experimental",
7950
+ "summary": "EFS extension properties."
7951
+ },
7952
+ "fqn": "@btc-embedded/cdk-extensions.EfsMountExtensionProperties",
7953
+ "kind": "interface",
7954
+ "locationInModule": {
7955
+ "filename": "src/extensions/EfsMountExtension.ts",
7956
+ "line": 31
7957
+ },
7958
+ "name": "EfsMountExtensionProperties",
7959
+ "properties": [
7960
+ {
7961
+ "abstract": true,
7962
+ "docs": {
7963
+ "stability": "experimental",
7964
+ "summary": "The access mode for the filesystem for this service."
7965
+ },
7966
+ "immutable": true,
7967
+ "locationInModule": {
7968
+ "filename": "src/extensions/EfsMountExtension.ts",
7969
+ "line": 40
7970
+ },
7971
+ "name": "accessMode",
7972
+ "type": {
7973
+ "fqn": "@btc-embedded/cdk-extensions.EfsAccessMode"
7974
+ }
7975
+ },
7976
+ {
7977
+ "abstract": true,
7978
+ "docs": {
7979
+ "stability": "experimental",
7980
+ "summary": "The filesystem to be mounted."
7981
+ },
7982
+ "immutable": true,
7983
+ "locationInModule": {
7984
+ "filename": "src/extensions/EfsMountExtension.ts",
7985
+ "line": 45
7986
+ },
7987
+ "name": "filesystem",
7988
+ "type": {
7989
+ "fqn": "aws-cdk-lib.aws_efs.IFileSystem"
7990
+ }
7991
+ },
7992
+ {
7993
+ "abstract": true,
7994
+ "docs": {
7995
+ "stability": "experimental",
7996
+ "summary": "The path to mount the EFS to."
7997
+ },
7998
+ "immutable": true,
7999
+ "locationInModule": {
8000
+ "filename": "src/extensions/EfsMountExtension.ts",
8001
+ "line": 35
8002
+ },
8003
+ "name": "path",
8004
+ "type": {
8005
+ "primitive": "string"
8006
+ }
8007
+ }
8008
+ ],
8009
+ "symbolId": "src/extensions/EfsMountExtension:EfsMountExtensionProperties"
8010
+ },
7733
8011
  "@btc-embedded/cdk-extensions.EnvironmentVariableNames": {
7734
8012
  "assembly": "@btc-embedded/cdk-extensions",
7735
8013
  "datatype": true,
@@ -9007,7 +9285,7 @@
9007
9285
  },
9008
9286
  "locationInModule": {
9009
9287
  "filename": "src/extensions/LogExtension.ts",
9010
- "line": 61
9288
+ "line": 60
9011
9289
  },
9012
9290
  "name": "addHooks",
9013
9291
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
@@ -9031,7 +9309,7 @@
9031
9309
  }
9032
9310
  },
9033
9311
  {
9034
- "name": "scope",
9312
+ "name": "_scope",
9035
9313
  "type": {
9036
9314
  "fqn": "constructs.Construct"
9037
9315
  }
@@ -9440,7 +9718,7 @@
9440
9718
  },
9441
9719
  "locationInModule": {
9442
9720
  "filename": "src/extensions/PostgresDbAccessExtension.ts",
9443
- "line": 234
9721
+ "line": 229
9444
9722
  },
9445
9723
  "name": "addHooks",
9446
9724
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
@@ -9452,7 +9730,7 @@
9452
9730
  },
9453
9731
  "locationInModule": {
9454
9732
  "filename": "src/extensions/PostgresDbAccessExtension.ts",
9455
- "line": 305
9733
+ "line": 300
9456
9734
  },
9457
9735
  "name": "modifyServiceProps",
9458
9736
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -9489,7 +9767,7 @@
9489
9767
  }
9490
9768
  },
9491
9769
  {
9492
- "name": "scope",
9770
+ "name": "_scope",
9493
9771
  "type": {
9494
9772
  "fqn": "constructs.Construct"
9495
9773
  }
@@ -9504,7 +9782,7 @@
9504
9782
  },
9505
9783
  "locationInModule": {
9506
9784
  "filename": "src/extensions/PostgresDbAccessExtension.ts",
9507
- "line": 250
9785
+ "line": 245
9508
9786
  },
9509
9787
  "name": "useService",
9510
9788
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -9533,7 +9811,7 @@
9533
9811
  },
9534
9812
  "locationInModule": {
9535
9813
  "filename": "src/extensions/PostgresDbAccessExtension.ts",
9536
- "line": 258
9814
+ "line": 253
9537
9815
  },
9538
9816
  "name": "useTaskDefinition",
9539
9817
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -11527,6 +11805,6 @@
11527
11805
  "symbolId": "src/platform/Vpc:VpcProps"
11528
11806
  }
11529
11807
  },
11530
- "version": "0.14.11",
11531
- "fingerprint": "HT/Kb76hlPsheq1FEShs7TCAYq0xXBDilBS88VnjyAs="
11808
+ "version": "0.14.13",
11809
+ "fingerprint": "cl6L1GAACqmSQ1xeKtJzyKWwaEuVZyl5dmlzmRvpVq4="
11532
11810
  }