@btc-embedded/cdk-extensions 0.2.0 → 0.4.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 (1102) hide show
  1. package/.jsii +1786 -406
  2. package/API.md +2758 -957
  3. package/CHANGELOG.md +23 -0
  4. package/lib/extensions/ApiGatewayExtension.d.ts +16 -0
  5. package/lib/extensions/ApiGatewayExtension.js +10 -7
  6. package/lib/extensions/ApplicationLoadBalancerExtension.js +4 -4
  7. package/lib/extensions/CloudMapExtension.d.ts +1 -0
  8. package/lib/extensions/CloudMapExtension.js +6 -8
  9. package/lib/extensions/DocumentDbAccessExtension.js +5 -6
  10. package/lib/extensions/DomainEventMessagingExtension.js +1 -1
  11. package/lib/extensions/ExtraContainerExtension.js +1 -1
  12. package/lib/extensions/LogExtension.js +4 -6
  13. package/lib/extensions/PostgresDbAccessExtension.d.ts +22 -0
  14. package/lib/extensions/PostgresDbAccessExtension.js +52 -0
  15. package/lib/extensions/SharedVolumeExtension.d.ts +30 -0
  16. package/lib/extensions/SharedVolumeExtension.js +36 -0
  17. package/lib/extensions/TcpKeepAliveExtension.js +5 -7
  18. package/lib/extensions/index.d.ts +3 -1
  19. package/lib/extensions/index.js +4 -2
  20. package/lib/index.d.ts +1 -0
  21. package/lib/index.js +2 -1
  22. package/lib/platform/ApiGateway.d.ts +58 -0
  23. package/lib/platform/ApiGateway.js +115 -0
  24. package/lib/platform/ApplicationLoadBalancer.d.ts +18 -0
  25. package/lib/platform/ApplicationLoadBalancer.js +62 -0
  26. package/lib/platform/AuthenticationStack.d.ts +19 -0
  27. package/lib/platform/AuthenticationStack.js +92 -0
  28. package/lib/platform/CloudMap.d.ts +16 -0
  29. package/lib/platform/CloudMap.js +48 -0
  30. package/lib/platform/DefaultUserPoolClients.d.ts +17 -0
  31. package/lib/platform/DefaultUserPoolClients.js +77 -0
  32. package/lib/platform/DocumentDB.d.ts +12 -0
  33. package/lib/platform/DocumentDB.js +47 -0
  34. package/lib/platform/MessageQueue.d.ts +23 -0
  35. package/lib/platform/MessageQueue.js +166 -0
  36. package/lib/platform/PrivateDnsNamespace.d.ts +17 -0
  37. package/lib/platform/PrivateDnsNamespace.js +50 -0
  38. package/lib/platform/Vpc.d.ts +13 -0
  39. package/lib/platform/Vpc.js +44 -0
  40. package/lib/platform/index.d.ts +6 -0
  41. package/lib/platform/index.js +23 -0
  42. package/lib/utils/ImportValue.d.ts +15 -0
  43. package/lib/utils/ImportValue.js +27 -1
  44. package/lib/utils/functions.d.ts +9 -0
  45. package/lib/utils/functions.js +14 -0
  46. package/lib/utils/index.d.ts +1 -0
  47. package/lib/utils/index.js +2 -1
  48. package/node_modules/lodash/LICENSE +47 -0
  49. package/node_modules/lodash/README.md +39 -0
  50. package/node_modules/lodash/_DataView.js +7 -0
  51. package/node_modules/lodash/_Hash.js +32 -0
  52. package/node_modules/lodash/_LazyWrapper.js +28 -0
  53. package/node_modules/lodash/_ListCache.js +32 -0
  54. package/node_modules/lodash/_LodashWrapper.js +22 -0
  55. package/node_modules/lodash/_Map.js +7 -0
  56. package/node_modules/lodash/_MapCache.js +32 -0
  57. package/node_modules/lodash/_Promise.js +7 -0
  58. package/node_modules/lodash/_Set.js +7 -0
  59. package/node_modules/lodash/_SetCache.js +27 -0
  60. package/node_modules/lodash/_Stack.js +27 -0
  61. package/node_modules/lodash/_Symbol.js +6 -0
  62. package/node_modules/lodash/_Uint8Array.js +6 -0
  63. package/node_modules/lodash/_WeakMap.js +7 -0
  64. package/node_modules/lodash/_apply.js +21 -0
  65. package/node_modules/lodash/_arrayAggregator.js +22 -0
  66. package/node_modules/lodash/_arrayEach.js +22 -0
  67. package/node_modules/lodash/_arrayEachRight.js +21 -0
  68. package/node_modules/lodash/_arrayEvery.js +23 -0
  69. package/node_modules/lodash/_arrayFilter.js +25 -0
  70. package/node_modules/lodash/_arrayIncludes.js +17 -0
  71. package/node_modules/lodash/_arrayIncludesWith.js +22 -0
  72. package/node_modules/lodash/_arrayLikeKeys.js +49 -0
  73. package/node_modules/lodash/_arrayMap.js +21 -0
  74. package/node_modules/lodash/_arrayPush.js +20 -0
  75. package/node_modules/lodash/_arrayReduce.js +26 -0
  76. package/node_modules/lodash/_arrayReduceRight.js +24 -0
  77. package/node_modules/lodash/_arraySample.js +15 -0
  78. package/node_modules/lodash/_arraySampleSize.js +17 -0
  79. package/node_modules/lodash/_arrayShuffle.js +15 -0
  80. package/node_modules/lodash/_arraySome.js +23 -0
  81. package/node_modules/lodash/_asciiSize.js +12 -0
  82. package/node_modules/lodash/_asciiToArray.js +12 -0
  83. package/node_modules/lodash/_asciiWords.js +15 -0
  84. package/node_modules/lodash/_assignMergeValue.js +20 -0
  85. package/node_modules/lodash/_assignValue.js +28 -0
  86. package/node_modules/lodash/_assocIndexOf.js +21 -0
  87. package/node_modules/lodash/_baseAggregator.js +21 -0
  88. package/node_modules/lodash/_baseAssign.js +17 -0
  89. package/node_modules/lodash/_baseAssignIn.js +17 -0
  90. package/node_modules/lodash/_baseAssignValue.js +25 -0
  91. package/node_modules/lodash/_baseAt.js +23 -0
  92. package/node_modules/lodash/_baseClamp.js +22 -0
  93. package/node_modules/lodash/_baseClone.js +166 -0
  94. package/node_modules/lodash/_baseConforms.js +18 -0
  95. package/node_modules/lodash/_baseConformsTo.js +27 -0
  96. package/node_modules/lodash/_baseCreate.js +30 -0
  97. package/node_modules/lodash/_baseDelay.js +21 -0
  98. package/node_modules/lodash/_baseDifference.js +67 -0
  99. package/node_modules/lodash/_baseEach.js +14 -0
  100. package/node_modules/lodash/_baseEachRight.js +14 -0
  101. package/node_modules/lodash/_baseEvery.js +21 -0
  102. package/node_modules/lodash/_baseExtremum.js +32 -0
  103. package/node_modules/lodash/_baseFill.js +32 -0
  104. package/node_modules/lodash/_baseFilter.js +21 -0
  105. package/node_modules/lodash/_baseFindIndex.js +24 -0
  106. package/node_modules/lodash/_baseFindKey.js +23 -0
  107. package/node_modules/lodash/_baseFlatten.js +38 -0
  108. package/node_modules/lodash/_baseFor.js +16 -0
  109. package/node_modules/lodash/_baseForOwn.js +16 -0
  110. package/node_modules/lodash/_baseForOwnRight.js +16 -0
  111. package/node_modules/lodash/_baseForRight.js +15 -0
  112. package/node_modules/lodash/_baseFunctions.js +19 -0
  113. package/node_modules/lodash/_baseGet.js +24 -0
  114. package/node_modules/lodash/_baseGetAllKeys.js +20 -0
  115. package/node_modules/lodash/_baseGetTag.js +28 -0
  116. package/node_modules/lodash/_baseGt.js +14 -0
  117. package/node_modules/lodash/_baseHas.js +19 -0
  118. package/node_modules/lodash/_baseHasIn.js +13 -0
  119. package/node_modules/lodash/_baseInRange.js +18 -0
  120. package/node_modules/lodash/_baseIndexOf.js +20 -0
  121. package/node_modules/lodash/_baseIndexOfWith.js +23 -0
  122. package/node_modules/lodash/_baseIntersection.js +74 -0
  123. package/node_modules/lodash/_baseInverter.js +21 -0
  124. package/node_modules/lodash/_baseInvoke.js +24 -0
  125. package/node_modules/lodash/_baseIsArguments.js +18 -0
  126. package/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
  127. package/node_modules/lodash/_baseIsDate.js +18 -0
  128. package/node_modules/lodash/_baseIsEqual.js +28 -0
  129. package/node_modules/lodash/_baseIsEqualDeep.js +83 -0
  130. package/node_modules/lodash/_baseIsMap.js +18 -0
  131. package/node_modules/lodash/_baseIsMatch.js +62 -0
  132. package/node_modules/lodash/_baseIsNaN.js +12 -0
  133. package/node_modules/lodash/_baseIsNative.js +47 -0
  134. package/node_modules/lodash/_baseIsRegExp.js +18 -0
  135. package/node_modules/lodash/_baseIsSet.js +18 -0
  136. package/node_modules/lodash/_baseIsTypedArray.js +60 -0
  137. package/node_modules/lodash/_baseIteratee.js +31 -0
  138. package/node_modules/lodash/_baseKeys.js +30 -0
  139. package/node_modules/lodash/_baseKeysIn.js +33 -0
  140. package/node_modules/lodash/_baseLodash.js +10 -0
  141. package/node_modules/lodash/_baseLt.js +14 -0
  142. package/node_modules/lodash/_baseMap.js +22 -0
  143. package/node_modules/lodash/_baseMatches.js +22 -0
  144. package/node_modules/lodash/_baseMatchesProperty.js +33 -0
  145. package/node_modules/lodash/_baseMean.js +20 -0
  146. package/node_modules/lodash/_baseMerge.js +42 -0
  147. package/node_modules/lodash/_baseMergeDeep.js +94 -0
  148. package/node_modules/lodash/_baseNth.js +20 -0
  149. package/node_modules/lodash/_baseOrderBy.js +49 -0
  150. package/node_modules/lodash/_basePick.js +19 -0
  151. package/node_modules/lodash/_basePickBy.js +30 -0
  152. package/node_modules/lodash/_baseProperty.js +14 -0
  153. package/node_modules/lodash/_basePropertyDeep.js +16 -0
  154. package/node_modules/lodash/_basePropertyOf.js +14 -0
  155. package/node_modules/lodash/_basePullAll.js +51 -0
  156. package/node_modules/lodash/_basePullAt.js +37 -0
  157. package/node_modules/lodash/_baseRandom.js +18 -0
  158. package/node_modules/lodash/_baseRange.js +28 -0
  159. package/node_modules/lodash/_baseReduce.js +23 -0
  160. package/node_modules/lodash/_baseRepeat.js +35 -0
  161. package/node_modules/lodash/_baseRest.js +17 -0
  162. package/node_modules/lodash/_baseSample.js +15 -0
  163. package/node_modules/lodash/_baseSampleSize.js +18 -0
  164. package/node_modules/lodash/_baseSet.js +51 -0
  165. package/node_modules/lodash/_baseSetData.js +17 -0
  166. package/node_modules/lodash/_baseSetToString.js +22 -0
  167. package/node_modules/lodash/_baseShuffle.js +15 -0
  168. package/node_modules/lodash/_baseSlice.js +31 -0
  169. package/node_modules/lodash/_baseSome.js +22 -0
  170. package/node_modules/lodash/_baseSortBy.js +21 -0
  171. package/node_modules/lodash/_baseSortedIndex.js +42 -0
  172. package/node_modules/lodash/_baseSortedIndexBy.js +67 -0
  173. package/node_modules/lodash/_baseSortedUniq.js +30 -0
  174. package/node_modules/lodash/_baseSum.js +24 -0
  175. package/node_modules/lodash/_baseTimes.js +20 -0
  176. package/node_modules/lodash/_baseToNumber.js +24 -0
  177. package/node_modules/lodash/_baseToPairs.js +18 -0
  178. package/node_modules/lodash/_baseToString.js +37 -0
  179. package/node_modules/lodash/_baseTrim.js +19 -0
  180. package/node_modules/lodash/_baseUnary.js +14 -0
  181. package/node_modules/lodash/_baseUniq.js +72 -0
  182. package/node_modules/lodash/_baseUnset.js +20 -0
  183. package/node_modules/lodash/_baseUpdate.js +18 -0
  184. package/node_modules/lodash/_baseValues.js +19 -0
  185. package/node_modules/lodash/_baseWhile.js +26 -0
  186. package/node_modules/lodash/_baseWrapperValue.js +25 -0
  187. package/node_modules/lodash/_baseXor.js +36 -0
  188. package/node_modules/lodash/_baseZipObject.js +23 -0
  189. package/node_modules/lodash/_cacheHas.js +13 -0
  190. package/node_modules/lodash/_castArrayLikeObject.js +14 -0
  191. package/node_modules/lodash/_castFunction.js +14 -0
  192. package/node_modules/lodash/_castPath.js +21 -0
  193. package/node_modules/lodash/_castRest.js +14 -0
  194. package/node_modules/lodash/_castSlice.js +18 -0
  195. package/node_modules/lodash/_charsEndIndex.js +19 -0
  196. package/node_modules/lodash/_charsStartIndex.js +20 -0
  197. package/node_modules/lodash/_cloneArrayBuffer.js +16 -0
  198. package/node_modules/lodash/_cloneBuffer.js +35 -0
  199. package/node_modules/lodash/_cloneDataView.js +16 -0
  200. package/node_modules/lodash/_cloneRegExp.js +17 -0
  201. package/node_modules/lodash/_cloneSymbol.js +18 -0
  202. package/node_modules/lodash/_cloneTypedArray.js +16 -0
  203. package/node_modules/lodash/_compareAscending.js +41 -0
  204. package/node_modules/lodash/_compareMultiple.js +44 -0
  205. package/node_modules/lodash/_composeArgs.js +39 -0
  206. package/node_modules/lodash/_composeArgsRight.js +41 -0
  207. package/node_modules/lodash/_copyArray.js +20 -0
  208. package/node_modules/lodash/_copyObject.js +40 -0
  209. package/node_modules/lodash/_copySymbols.js +16 -0
  210. package/node_modules/lodash/_copySymbolsIn.js +16 -0
  211. package/node_modules/lodash/_coreJsData.js +6 -0
  212. package/node_modules/lodash/_countHolders.js +21 -0
  213. package/node_modules/lodash/_createAggregator.js +23 -0
  214. package/node_modules/lodash/_createAssigner.js +37 -0
  215. package/node_modules/lodash/_createBaseEach.js +32 -0
  216. package/node_modules/lodash/_createBaseFor.js +25 -0
  217. package/node_modules/lodash/_createBind.js +28 -0
  218. package/node_modules/lodash/_createCaseFirst.js +33 -0
  219. package/node_modules/lodash/_createCompounder.js +24 -0
  220. package/node_modules/lodash/_createCtor.js +37 -0
  221. package/node_modules/lodash/_createCurry.js +46 -0
  222. package/node_modules/lodash/_createFind.js +25 -0
  223. package/node_modules/lodash/_createFlow.js +78 -0
  224. package/node_modules/lodash/_createHybrid.js +92 -0
  225. package/node_modules/lodash/_createInverter.js +17 -0
  226. package/node_modules/lodash/_createMathOperation.js +38 -0
  227. package/node_modules/lodash/_createOver.js +27 -0
  228. package/node_modules/lodash/_createPadding.js +33 -0
  229. package/node_modules/lodash/_createPartial.js +43 -0
  230. package/node_modules/lodash/_createRange.js +30 -0
  231. package/node_modules/lodash/_createRecurry.js +56 -0
  232. package/node_modules/lodash/_createRelationalOperation.js +20 -0
  233. package/node_modules/lodash/_createRound.js +35 -0
  234. package/node_modules/lodash/_createSet.js +19 -0
  235. package/node_modules/lodash/_createToPairs.js +30 -0
  236. package/node_modules/lodash/_createWrap.js +106 -0
  237. package/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
  238. package/node_modules/lodash/_customDefaultsMerge.js +28 -0
  239. package/node_modules/lodash/_customOmitClone.js +16 -0
  240. package/node_modules/lodash/_deburrLetter.js +71 -0
  241. package/node_modules/lodash/_defineProperty.js +11 -0
  242. package/node_modules/lodash/_equalArrays.js +84 -0
  243. package/node_modules/lodash/_equalByTag.js +112 -0
  244. package/node_modules/lodash/_equalObjects.js +90 -0
  245. package/node_modules/lodash/_escapeHtmlChar.js +21 -0
  246. package/node_modules/lodash/_escapeStringChar.js +22 -0
  247. package/node_modules/lodash/_flatRest.js +16 -0
  248. package/node_modules/lodash/_freeGlobal.js +4 -0
  249. package/node_modules/lodash/_getAllKeys.js +16 -0
  250. package/node_modules/lodash/_getAllKeysIn.js +17 -0
  251. package/node_modules/lodash/_getData.js +15 -0
  252. package/node_modules/lodash/_getFuncName.js +31 -0
  253. package/node_modules/lodash/_getHolder.js +13 -0
  254. package/node_modules/lodash/_getMapData.js +18 -0
  255. package/node_modules/lodash/_getMatchData.js +24 -0
  256. package/node_modules/lodash/_getNative.js +17 -0
  257. package/node_modules/lodash/_getPrototype.js +6 -0
  258. package/node_modules/lodash/_getRawTag.js +46 -0
  259. package/node_modules/lodash/_getSymbols.js +30 -0
  260. package/node_modules/lodash/_getSymbolsIn.js +25 -0
  261. package/node_modules/lodash/_getTag.js +58 -0
  262. package/node_modules/lodash/_getValue.js +13 -0
  263. package/node_modules/lodash/_getView.js +33 -0
  264. package/node_modules/lodash/_getWrapDetails.js +17 -0
  265. package/node_modules/lodash/_hasPath.js +39 -0
  266. package/node_modules/lodash/_hasUnicode.js +26 -0
  267. package/node_modules/lodash/_hasUnicodeWord.js +15 -0
  268. package/node_modules/lodash/_hashClear.js +15 -0
  269. package/node_modules/lodash/_hashDelete.js +17 -0
  270. package/node_modules/lodash/_hashGet.js +30 -0
  271. package/node_modules/lodash/_hashHas.js +23 -0
  272. package/node_modules/lodash/_hashSet.js +23 -0
  273. package/node_modules/lodash/_initCloneArray.js +26 -0
  274. package/node_modules/lodash/_initCloneByTag.js +77 -0
  275. package/node_modules/lodash/_initCloneObject.js +18 -0
  276. package/node_modules/lodash/_insertWrapDetails.js +23 -0
  277. package/node_modules/lodash/_isFlattenable.js +20 -0
  278. package/node_modules/lodash/_isIndex.js +25 -0
  279. package/node_modules/lodash/_isIterateeCall.js +30 -0
  280. package/node_modules/lodash/_isKey.js +29 -0
  281. package/node_modules/lodash/_isKeyable.js +15 -0
  282. package/node_modules/lodash/_isLaziable.js +28 -0
  283. package/node_modules/lodash/_isMaskable.js +14 -0
  284. package/node_modules/lodash/_isMasked.js +20 -0
  285. package/node_modules/lodash/_isPrototype.js +18 -0
  286. package/node_modules/lodash/_isStrictComparable.js +15 -0
  287. package/node_modules/lodash/_iteratorToArray.js +18 -0
  288. package/node_modules/lodash/_lazyClone.js +23 -0
  289. package/node_modules/lodash/_lazyReverse.js +23 -0
  290. package/node_modules/lodash/_lazyValue.js +69 -0
  291. package/node_modules/lodash/_listCacheClear.js +13 -0
  292. package/node_modules/lodash/_listCacheDelete.js +35 -0
  293. package/node_modules/lodash/_listCacheGet.js +19 -0
  294. package/node_modules/lodash/_listCacheHas.js +16 -0
  295. package/node_modules/lodash/_listCacheSet.js +26 -0
  296. package/node_modules/lodash/_mapCacheClear.js +21 -0
  297. package/node_modules/lodash/_mapCacheDelete.js +18 -0
  298. package/node_modules/lodash/_mapCacheGet.js +16 -0
  299. package/node_modules/lodash/_mapCacheHas.js +16 -0
  300. package/node_modules/lodash/_mapCacheSet.js +22 -0
  301. package/node_modules/lodash/_mapToArray.js +18 -0
  302. package/node_modules/lodash/_matchesStrictComparable.js +20 -0
  303. package/node_modules/lodash/_memoizeCapped.js +26 -0
  304. package/node_modules/lodash/_mergeData.js +90 -0
  305. package/node_modules/lodash/_metaMap.js +6 -0
  306. package/node_modules/lodash/_nativeCreate.js +6 -0
  307. package/node_modules/lodash/_nativeKeys.js +6 -0
  308. package/node_modules/lodash/_nativeKeysIn.js +20 -0
  309. package/node_modules/lodash/_nodeUtil.js +30 -0
  310. package/node_modules/lodash/_objectToString.js +22 -0
  311. package/node_modules/lodash/_overArg.js +15 -0
  312. package/node_modules/lodash/_overRest.js +36 -0
  313. package/node_modules/lodash/_parent.js +16 -0
  314. package/node_modules/lodash/_reEscape.js +4 -0
  315. package/node_modules/lodash/_reEvaluate.js +4 -0
  316. package/node_modules/lodash/_reInterpolate.js +4 -0
  317. package/node_modules/lodash/_realNames.js +4 -0
  318. package/node_modules/lodash/_reorder.js +29 -0
  319. package/node_modules/lodash/_replaceHolders.js +29 -0
  320. package/node_modules/lodash/_root.js +9 -0
  321. package/node_modules/lodash/_safeGet.js +21 -0
  322. package/node_modules/lodash/_setCacheAdd.js +19 -0
  323. package/node_modules/lodash/_setCacheHas.js +14 -0
  324. package/node_modules/lodash/_setData.js +20 -0
  325. package/node_modules/lodash/_setToArray.js +18 -0
  326. package/node_modules/lodash/_setToPairs.js +18 -0
  327. package/node_modules/lodash/_setToString.js +14 -0
  328. package/node_modules/lodash/_setWrapToString.js +21 -0
  329. package/node_modules/lodash/_shortOut.js +37 -0
  330. package/node_modules/lodash/_shuffleSelf.js +28 -0
  331. package/node_modules/lodash/_stackClear.js +15 -0
  332. package/node_modules/lodash/_stackDelete.js +18 -0
  333. package/node_modules/lodash/_stackGet.js +14 -0
  334. package/node_modules/lodash/_stackHas.js +14 -0
  335. package/node_modules/lodash/_stackSet.js +34 -0
  336. package/node_modules/lodash/_strictIndexOf.js +23 -0
  337. package/node_modules/lodash/_strictLastIndexOf.js +21 -0
  338. package/node_modules/lodash/_stringSize.js +18 -0
  339. package/node_modules/lodash/_stringToArray.js +18 -0
  340. package/node_modules/lodash/_stringToPath.js +27 -0
  341. package/node_modules/lodash/_toKey.js +21 -0
  342. package/node_modules/lodash/_toSource.js +26 -0
  343. package/node_modules/lodash/_trimmedEndIndex.js +19 -0
  344. package/node_modules/lodash/_unescapeHtmlChar.js +21 -0
  345. package/node_modules/lodash/_unicodeSize.js +44 -0
  346. package/node_modules/lodash/_unicodeToArray.js +40 -0
  347. package/node_modules/lodash/_unicodeWords.js +69 -0
  348. package/node_modules/lodash/_updateWrapDetails.js +46 -0
  349. package/node_modules/lodash/_wrapperClone.js +23 -0
  350. package/node_modules/lodash/add.js +22 -0
  351. package/node_modules/lodash/after.js +42 -0
  352. package/node_modules/lodash/array.js +67 -0
  353. package/node_modules/lodash/ary.js +29 -0
  354. package/node_modules/lodash/assign.js +58 -0
  355. package/node_modules/lodash/assignIn.js +40 -0
  356. package/node_modules/lodash/assignInWith.js +38 -0
  357. package/node_modules/lodash/assignWith.js +37 -0
  358. package/node_modules/lodash/at.js +23 -0
  359. package/node_modules/lodash/attempt.js +35 -0
  360. package/node_modules/lodash/before.js +40 -0
  361. package/node_modules/lodash/bind.js +57 -0
  362. package/node_modules/lodash/bindAll.js +41 -0
  363. package/node_modules/lodash/bindKey.js +68 -0
  364. package/node_modules/lodash/camelCase.js +29 -0
  365. package/node_modules/lodash/capitalize.js +23 -0
  366. package/node_modules/lodash/castArray.js +44 -0
  367. package/node_modules/lodash/ceil.js +26 -0
  368. package/node_modules/lodash/chain.js +38 -0
  369. package/node_modules/lodash/chunk.js +50 -0
  370. package/node_modules/lodash/clamp.js +39 -0
  371. package/node_modules/lodash/clone.js +36 -0
  372. package/node_modules/lodash/cloneDeep.js +29 -0
  373. package/node_modules/lodash/cloneDeepWith.js +40 -0
  374. package/node_modules/lodash/cloneWith.js +42 -0
  375. package/node_modules/lodash/collection.js +30 -0
  376. package/node_modules/lodash/commit.js +33 -0
  377. package/node_modules/lodash/compact.js +31 -0
  378. package/node_modules/lodash/concat.js +43 -0
  379. package/node_modules/lodash/cond.js +60 -0
  380. package/node_modules/lodash/conforms.js +35 -0
  381. package/node_modules/lodash/conformsTo.js +32 -0
  382. package/node_modules/lodash/constant.js +26 -0
  383. package/node_modules/lodash/core.js +3877 -0
  384. package/node_modules/lodash/core.min.js +29 -0
  385. package/node_modules/lodash/countBy.js +40 -0
  386. package/node_modules/lodash/create.js +43 -0
  387. package/node_modules/lodash/curry.js +57 -0
  388. package/node_modules/lodash/curryRight.js +54 -0
  389. package/node_modules/lodash/date.js +3 -0
  390. package/node_modules/lodash/debounce.js +191 -0
  391. package/node_modules/lodash/deburr.js +45 -0
  392. package/node_modules/lodash/defaultTo.js +25 -0
  393. package/node_modules/lodash/defaults.js +64 -0
  394. package/node_modules/lodash/defaultsDeep.js +30 -0
  395. package/node_modules/lodash/defer.js +26 -0
  396. package/node_modules/lodash/delay.js +28 -0
  397. package/node_modules/lodash/difference.js +33 -0
  398. package/node_modules/lodash/differenceBy.js +44 -0
  399. package/node_modules/lodash/differenceWith.js +40 -0
  400. package/node_modules/lodash/divide.js +22 -0
  401. package/node_modules/lodash/drop.js +38 -0
  402. package/node_modules/lodash/dropRight.js +39 -0
  403. package/node_modules/lodash/dropRightWhile.js +45 -0
  404. package/node_modules/lodash/dropWhile.js +45 -0
  405. package/node_modules/lodash/each.js +1 -0
  406. package/node_modules/lodash/eachRight.js +1 -0
  407. package/node_modules/lodash/endsWith.js +43 -0
  408. package/node_modules/lodash/entries.js +1 -0
  409. package/node_modules/lodash/entriesIn.js +1 -0
  410. package/node_modules/lodash/eq.js +37 -0
  411. package/node_modules/lodash/escape.js +43 -0
  412. package/node_modules/lodash/escapeRegExp.js +32 -0
  413. package/node_modules/lodash/every.js +56 -0
  414. package/node_modules/lodash/extend.js +1 -0
  415. package/node_modules/lodash/extendWith.js +1 -0
  416. package/node_modules/lodash/fill.js +45 -0
  417. package/node_modules/lodash/filter.js +52 -0
  418. package/node_modules/lodash/find.js +42 -0
  419. package/node_modules/lodash/findIndex.js +55 -0
  420. package/node_modules/lodash/findKey.js +44 -0
  421. package/node_modules/lodash/findLast.js +25 -0
  422. package/node_modules/lodash/findLastIndex.js +59 -0
  423. package/node_modules/lodash/findLastKey.js +44 -0
  424. package/node_modules/lodash/first.js +1 -0
  425. package/node_modules/lodash/flake.lock +40 -0
  426. package/node_modules/lodash/flake.nix +20 -0
  427. package/node_modules/lodash/flatMap.js +29 -0
  428. package/node_modules/lodash/flatMapDeep.js +31 -0
  429. package/node_modules/lodash/flatMapDepth.js +31 -0
  430. package/node_modules/lodash/flatten.js +22 -0
  431. package/node_modules/lodash/flattenDeep.js +25 -0
  432. package/node_modules/lodash/flattenDepth.js +33 -0
  433. package/node_modules/lodash/flip.js +28 -0
  434. package/node_modules/lodash/floor.js +26 -0
  435. package/node_modules/lodash/flow.js +27 -0
  436. package/node_modules/lodash/flowRight.js +26 -0
  437. package/node_modules/lodash/forEach.js +41 -0
  438. package/node_modules/lodash/forEachRight.js +31 -0
  439. package/node_modules/lodash/forIn.js +39 -0
  440. package/node_modules/lodash/forInRight.js +37 -0
  441. package/node_modules/lodash/forOwn.js +36 -0
  442. package/node_modules/lodash/forOwnRight.js +34 -0
  443. package/node_modules/lodash/fp/F.js +1 -0
  444. package/node_modules/lodash/fp/T.js +1 -0
  445. package/node_modules/lodash/fp/__.js +1 -0
  446. package/node_modules/lodash/fp/_baseConvert.js +569 -0
  447. package/node_modules/lodash/fp/_convertBrowser.js +18 -0
  448. package/node_modules/lodash/fp/_falseOptions.js +7 -0
  449. package/node_modules/lodash/fp/_mapping.js +358 -0
  450. package/node_modules/lodash/fp/_util.js +16 -0
  451. package/node_modules/lodash/fp/add.js +5 -0
  452. package/node_modules/lodash/fp/after.js +5 -0
  453. package/node_modules/lodash/fp/all.js +1 -0
  454. package/node_modules/lodash/fp/allPass.js +1 -0
  455. package/node_modules/lodash/fp/always.js +1 -0
  456. package/node_modules/lodash/fp/any.js +1 -0
  457. package/node_modules/lodash/fp/anyPass.js +1 -0
  458. package/node_modules/lodash/fp/apply.js +1 -0
  459. package/node_modules/lodash/fp/array.js +2 -0
  460. package/node_modules/lodash/fp/ary.js +5 -0
  461. package/node_modules/lodash/fp/assign.js +5 -0
  462. package/node_modules/lodash/fp/assignAll.js +5 -0
  463. package/node_modules/lodash/fp/assignAllWith.js +5 -0
  464. package/node_modules/lodash/fp/assignIn.js +5 -0
  465. package/node_modules/lodash/fp/assignInAll.js +5 -0
  466. package/node_modules/lodash/fp/assignInAllWith.js +5 -0
  467. package/node_modules/lodash/fp/assignInWith.js +5 -0
  468. package/node_modules/lodash/fp/assignWith.js +5 -0
  469. package/node_modules/lodash/fp/assoc.js +1 -0
  470. package/node_modules/lodash/fp/assocPath.js +1 -0
  471. package/node_modules/lodash/fp/at.js +5 -0
  472. package/node_modules/lodash/fp/attempt.js +5 -0
  473. package/node_modules/lodash/fp/before.js +5 -0
  474. package/node_modules/lodash/fp/bind.js +5 -0
  475. package/node_modules/lodash/fp/bindAll.js +5 -0
  476. package/node_modules/lodash/fp/bindKey.js +5 -0
  477. package/node_modules/lodash/fp/camelCase.js +5 -0
  478. package/node_modules/lodash/fp/capitalize.js +5 -0
  479. package/node_modules/lodash/fp/castArray.js +5 -0
  480. package/node_modules/lodash/fp/ceil.js +5 -0
  481. package/node_modules/lodash/fp/chain.js +5 -0
  482. package/node_modules/lodash/fp/chunk.js +5 -0
  483. package/node_modules/lodash/fp/clamp.js +5 -0
  484. package/node_modules/lodash/fp/clone.js +5 -0
  485. package/node_modules/lodash/fp/cloneDeep.js +5 -0
  486. package/node_modules/lodash/fp/cloneDeepWith.js +5 -0
  487. package/node_modules/lodash/fp/cloneWith.js +5 -0
  488. package/node_modules/lodash/fp/collection.js +2 -0
  489. package/node_modules/lodash/fp/commit.js +5 -0
  490. package/node_modules/lodash/fp/compact.js +5 -0
  491. package/node_modules/lodash/fp/complement.js +1 -0
  492. package/node_modules/lodash/fp/compose.js +1 -0
  493. package/node_modules/lodash/fp/concat.js +5 -0
  494. package/node_modules/lodash/fp/cond.js +5 -0
  495. package/node_modules/lodash/fp/conforms.js +1 -0
  496. package/node_modules/lodash/fp/conformsTo.js +5 -0
  497. package/node_modules/lodash/fp/constant.js +5 -0
  498. package/node_modules/lodash/fp/contains.js +1 -0
  499. package/node_modules/lodash/fp/convert.js +18 -0
  500. package/node_modules/lodash/fp/countBy.js +5 -0
  501. package/node_modules/lodash/fp/create.js +5 -0
  502. package/node_modules/lodash/fp/curry.js +5 -0
  503. package/node_modules/lodash/fp/curryN.js +5 -0
  504. package/node_modules/lodash/fp/curryRight.js +5 -0
  505. package/node_modules/lodash/fp/curryRightN.js +5 -0
  506. package/node_modules/lodash/fp/date.js +2 -0
  507. package/node_modules/lodash/fp/debounce.js +5 -0
  508. package/node_modules/lodash/fp/deburr.js +5 -0
  509. package/node_modules/lodash/fp/defaultTo.js +5 -0
  510. package/node_modules/lodash/fp/defaults.js +5 -0
  511. package/node_modules/lodash/fp/defaultsAll.js +5 -0
  512. package/node_modules/lodash/fp/defaultsDeep.js +5 -0
  513. package/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
  514. package/node_modules/lodash/fp/defer.js +5 -0
  515. package/node_modules/lodash/fp/delay.js +5 -0
  516. package/node_modules/lodash/fp/difference.js +5 -0
  517. package/node_modules/lodash/fp/differenceBy.js +5 -0
  518. package/node_modules/lodash/fp/differenceWith.js +5 -0
  519. package/node_modules/lodash/fp/dissoc.js +1 -0
  520. package/node_modules/lodash/fp/dissocPath.js +1 -0
  521. package/node_modules/lodash/fp/divide.js +5 -0
  522. package/node_modules/lodash/fp/drop.js +5 -0
  523. package/node_modules/lodash/fp/dropLast.js +1 -0
  524. package/node_modules/lodash/fp/dropLastWhile.js +1 -0
  525. package/node_modules/lodash/fp/dropRight.js +5 -0
  526. package/node_modules/lodash/fp/dropRightWhile.js +5 -0
  527. package/node_modules/lodash/fp/dropWhile.js +5 -0
  528. package/node_modules/lodash/fp/each.js +1 -0
  529. package/node_modules/lodash/fp/eachRight.js +1 -0
  530. package/node_modules/lodash/fp/endsWith.js +5 -0
  531. package/node_modules/lodash/fp/entries.js +1 -0
  532. package/node_modules/lodash/fp/entriesIn.js +1 -0
  533. package/node_modules/lodash/fp/eq.js +5 -0
  534. package/node_modules/lodash/fp/equals.js +1 -0
  535. package/node_modules/lodash/fp/escape.js +5 -0
  536. package/node_modules/lodash/fp/escapeRegExp.js +5 -0
  537. package/node_modules/lodash/fp/every.js +5 -0
  538. package/node_modules/lodash/fp/extend.js +1 -0
  539. package/node_modules/lodash/fp/extendAll.js +1 -0
  540. package/node_modules/lodash/fp/extendAllWith.js +1 -0
  541. package/node_modules/lodash/fp/extendWith.js +1 -0
  542. package/node_modules/lodash/fp/fill.js +5 -0
  543. package/node_modules/lodash/fp/filter.js +5 -0
  544. package/node_modules/lodash/fp/find.js +5 -0
  545. package/node_modules/lodash/fp/findFrom.js +5 -0
  546. package/node_modules/lodash/fp/findIndex.js +5 -0
  547. package/node_modules/lodash/fp/findIndexFrom.js +5 -0
  548. package/node_modules/lodash/fp/findKey.js +5 -0
  549. package/node_modules/lodash/fp/findLast.js +5 -0
  550. package/node_modules/lodash/fp/findLastFrom.js +5 -0
  551. package/node_modules/lodash/fp/findLastIndex.js +5 -0
  552. package/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
  553. package/node_modules/lodash/fp/findLastKey.js +5 -0
  554. package/node_modules/lodash/fp/first.js +1 -0
  555. package/node_modules/lodash/fp/flatMap.js +5 -0
  556. package/node_modules/lodash/fp/flatMapDeep.js +5 -0
  557. package/node_modules/lodash/fp/flatMapDepth.js +5 -0
  558. package/node_modules/lodash/fp/flatten.js +5 -0
  559. package/node_modules/lodash/fp/flattenDeep.js +5 -0
  560. package/node_modules/lodash/fp/flattenDepth.js +5 -0
  561. package/node_modules/lodash/fp/flip.js +5 -0
  562. package/node_modules/lodash/fp/floor.js +5 -0
  563. package/node_modules/lodash/fp/flow.js +5 -0
  564. package/node_modules/lodash/fp/flowRight.js +5 -0
  565. package/node_modules/lodash/fp/forEach.js +5 -0
  566. package/node_modules/lodash/fp/forEachRight.js +5 -0
  567. package/node_modules/lodash/fp/forIn.js +5 -0
  568. package/node_modules/lodash/fp/forInRight.js +5 -0
  569. package/node_modules/lodash/fp/forOwn.js +5 -0
  570. package/node_modules/lodash/fp/forOwnRight.js +5 -0
  571. package/node_modules/lodash/fp/fromPairs.js +5 -0
  572. package/node_modules/lodash/fp/function.js +2 -0
  573. package/node_modules/lodash/fp/functions.js +5 -0
  574. package/node_modules/lodash/fp/functionsIn.js +5 -0
  575. package/node_modules/lodash/fp/get.js +5 -0
  576. package/node_modules/lodash/fp/getOr.js +5 -0
  577. package/node_modules/lodash/fp/groupBy.js +5 -0
  578. package/node_modules/lodash/fp/gt.js +5 -0
  579. package/node_modules/lodash/fp/gte.js +5 -0
  580. package/node_modules/lodash/fp/has.js +5 -0
  581. package/node_modules/lodash/fp/hasIn.js +5 -0
  582. package/node_modules/lodash/fp/head.js +5 -0
  583. package/node_modules/lodash/fp/identical.js +1 -0
  584. package/node_modules/lodash/fp/identity.js +5 -0
  585. package/node_modules/lodash/fp/inRange.js +5 -0
  586. package/node_modules/lodash/fp/includes.js +5 -0
  587. package/node_modules/lodash/fp/includesFrom.js +5 -0
  588. package/node_modules/lodash/fp/indexBy.js +1 -0
  589. package/node_modules/lodash/fp/indexOf.js +5 -0
  590. package/node_modules/lodash/fp/indexOfFrom.js +5 -0
  591. package/node_modules/lodash/fp/init.js +1 -0
  592. package/node_modules/lodash/fp/initial.js +5 -0
  593. package/node_modules/lodash/fp/intersection.js +5 -0
  594. package/node_modules/lodash/fp/intersectionBy.js +5 -0
  595. package/node_modules/lodash/fp/intersectionWith.js +5 -0
  596. package/node_modules/lodash/fp/invert.js +5 -0
  597. package/node_modules/lodash/fp/invertBy.js +5 -0
  598. package/node_modules/lodash/fp/invertObj.js +1 -0
  599. package/node_modules/lodash/fp/invoke.js +5 -0
  600. package/node_modules/lodash/fp/invokeArgs.js +5 -0
  601. package/node_modules/lodash/fp/invokeArgsMap.js +5 -0
  602. package/node_modules/lodash/fp/invokeMap.js +5 -0
  603. package/node_modules/lodash/fp/isArguments.js +5 -0
  604. package/node_modules/lodash/fp/isArray.js +5 -0
  605. package/node_modules/lodash/fp/isArrayBuffer.js +5 -0
  606. package/node_modules/lodash/fp/isArrayLike.js +5 -0
  607. package/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
  608. package/node_modules/lodash/fp/isBoolean.js +5 -0
  609. package/node_modules/lodash/fp/isBuffer.js +5 -0
  610. package/node_modules/lodash/fp/isDate.js +5 -0
  611. package/node_modules/lodash/fp/isElement.js +5 -0
  612. package/node_modules/lodash/fp/isEmpty.js +5 -0
  613. package/node_modules/lodash/fp/isEqual.js +5 -0
  614. package/node_modules/lodash/fp/isEqualWith.js +5 -0
  615. package/node_modules/lodash/fp/isError.js +5 -0
  616. package/node_modules/lodash/fp/isFinite.js +5 -0
  617. package/node_modules/lodash/fp/isFunction.js +5 -0
  618. package/node_modules/lodash/fp/isInteger.js +5 -0
  619. package/node_modules/lodash/fp/isLength.js +5 -0
  620. package/node_modules/lodash/fp/isMap.js +5 -0
  621. package/node_modules/lodash/fp/isMatch.js +5 -0
  622. package/node_modules/lodash/fp/isMatchWith.js +5 -0
  623. package/node_modules/lodash/fp/isNaN.js +5 -0
  624. package/node_modules/lodash/fp/isNative.js +5 -0
  625. package/node_modules/lodash/fp/isNil.js +5 -0
  626. package/node_modules/lodash/fp/isNull.js +5 -0
  627. package/node_modules/lodash/fp/isNumber.js +5 -0
  628. package/node_modules/lodash/fp/isObject.js +5 -0
  629. package/node_modules/lodash/fp/isObjectLike.js +5 -0
  630. package/node_modules/lodash/fp/isPlainObject.js +5 -0
  631. package/node_modules/lodash/fp/isRegExp.js +5 -0
  632. package/node_modules/lodash/fp/isSafeInteger.js +5 -0
  633. package/node_modules/lodash/fp/isSet.js +5 -0
  634. package/node_modules/lodash/fp/isString.js +5 -0
  635. package/node_modules/lodash/fp/isSymbol.js +5 -0
  636. package/node_modules/lodash/fp/isTypedArray.js +5 -0
  637. package/node_modules/lodash/fp/isUndefined.js +5 -0
  638. package/node_modules/lodash/fp/isWeakMap.js +5 -0
  639. package/node_modules/lodash/fp/isWeakSet.js +5 -0
  640. package/node_modules/lodash/fp/iteratee.js +5 -0
  641. package/node_modules/lodash/fp/join.js +5 -0
  642. package/node_modules/lodash/fp/juxt.js +1 -0
  643. package/node_modules/lodash/fp/kebabCase.js +5 -0
  644. package/node_modules/lodash/fp/keyBy.js +5 -0
  645. package/node_modules/lodash/fp/keys.js +5 -0
  646. package/node_modules/lodash/fp/keysIn.js +5 -0
  647. package/node_modules/lodash/fp/lang.js +2 -0
  648. package/node_modules/lodash/fp/last.js +5 -0
  649. package/node_modules/lodash/fp/lastIndexOf.js +5 -0
  650. package/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
  651. package/node_modules/lodash/fp/lowerCase.js +5 -0
  652. package/node_modules/lodash/fp/lowerFirst.js +5 -0
  653. package/node_modules/lodash/fp/lt.js +5 -0
  654. package/node_modules/lodash/fp/lte.js +5 -0
  655. package/node_modules/lodash/fp/map.js +5 -0
  656. package/node_modules/lodash/fp/mapKeys.js +5 -0
  657. package/node_modules/lodash/fp/mapValues.js +5 -0
  658. package/node_modules/lodash/fp/matches.js +1 -0
  659. package/node_modules/lodash/fp/matchesProperty.js +5 -0
  660. package/node_modules/lodash/fp/math.js +2 -0
  661. package/node_modules/lodash/fp/max.js +5 -0
  662. package/node_modules/lodash/fp/maxBy.js +5 -0
  663. package/node_modules/lodash/fp/mean.js +5 -0
  664. package/node_modules/lodash/fp/meanBy.js +5 -0
  665. package/node_modules/lodash/fp/memoize.js +5 -0
  666. package/node_modules/lodash/fp/merge.js +5 -0
  667. package/node_modules/lodash/fp/mergeAll.js +5 -0
  668. package/node_modules/lodash/fp/mergeAllWith.js +5 -0
  669. package/node_modules/lodash/fp/mergeWith.js +5 -0
  670. package/node_modules/lodash/fp/method.js +5 -0
  671. package/node_modules/lodash/fp/methodOf.js +5 -0
  672. package/node_modules/lodash/fp/min.js +5 -0
  673. package/node_modules/lodash/fp/minBy.js +5 -0
  674. package/node_modules/lodash/fp/mixin.js +5 -0
  675. package/node_modules/lodash/fp/multiply.js +5 -0
  676. package/node_modules/lodash/fp/nAry.js +1 -0
  677. package/node_modules/lodash/fp/negate.js +5 -0
  678. package/node_modules/lodash/fp/next.js +5 -0
  679. package/node_modules/lodash/fp/noop.js +5 -0
  680. package/node_modules/lodash/fp/now.js +5 -0
  681. package/node_modules/lodash/fp/nth.js +5 -0
  682. package/node_modules/lodash/fp/nthArg.js +5 -0
  683. package/node_modules/lodash/fp/number.js +2 -0
  684. package/node_modules/lodash/fp/object.js +2 -0
  685. package/node_modules/lodash/fp/omit.js +5 -0
  686. package/node_modules/lodash/fp/omitAll.js +1 -0
  687. package/node_modules/lodash/fp/omitBy.js +5 -0
  688. package/node_modules/lodash/fp/once.js +5 -0
  689. package/node_modules/lodash/fp/orderBy.js +5 -0
  690. package/node_modules/lodash/fp/over.js +5 -0
  691. package/node_modules/lodash/fp/overArgs.js +5 -0
  692. package/node_modules/lodash/fp/overEvery.js +5 -0
  693. package/node_modules/lodash/fp/overSome.js +5 -0
  694. package/node_modules/lodash/fp/pad.js +5 -0
  695. package/node_modules/lodash/fp/padChars.js +5 -0
  696. package/node_modules/lodash/fp/padCharsEnd.js +5 -0
  697. package/node_modules/lodash/fp/padCharsStart.js +5 -0
  698. package/node_modules/lodash/fp/padEnd.js +5 -0
  699. package/node_modules/lodash/fp/padStart.js +5 -0
  700. package/node_modules/lodash/fp/parseInt.js +5 -0
  701. package/node_modules/lodash/fp/partial.js +5 -0
  702. package/node_modules/lodash/fp/partialRight.js +5 -0
  703. package/node_modules/lodash/fp/partition.js +5 -0
  704. package/node_modules/lodash/fp/path.js +1 -0
  705. package/node_modules/lodash/fp/pathEq.js +1 -0
  706. package/node_modules/lodash/fp/pathOr.js +1 -0
  707. package/node_modules/lodash/fp/paths.js +1 -0
  708. package/node_modules/lodash/fp/pick.js +5 -0
  709. package/node_modules/lodash/fp/pickAll.js +1 -0
  710. package/node_modules/lodash/fp/pickBy.js +5 -0
  711. package/node_modules/lodash/fp/pipe.js +1 -0
  712. package/node_modules/lodash/fp/placeholder.js +6 -0
  713. package/node_modules/lodash/fp/plant.js +5 -0
  714. package/node_modules/lodash/fp/pluck.js +1 -0
  715. package/node_modules/lodash/fp/prop.js +1 -0
  716. package/node_modules/lodash/fp/propEq.js +1 -0
  717. package/node_modules/lodash/fp/propOr.js +1 -0
  718. package/node_modules/lodash/fp/property.js +1 -0
  719. package/node_modules/lodash/fp/propertyOf.js +5 -0
  720. package/node_modules/lodash/fp/props.js +1 -0
  721. package/node_modules/lodash/fp/pull.js +5 -0
  722. package/node_modules/lodash/fp/pullAll.js +5 -0
  723. package/node_modules/lodash/fp/pullAllBy.js +5 -0
  724. package/node_modules/lodash/fp/pullAllWith.js +5 -0
  725. package/node_modules/lodash/fp/pullAt.js +5 -0
  726. package/node_modules/lodash/fp/random.js +5 -0
  727. package/node_modules/lodash/fp/range.js +5 -0
  728. package/node_modules/lodash/fp/rangeRight.js +5 -0
  729. package/node_modules/lodash/fp/rangeStep.js +5 -0
  730. package/node_modules/lodash/fp/rangeStepRight.js +5 -0
  731. package/node_modules/lodash/fp/rearg.js +5 -0
  732. package/node_modules/lodash/fp/reduce.js +5 -0
  733. package/node_modules/lodash/fp/reduceRight.js +5 -0
  734. package/node_modules/lodash/fp/reject.js +5 -0
  735. package/node_modules/lodash/fp/remove.js +5 -0
  736. package/node_modules/lodash/fp/repeat.js +5 -0
  737. package/node_modules/lodash/fp/replace.js +5 -0
  738. package/node_modules/lodash/fp/rest.js +5 -0
  739. package/node_modules/lodash/fp/restFrom.js +5 -0
  740. package/node_modules/lodash/fp/result.js +5 -0
  741. package/node_modules/lodash/fp/reverse.js +5 -0
  742. package/node_modules/lodash/fp/round.js +5 -0
  743. package/node_modules/lodash/fp/sample.js +5 -0
  744. package/node_modules/lodash/fp/sampleSize.js +5 -0
  745. package/node_modules/lodash/fp/seq.js +2 -0
  746. package/node_modules/lodash/fp/set.js +5 -0
  747. package/node_modules/lodash/fp/setWith.js +5 -0
  748. package/node_modules/lodash/fp/shuffle.js +5 -0
  749. package/node_modules/lodash/fp/size.js +5 -0
  750. package/node_modules/lodash/fp/slice.js +5 -0
  751. package/node_modules/lodash/fp/snakeCase.js +5 -0
  752. package/node_modules/lodash/fp/some.js +5 -0
  753. package/node_modules/lodash/fp/sortBy.js +5 -0
  754. package/node_modules/lodash/fp/sortedIndex.js +5 -0
  755. package/node_modules/lodash/fp/sortedIndexBy.js +5 -0
  756. package/node_modules/lodash/fp/sortedIndexOf.js +5 -0
  757. package/node_modules/lodash/fp/sortedLastIndex.js +5 -0
  758. package/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
  759. package/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
  760. package/node_modules/lodash/fp/sortedUniq.js +5 -0
  761. package/node_modules/lodash/fp/sortedUniqBy.js +5 -0
  762. package/node_modules/lodash/fp/split.js +5 -0
  763. package/node_modules/lodash/fp/spread.js +5 -0
  764. package/node_modules/lodash/fp/spreadFrom.js +5 -0
  765. package/node_modules/lodash/fp/startCase.js +5 -0
  766. package/node_modules/lodash/fp/startsWith.js +5 -0
  767. package/node_modules/lodash/fp/string.js +2 -0
  768. package/node_modules/lodash/fp/stubArray.js +5 -0
  769. package/node_modules/lodash/fp/stubFalse.js +5 -0
  770. package/node_modules/lodash/fp/stubObject.js +5 -0
  771. package/node_modules/lodash/fp/stubString.js +5 -0
  772. package/node_modules/lodash/fp/stubTrue.js +5 -0
  773. package/node_modules/lodash/fp/subtract.js +5 -0
  774. package/node_modules/lodash/fp/sum.js +5 -0
  775. package/node_modules/lodash/fp/sumBy.js +5 -0
  776. package/node_modules/lodash/fp/symmetricDifference.js +1 -0
  777. package/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
  778. package/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
  779. package/node_modules/lodash/fp/tail.js +5 -0
  780. package/node_modules/lodash/fp/take.js +5 -0
  781. package/node_modules/lodash/fp/takeLast.js +1 -0
  782. package/node_modules/lodash/fp/takeLastWhile.js +1 -0
  783. package/node_modules/lodash/fp/takeRight.js +5 -0
  784. package/node_modules/lodash/fp/takeRightWhile.js +5 -0
  785. package/node_modules/lodash/fp/takeWhile.js +5 -0
  786. package/node_modules/lodash/fp/tap.js +5 -0
  787. package/node_modules/lodash/fp/template.js +5 -0
  788. package/node_modules/lodash/fp/templateSettings.js +5 -0
  789. package/node_modules/lodash/fp/throttle.js +5 -0
  790. package/node_modules/lodash/fp/thru.js +5 -0
  791. package/node_modules/lodash/fp/times.js +5 -0
  792. package/node_modules/lodash/fp/toArray.js +5 -0
  793. package/node_modules/lodash/fp/toFinite.js +5 -0
  794. package/node_modules/lodash/fp/toInteger.js +5 -0
  795. package/node_modules/lodash/fp/toIterator.js +5 -0
  796. package/node_modules/lodash/fp/toJSON.js +5 -0
  797. package/node_modules/lodash/fp/toLength.js +5 -0
  798. package/node_modules/lodash/fp/toLower.js +5 -0
  799. package/node_modules/lodash/fp/toNumber.js +5 -0
  800. package/node_modules/lodash/fp/toPairs.js +5 -0
  801. package/node_modules/lodash/fp/toPairsIn.js +5 -0
  802. package/node_modules/lodash/fp/toPath.js +5 -0
  803. package/node_modules/lodash/fp/toPlainObject.js +5 -0
  804. package/node_modules/lodash/fp/toSafeInteger.js +5 -0
  805. package/node_modules/lodash/fp/toString.js +5 -0
  806. package/node_modules/lodash/fp/toUpper.js +5 -0
  807. package/node_modules/lodash/fp/transform.js +5 -0
  808. package/node_modules/lodash/fp/trim.js +5 -0
  809. package/node_modules/lodash/fp/trimChars.js +5 -0
  810. package/node_modules/lodash/fp/trimCharsEnd.js +5 -0
  811. package/node_modules/lodash/fp/trimCharsStart.js +5 -0
  812. package/node_modules/lodash/fp/trimEnd.js +5 -0
  813. package/node_modules/lodash/fp/trimStart.js +5 -0
  814. package/node_modules/lodash/fp/truncate.js +5 -0
  815. package/node_modules/lodash/fp/unapply.js +1 -0
  816. package/node_modules/lodash/fp/unary.js +5 -0
  817. package/node_modules/lodash/fp/unescape.js +5 -0
  818. package/node_modules/lodash/fp/union.js +5 -0
  819. package/node_modules/lodash/fp/unionBy.js +5 -0
  820. package/node_modules/lodash/fp/unionWith.js +5 -0
  821. package/node_modules/lodash/fp/uniq.js +5 -0
  822. package/node_modules/lodash/fp/uniqBy.js +5 -0
  823. package/node_modules/lodash/fp/uniqWith.js +5 -0
  824. package/node_modules/lodash/fp/uniqueId.js +5 -0
  825. package/node_modules/lodash/fp/unnest.js +1 -0
  826. package/node_modules/lodash/fp/unset.js +5 -0
  827. package/node_modules/lodash/fp/unzip.js +5 -0
  828. package/node_modules/lodash/fp/unzipWith.js +5 -0
  829. package/node_modules/lodash/fp/update.js +5 -0
  830. package/node_modules/lodash/fp/updateWith.js +5 -0
  831. package/node_modules/lodash/fp/upperCase.js +5 -0
  832. package/node_modules/lodash/fp/upperFirst.js +5 -0
  833. package/node_modules/lodash/fp/useWith.js +1 -0
  834. package/node_modules/lodash/fp/util.js +2 -0
  835. package/node_modules/lodash/fp/value.js +5 -0
  836. package/node_modules/lodash/fp/valueOf.js +5 -0
  837. package/node_modules/lodash/fp/values.js +5 -0
  838. package/node_modules/lodash/fp/valuesIn.js +5 -0
  839. package/node_modules/lodash/fp/where.js +1 -0
  840. package/node_modules/lodash/fp/whereEq.js +1 -0
  841. package/node_modules/lodash/fp/without.js +5 -0
  842. package/node_modules/lodash/fp/words.js +5 -0
  843. package/node_modules/lodash/fp/wrap.js +5 -0
  844. package/node_modules/lodash/fp/wrapperAt.js +5 -0
  845. package/node_modules/lodash/fp/wrapperChain.js +5 -0
  846. package/node_modules/lodash/fp/wrapperLodash.js +5 -0
  847. package/node_modules/lodash/fp/wrapperReverse.js +5 -0
  848. package/node_modules/lodash/fp/wrapperValue.js +5 -0
  849. package/node_modules/lodash/fp/xor.js +5 -0
  850. package/node_modules/lodash/fp/xorBy.js +5 -0
  851. package/node_modules/lodash/fp/xorWith.js +5 -0
  852. package/node_modules/lodash/fp/zip.js +5 -0
  853. package/node_modules/lodash/fp/zipAll.js +5 -0
  854. package/node_modules/lodash/fp/zipObj.js +1 -0
  855. package/node_modules/lodash/fp/zipObject.js +5 -0
  856. package/node_modules/lodash/fp/zipObjectDeep.js +5 -0
  857. package/node_modules/lodash/fp/zipWith.js +5 -0
  858. package/node_modules/lodash/fp.js +2 -0
  859. package/node_modules/lodash/fromPairs.js +28 -0
  860. package/node_modules/lodash/function.js +25 -0
  861. package/node_modules/lodash/functions.js +31 -0
  862. package/node_modules/lodash/functionsIn.js +31 -0
  863. package/node_modules/lodash/get.js +33 -0
  864. package/node_modules/lodash/groupBy.js +41 -0
  865. package/node_modules/lodash/gt.js +29 -0
  866. package/node_modules/lodash/gte.js +30 -0
  867. package/node_modules/lodash/has.js +35 -0
  868. package/node_modules/lodash/hasIn.js +34 -0
  869. package/node_modules/lodash/head.js +23 -0
  870. package/node_modules/lodash/identity.js +21 -0
  871. package/node_modules/lodash/inRange.js +55 -0
  872. package/node_modules/lodash/includes.js +53 -0
  873. package/node_modules/lodash/index.js +1 -0
  874. package/node_modules/lodash/indexOf.js +42 -0
  875. package/node_modules/lodash/initial.js +22 -0
  876. package/node_modules/lodash/intersection.js +30 -0
  877. package/node_modules/lodash/intersectionBy.js +45 -0
  878. package/node_modules/lodash/intersectionWith.js +41 -0
  879. package/node_modules/lodash/invert.js +42 -0
  880. package/node_modules/lodash/invertBy.js +56 -0
  881. package/node_modules/lodash/invoke.js +24 -0
  882. package/node_modules/lodash/invokeMap.js +41 -0
  883. package/node_modules/lodash/isArguments.js +36 -0
  884. package/node_modules/lodash/isArray.js +26 -0
  885. package/node_modules/lodash/isArrayBuffer.js +27 -0
  886. package/node_modules/lodash/isArrayLike.js +33 -0
  887. package/node_modules/lodash/isArrayLikeObject.js +33 -0
  888. package/node_modules/lodash/isBoolean.js +29 -0
  889. package/node_modules/lodash/isBuffer.js +38 -0
  890. package/node_modules/lodash/isDate.js +27 -0
  891. package/node_modules/lodash/isElement.js +25 -0
  892. package/node_modules/lodash/isEmpty.js +77 -0
  893. package/node_modules/lodash/isEqual.js +35 -0
  894. package/node_modules/lodash/isEqualWith.js +41 -0
  895. package/node_modules/lodash/isError.js +36 -0
  896. package/node_modules/lodash/isFinite.js +36 -0
  897. package/node_modules/lodash/isFunction.js +37 -0
  898. package/node_modules/lodash/isInteger.js +33 -0
  899. package/node_modules/lodash/isLength.js +35 -0
  900. package/node_modules/lodash/isMap.js +27 -0
  901. package/node_modules/lodash/isMatch.js +36 -0
  902. package/node_modules/lodash/isMatchWith.js +41 -0
  903. package/node_modules/lodash/isNaN.js +38 -0
  904. package/node_modules/lodash/isNative.js +40 -0
  905. package/node_modules/lodash/isNil.js +25 -0
  906. package/node_modules/lodash/isNull.js +22 -0
  907. package/node_modules/lodash/isNumber.js +38 -0
  908. package/node_modules/lodash/isObject.js +31 -0
  909. package/node_modules/lodash/isObjectLike.js +29 -0
  910. package/node_modules/lodash/isPlainObject.js +62 -0
  911. package/node_modules/lodash/isRegExp.js +27 -0
  912. package/node_modules/lodash/isSafeInteger.js +37 -0
  913. package/node_modules/lodash/isSet.js +27 -0
  914. package/node_modules/lodash/isString.js +30 -0
  915. package/node_modules/lodash/isSymbol.js +29 -0
  916. package/node_modules/lodash/isTypedArray.js +27 -0
  917. package/node_modules/lodash/isUndefined.js +22 -0
  918. package/node_modules/lodash/isWeakMap.js +28 -0
  919. package/node_modules/lodash/isWeakSet.js +28 -0
  920. package/node_modules/lodash/iteratee.js +53 -0
  921. package/node_modules/lodash/join.js +26 -0
  922. package/node_modules/lodash/kebabCase.js +28 -0
  923. package/node_modules/lodash/keyBy.js +36 -0
  924. package/node_modules/lodash/keys.js +37 -0
  925. package/node_modules/lodash/keysIn.js +32 -0
  926. package/node_modules/lodash/lang.js +58 -0
  927. package/node_modules/lodash/last.js +20 -0
  928. package/node_modules/lodash/lastIndexOf.js +46 -0
  929. package/node_modules/lodash/lodash.js +17209 -0
  930. package/node_modules/lodash/lodash.min.js +140 -0
  931. package/node_modules/lodash/lowerCase.js +27 -0
  932. package/node_modules/lodash/lowerFirst.js +22 -0
  933. package/node_modules/lodash/lt.js +29 -0
  934. package/node_modules/lodash/lte.js +30 -0
  935. package/node_modules/lodash/map.js +53 -0
  936. package/node_modules/lodash/mapKeys.js +36 -0
  937. package/node_modules/lodash/mapValues.js +43 -0
  938. package/node_modules/lodash/matches.js +46 -0
  939. package/node_modules/lodash/matchesProperty.js +44 -0
  940. package/node_modules/lodash/math.js +17 -0
  941. package/node_modules/lodash/max.js +29 -0
  942. package/node_modules/lodash/maxBy.js +34 -0
  943. package/node_modules/lodash/mean.js +22 -0
  944. package/node_modules/lodash/meanBy.js +31 -0
  945. package/node_modules/lodash/memoize.js +73 -0
  946. package/node_modules/lodash/merge.js +39 -0
  947. package/node_modules/lodash/mergeWith.js +39 -0
  948. package/node_modules/lodash/method.js +34 -0
  949. package/node_modules/lodash/methodOf.js +33 -0
  950. package/node_modules/lodash/min.js +29 -0
  951. package/node_modules/lodash/minBy.js +34 -0
  952. package/node_modules/lodash/mixin.js +74 -0
  953. package/node_modules/lodash/multiply.js +22 -0
  954. package/node_modules/lodash/negate.js +40 -0
  955. package/node_modules/lodash/next.js +35 -0
  956. package/node_modules/lodash/noop.js +17 -0
  957. package/node_modules/lodash/now.js +23 -0
  958. package/node_modules/lodash/nth.js +29 -0
  959. package/node_modules/lodash/nthArg.js +32 -0
  960. package/node_modules/lodash/number.js +5 -0
  961. package/node_modules/lodash/object.js +49 -0
  962. package/node_modules/lodash/omit.js +57 -0
  963. package/node_modules/lodash/omitBy.js +29 -0
  964. package/node_modules/lodash/once.js +25 -0
  965. package/node_modules/lodash/orderBy.js +47 -0
  966. package/node_modules/lodash/over.js +24 -0
  967. package/node_modules/lodash/overArgs.js +61 -0
  968. package/node_modules/lodash/overEvery.js +34 -0
  969. package/node_modules/lodash/overSome.js +37 -0
  970. package/node_modules/lodash/package.json +17 -0
  971. package/node_modules/lodash/pad.js +49 -0
  972. package/node_modules/lodash/padEnd.js +39 -0
  973. package/node_modules/lodash/padStart.js +39 -0
  974. package/node_modules/lodash/parseInt.js +43 -0
  975. package/node_modules/lodash/partial.js +50 -0
  976. package/node_modules/lodash/partialRight.js +49 -0
  977. package/node_modules/lodash/partition.js +43 -0
  978. package/node_modules/lodash/pick.js +25 -0
  979. package/node_modules/lodash/pickBy.js +37 -0
  980. package/node_modules/lodash/plant.js +48 -0
  981. package/node_modules/lodash/property.js +32 -0
  982. package/node_modules/lodash/propertyOf.js +30 -0
  983. package/node_modules/lodash/pull.js +29 -0
  984. package/node_modules/lodash/pullAll.js +29 -0
  985. package/node_modules/lodash/pullAllBy.js +33 -0
  986. package/node_modules/lodash/pullAllWith.js +32 -0
  987. package/node_modules/lodash/pullAt.js +43 -0
  988. package/node_modules/lodash/random.js +82 -0
  989. package/node_modules/lodash/range.js +46 -0
  990. package/node_modules/lodash/rangeRight.js +41 -0
  991. package/node_modules/lodash/rearg.js +33 -0
  992. package/node_modules/lodash/reduce.js +51 -0
  993. package/node_modules/lodash/reduceRight.js +36 -0
  994. package/node_modules/lodash/reject.js +46 -0
  995. package/node_modules/lodash/release.md +48 -0
  996. package/node_modules/lodash/remove.js +53 -0
  997. package/node_modules/lodash/repeat.js +37 -0
  998. package/node_modules/lodash/replace.js +29 -0
  999. package/node_modules/lodash/rest.js +40 -0
  1000. package/node_modules/lodash/result.js +56 -0
  1001. package/node_modules/lodash/reverse.js +34 -0
  1002. package/node_modules/lodash/round.js +26 -0
  1003. package/node_modules/lodash/sample.js +24 -0
  1004. package/node_modules/lodash/sampleSize.js +37 -0
  1005. package/node_modules/lodash/seq.js +16 -0
  1006. package/node_modules/lodash/set.js +35 -0
  1007. package/node_modules/lodash/setWith.js +32 -0
  1008. package/node_modules/lodash/shuffle.js +25 -0
  1009. package/node_modules/lodash/size.js +46 -0
  1010. package/node_modules/lodash/slice.js +37 -0
  1011. package/node_modules/lodash/snakeCase.js +28 -0
  1012. package/node_modules/lodash/some.js +51 -0
  1013. package/node_modules/lodash/sortBy.js +48 -0
  1014. package/node_modules/lodash/sortedIndex.js +24 -0
  1015. package/node_modules/lodash/sortedIndexBy.js +33 -0
  1016. package/node_modules/lodash/sortedIndexOf.js +31 -0
  1017. package/node_modules/lodash/sortedLastIndex.js +25 -0
  1018. package/node_modules/lodash/sortedLastIndexBy.js +33 -0
  1019. package/node_modules/lodash/sortedLastIndexOf.js +31 -0
  1020. package/node_modules/lodash/sortedUniq.js +24 -0
  1021. package/node_modules/lodash/sortedUniqBy.js +26 -0
  1022. package/node_modules/lodash/split.js +52 -0
  1023. package/node_modules/lodash/spread.js +63 -0
  1024. package/node_modules/lodash/startCase.js +29 -0
  1025. package/node_modules/lodash/startsWith.js +39 -0
  1026. package/node_modules/lodash/string.js +33 -0
  1027. package/node_modules/lodash/stubArray.js +23 -0
  1028. package/node_modules/lodash/stubFalse.js +18 -0
  1029. package/node_modules/lodash/stubObject.js +23 -0
  1030. package/node_modules/lodash/stubString.js +18 -0
  1031. package/node_modules/lodash/stubTrue.js +18 -0
  1032. package/node_modules/lodash/subtract.js +22 -0
  1033. package/node_modules/lodash/sum.js +24 -0
  1034. package/node_modules/lodash/sumBy.js +33 -0
  1035. package/node_modules/lodash/tail.js +22 -0
  1036. package/node_modules/lodash/take.js +37 -0
  1037. package/node_modules/lodash/takeRight.js +39 -0
  1038. package/node_modules/lodash/takeRightWhile.js +45 -0
  1039. package/node_modules/lodash/takeWhile.js +45 -0
  1040. package/node_modules/lodash/tap.js +29 -0
  1041. package/node_modules/lodash/template.js +272 -0
  1042. package/node_modules/lodash/templateSettings.js +67 -0
  1043. package/node_modules/lodash/throttle.js +69 -0
  1044. package/node_modules/lodash/thru.js +28 -0
  1045. package/node_modules/lodash/times.js +51 -0
  1046. package/node_modules/lodash/toArray.js +58 -0
  1047. package/node_modules/lodash/toFinite.js +42 -0
  1048. package/node_modules/lodash/toInteger.js +36 -0
  1049. package/node_modules/lodash/toIterator.js +23 -0
  1050. package/node_modules/lodash/toJSON.js +1 -0
  1051. package/node_modules/lodash/toLength.js +38 -0
  1052. package/node_modules/lodash/toLower.js +28 -0
  1053. package/node_modules/lodash/toNumber.js +64 -0
  1054. package/node_modules/lodash/toPairs.js +30 -0
  1055. package/node_modules/lodash/toPairsIn.js +30 -0
  1056. package/node_modules/lodash/toPath.js +33 -0
  1057. package/node_modules/lodash/toPlainObject.js +32 -0
  1058. package/node_modules/lodash/toSafeInteger.js +37 -0
  1059. package/node_modules/lodash/toString.js +28 -0
  1060. package/node_modules/lodash/toUpper.js +28 -0
  1061. package/node_modules/lodash/transform.js +65 -0
  1062. package/node_modules/lodash/trim.js +47 -0
  1063. package/node_modules/lodash/trimEnd.js +41 -0
  1064. package/node_modules/lodash/trimStart.js +43 -0
  1065. package/node_modules/lodash/truncate.js +111 -0
  1066. package/node_modules/lodash/unary.js +22 -0
  1067. package/node_modules/lodash/unescape.js +34 -0
  1068. package/node_modules/lodash/union.js +26 -0
  1069. package/node_modules/lodash/unionBy.js +39 -0
  1070. package/node_modules/lodash/unionWith.js +34 -0
  1071. package/node_modules/lodash/uniq.js +25 -0
  1072. package/node_modules/lodash/uniqBy.js +31 -0
  1073. package/node_modules/lodash/uniqWith.js +28 -0
  1074. package/node_modules/lodash/uniqueId.js +28 -0
  1075. package/node_modules/lodash/unset.js +34 -0
  1076. package/node_modules/lodash/unzip.js +45 -0
  1077. package/node_modules/lodash/unzipWith.js +39 -0
  1078. package/node_modules/lodash/update.js +35 -0
  1079. package/node_modules/lodash/updateWith.js +33 -0
  1080. package/node_modules/lodash/upperCase.js +27 -0
  1081. package/node_modules/lodash/upperFirst.js +22 -0
  1082. package/node_modules/lodash/util.js +34 -0
  1083. package/node_modules/lodash/value.js +1 -0
  1084. package/node_modules/lodash/valueOf.js +1 -0
  1085. package/node_modules/lodash/values.js +34 -0
  1086. package/node_modules/lodash/valuesIn.js +32 -0
  1087. package/node_modules/lodash/without.js +31 -0
  1088. package/node_modules/lodash/words.js +35 -0
  1089. package/node_modules/lodash/wrap.js +30 -0
  1090. package/node_modules/lodash/wrapperAt.js +48 -0
  1091. package/node_modules/lodash/wrapperChain.js +34 -0
  1092. package/node_modules/lodash/wrapperLodash.js +147 -0
  1093. package/node_modules/lodash/wrapperReverse.js +44 -0
  1094. package/node_modules/lodash/wrapperValue.js +21 -0
  1095. package/node_modules/lodash/xor.js +28 -0
  1096. package/node_modules/lodash/xorBy.js +39 -0
  1097. package/node_modules/lodash/xorWith.js +34 -0
  1098. package/node_modules/lodash/zip.js +22 -0
  1099. package/node_modules/lodash/zipObject.js +24 -0
  1100. package/node_modules/lodash/zipObjectDeep.js +23 -0
  1101. package/node_modules/lodash/zipWith.js +32 -0
  1102. package/package.json +8 -1
package/.jsii CHANGED
@@ -7,6 +7,9 @@
7
7
  ],
8
8
  "url": "https://btc-embedded.com"
9
9
  },
10
+ "bundled": {
11
+ "lodash": "^4"
12
+ },
10
13
  "dependencies": {
11
14
  "@aws-cdk-containers/ecs-service-extensions": ">=2.0.1-alpha.535",
12
15
  "aws-cdk-lib": "^2.172.0",
@@ -3941,11 +3944,58 @@
3941
3944
  }
3942
3945
  },
3943
3946
  "types": {
3947
+ "@btc-embedded/cdk-extensions.ApiGateway": {
3948
+ "assembly": "@btc-embedded/cdk-extensions",
3949
+ "base": "constructs.Construct",
3950
+ "docs": {
3951
+ "remarks": "This API Gateway construct sets up an API Gateway V2 and a default HTTP API\nprotected by the provided Cognito user pool and client(s). The construct\nregisters an A record for the subdomain in the provided hosted zone. It also\ncreates a VPC Link (and security group) for the API Gateway to connect to\nservices in the VPC.\n\nThe relevant parameters are exposed as CloudFormation outputs so that they\ncan be used by the CDK extensions provided in this library.",
3952
+ "stability": "experimental",
3953
+ "summary": "API Gateway construct to be used in base platforms."
3954
+ },
3955
+ "fqn": "@btc-embedded/cdk-extensions.ApiGateway",
3956
+ "initializer": {
3957
+ "docs": {
3958
+ "stability": "experimental"
3959
+ },
3960
+ "locationInModule": {
3961
+ "filename": "src/platform/ApiGateway.ts",
3962
+ "line": 81
3963
+ },
3964
+ "parameters": [
3965
+ {
3966
+ "name": "scope",
3967
+ "type": {
3968
+ "fqn": "constructs.Construct"
3969
+ }
3970
+ },
3971
+ {
3972
+ "name": "id",
3973
+ "type": {
3974
+ "primitive": "string"
3975
+ }
3976
+ },
3977
+ {
3978
+ "name": "props",
3979
+ "type": {
3980
+ "fqn": "@btc-embedded/cdk-extensions.ApiGatewayProps"
3981
+ }
3982
+ }
3983
+ ]
3984
+ },
3985
+ "kind": "class",
3986
+ "locationInModule": {
3987
+ "filename": "src/platform/ApiGateway.ts",
3988
+ "line": 74
3989
+ },
3990
+ "name": "ApiGateway",
3991
+ "symbolId": "src/platform/ApiGateway:ApiGateway"
3992
+ },
3944
3993
  "@btc-embedded/cdk-extensions.ApiGatewayExtension": {
3945
3994
  "assembly": "@btc-embedded/cdk-extensions",
3946
3995
  "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
3947
3996
  "docs": {
3948
- "stability": "experimental"
3997
+ "stability": "experimental",
3998
+ "summary": "Configures the service to be reachable via an API Gateway."
3949
3999
  },
3950
4000
  "fqn": "@btc-embedded/cdk-extensions.ApiGatewayExtension",
3951
4001
  "initializer": {
@@ -3954,7 +4004,7 @@
3954
4004
  },
3955
4005
  "locationInModule": {
3956
4006
  "filename": "src/extensions/ApiGatewayExtension.ts",
3957
- "line": 30
4007
+ "line": 48
3958
4008
  },
3959
4009
  "parameters": [
3960
4010
  {
@@ -3968,7 +4018,7 @@
3968
4018
  "kind": "class",
3969
4019
  "locationInModule": {
3970
4020
  "filename": "src/extensions/ApiGatewayExtension.ts",
3971
- "line": 27
4021
+ "line": 41
3972
4022
  },
3973
4023
  "methods": [
3974
4024
  {
@@ -3979,7 +4029,7 @@
3979
4029
  },
3980
4030
  "locationInModule": {
3981
4031
  "filename": "src/extensions/ApiGatewayExtension.ts",
3982
- "line": 35
4032
+ "line": 53
3983
4033
  },
3984
4034
  "name": "useService",
3985
4035
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -4011,7 +4061,7 @@
4011
4061
  "immutable": true,
4012
4062
  "locationInModule": {
4013
4063
  "filename": "src/extensions/ApiGatewayExtension.ts",
4014
- "line": 28
4064
+ "line": 42
4015
4065
  },
4016
4066
  "name": "props",
4017
4067
  "type": {
@@ -4038,12 +4088,13 @@
4038
4088
  {
4039
4089
  "abstract": true,
4040
4090
  "docs": {
4041
- "stability": "experimental"
4091
+ "stability": "experimental",
4092
+ "summary": "The name of the base platform stack."
4042
4093
  },
4043
4094
  "immutable": true,
4044
4095
  "locationInModule": {
4045
4096
  "filename": "src/extensions/ApiGatewayExtension.ts",
4046
- "line": 23
4097
+ "line": 30
4047
4098
  },
4048
4099
  "name": "platformStackName",
4049
4100
  "type": {
@@ -4053,12 +4104,13 @@
4053
4104
  {
4054
4105
  "abstract": true,
4055
4106
  "docs": {
4056
- "stability": "experimental"
4107
+ "stability": "experimental",
4108
+ "summary": "The prefix for the API Gateway endpoint."
4057
4109
  },
4058
4110
  "immutable": true,
4059
4111
  "locationInModule": {
4060
4112
  "filename": "src/extensions/ApiGatewayExtension.ts",
4061
- "line": 22
4113
+ "line": 25
4062
4114
  },
4063
4115
  "name": "prefix",
4064
4116
  "type": {
@@ -4068,12 +4120,13 @@
4068
4120
  {
4069
4121
  "abstract": true,
4070
4122
  "docs": {
4071
- "stability": "experimental"
4123
+ "stability": "experimental",
4124
+ "summary": "The security group ID of the API Gateway which should be allowed to connect to the service."
4072
4125
  },
4073
4126
  "immutable": true,
4074
4127
  "locationInModule": {
4075
4128
  "filename": "src/extensions/ApiGatewayExtension.ts",
4076
- "line": 24
4129
+ "line": 35
4077
4130
  },
4078
4131
  "name": "securityGroupId",
4079
4132
  "type": {
@@ -4083,6 +4136,216 @@
4083
4136
  ],
4084
4137
  "symbolId": "src/extensions/ApiGatewayExtension:ApiGatewayExtensionProps"
4085
4138
  },
4139
+ "@btc-embedded/cdk-extensions.ApiGatewayProps": {
4140
+ "assembly": "@btc-embedded/cdk-extensions",
4141
+ "datatype": true,
4142
+ "docs": {
4143
+ "stability": "experimental"
4144
+ },
4145
+ "fqn": "@btc-embedded/cdk-extensions.ApiGatewayProps",
4146
+ "kind": "interface",
4147
+ "locationInModule": {
4148
+ "filename": "src/platform/ApiGateway.ts",
4149
+ "line": 22
4150
+ },
4151
+ "name": "ApiGatewayProps",
4152
+ "properties": [
4153
+ {
4154
+ "abstract": true,
4155
+ "docs": {
4156
+ "stability": "experimental",
4157
+ "summary": "Domain prefix for the API Gateway endpoint."
4158
+ },
4159
+ "immutable": true,
4160
+ "locationInModule": {
4161
+ "filename": "src/platform/ApiGateway.ts",
4162
+ "line": 46
4163
+ },
4164
+ "name": "domainPrefix",
4165
+ "type": {
4166
+ "primitive": "string"
4167
+ }
4168
+ },
4169
+ {
4170
+ "abstract": true,
4171
+ "docs": {
4172
+ "stability": "experimental",
4173
+ "summary": "Hosted Zone to create the gateway domain A record."
4174
+ },
4175
+ "immutable": true,
4176
+ "locationInModule": {
4177
+ "filename": "src/platform/ApiGateway.ts",
4178
+ "line": 51
4179
+ },
4180
+ "name": "hostedZone",
4181
+ "type": {
4182
+ "fqn": "aws-cdk-lib.aws_route53.IHostedZone"
4183
+ }
4184
+ },
4185
+ {
4186
+ "abstract": true,
4187
+ "docs": {
4188
+ "stability": "experimental",
4189
+ "summary": "The name of the stack, used for prefixing the output parameter names."
4190
+ },
4191
+ "immutable": true,
4192
+ "locationInModule": {
4193
+ "filename": "src/platform/ApiGateway.ts",
4194
+ "line": 26
4195
+ },
4196
+ "name": "stackName",
4197
+ "type": {
4198
+ "primitive": "string"
4199
+ }
4200
+ },
4201
+ {
4202
+ "abstract": true,
4203
+ "docs": {
4204
+ "stability": "experimental",
4205
+ "summary": "Specify the Cognito User Pool to be used for authorizing requests on the API Gateway."
4206
+ },
4207
+ "immutable": true,
4208
+ "locationInModule": {
4209
+ "filename": "src/platform/ApiGateway.ts",
4210
+ "line": 36
4211
+ },
4212
+ "name": "userPool",
4213
+ "type": {
4214
+ "fqn": "aws-cdk-lib.aws_cognito.IUserPool"
4215
+ }
4216
+ },
4217
+ {
4218
+ "abstract": true,
4219
+ "docs": {
4220
+ "stability": "experimental",
4221
+ "summary": "List of User Pool Clients that are allowed to access the API Gateway."
4222
+ },
4223
+ "immutable": true,
4224
+ "locationInModule": {
4225
+ "filename": "src/platform/ApiGateway.ts",
4226
+ "line": 41
4227
+ },
4228
+ "name": "userPoolClients",
4229
+ "type": {
4230
+ "collection": {
4231
+ "elementtype": {
4232
+ "fqn": "aws-cdk-lib.aws_cognito.IUserPoolClient"
4233
+ },
4234
+ "kind": "array"
4235
+ }
4236
+ }
4237
+ },
4238
+ {
4239
+ "abstract": true,
4240
+ "docs": {
4241
+ "stability": "experimental",
4242
+ "summary": "VPC where the API GW Security group and VPC Link will be created."
4243
+ },
4244
+ "immutable": true,
4245
+ "locationInModule": {
4246
+ "filename": "src/platform/ApiGateway.ts",
4247
+ "line": 31
4248
+ },
4249
+ "name": "vpc",
4250
+ "type": {
4251
+ "fqn": "aws-cdk-lib.aws_ec2.IVpc"
4252
+ }
4253
+ },
4254
+ {
4255
+ "abstract": true,
4256
+ "docs": {
4257
+ "remarks": "default: true",
4258
+ "stability": "experimental",
4259
+ "summary": "Enable access logs for the API Gateway."
4260
+ },
4261
+ "immutable": true,
4262
+ "locationInModule": {
4263
+ "filename": "src/platform/ApiGateway.ts",
4264
+ "line": 58
4265
+ },
4266
+ "name": "enableAccessLogs",
4267
+ "optional": true,
4268
+ "type": {
4269
+ "primitive": "boolean"
4270
+ }
4271
+ }
4272
+ ],
4273
+ "symbolId": "src/platform/ApiGateway:ApiGatewayProps"
4274
+ },
4275
+ "@btc-embedded/cdk-extensions.ApplicationLoadBalancer": {
4276
+ "assembly": "@btc-embedded/cdk-extensions",
4277
+ "base": "constructs.Construct",
4278
+ "docs": {
4279
+ "stability": "experimental"
4280
+ },
4281
+ "fqn": "@btc-embedded/cdk-extensions.ApplicationLoadBalancer",
4282
+ "initializer": {
4283
+ "docs": {
4284
+ "stability": "experimental"
4285
+ },
4286
+ "locationInModule": {
4287
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4288
+ "line": 40
4289
+ },
4290
+ "parameters": [
4291
+ {
4292
+ "name": "scope",
4293
+ "type": {
4294
+ "fqn": "constructs.Construct"
4295
+ }
4296
+ },
4297
+ {
4298
+ "name": "id",
4299
+ "type": {
4300
+ "primitive": "string"
4301
+ }
4302
+ },
4303
+ {
4304
+ "name": "props",
4305
+ "type": {
4306
+ "fqn": "@btc-embedded/cdk-extensions.ApplicationLoadBalancerProps"
4307
+ }
4308
+ }
4309
+ ]
4310
+ },
4311
+ "kind": "class",
4312
+ "locationInModule": {
4313
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4314
+ "line": 33
4315
+ },
4316
+ "name": "ApplicationLoadBalancer",
4317
+ "properties": [
4318
+ {
4319
+ "docs": {
4320
+ "stability": "experimental"
4321
+ },
4322
+ "immutable": true,
4323
+ "locationInModule": {
4324
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4325
+ "line": 34
4326
+ },
4327
+ "name": "loadbalancer",
4328
+ "type": {
4329
+ "fqn": "aws-cdk-lib.aws_elasticloadbalancingv2.ApplicationLoadBalancer"
4330
+ }
4331
+ },
4332
+ {
4333
+ "docs": {
4334
+ "stability": "experimental"
4335
+ },
4336
+ "immutable": true,
4337
+ "locationInModule": {
4338
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4339
+ "line": 36
4340
+ },
4341
+ "name": "loadBalancer",
4342
+ "type": {
4343
+ "fqn": "aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationLoadBalancer"
4344
+ }
4345
+ }
4346
+ ],
4347
+ "symbolId": "src/platform/ApplicationLoadBalancer:ApplicationLoadBalancer"
4348
+ },
4086
4349
  "@btc-embedded/cdk-extensions.ApplicationLoadBalancerExtension": {
4087
4350
  "assembly": "@btc-embedded/cdk-extensions",
4088
4351
  "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -4374,59 +4637,166 @@
4374
4637
  ],
4375
4638
  "symbolId": "src/extensions/ApplicationLoadBalancerExtension:ApplicationLoadBalancerExtensionProps"
4376
4639
  },
4377
- "@btc-embedded/cdk-extensions.CloudMapExtension": {
4640
+ "@btc-embedded/cdk-extensions.ApplicationLoadBalancerProps": {
4378
4641
  "assembly": "@btc-embedded/cdk-extensions",
4379
- "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4642
+ "datatype": true,
4380
4643
  "docs": {
4381
4644
  "stability": "experimental"
4382
4645
  },
4383
- "fqn": "@btc-embedded/cdk-extensions.CloudMapExtension",
4384
- "initializer": {
4385
- "docs": {
4386
- "stability": "experimental"
4387
- },
4388
- "locationInModule": {
4389
- "filename": "src/extensions/CloudMapExtension.ts",
4390
- "line": 25
4391
- },
4392
- "parameters": [
4393
- {
4394
- "name": "props",
4395
- "type": {
4396
- "fqn": "@btc-embedded/cdk-extensions.CloudMapExtensionProps"
4397
- }
4398
- }
4399
- ]
4400
- },
4401
- "kind": "class",
4646
+ "fqn": "@btc-embedded/cdk-extensions.ApplicationLoadBalancerProps",
4647
+ "kind": "interface",
4402
4648
  "locationInModule": {
4403
- "filename": "src/extensions/CloudMapExtension.ts",
4404
- "line": 22
4649
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4650
+ "line": 24
4405
4651
  },
4406
- "methods": [
4652
+ "name": "ApplicationLoadBalancerProps",
4653
+ "properties": [
4407
4654
  {
4655
+ "abstract": true,
4408
4656
  "docs": {
4409
- "stability": "experimental",
4410
- "summary": "Adjust the security group of the given service to allow traffic from this service."
4657
+ "stability": "experimental"
4411
4658
  },
4659
+ "immutable": true,
4412
4660
  "locationInModule": {
4413
- "filename": "src/extensions/CloudMapExtension.ts",
4414
- "line": 118
4661
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4662
+ "line": 25
4415
4663
  },
4416
- "name": "connectToService",
4417
- "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4418
- "parameters": [
4419
- {
4420
- "name": "service",
4421
- "type": {
4422
- "fqn": "@aws-cdk-containers/ecs-service-extensions.Service"
4423
- }
4424
- },
4425
- {
4426
- "name": "_connectToProps",
4427
- "optional": true,
4428
- "type": {
4429
- "fqn": "@aws-cdk-containers/ecs-service-extensions.ConnectToProps"
4664
+ "name": "fqdn",
4665
+ "type": {
4666
+ "primitive": "string"
4667
+ }
4668
+ },
4669
+ {
4670
+ "abstract": true,
4671
+ "docs": {
4672
+ "stability": "experimental"
4673
+ },
4674
+ "immutable": true,
4675
+ "locationInModule": {
4676
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4677
+ "line": 30
4678
+ },
4679
+ "name": "hostedZone",
4680
+ "type": {
4681
+ "fqn": "aws-cdk-lib.aws_route53.IHostedZone"
4682
+ }
4683
+ },
4684
+ {
4685
+ "abstract": true,
4686
+ "docs": {
4687
+ "stability": "experimental"
4688
+ },
4689
+ "immutable": true,
4690
+ "locationInModule": {
4691
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4692
+ "line": 27
4693
+ },
4694
+ "name": "userPool",
4695
+ "type": {
4696
+ "fqn": "aws-cdk-lib.aws_cognito.IUserPool"
4697
+ }
4698
+ },
4699
+ {
4700
+ "abstract": true,
4701
+ "docs": {
4702
+ "stability": "experimental"
4703
+ },
4704
+ "immutable": true,
4705
+ "locationInModule": {
4706
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4707
+ "line": 28
4708
+ },
4709
+ "name": "userPoolClient",
4710
+ "type": {
4711
+ "fqn": "aws-cdk-lib.aws_cognito.IUserPoolClient"
4712
+ }
4713
+ },
4714
+ {
4715
+ "abstract": true,
4716
+ "docs": {
4717
+ "stability": "experimental"
4718
+ },
4719
+ "immutable": true,
4720
+ "locationInModule": {
4721
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4722
+ "line": 29
4723
+ },
4724
+ "name": "userPoolDomain",
4725
+ "type": {
4726
+ "fqn": "aws-cdk-lib.aws_cognito.IUserPoolDomain"
4727
+ }
4728
+ },
4729
+ {
4730
+ "abstract": true,
4731
+ "docs": {
4732
+ "stability": "experimental"
4733
+ },
4734
+ "immutable": true,
4735
+ "locationInModule": {
4736
+ "filename": "src/platform/ApplicationLoadBalancer.ts",
4737
+ "line": 26
4738
+ },
4739
+ "name": "vpc",
4740
+ "type": {
4741
+ "fqn": "aws-cdk-lib.aws_ec2.IVpc"
4742
+ }
4743
+ }
4744
+ ],
4745
+ "symbolId": "src/platform/ApplicationLoadBalancer:ApplicationLoadBalancerProps"
4746
+ },
4747
+ "@btc-embedded/cdk-extensions.CloudMapExtension": {
4748
+ "assembly": "@btc-embedded/cdk-extensions",
4749
+ "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4750
+ "docs": {
4751
+ "stability": "experimental"
4752
+ },
4753
+ "fqn": "@btc-embedded/cdk-extensions.CloudMapExtension",
4754
+ "initializer": {
4755
+ "docs": {
4756
+ "stability": "experimental"
4757
+ },
4758
+ "locationInModule": {
4759
+ "filename": "src/extensions/CloudMapExtension.ts",
4760
+ "line": 28
4761
+ },
4762
+ "parameters": [
4763
+ {
4764
+ "name": "props",
4765
+ "type": {
4766
+ "fqn": "@btc-embedded/cdk-extensions.CloudMapExtensionProps"
4767
+ }
4768
+ }
4769
+ ]
4770
+ },
4771
+ "kind": "class",
4772
+ "locationInModule": {
4773
+ "filename": "src/extensions/CloudMapExtension.ts",
4774
+ "line": 23
4775
+ },
4776
+ "methods": [
4777
+ {
4778
+ "docs": {
4779
+ "stability": "experimental",
4780
+ "summary": "Adjust the security group of the given service to allow traffic from this service."
4781
+ },
4782
+ "locationInModule": {
4783
+ "filename": "src/extensions/CloudMapExtension.ts",
4784
+ "line": 119
4785
+ },
4786
+ "name": "connectToService",
4787
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4788
+ "parameters": [
4789
+ {
4790
+ "name": "service",
4791
+ "type": {
4792
+ "fqn": "@aws-cdk-containers/ecs-service-extensions.Service"
4793
+ }
4794
+ },
4795
+ {
4796
+ "name": "_connectToProps",
4797
+ "optional": true,
4798
+ "type": {
4799
+ "fqn": "@aws-cdk-containers/ecs-service-extensions.ConnectToProps"
4430
4800
  }
4431
4801
  }
4432
4802
  ]
@@ -4438,7 +4808,7 @@
4438
4808
  },
4439
4809
  "locationInModule": {
4440
4810
  "filename": "src/extensions/CloudMapExtension.ts",
4441
- "line": 31
4811
+ "line": 34
4442
4812
  },
4443
4813
  "name": "modifyServiceProps",
4444
4814
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -4464,7 +4834,7 @@
4464
4834
  },
4465
4835
  "locationInModule": {
4466
4836
  "filename": "src/extensions/CloudMapExtension.ts",
4467
- "line": 72
4837
+ "line": 77
4468
4838
  },
4469
4839
  "name": "useService",
4470
4840
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -4495,12 +4865,25 @@
4495
4865
  },
4496
4866
  "locationInModule": {
4497
4867
  "filename": "src/extensions/CloudMapExtension.ts",
4498
- "line": 23
4868
+ "line": 24
4499
4869
  },
4500
4870
  "name": "props",
4501
4871
  "type": {
4502
4872
  "fqn": "@btc-embedded/cdk-extensions.CloudMapExtensionProps"
4503
4873
  }
4874
+ },
4875
+ {
4876
+ "docs": {
4877
+ "stability": "experimental"
4878
+ },
4879
+ "locationInModule": {
4880
+ "filename": "src/extensions/CloudMapExtension.ts",
4881
+ "line": 26
4882
+ },
4883
+ "name": "serviceName",
4884
+ "type": {
4885
+ "primitive": "string"
4886
+ }
4504
4887
  }
4505
4888
  ],
4506
4889
  "symbolId": "src/extensions/CloudMapExtension:CloudMapExtension"
@@ -4515,7 +4898,7 @@
4515
4898
  "kind": "interface",
4516
4899
  "locationInModule": {
4517
4900
  "filename": "src/extensions/CloudMapExtension.ts",
4518
- "line": 18
4901
+ "line": 19
4519
4902
  },
4520
4903
  "name": "CloudMapExtensionProps",
4521
4904
  "properties": [
@@ -4527,7 +4910,7 @@
4527
4910
  "immutable": true,
4528
4911
  "locationInModule": {
4529
4912
  "filename": "src/extensions/CloudMapExtension.ts",
4530
- "line": 19
4913
+ "line": 20
4531
4914
  },
4532
4915
  "name": "platformStackName",
4533
4916
  "type": {
@@ -4575,119 +4958,61 @@
4575
4958
  ],
4576
4959
  "symbolId": "src/extensions/ExtraContainerExtension:ContainerProps"
4577
4960
  },
4578
- "@btc-embedded/cdk-extensions.DocumentDbAccessExtension": {
4961
+ "@btc-embedded/cdk-extensions.DefaultUserPoolClients": {
4579
4962
  "assembly": "@btc-embedded/cdk-extensions",
4580
- "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4963
+ "base": "constructs.Construct",
4581
4964
  "docs": {
4582
- "stability": "experimental"
4965
+ "stability": "experimental",
4966
+ "summary": "Create default user pool clients for the frontend and API access."
4583
4967
  },
4584
- "fqn": "@btc-embedded/cdk-extensions.DocumentDbAccessExtension",
4968
+ "fqn": "@btc-embedded/cdk-extensions.DefaultUserPoolClients",
4585
4969
  "initializer": {
4586
4970
  "docs": {
4587
4971
  "stability": "experimental"
4588
4972
  },
4589
4973
  "locationInModule": {
4590
- "filename": "src/extensions/DocumentDbAccessExtension.ts",
4591
- "line": 56
4974
+ "filename": "src/platform/DefaultUserPoolClients.ts",
4975
+ "line": 27
4592
4976
  },
4593
4977
  "parameters": [
4978
+ {
4979
+ "name": "scope",
4980
+ "type": {
4981
+ "fqn": "constructs.Construct"
4982
+ }
4983
+ },
4984
+ {
4985
+ "name": "id",
4986
+ "type": {
4987
+ "primitive": "string"
4988
+ }
4989
+ },
4594
4990
  {
4595
4991
  "name": "props",
4596
4992
  "type": {
4597
- "fqn": "@btc-embedded/cdk-extensions.DocumentDbAccessExtensionProps"
4993
+ "fqn": "@btc-embedded/cdk-extensions.DefaultUserPoolClientsProps"
4598
4994
  }
4599
4995
  }
4600
4996
  ]
4601
4997
  },
4602
4998
  "kind": "class",
4603
4999
  "locationInModule": {
4604
- "filename": "src/extensions/DocumentDbAccessExtension.ts",
4605
- "line": 51
5000
+ "filename": "src/platform/DefaultUserPoolClients.ts",
5001
+ "line": 23
4606
5002
  },
4607
- "methods": [
4608
- {
4609
- "docs": {
4610
- "stability": "experimental",
4611
- "summary": "A hook that allows the extension to add hooks to other extensions that are registered."
4612
- },
4613
- "locationInModule": {
4614
- "filename": "src/extensions/DocumentDbAccessExtension.ts",
4615
- "line": 72
4616
- },
4617
- "name": "addHooks",
4618
- "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
4619
- },
4620
- {
4621
- "docs": {
4622
- "stability": "experimental",
4623
- "summary": "A hook that is called for each extension ahead of time to allow for any initial setup, such as creating resources in advance."
4624
- },
4625
- "locationInModule": {
4626
- "filename": "src/extensions/DocumentDbAccessExtension.ts",
4627
- "line": 61
4628
- },
4629
- "name": "prehook",
4630
- "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4631
- "parameters": [
4632
- {
4633
- "name": "parent",
4634
- "type": {
4635
- "fqn": "@aws-cdk-containers/ecs-service-extensions.Service"
4636
- }
4637
- },
4638
- {
4639
- "name": "scope",
4640
- "type": {
4641
- "fqn": "constructs.Construct"
4642
- }
4643
- }
4644
- ]
4645
- },
4646
- {
4647
- "docs": {
4648
- "remarks": "It is generally used to\ncreate any final resources which might depend on the service itself.",
4649
- "stability": "experimental",
4650
- "summary": "When this hook is implemented by extension, it allows the extension to use the service which has been created."
4651
- },
4652
- "locationInModule": {
4653
- "filename": "src/extensions/DocumentDbAccessExtension.ts",
4654
- "line": 90
4655
- },
4656
- "name": "useService",
4657
- "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4658
- "parameters": [
4659
- {
4660
- "name": "service",
4661
- "type": {
4662
- "union": {
4663
- "types": [
4664
- {
4665
- "fqn": "aws-cdk-lib.aws_ecs.Ec2Service"
4666
- },
4667
- {
4668
- "fqn": "aws-cdk-lib.aws_ecs.FargateService"
4669
- }
4670
- ]
4671
- }
4672
- }
4673
- }
4674
- ]
4675
- }
4676
- ],
4677
- "name": "DocumentDbAccessExtension",
5003
+ "name": "DefaultUserPoolClients",
4678
5004
  "properties": [
4679
5005
  {
4680
5006
  "docs": {
4681
5007
  "stability": "experimental"
4682
5008
  },
4683
- "immutable": true,
4684
5009
  "locationInModule": {
4685
- "filename": "src/extensions/DocumentDbAccessExtension.ts",
4686
- "line": 52
5010
+ "filename": "src/platform/DefaultUserPoolClients.ts",
5011
+ "line": 25
4687
5012
  },
4688
- "name": "props",
5013
+ "name": "apiClient",
4689
5014
  "type": {
4690
- "fqn": "@btc-embedded/cdk-extensions.DocumentDbAccessExtensionProps"
5015
+ "fqn": "aws-cdk-lib.aws_cognito.IUserPoolClient"
4691
5016
  }
4692
5017
  },
4693
5018
  {
@@ -4695,30 +5020,30 @@
4695
5020
  "stability": "experimental"
4696
5021
  },
4697
5022
  "locationInModule": {
4698
- "filename": "src/extensions/DocumentDbAccessExtension.ts",
4699
- "line": 54
5023
+ "filename": "src/platform/DefaultUserPoolClients.ts",
5024
+ "line": 24
4700
5025
  },
4701
- "name": "secretArn",
5026
+ "name": "frontendClient",
4702
5027
  "type": {
4703
- "primitive": "string"
5028
+ "fqn": "aws-cdk-lib.aws_cognito.IUserPoolClient"
4704
5029
  }
4705
5030
  }
4706
5031
  ],
4707
- "symbolId": "src/extensions/DocumentDbAccessExtension:DocumentDbAccessExtension"
5032
+ "symbolId": "src/platform/DefaultUserPoolClients:DefaultUserPoolClients"
4708
5033
  },
4709
- "@btc-embedded/cdk-extensions.DocumentDbAccessExtensionProps": {
5034
+ "@btc-embedded/cdk-extensions.DefaultUserPoolClientsProps": {
4710
5035
  "assembly": "@btc-embedded/cdk-extensions",
4711
5036
  "datatype": true,
4712
5037
  "docs": {
4713
5038
  "stability": "experimental"
4714
5039
  },
4715
- "fqn": "@btc-embedded/cdk-extensions.DocumentDbAccessExtensionProps",
5040
+ "fqn": "@btc-embedded/cdk-extensions.DefaultUserPoolClientsProps",
4716
5041
  "kind": "interface",
4717
5042
  "locationInModule": {
4718
- "filename": "src/extensions/DocumentDbAccessExtension.ts",
4719
- "line": 14
5043
+ "filename": "src/platform/DefaultUserPoolClients.ts",
5044
+ "line": 12
4720
5045
  },
4721
- "name": "DocumentDbAccessExtensionProps",
5046
+ "name": "DefaultUserPoolClientsProps",
4722
5047
  "properties": [
4723
5048
  {
4724
5049
  "abstract": true,
@@ -4727,12 +5052,17 @@
4727
5052
  },
4728
5053
  "immutable": true,
4729
5054
  "locationInModule": {
4730
- "filename": "src/extensions/DocumentDbAccessExtension.ts",
5055
+ "filename": "src/platform/DefaultUserPoolClients.ts",
4731
5056
  "line": 15
4732
5057
  },
4733
- "name": "basePlatformStackName",
5058
+ "name": "callbackUrls",
4734
5059
  "type": {
4735
- "primitive": "string"
5060
+ "collection": {
5061
+ "elementtype": {
5062
+ "primitive": "string"
5063
+ },
5064
+ "kind": "array"
5065
+ }
4736
5066
  }
4737
5067
  },
4738
5068
  {
@@ -4742,46 +5072,940 @@
4742
5072
  },
4743
5073
  "immutable": true,
4744
5074
  "locationInModule": {
4745
- "filename": "src/extensions/DocumentDbAccessExtension.ts",
5075
+ "filename": "src/platform/DefaultUserPoolClients.ts",
4746
5076
  "line": 16
4747
5077
  },
4748
- "name": "securityGroupId",
5078
+ "name": "fqdn",
4749
5079
  "type": {
4750
5080
  "primitive": "string"
4751
5081
  }
4752
- }
4753
- ],
4754
- "symbolId": "src/extensions/DocumentDbAccessExtension:DocumentDbAccessExtensionProps"
4755
- },
4756
- "@btc-embedded/cdk-extensions.DomainEventMessagingExtension": {
4757
- "assembly": "@btc-embedded/cdk-extensions",
4758
- "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5082
+ },
5083
+ {
5084
+ "abstract": true,
5085
+ "docs": {
5086
+ "stability": "experimental"
5087
+ },
5088
+ "immutable": true,
5089
+ "locationInModule": {
5090
+ "filename": "src/platform/DefaultUserPoolClients.ts",
5091
+ "line": 14
5092
+ },
5093
+ "name": "logoutUrls",
5094
+ "type": {
5095
+ "collection": {
5096
+ "elementtype": {
5097
+ "primitive": "string"
5098
+ },
5099
+ "kind": "array"
5100
+ }
5101
+ }
5102
+ },
5103
+ {
5104
+ "abstract": true,
5105
+ "docs": {
5106
+ "stability": "experimental"
5107
+ },
5108
+ "immutable": true,
5109
+ "locationInModule": {
5110
+ "filename": "src/platform/DefaultUserPoolClients.ts",
5111
+ "line": 13
5112
+ },
5113
+ "name": "userPool",
5114
+ "type": {
5115
+ "fqn": "aws-cdk-lib.aws_cognito.IUserPool"
5116
+ }
5117
+ },
5118
+ {
5119
+ "abstract": true,
5120
+ "docs": {
5121
+ "stability": "experimental"
5122
+ },
5123
+ "immutable": true,
5124
+ "locationInModule": {
5125
+ "filename": "src/platform/DefaultUserPoolClients.ts",
5126
+ "line": 17
5127
+ },
5128
+ "name": "additonalUserPoolIdentityProviders",
5129
+ "optional": true,
5130
+ "type": {
5131
+ "collection": {
5132
+ "elementtype": {
5133
+ "primitive": "string"
5134
+ },
5135
+ "kind": "array"
5136
+ }
5137
+ }
5138
+ }
5139
+ ],
5140
+ "symbolId": "src/platform/DefaultUserPoolClients:DefaultUserPoolClientsProps"
5141
+ },
5142
+ "@btc-embedded/cdk-extensions.DocumentDB": {
5143
+ "assembly": "@btc-embedded/cdk-extensions",
5144
+ "base": "constructs.Construct",
5145
+ "docs": {
5146
+ "stability": "experimental"
5147
+ },
5148
+ "fqn": "@btc-embedded/cdk-extensions.DocumentDB",
5149
+ "initializer": {
5150
+ "docs": {
5151
+ "stability": "experimental"
5152
+ },
5153
+ "locationInModule": {
5154
+ "filename": "src/platform/DocumentDB.ts",
5155
+ "line": 23
5156
+ },
5157
+ "parameters": [
5158
+ {
5159
+ "name": "scope",
5160
+ "type": {
5161
+ "fqn": "constructs.Construct"
5162
+ }
5163
+ },
5164
+ {
5165
+ "name": "id",
5166
+ "type": {
5167
+ "primitive": "string"
5168
+ }
5169
+ },
5170
+ {
5171
+ "name": "props",
5172
+ "type": {
5173
+ "fqn": "@btc-embedded/cdk-extensions.DocumentDBProps"
5174
+ }
5175
+ }
5176
+ ]
5177
+ },
5178
+ "kind": "class",
5179
+ "locationInModule": {
5180
+ "filename": "src/platform/DocumentDB.ts",
5181
+ "line": 20
5182
+ },
5183
+ "name": "DocumentDB",
5184
+ "symbolId": "src/platform/DocumentDB:DocumentDB"
5185
+ },
5186
+ "@btc-embedded/cdk-extensions.DocumentDBProps": {
5187
+ "assembly": "@btc-embedded/cdk-extensions",
5188
+ "datatype": true,
5189
+ "docs": {
5190
+ "stability": "experimental"
5191
+ },
5192
+ "fqn": "@btc-embedded/cdk-extensions.DocumentDBProps",
5193
+ "kind": "interface",
5194
+ "locationInModule": {
5195
+ "filename": "src/platform/DocumentDB.ts",
5196
+ "line": 13
5197
+ },
5198
+ "name": "DocumentDBProps",
5199
+ "properties": [
5200
+ {
5201
+ "abstract": true,
5202
+ "docs": {
5203
+ "stability": "experimental"
5204
+ },
5205
+ "immutable": true,
5206
+ "locationInModule": {
5207
+ "filename": "src/platform/DocumentDB.ts",
5208
+ "line": 16
5209
+ },
5210
+ "name": "secretName",
5211
+ "type": {
5212
+ "primitive": "string"
5213
+ }
5214
+ },
5215
+ {
5216
+ "abstract": true,
5217
+ "docs": {
5218
+ "stability": "experimental"
5219
+ },
5220
+ "immutable": true,
5221
+ "locationInModule": {
5222
+ "filename": "src/platform/DocumentDB.ts",
5223
+ "line": 14
5224
+ },
5225
+ "name": "stackName",
5226
+ "type": {
5227
+ "primitive": "string"
5228
+ }
5229
+ },
5230
+ {
5231
+ "abstract": true,
5232
+ "docs": {
5233
+ "stability": "experimental"
5234
+ },
5235
+ "immutable": true,
5236
+ "locationInModule": {
5237
+ "filename": "src/platform/DocumentDB.ts",
5238
+ "line": 15
5239
+ },
5240
+ "name": "username",
5241
+ "type": {
5242
+ "primitive": "string"
5243
+ }
5244
+ },
5245
+ {
5246
+ "abstract": true,
5247
+ "docs": {
5248
+ "stability": "experimental"
5249
+ },
5250
+ "immutable": true,
5251
+ "locationInModule": {
5252
+ "filename": "src/platform/DocumentDB.ts",
5253
+ "line": 17
5254
+ },
5255
+ "name": "vpc",
5256
+ "type": {
5257
+ "fqn": "aws-cdk-lib.aws_ec2.IVpc"
5258
+ }
5259
+ }
5260
+ ],
5261
+ "symbolId": "src/platform/DocumentDB:DocumentDBProps"
5262
+ },
5263
+ "@btc-embedded/cdk-extensions.DocumentDbAccessExtension": {
5264
+ "assembly": "@btc-embedded/cdk-extensions",
5265
+ "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5266
+ "docs": {
5267
+ "stability": "experimental"
5268
+ },
5269
+ "fqn": "@btc-embedded/cdk-extensions.DocumentDbAccessExtension",
5270
+ "initializer": {
5271
+ "docs": {
5272
+ "stability": "experimental"
5273
+ },
5274
+ "locationInModule": {
5275
+ "filename": "src/extensions/DocumentDbAccessExtension.ts",
5276
+ "line": 55
5277
+ },
5278
+ "parameters": [
5279
+ {
5280
+ "name": "props",
5281
+ "type": {
5282
+ "fqn": "@btc-embedded/cdk-extensions.DocumentDbAccessExtensionProps"
5283
+ }
5284
+ }
5285
+ ]
5286
+ },
5287
+ "kind": "class",
5288
+ "locationInModule": {
5289
+ "filename": "src/extensions/DocumentDbAccessExtension.ts",
5290
+ "line": 50
5291
+ },
5292
+ "methods": [
5293
+ {
5294
+ "docs": {
5295
+ "stability": "experimental",
5296
+ "summary": "A hook that allows the extension to add hooks to other extensions that are registered."
5297
+ },
5298
+ "locationInModule": {
5299
+ "filename": "src/extensions/DocumentDbAccessExtension.ts",
5300
+ "line": 71
5301
+ },
5302
+ "name": "addHooks",
5303
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
5304
+ },
5305
+ {
5306
+ "docs": {
5307
+ "stability": "experimental",
5308
+ "summary": "A hook that is called for each extension ahead of time to allow for any initial setup, such as creating resources in advance."
5309
+ },
5310
+ "locationInModule": {
5311
+ "filename": "src/extensions/DocumentDbAccessExtension.ts",
5312
+ "line": 60
5313
+ },
5314
+ "name": "prehook",
5315
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5316
+ "parameters": [
5317
+ {
5318
+ "name": "parent",
5319
+ "type": {
5320
+ "fqn": "@aws-cdk-containers/ecs-service-extensions.Service"
5321
+ }
5322
+ },
5323
+ {
5324
+ "name": "scope",
5325
+ "type": {
5326
+ "fqn": "constructs.Construct"
5327
+ }
5328
+ }
5329
+ ]
5330
+ },
5331
+ {
5332
+ "docs": {
5333
+ "remarks": "It is generally used to\ncreate any final resources which might depend on the service itself.",
5334
+ "stability": "experimental",
5335
+ "summary": "When this hook is implemented by extension, it allows the extension to use the service which has been created."
5336
+ },
5337
+ "locationInModule": {
5338
+ "filename": "src/extensions/DocumentDbAccessExtension.ts",
5339
+ "line": 87
5340
+ },
5341
+ "name": "useService",
5342
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5343
+ "parameters": [
5344
+ {
5345
+ "name": "service",
5346
+ "type": {
5347
+ "union": {
5348
+ "types": [
5349
+ {
5350
+ "fqn": "aws-cdk-lib.aws_ecs.Ec2Service"
5351
+ },
5352
+ {
5353
+ "fqn": "aws-cdk-lib.aws_ecs.FargateService"
5354
+ }
5355
+ ]
5356
+ }
5357
+ }
5358
+ }
5359
+ ]
5360
+ }
5361
+ ],
5362
+ "name": "DocumentDbAccessExtension",
5363
+ "properties": [
5364
+ {
5365
+ "docs": {
5366
+ "stability": "experimental"
5367
+ },
5368
+ "immutable": true,
5369
+ "locationInModule": {
5370
+ "filename": "src/extensions/DocumentDbAccessExtension.ts",
5371
+ "line": 51
5372
+ },
5373
+ "name": "props",
5374
+ "type": {
5375
+ "fqn": "@btc-embedded/cdk-extensions.DocumentDbAccessExtensionProps"
5376
+ }
5377
+ },
5378
+ {
5379
+ "docs": {
5380
+ "stability": "experimental"
5381
+ },
5382
+ "locationInModule": {
5383
+ "filename": "src/extensions/DocumentDbAccessExtension.ts",
5384
+ "line": 53
5385
+ },
5386
+ "name": "secretArn",
5387
+ "type": {
5388
+ "primitive": "string"
5389
+ }
5390
+ }
5391
+ ],
5392
+ "symbolId": "src/extensions/DocumentDbAccessExtension:DocumentDbAccessExtension"
5393
+ },
5394
+ "@btc-embedded/cdk-extensions.DocumentDbAccessExtensionProps": {
5395
+ "assembly": "@btc-embedded/cdk-extensions",
5396
+ "datatype": true,
5397
+ "docs": {
5398
+ "stability": "experimental"
5399
+ },
5400
+ "fqn": "@btc-embedded/cdk-extensions.DocumentDbAccessExtensionProps",
5401
+ "kind": "interface",
5402
+ "locationInModule": {
5403
+ "filename": "src/extensions/DocumentDbAccessExtension.ts",
5404
+ "line": 13
5405
+ },
5406
+ "name": "DocumentDbAccessExtensionProps",
5407
+ "properties": [
5408
+ {
5409
+ "abstract": true,
5410
+ "docs": {
5411
+ "stability": "experimental"
5412
+ },
5413
+ "immutable": true,
5414
+ "locationInModule": {
5415
+ "filename": "src/extensions/DocumentDbAccessExtension.ts",
5416
+ "line": 14
5417
+ },
5418
+ "name": "basePlatformStackName",
5419
+ "type": {
5420
+ "primitive": "string"
5421
+ }
5422
+ },
5423
+ {
5424
+ "abstract": true,
5425
+ "docs": {
5426
+ "stability": "experimental"
5427
+ },
5428
+ "immutable": true,
5429
+ "locationInModule": {
5430
+ "filename": "src/extensions/DocumentDbAccessExtension.ts",
5431
+ "line": 15
5432
+ },
5433
+ "name": "securityGroupId",
5434
+ "type": {
5435
+ "primitive": "string"
5436
+ }
5437
+ }
5438
+ ],
5439
+ "symbolId": "src/extensions/DocumentDbAccessExtension:DocumentDbAccessExtensionProps"
5440
+ },
5441
+ "@btc-embedded/cdk-extensions.DomainEventMessagingExtension": {
5442
+ "assembly": "@btc-embedded/cdk-extensions",
5443
+ "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5444
+ "docs": {
5445
+ "stability": "experimental"
5446
+ },
5447
+ "fqn": "@btc-embedded/cdk-extensions.DomainEventMessagingExtension",
5448
+ "initializer": {
5449
+ "docs": {
5450
+ "stability": "experimental"
5451
+ },
5452
+ "locationInModule": {
5453
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5454
+ "line": 36
5455
+ },
5456
+ "parameters": [
5457
+ {
5458
+ "name": "props",
5459
+ "optional": true,
5460
+ "type": {
5461
+ "fqn": "@btc-embedded/cdk-extensions.EventListenerExtensionProps"
5462
+ }
5463
+ }
5464
+ ]
5465
+ },
5466
+ "kind": "class",
5467
+ "locationInModule": {
5468
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5469
+ "line": 28
5470
+ },
5471
+ "methods": [
5472
+ {
5473
+ "docs": {
5474
+ "stability": "experimental",
5475
+ "summary": "A hook that allows the extension to add hooks to other extensions that are registered."
5476
+ },
5477
+ "locationInModule": {
5478
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5479
+ "line": 75
5480
+ },
5481
+ "name": "addHooks",
5482
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
5483
+ },
5484
+ {
5485
+ "docs": {
5486
+ "stability": "experimental",
5487
+ "summary": "A hook that is called for each extension ahead of time to allow for any initial setup, such as creating resources in advance."
5488
+ },
5489
+ "locationInModule": {
5490
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5491
+ "line": 41
5492
+ },
5493
+ "name": "prehook",
5494
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5495
+ "parameters": [
5496
+ {
5497
+ "name": "service",
5498
+ "type": {
5499
+ "fqn": "@aws-cdk-containers/ecs-service-extensions.Service"
5500
+ }
5501
+ },
5502
+ {
5503
+ "name": "scope",
5504
+ "type": {
5505
+ "fqn": "constructs.Construct"
5506
+ }
5507
+ }
5508
+ ]
5509
+ },
5510
+ {
5511
+ "docs": {
5512
+ "stability": "experimental"
5513
+ },
5514
+ "locationInModule": {
5515
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5516
+ "line": 90
5517
+ },
5518
+ "name": "publish",
5519
+ "parameters": [
5520
+ {
5521
+ "name": "topic",
5522
+ "type": {
5523
+ "fqn": "aws-cdk-lib.aws_sns.ITopic"
5524
+ }
5525
+ }
5526
+ ]
5527
+ },
5528
+ {
5529
+ "docs": {
5530
+ "stability": "experimental"
5531
+ },
5532
+ "locationInModule": {
5533
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5534
+ "line": 85
5535
+ },
5536
+ "name": "subscribe",
5537
+ "parameters": [
5538
+ {
5539
+ "name": "topic",
5540
+ "type": {
5541
+ "fqn": "aws-cdk-lib.aws_sns.ITopic"
5542
+ }
5543
+ }
5544
+ ]
5545
+ },
5546
+ {
5547
+ "docs": {
5548
+ "remarks": "It is generally used to\ncreate any final resources which might depend on the service itself.",
5549
+ "stability": "experimental",
5550
+ "summary": "When this hook is implemented by extension, it allows the extension to use the service which has been created."
5551
+ },
5552
+ "locationInModule": {
5553
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5554
+ "line": 94
5555
+ },
5556
+ "name": "useService",
5557
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5558
+ "parameters": [
5559
+ {
5560
+ "name": "_service",
5561
+ "type": {
5562
+ "union": {
5563
+ "types": [
5564
+ {
5565
+ "fqn": "aws-cdk-lib.aws_ecs.Ec2Service"
5566
+ },
5567
+ {
5568
+ "fqn": "aws-cdk-lib.aws_ecs.FargateService"
5569
+ }
5570
+ ]
5571
+ }
5572
+ }
5573
+ }
5574
+ ]
5575
+ },
5576
+ {
5577
+ "docs": {
5578
+ "stability": "experimental",
5579
+ "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."
5580
+ },
5581
+ "locationInModule": {
5582
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5583
+ "line": 80
5584
+ },
5585
+ "name": "useTaskDefinition",
5586
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5587
+ "parameters": [
5588
+ {
5589
+ "name": "taskDefinition",
5590
+ "type": {
5591
+ "fqn": "aws-cdk-lib.aws_ecs.TaskDefinition"
5592
+ }
5593
+ }
5594
+ ]
5595
+ }
5596
+ ],
5597
+ "name": "DomainEventMessagingExtension",
5598
+ "properties": [
5599
+ {
5600
+ "docs": {
5601
+ "stability": "experimental"
5602
+ },
5603
+ "locationInModule": {
5604
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5605
+ "line": 29
5606
+ },
5607
+ "name": "props",
5608
+ "type": {
5609
+ "fqn": "@btc-embedded/cdk-extensions.EventListenerExtensionProps"
5610
+ }
5611
+ },
5612
+ {
5613
+ "docs": {
5614
+ "stability": "experimental"
5615
+ },
5616
+ "locationInModule": {
5617
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5618
+ "line": 34
5619
+ },
5620
+ "name": "publishEvents",
5621
+ "type": {
5622
+ "collection": {
5623
+ "elementtype": {
5624
+ "fqn": "aws-cdk-lib.aws_sns.ITopic"
5625
+ },
5626
+ "kind": "array"
5627
+ }
5628
+ }
5629
+ },
5630
+ {
5631
+ "docs": {
5632
+ "stability": "experimental"
5633
+ },
5634
+ "locationInModule": {
5635
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5636
+ "line": 33
5637
+ },
5638
+ "name": "subscribeEvents",
5639
+ "type": {
5640
+ "collection": {
5641
+ "elementtype": {
5642
+ "fqn": "aws-cdk-lib.aws_sns.ITopic"
5643
+ },
5644
+ "kind": "array"
5645
+ }
5646
+ }
5647
+ },
5648
+ {
5649
+ "docs": {
5650
+ "stability": "experimental"
5651
+ },
5652
+ "locationInModule": {
5653
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5654
+ "line": 32
5655
+ },
5656
+ "name": "injecterExtension",
5657
+ "optional": true,
5658
+ "type": {
5659
+ "fqn": "@aws-cdk-containers/ecs-service-extensions.InjecterExtension"
5660
+ }
5661
+ },
5662
+ {
5663
+ "docs": {
5664
+ "stability": "experimental"
5665
+ },
5666
+ "locationInModule": {
5667
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5668
+ "line": 30
5669
+ },
5670
+ "name": "queue",
5671
+ "optional": true,
5672
+ "type": {
5673
+ "fqn": "aws-cdk-lib.aws_sqs.IQueue"
5674
+ }
5675
+ },
5676
+ {
5677
+ "docs": {
5678
+ "stability": "experimental"
5679
+ },
5680
+ "locationInModule": {
5681
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5682
+ "line": 31
5683
+ },
5684
+ "name": "queueExtension",
5685
+ "optional": true,
5686
+ "type": {
5687
+ "fqn": "@aws-cdk-containers/ecs-service-extensions.QueueExtension"
5688
+ }
5689
+ }
5690
+ ],
5691
+ "symbolId": "src/extensions/DomainEventMessagingExtension:DomainEventMessagingExtension"
5692
+ },
5693
+ "@btc-embedded/cdk-extensions.EventListenerExtensionProps": {
5694
+ "assembly": "@btc-embedded/cdk-extensions",
5695
+ "datatype": true,
5696
+ "docs": {
5697
+ "stability": "experimental"
5698
+ },
5699
+ "fqn": "@btc-embedded/cdk-extensions.EventListenerExtensionProps",
5700
+ "kind": "interface",
5701
+ "locationInModule": {
5702
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5703
+ "line": 24
5704
+ },
5705
+ "name": "EventListenerExtensionProps",
5706
+ "properties": [
5707
+ {
5708
+ "abstract": true,
5709
+ "docs": {
5710
+ "stability": "experimental"
5711
+ },
5712
+ "immutable": true,
5713
+ "locationInModule": {
5714
+ "filename": "src/extensions/DomainEventMessagingExtension.ts",
5715
+ "line": 25
5716
+ },
5717
+ "name": "queue",
5718
+ "optional": true,
5719
+ "type": {
5720
+ "fqn": "aws-cdk-lib.aws_sqs.Queue"
5721
+ }
5722
+ }
5723
+ ],
5724
+ "symbolId": "src/extensions/DomainEventMessagingExtension:EventListenerExtensionProps"
5725
+ },
5726
+ "@btc-embedded/cdk-extensions.ExtraContainerExtension": {
5727
+ "assembly": "@btc-embedded/cdk-extensions",
5728
+ "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5729
+ "docs": {
5730
+ "stability": "experimental"
5731
+ },
5732
+ "fqn": "@btc-embedded/cdk-extensions.ExtraContainerExtension",
5733
+ "initializer": {
5734
+ "docs": {
5735
+ "stability": "experimental"
5736
+ },
5737
+ "locationInModule": {
5738
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5739
+ "line": 30
5740
+ },
5741
+ "parameters": [
5742
+ {
5743
+ "docs": {
5744
+ "summary": "The name of the extension."
5745
+ },
5746
+ "name": "name",
5747
+ "type": {
5748
+ "primitive": "string"
5749
+ }
5750
+ },
5751
+ {
5752
+ "name": "extraContainer",
5753
+ "type": {
5754
+ "fqn": "@btc-embedded/cdk-extensions.ExtraContainerExtensionProps"
5755
+ }
5756
+ }
5757
+ ]
5758
+ },
5759
+ "kind": "class",
5760
+ "locationInModule": {
5761
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5762
+ "line": 26
5763
+ },
5764
+ "methods": [
5765
+ {
5766
+ "docs": {
5767
+ "remarks": "It is generally used to\ncreate any final resources which might depend on the service itself.",
5768
+ "stability": "experimental",
5769
+ "summary": "When this hook is implemented by extension, it allows the extension to use the service which has been created."
5770
+ },
5771
+ "locationInModule": {
5772
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5773
+ "line": 40
5774
+ },
5775
+ "name": "useService",
5776
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5777
+ "parameters": [
5778
+ {
5779
+ "name": "service",
5780
+ "type": {
5781
+ "union": {
5782
+ "types": [
5783
+ {
5784
+ "fqn": "aws-cdk-lib.aws_ecs.Ec2Service"
5785
+ },
5786
+ {
5787
+ "fqn": "aws-cdk-lib.aws_ecs.FargateService"
5788
+ }
5789
+ ]
5790
+ }
5791
+ }
5792
+ }
5793
+ ]
5794
+ },
5795
+ {
5796
+ "docs": {
5797
+ "stability": "experimental",
5798
+ "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."
5799
+ },
5800
+ "locationInModule": {
5801
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5802
+ "line": 49
5803
+ },
5804
+ "name": "useTaskDefinition",
5805
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5806
+ "parameters": [
5807
+ {
5808
+ "name": "taskDefinition",
5809
+ "type": {
5810
+ "fqn": "aws-cdk-lib.aws_ecs.TaskDefinition"
5811
+ }
5812
+ }
5813
+ ]
5814
+ }
5815
+ ],
5816
+ "name": "ExtraContainerExtension",
5817
+ "properties": [
5818
+ {
5819
+ "docs": {
5820
+ "stability": "experimental"
5821
+ },
5822
+ "immutable": true,
5823
+ "locationInModule": {
5824
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5825
+ "line": 27
5826
+ },
5827
+ "name": "containerName",
5828
+ "type": {
5829
+ "primitive": "string"
5830
+ }
5831
+ },
5832
+ {
5833
+ "docs": {
5834
+ "stability": "experimental"
5835
+ },
5836
+ "immutable": true,
5837
+ "locationInModule": {
5838
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5839
+ "line": 36
5840
+ },
5841
+ "name": "dbAccess",
5842
+ "type": {
5843
+ "primitive": "boolean"
5844
+ }
5845
+ },
5846
+ {
5847
+ "docs": {
5848
+ "stability": "experimental"
5849
+ },
5850
+ "immutable": true,
5851
+ "locationInModule": {
5852
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5853
+ "line": 84
5854
+ },
5855
+ "name": "healthCondition",
5856
+ "type": {
5857
+ "fqn": "aws-cdk-lib.aws_ecs.ContainerDependencyCondition"
5858
+ }
5859
+ },
5860
+ {
5861
+ "docs": {
5862
+ "stability": "experimental"
5863
+ },
5864
+ "immutable": true,
5865
+ "locationInModule": {
5866
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5867
+ "line": 28
5868
+ },
5869
+ "name": "props",
5870
+ "type": {
5871
+ "fqn": "@btc-embedded/cdk-extensions.ExtraContainerExtensionProps"
5872
+ }
5873
+ }
5874
+ ],
5875
+ "symbolId": "src/extensions/ExtraContainerExtension:ExtraContainerExtension"
5876
+ },
5877
+ "@btc-embedded/cdk-extensions.ExtraContainerExtensionProps": {
5878
+ "assembly": "@btc-embedded/cdk-extensions",
5879
+ "datatype": true,
5880
+ "docs": {
5881
+ "stability": "experimental"
5882
+ },
5883
+ "fqn": "@btc-embedded/cdk-extensions.ExtraContainerExtensionProps",
5884
+ "kind": "interface",
5885
+ "locationInModule": {
5886
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5887
+ "line": 15
5888
+ },
5889
+ "name": "ExtraContainerExtensionProps",
5890
+ "properties": [
5891
+ {
5892
+ "abstract": true,
5893
+ "docs": {
5894
+ "stability": "experimental"
5895
+ },
5896
+ "immutable": true,
5897
+ "locationInModule": {
5898
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5899
+ "line": 16
5900
+ },
5901
+ "name": "container",
5902
+ "type": {
5903
+ "fqn": "@btc-embedded/cdk-extensions.ContainerProps"
5904
+ }
5905
+ },
5906
+ {
5907
+ "abstract": true,
5908
+ "docs": {
5909
+ "stability": "experimental"
5910
+ },
5911
+ "immutable": true,
5912
+ "locationInModule": {
5913
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5914
+ "line": 23
5915
+ },
5916
+ "name": "dbAccess",
5917
+ "optional": true,
5918
+ "type": {
5919
+ "primitive": "boolean"
5920
+ }
5921
+ },
5922
+ {
5923
+ "abstract": true,
5924
+ "docs": {
5925
+ "remarks": "Defaults to ContainerDependencyCondition.HEALTHY.",
5926
+ "stability": "experimental",
5927
+ "summary": "Specify the condition when this container should be considered healthy such that the main container can start."
5928
+ },
5929
+ "immutable": true,
5930
+ "locationInModule": {
5931
+ "filename": "src/extensions/ExtraContainerExtension.ts",
5932
+ "line": 22
5933
+ },
5934
+ "name": "healthCheckCondition",
5935
+ "optional": true,
5936
+ "type": {
5937
+ "fqn": "aws-cdk-lib.aws_ecs.ContainerDependencyCondition"
5938
+ }
5939
+ }
5940
+ ],
5941
+ "symbolId": "src/extensions/ExtraContainerExtension:ExtraContainerExtensionProps"
5942
+ },
5943
+ "@btc-embedded/cdk-extensions.LogExtension": {
5944
+ "assembly": "@btc-embedded/cdk-extensions",
5945
+ "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4759
5946
  "docs": {
4760
5947
  "stability": "experimental"
4761
5948
  },
4762
- "fqn": "@btc-embedded/cdk-extensions.DomainEventMessagingExtension",
5949
+ "fqn": "@btc-embedded/cdk-extensions.LogExtension",
4763
5950
  "initializer": {
4764
5951
  "docs": {
4765
5952
  "stability": "experimental"
4766
5953
  },
4767
5954
  "locationInModule": {
4768
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4769
- "line": 36
5955
+ "filename": "src/extensions/LogExtension.ts",
5956
+ "line": 32
5957
+ }
5958
+ },
5959
+ "kind": "class",
5960
+ "locationInModule": {
5961
+ "filename": "src/extensions/LogExtension.ts",
5962
+ "line": 31
5963
+ },
5964
+ "methods": [
5965
+ {
5966
+ "docs": {
5967
+ "stability": "experimental",
5968
+ "summary": "A hook that allows the extension to add hooks to other extensions that are registered."
5969
+ },
5970
+ "locationInModule": {
5971
+ "filename": "src/extensions/LogExtension.ts",
5972
+ "line": 36
5973
+ },
5974
+ "name": "addHooks",
5975
+ "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
5976
+ }
5977
+ ],
5978
+ "name": "LogExtension",
5979
+ "symbolId": "src/extensions/LogExtension:LogExtension"
5980
+ },
5981
+ "@btc-embedded/cdk-extensions.PostgresDbAccessExtension": {
5982
+ "assembly": "@btc-embedded/cdk-extensions",
5983
+ "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5984
+ "docs": {
5985
+ "stability": "experimental"
5986
+ },
5987
+ "fqn": "@btc-embedded/cdk-extensions.PostgresDbAccessExtension",
5988
+ "initializer": {
5989
+ "docs": {
5990
+ "stability": "experimental"
5991
+ },
5992
+ "locationInModule": {
5993
+ "filename": "src/extensions/PostgresDbAccessExtension.ts",
5994
+ "line": 59
4770
5995
  },
4771
5996
  "parameters": [
4772
5997
  {
4773
5998
  "name": "props",
4774
- "optional": true,
4775
5999
  "type": {
4776
- "fqn": "@btc-embedded/cdk-extensions.EventListenerExtensionProps"
6000
+ "fqn": "@btc-embedded/cdk-extensions.PostgresDbAccessExtensionProps"
4777
6001
  }
4778
6002
  }
4779
6003
  ]
4780
6004
  },
4781
6005
  "kind": "class",
4782
6006
  "locationInModule": {
4783
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4784
- "line": 28
6007
+ "filename": "src/extensions/PostgresDbAccessExtension.ts",
6008
+ "line": 54
4785
6009
  },
4786
6010
  "methods": [
4787
6011
  {
@@ -4790,7 +6014,7 @@
4790
6014
  "summary": "A hook that allows the extension to add hooks to other extensions that are registered."
4791
6015
  },
4792
6016
  "locationInModule": {
4793
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
6017
+ "filename": "src/extensions/PostgresDbAccessExtension.ts",
4794
6018
  "line": 75
4795
6019
  },
4796
6020
  "name": "addHooks",
@@ -4802,14 +6026,14 @@
4802
6026
  "summary": "A hook that is called for each extension ahead of time to allow for any initial setup, such as creating resources in advance."
4803
6027
  },
4804
6028
  "locationInModule": {
4805
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4806
- "line": 41
6029
+ "filename": "src/extensions/PostgresDbAccessExtension.ts",
6030
+ "line": 64
4807
6031
  },
4808
6032
  "name": "prehook",
4809
6033
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4810
6034
  "parameters": [
4811
6035
  {
4812
- "name": "service",
6036
+ "name": "parent",
4813
6037
  "type": {
4814
6038
  "fqn": "@aws-cdk-containers/ecs-service-extensions.Service"
4815
6039
  }
@@ -4822,42 +6046,6 @@
4822
6046
  }
4823
6047
  ]
4824
6048
  },
4825
- {
4826
- "docs": {
4827
- "stability": "experimental"
4828
- },
4829
- "locationInModule": {
4830
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4831
- "line": 90
4832
- },
4833
- "name": "publish",
4834
- "parameters": [
4835
- {
4836
- "name": "topic",
4837
- "type": {
4838
- "fqn": "aws-cdk-lib.aws_sns.ITopic"
4839
- }
4840
- }
4841
- ]
4842
- },
4843
- {
4844
- "docs": {
4845
- "stability": "experimental"
4846
- },
4847
- "locationInModule": {
4848
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4849
- "line": 85
4850
- },
4851
- "name": "subscribe",
4852
- "parameters": [
4853
- {
4854
- "name": "topic",
4855
- "type": {
4856
- "fqn": "aws-cdk-lib.aws_sns.ITopic"
4857
- }
4858
- }
4859
- ]
4860
- },
4861
6049
  {
4862
6050
  "docs": {
4863
6051
  "remarks": "It is generally used to\ncreate any final resources which might depend on the service itself.",
@@ -4865,14 +6053,14 @@
4865
6053
  "summary": "When this hook is implemented by extension, it allows the extension to use the service which has been created."
4866
6054
  },
4867
6055
  "locationInModule": {
4868
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4869
- "line": 94
6056
+ "filename": "src/extensions/PostgresDbAccessExtension.ts",
6057
+ "line": 91
4870
6058
  },
4871
6059
  "name": "useService",
4872
6060
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4873
6061
  "parameters": [
4874
6062
  {
4875
- "name": "_service",
6063
+ "name": "service",
4876
6064
  "type": {
4877
6065
  "union": {
4878
6066
  "types": [
@@ -4887,137 +6075,225 @@
4887
6075
  }
4888
6076
  }
4889
6077
  ]
6078
+ }
6079
+ ],
6080
+ "name": "PostgresDbAccessExtension",
6081
+ "properties": [
6082
+ {
6083
+ "docs": {
6084
+ "stability": "experimental"
6085
+ },
6086
+ "immutable": true,
6087
+ "locationInModule": {
6088
+ "filename": "src/extensions/PostgresDbAccessExtension.ts",
6089
+ "line": 55
6090
+ },
6091
+ "name": "props",
6092
+ "type": {
6093
+ "fqn": "@btc-embedded/cdk-extensions.PostgresDbAccessExtensionProps"
6094
+ }
4890
6095
  },
4891
6096
  {
4892
6097
  "docs": {
4893
- "stability": "experimental",
4894
- "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."
6098
+ "stability": "experimental"
4895
6099
  },
4896
6100
  "locationInModule": {
4897
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4898
- "line": 80
6101
+ "filename": "src/extensions/PostgresDbAccessExtension.ts",
6102
+ "line": 57
4899
6103
  },
4900
- "name": "useTaskDefinition",
4901
- "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
4902
- "parameters": [
4903
- {
4904
- "name": "taskDefinition",
4905
- "type": {
4906
- "fqn": "aws-cdk-lib.aws_ecs.TaskDefinition"
4907
- }
4908
- }
4909
- ]
6104
+ "name": "secretArn",
6105
+ "type": {
6106
+ "primitive": "string"
6107
+ }
4910
6108
  }
4911
6109
  ],
4912
- "name": "DomainEventMessagingExtension",
6110
+ "symbolId": "src/extensions/PostgresDbAccessExtension:PostgresDbAccessExtension"
6111
+ },
6112
+ "@btc-embedded/cdk-extensions.PostgresDbAccessExtensionProps": {
6113
+ "assembly": "@btc-embedded/cdk-extensions",
6114
+ "datatype": true,
6115
+ "docs": {
6116
+ "stability": "experimental"
6117
+ },
6118
+ "fqn": "@btc-embedded/cdk-extensions.PostgresDbAccessExtensionProps",
6119
+ "kind": "interface",
6120
+ "locationInModule": {
6121
+ "filename": "src/extensions/PostgresDbAccessExtension.ts",
6122
+ "line": 13
6123
+ },
6124
+ "name": "PostgresDbAccessExtensionProps",
4913
6125
  "properties": [
4914
6126
  {
6127
+ "abstract": true,
4915
6128
  "docs": {
4916
- "stability": "experimental"
6129
+ "remarks": "This name is used to look up output\nparameters.",
6130
+ "stability": "experimental",
6131
+ "summary": "The name of the base platform stack."
4917
6132
  },
6133
+ "immutable": true,
4918
6134
  "locationInModule": {
4919
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4920
- "line": 29
6135
+ "filename": "src/extensions/PostgresDbAccessExtension.ts",
6136
+ "line": 18
4921
6137
  },
4922
- "name": "props",
6138
+ "name": "basePlatformStackName",
4923
6139
  "type": {
4924
- "fqn": "@btc-embedded/cdk-extensions.EventListenerExtensionProps"
6140
+ "primitive": "string"
4925
6141
  }
4926
6142
  },
4927
6143
  {
6144
+ "abstract": true,
4928
6145
  "docs": {
4929
- "stability": "experimental"
6146
+ "stability": "experimental",
6147
+ "summary": "Security group ID of the Postgres DB cluster."
4930
6148
  },
6149
+ "immutable": true,
4931
6150
  "locationInModule": {
4932
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4933
- "line": 34
6151
+ "filename": "src/extensions/PostgresDbAccessExtension.ts",
6152
+ "line": 23
4934
6153
  },
4935
- "name": "publishEvents",
6154
+ "name": "securityGroupId",
4936
6155
  "type": {
4937
- "collection": {
4938
- "elementtype": {
4939
- "fqn": "aws-cdk-lib.aws_sns.ITopic"
4940
- },
4941
- "kind": "array"
4942
- }
6156
+ "primitive": "string"
4943
6157
  }
4944
- },
6158
+ }
6159
+ ],
6160
+ "symbolId": "src/extensions/PostgresDbAccessExtension:PostgresDbAccessExtensionProps"
6161
+ },
6162
+ "@btc-embedded/cdk-extensions.PredefinedPrivateDnsNamespaceProps": {
6163
+ "assembly": "@btc-embedded/cdk-extensions",
6164
+ "datatype": true,
6165
+ "docs": {
6166
+ "stability": "experimental"
6167
+ },
6168
+ "fqn": "@btc-embedded/cdk-extensions.PredefinedPrivateDnsNamespaceProps",
6169
+ "kind": "interface",
6170
+ "locationInModule": {
6171
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6172
+ "line": 9
6173
+ },
6174
+ "name": "PredefinedPrivateDnsNamespaceProps",
6175
+ "properties": [
4945
6176
  {
6177
+ "abstract": true,
4946
6178
  "docs": {
4947
6179
  "stability": "experimental"
4948
6180
  },
6181
+ "immutable": true,
4949
6182
  "locationInModule": {
4950
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4951
- "line": 33
6183
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6184
+ "line": 10
4952
6185
  },
4953
- "name": "subscribeEvents",
6186
+ "name": "arn",
4954
6187
  "type": {
4955
- "collection": {
4956
- "elementtype": {
4957
- "fqn": "aws-cdk-lib.aws_sns.ITopic"
4958
- },
4959
- "kind": "array"
4960
- }
6188
+ "primitive": "string"
4961
6189
  }
4962
6190
  },
4963
6191
  {
6192
+ "abstract": true,
4964
6193
  "docs": {
4965
6194
  "stability": "experimental"
4966
6195
  },
6196
+ "immutable": true,
4967
6197
  "locationInModule": {
4968
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4969
- "line": 32
6198
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6199
+ "line": 11
4970
6200
  },
4971
- "name": "injecterExtension",
4972
- "optional": true,
6201
+ "name": "id",
4973
6202
  "type": {
4974
- "fqn": "@aws-cdk-containers/ecs-service-extensions.InjecterExtension"
6203
+ "primitive": "string"
4975
6204
  }
4976
6205
  },
4977
6206
  {
6207
+ "abstract": true,
4978
6208
  "docs": {
4979
6209
  "stability": "experimental"
4980
6210
  },
6211
+ "immutable": true,
4981
6212
  "locationInModule": {
4982
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4983
- "line": 30
6213
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6214
+ "line": 12
4984
6215
  },
4985
- "name": "queue",
4986
- "optional": true,
6216
+ "name": "namespace",
4987
6217
  "type": {
4988
- "fqn": "aws-cdk-lib.aws_sqs.IQueue"
6218
+ "primitive": "string"
4989
6219
  }
6220
+ }
6221
+ ],
6222
+ "symbolId": "src/platform/PrivateDnsNamespace:PredefinedPrivateDnsNamespaceProps"
6223
+ },
6224
+ "@btc-embedded/cdk-extensions.PrivateDnsNamespace": {
6225
+ "assembly": "@btc-embedded/cdk-extensions",
6226
+ "base": "constructs.Construct",
6227
+ "docs": {
6228
+ "stability": "experimental"
6229
+ },
6230
+ "fqn": "@btc-embedded/cdk-extensions.PrivateDnsNamespace",
6231
+ "initializer": {
6232
+ "docs": {
6233
+ "stability": "experimental"
4990
6234
  },
6235
+ "locationInModule": {
6236
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6237
+ "line": 23
6238
+ },
6239
+ "parameters": [
6240
+ {
6241
+ "name": "scope",
6242
+ "type": {
6243
+ "fqn": "constructs.Construct"
6244
+ }
6245
+ },
6246
+ {
6247
+ "name": "id",
6248
+ "type": {
6249
+ "primitive": "string"
6250
+ }
6251
+ },
6252
+ {
6253
+ "name": "props",
6254
+ "type": {
6255
+ "fqn": "@btc-embedded/cdk-extensions.PrivateDnsNamespaceProps"
6256
+ }
6257
+ }
6258
+ ]
6259
+ },
6260
+ "kind": "class",
6261
+ "locationInModule": {
6262
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6263
+ "line": 21
6264
+ },
6265
+ "name": "PrivateDnsNamespace",
6266
+ "properties": [
4991
6267
  {
4992
6268
  "docs": {
4993
6269
  "stability": "experimental"
4994
6270
  },
6271
+ "immutable": true,
4995
6272
  "locationInModule": {
4996
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
4997
- "line": 31
6273
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6274
+ "line": 22
4998
6275
  },
4999
- "name": "queueExtension",
5000
- "optional": true,
6276
+ "name": "namespace",
5001
6277
  "type": {
5002
- "fqn": "@aws-cdk-containers/ecs-service-extensions.QueueExtension"
6278
+ "fqn": "aws-cdk-lib.aws_servicediscovery.IPrivateDnsNamespace"
5003
6279
  }
5004
6280
  }
5005
6281
  ],
5006
- "symbolId": "src/extensions/DomainEventMessagingExtension:DomainEventMessagingExtension"
6282
+ "symbolId": "src/platform/PrivateDnsNamespace:PrivateDnsNamespace"
5007
6283
  },
5008
- "@btc-embedded/cdk-extensions.EventListenerExtensionProps": {
6284
+ "@btc-embedded/cdk-extensions.PrivateDnsNamespaceProps": {
5009
6285
  "assembly": "@btc-embedded/cdk-extensions",
5010
6286
  "datatype": true,
5011
6287
  "docs": {
5012
6288
  "stability": "experimental"
5013
6289
  },
5014
- "fqn": "@btc-embedded/cdk-extensions.EventListenerExtensionProps",
6290
+ "fqn": "@btc-embedded/cdk-extensions.PrivateDnsNamespaceProps",
5015
6291
  "kind": "interface",
5016
6292
  "locationInModule": {
5017
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
5018
- "line": 24
6293
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6294
+ "line": 15
5019
6295
  },
5020
- "name": "EventListenerExtensionProps",
6296
+ "name": "PrivateDnsNamespaceProps",
5021
6297
  "properties": [
5022
6298
  {
5023
6299
  "abstract": true,
@@ -5026,55 +6302,84 @@
5026
6302
  },
5027
6303
  "immutable": true,
5028
6304
  "locationInModule": {
5029
- "filename": "src/extensions/DomainEventMessagingExtension.ts",
5030
- "line": 25
6305
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6306
+ "line": 18
6307
+ },
6308
+ "name": "vpc",
6309
+ "type": {
6310
+ "fqn": "aws-cdk-lib.aws_ec2.IVpc"
6311
+ }
6312
+ },
6313
+ {
6314
+ "abstract": true,
6315
+ "docs": {
6316
+ "stability": "experimental"
6317
+ },
6318
+ "immutable": true,
6319
+ "locationInModule": {
6320
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6321
+ "line": 16
5031
6322
  },
5032
- "name": "queue",
6323
+ "name": "definedPrivateDnsNamespace",
5033
6324
  "optional": true,
5034
6325
  "type": {
5035
- "fqn": "aws-cdk-lib.aws_sqs.Queue"
6326
+ "fqn": "@btc-embedded/cdk-extensions.PredefinedPrivateDnsNamespaceProps"
6327
+ }
6328
+ },
6329
+ {
6330
+ "abstract": true,
6331
+ "docs": {
6332
+ "stability": "experimental"
6333
+ },
6334
+ "immutable": true,
6335
+ "locationInModule": {
6336
+ "filename": "src/platform/PrivateDnsNamespace.ts",
6337
+ "line": 17
6338
+ },
6339
+ "name": "namespaceName",
6340
+ "optional": true,
6341
+ "type": {
6342
+ "primitive": "string"
5036
6343
  }
5037
6344
  }
5038
6345
  ],
5039
- "symbolId": "src/extensions/DomainEventMessagingExtension:EventListenerExtensionProps"
6346
+ "symbolId": "src/platform/PrivateDnsNamespace:PrivateDnsNamespaceProps"
5040
6347
  },
5041
- "@btc-embedded/cdk-extensions.ExtraContainerExtension": {
6348
+ "@btc-embedded/cdk-extensions.SharedVolumeExtension": {
5042
6349
  "assembly": "@btc-embedded/cdk-extensions",
5043
6350
  "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5044
6351
  "docs": {
5045
- "stability": "experimental"
6352
+ "stability": "experimental",
6353
+ "summary": "Create a shared volume and attach it to all containers in this task definition."
5046
6354
  },
5047
- "fqn": "@btc-embedded/cdk-extensions.ExtraContainerExtension",
6355
+ "fqn": "@btc-embedded/cdk-extensions.SharedVolumeExtension",
5048
6356
  "initializer": {
5049
6357
  "docs": {
5050
6358
  "stability": "experimental"
5051
6359
  },
5052
6360
  "locationInModule": {
5053
- "filename": "src/extensions/ExtraContainerExtension.ts",
5054
- "line": 30
6361
+ "filename": "src/extensions/SharedVolumeExtension.ts",
6362
+ "line": 34
5055
6363
  },
5056
6364
  "parameters": [
5057
6365
  {
5058
- "docs": {
5059
- "summary": "The name of the extension."
5060
- },
5061
- "name": "name",
6366
+ "name": "volumeName",
5062
6367
  "type": {
5063
6368
  "primitive": "string"
5064
6369
  }
5065
6370
  },
5066
6371
  {
5067
- "name": "extraContainer",
6372
+ "name": "props",
5068
6373
  "type": {
5069
- "fqn": "@btc-embedded/cdk-extensions.ExtraContainerExtensionProps"
6374
+ "fqn": "@btc-embedded/cdk-extensions.SharedVolumeExtensionProps"
5070
6375
  }
5071
6376
  }
5072
6377
  ]
5073
6378
  },
5074
6379
  "kind": "class",
5075
6380
  "locationInModule": {
5076
- "filename": "src/extensions/ExtraContainerExtension.ts",
5077
- "line": 26
6381
+ "filename": "src/extensions/SharedVolumeExtension.ts",
6382
+ "line": 29
5078
6383
  },
5079
6384
  "methods": [
5080
6385
  {
@@ -5084,14 +6389,14 @@
5084
6389
  "summary": "When this hook is implemented by extension, it allows the extension to use the service which has been created."
5085
6390
  },
5086
6391
  "locationInModule": {
5087
- "filename": "src/extensions/ExtraContainerExtension.ts",
5088
- "line": 40
6392
+ "filename": "src/extensions/SharedVolumeExtension.ts",
6393
+ "line": 46
5089
6394
  },
5090
6395
  "name": "useService",
5091
6396
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5092
6397
  "parameters": [
5093
6398
  {
5094
- "name": "service",
6399
+ "name": "_service",
5095
6400
  "type": {
5096
6401
  "union": {
5097
6402
  "types": [
@@ -5113,8 +6418,8 @@
5113
6418
  "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."
5114
6419
  },
5115
6420
  "locationInModule": {
5116
- "filename": "src/extensions/ExtraContainerExtension.ts",
5117
- "line": 49
6421
+ "filename": "src/extensions/SharedVolumeExtension.ts",
6422
+ "line": 40
5118
6423
  },
5119
6424
  "name": "useTaskDefinition",
5120
6425
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
@@ -5128,7 +6433,7 @@
5128
6433
  ]
5129
6434
  }
5130
6435
  ],
5131
- "name": "ExtraContainerExtension",
6436
+ "name": "SharedVolumeExtension",
5132
6437
  "properties": [
5133
6438
  {
5134
6439
  "docs": {
@@ -5136,40 +6441,12 @@
5136
6441
  },
5137
6442
  "immutable": true,
5138
6443
  "locationInModule": {
5139
- "filename": "src/extensions/ExtraContainerExtension.ts",
5140
- "line": 27
5141
- },
5142
- "name": "containerName",
5143
- "type": {
5144
- "primitive": "string"
5145
- }
5146
- },
5147
- {
5148
- "docs": {
5149
- "stability": "experimental"
5150
- },
5151
- "immutable": true,
5152
- "locationInModule": {
5153
- "filename": "src/extensions/ExtraContainerExtension.ts",
5154
- "line": 36
5155
- },
5156
- "name": "dbAccess",
5157
- "type": {
5158
- "primitive": "boolean"
5159
- }
5160
- },
5161
- {
5162
- "docs": {
5163
- "stability": "experimental"
5164
- },
5165
- "immutable": true,
5166
- "locationInModule": {
5167
- "filename": "src/extensions/ExtraContainerExtension.ts",
5168
- "line": 84
6444
+ "filename": "src/extensions/SharedVolumeExtension.ts",
6445
+ "line": 30
5169
6446
  },
5170
- "name": "healthCondition",
6447
+ "name": "props",
5171
6448
  "type": {
5172
- "fqn": "aws-cdk-lib.aws_ecs.ContainerDependencyCondition"
6449
+ "fqn": "@btc-embedded/cdk-extensions.SharedVolumeExtensionProps"
5173
6450
  }
5174
6451
  },
5175
6452
  {
@@ -5178,57 +6455,61 @@
5178
6455
  },
5179
6456
  "immutable": true,
5180
6457
  "locationInModule": {
5181
- "filename": "src/extensions/ExtraContainerExtension.ts",
5182
- "line": 28
6458
+ "filename": "src/extensions/SharedVolumeExtension.ts",
6459
+ "line": 32
5183
6460
  },
5184
- "name": "props",
6461
+ "name": "volumeName",
5185
6462
  "type": {
5186
- "fqn": "@btc-embedded/cdk-extensions.ExtraContainerExtensionProps"
6463
+ "primitive": "string"
5187
6464
  }
5188
6465
  }
5189
6466
  ],
5190
- "symbolId": "src/extensions/ExtraContainerExtension:ExtraContainerExtension"
6467
+ "symbolId": "src/extensions/SharedVolumeExtension:SharedVolumeExtension"
5191
6468
  },
5192
- "@btc-embedded/cdk-extensions.ExtraContainerExtensionProps": {
6469
+ "@btc-embedded/cdk-extensions.SharedVolumeExtensionProps": {
5193
6470
  "assembly": "@btc-embedded/cdk-extensions",
5194
6471
  "datatype": true,
5195
6472
  "docs": {
5196
- "stability": "experimental"
6473
+ "stability": "experimental",
6474
+ "summary": "Properties for defining an ephermal shared volume."
5197
6475
  },
5198
- "fqn": "@btc-embedded/cdk-extensions.ExtraContainerExtensionProps",
6476
+ "fqn": "@btc-embedded/cdk-extensions.SharedVolumeExtensionProps",
5199
6477
  "kind": "interface",
5200
6478
  "locationInModule": {
5201
- "filename": "src/extensions/ExtraContainerExtension.ts",
5202
- "line": 15
6479
+ "filename": "src/extensions/SharedVolumeExtension.ts",
6480
+ "line": 8
5203
6481
  },
5204
- "name": "ExtraContainerExtensionProps",
6482
+ "name": "SharedVolumeExtensionProps",
5205
6483
  "properties": [
5206
6484
  {
5207
6485
  "abstract": true,
5208
6486
  "docs": {
5209
- "stability": "experimental"
6487
+ "stability": "experimental",
6488
+ "summary": "The path inside the container to mount the volume."
5210
6489
  },
5211
6490
  "immutable": true,
5212
6491
  "locationInModule": {
5213
- "filename": "src/extensions/ExtraContainerExtension.ts",
5214
- "line": 16
6492
+ "filename": "src/extensions/SharedVolumeExtension.ts",
6493
+ "line": 12
5215
6494
  },
5216
- "name": "container",
6495
+ "name": "path",
5217
6496
  "type": {
5218
- "fqn": "@btc-embedded/cdk-extensions.ContainerProps"
6497
+ "primitive": "string"
5219
6498
  }
5220
6499
  },
5221
6500
  {
5222
6501
  "abstract": true,
5223
6502
  "docs": {
5224
- "stability": "experimental"
6503
+ "remarks": "Default: false.",
6504
+ "stability": "experimental",
6505
+ "summary": "Whether the volume should be read-only."
5225
6506
  },
5226
6507
  "immutable": true,
5227
6508
  "locationInModule": {
5228
- "filename": "src/extensions/ExtraContainerExtension.ts",
5229
- "line": 23
6509
+ "filename": "src/extensions/SharedVolumeExtension.ts",
6510
+ "line": 17
5230
6511
  },
5231
- "name": "dbAccess",
6512
+ "name": "readonly",
5232
6513
  "optional": true,
5233
6514
  "type": {
5234
6515
  "primitive": "boolean"
@@ -5237,61 +6518,23 @@
5237
6518
  {
5238
6519
  "abstract": true,
5239
6520
  "docs": {
5240
- "remarks": "Defaults to ContainerDependencyCondition.HEALTHY.",
6521
+ "remarks": "Default: SHARED.",
5241
6522
  "stability": "experimental",
5242
- "summary": "Specify the condition when this container should be considered healthy such that the main container can start."
6523
+ "summary": "Scope of the volume."
5243
6524
  },
5244
6525
  "immutable": true,
5245
6526
  "locationInModule": {
5246
- "filename": "src/extensions/ExtraContainerExtension.ts",
6527
+ "filename": "src/extensions/SharedVolumeExtension.ts",
5247
6528
  "line": 22
5248
6529
  },
5249
- "name": "healthCheckCondition",
6530
+ "name": "scope",
5250
6531
  "optional": true,
5251
6532
  "type": {
5252
- "fqn": "aws-cdk-lib.aws_ecs.ContainerDependencyCondition"
6533
+ "fqn": "aws-cdk-lib.aws_ecs.Scope"
5253
6534
  }
5254
6535
  }
5255
6536
  ],
5256
- "symbolId": "src/extensions/ExtraContainerExtension:ExtraContainerExtensionProps"
5257
- },
5258
- "@btc-embedded/cdk-extensions.LogExtension": {
5259
- "assembly": "@btc-embedded/cdk-extensions",
5260
- "base": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension",
5261
- "docs": {
5262
- "stability": "experimental"
5263
- },
5264
- "fqn": "@btc-embedded/cdk-extensions.LogExtension",
5265
- "initializer": {
5266
- "docs": {
5267
- "stability": "experimental"
5268
- },
5269
- "locationInModule": {
5270
- "filename": "src/extensions/LogExtension.ts",
5271
- "line": 31
5272
- }
5273
- },
5274
- "kind": "class",
5275
- "locationInModule": {
5276
- "filename": "src/extensions/LogExtension.ts",
5277
- "line": 30
5278
- },
5279
- "methods": [
5280
- {
5281
- "docs": {
5282
- "stability": "experimental",
5283
- "summary": "A hook that allows the extension to add hooks to other extensions that are registered."
5284
- },
5285
- "locationInModule": {
5286
- "filename": "src/extensions/LogExtension.ts",
5287
- "line": 35
5288
- },
5289
- "name": "addHooks",
5290
- "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
5291
- }
5292
- ],
5293
- "name": "LogExtension",
5294
- "symbolId": "src/extensions/LogExtension:LogExtension"
6537
+ "symbolId": "src/extensions/SharedVolumeExtension:SharedVolumeExtensionProps"
5295
6538
  },
5296
6539
  "@btc-embedded/cdk-extensions.TcpKeepAliveExtension": {
5297
6540
  "assembly": "@btc-embedded/cdk-extensions",
@@ -5306,7 +6549,7 @@
5306
6549
  },
5307
6550
  "locationInModule": {
5308
6551
  "filename": "src/extensions/TcpKeepAliveExtension.ts",
5309
- "line": 44
6552
+ "line": 45
5310
6553
  },
5311
6554
  "parameters": [
5312
6555
  {
@@ -5321,7 +6564,7 @@
5321
6564
  "kind": "class",
5322
6565
  "locationInModule": {
5323
6566
  "filename": "src/extensions/TcpKeepAliveExtension.ts",
5324
- "line": 41
6567
+ "line": 42
5325
6568
  },
5326
6569
  "methods": [
5327
6570
  {
@@ -5331,7 +6574,7 @@
5331
6574
  },
5332
6575
  "locationInModule": {
5333
6576
  "filename": "src/extensions/TcpKeepAliveExtension.ts",
5334
- "line": 58
6577
+ "line": 59
5335
6578
  },
5336
6579
  "name": "addHooks",
5337
6580
  "overrides": "@aws-cdk-containers/ecs-service-extensions.ServiceExtension"
@@ -5346,7 +6589,7 @@
5346
6589
  "immutable": true,
5347
6590
  "locationInModule": {
5348
6591
  "filename": "src/extensions/TcpKeepAliveExtension.ts",
5349
- "line": 42
6592
+ "line": 43
5350
6593
  },
5351
6594
  "name": "props",
5352
6595
  "type": {
@@ -5366,7 +6609,7 @@
5366
6609
  "kind": "interface",
5367
6610
  "locationInModule": {
5368
6611
  "filename": "src/extensions/TcpKeepAliveExtension.ts",
5369
- "line": 7
6612
+ "line": 8
5370
6613
  },
5371
6614
  "name": "TcpKeepAliveExtensionProps",
5372
6615
  "properties": [
@@ -5378,7 +6621,7 @@
5378
6621
  "immutable": true,
5379
6622
  "locationInModule": {
5380
6623
  "filename": "src/extensions/TcpKeepAliveExtension.ts",
5381
- "line": 9
6624
+ "line": 10
5382
6625
  },
5383
6626
  "name": "interval",
5384
6627
  "type": {
@@ -5393,7 +6636,7 @@
5393
6636
  "immutable": true,
5394
6637
  "locationInModule": {
5395
6638
  "filename": "src/extensions/TcpKeepAliveExtension.ts",
5396
- "line": 10
6639
+ "line": 11
5397
6640
  },
5398
6641
  "name": "probes",
5399
6642
  "type": {
@@ -5408,7 +6651,7 @@
5408
6651
  "immutable": true,
5409
6652
  "locationInModule": {
5410
6653
  "filename": "src/extensions/TcpKeepAliveExtension.ts",
5411
- "line": 8
6654
+ "line": 9
5412
6655
  },
5413
6656
  "name": "time",
5414
6657
  "type": {
@@ -5417,8 +6660,145 @@
5417
6660
  }
5418
6661
  ],
5419
6662
  "symbolId": "src/extensions/TcpKeepAliveExtension:TcpKeepAliveExtensionProps"
6663
+ },
6664
+ "@btc-embedded/cdk-extensions.Vpc": {
6665
+ "assembly": "@btc-embedded/cdk-extensions",
6666
+ "base": "constructs.Construct",
6667
+ "docs": {
6668
+ "stability": "experimental"
6669
+ },
6670
+ "fqn": "@btc-embedded/cdk-extensions.Vpc",
6671
+ "initializer": {
6672
+ "docs": {
6673
+ "stability": "experimental"
6674
+ },
6675
+ "locationInModule": {
6676
+ "filename": "src/platform/Vpc.ts",
6677
+ "line": 16
6678
+ },
6679
+ "parameters": [
6680
+ {
6681
+ "name": "scope",
6682
+ "type": {
6683
+ "fqn": "constructs.Construct"
6684
+ }
6685
+ },
6686
+ {
6687
+ "name": "id",
6688
+ "type": {
6689
+ "primitive": "string"
6690
+ }
6691
+ },
6692
+ {
6693
+ "name": "props",
6694
+ "type": {
6695
+ "fqn": "@btc-embedded/cdk-extensions.VpcProps"
6696
+ }
6697
+ }
6698
+ ]
6699
+ },
6700
+ "kind": "class",
6701
+ "locationInModule": {
6702
+ "filename": "src/platform/Vpc.ts",
6703
+ "line": 12
6704
+ },
6705
+ "name": "Vpc",
6706
+ "properties": [
6707
+ {
6708
+ "docs": {
6709
+ "stability": "experimental"
6710
+ },
6711
+ "locationInModule": {
6712
+ "filename": "src/platform/Vpc.ts",
6713
+ "line": 14
6714
+ },
6715
+ "name": "cluster",
6716
+ "type": {
6717
+ "fqn": "aws-cdk-lib.aws_ecs.ICluster"
6718
+ }
6719
+ },
6720
+ {
6721
+ "docs": {
6722
+ "stability": "experimental"
6723
+ },
6724
+ "locationInModule": {
6725
+ "filename": "src/platform/Vpc.ts",
6726
+ "line": 13
6727
+ },
6728
+ "name": "vpcInstance",
6729
+ "type": {
6730
+ "fqn": "aws-cdk-lib.aws_ec2.IVpc"
6731
+ }
6732
+ }
6733
+ ],
6734
+ "symbolId": "src/platform/Vpc:Vpc"
6735
+ },
6736
+ "@btc-embedded/cdk-extensions.VpcProps": {
6737
+ "assembly": "@btc-embedded/cdk-extensions",
6738
+ "datatype": true,
6739
+ "docs": {
6740
+ "stability": "experimental"
6741
+ },
6742
+ "fqn": "@btc-embedded/cdk-extensions.VpcProps",
6743
+ "kind": "interface",
6744
+ "locationInModule": {
6745
+ "filename": "src/platform/Vpc.ts",
6746
+ "line": 6
6747
+ },
6748
+ "name": "VpcProps",
6749
+ "properties": [
6750
+ {
6751
+ "abstract": true,
6752
+ "docs": {
6753
+ "stability": "experimental"
6754
+ },
6755
+ "immutable": true,
6756
+ "locationInModule": {
6757
+ "filename": "src/platform/Vpc.ts",
6758
+ "line": 7
6759
+ },
6760
+ "name": "definedVpcName",
6761
+ "optional": true,
6762
+ "type": {
6763
+ "primitive": "string"
6764
+ }
6765
+ },
6766
+ {
6767
+ "abstract": true,
6768
+ "docs": {
6769
+ "stability": "experimental"
6770
+ },
6771
+ "immutable": true,
6772
+ "locationInModule": {
6773
+ "filename": "src/platform/Vpc.ts",
6774
+ "line": 9
6775
+ },
6776
+ "name": "maxAzs",
6777
+ "optional": true,
6778
+ "type": {
6779
+ "primitive": "number"
6780
+ }
6781
+ },
6782
+ {
6783
+ "abstract": true,
6784
+ "docs": {
6785
+ "stability": "experimental"
6786
+ },
6787
+ "immutable": true,
6788
+ "locationInModule": {
6789
+ "filename": "src/platform/Vpc.ts",
6790
+ "line": 8
6791
+ },
6792
+ "name": "vpcCidr",
6793
+ "optional": true,
6794
+ "type": {
6795
+ "fqn": "aws-cdk-lib.aws_ec2.IIpAddresses"
6796
+ }
6797
+ }
6798
+ ],
6799
+ "symbolId": "src/platform/Vpc:VpcProps"
5420
6800
  }
5421
6801
  },
5422
- "version": "0.2.0",
5423
- "fingerprint": "z9i3UhO3KIc5HnKi4CIalMnVJ9xENjL2gVZzJuNxwu0="
6802
+ "version": "0.4.0",
6803
+ "fingerprint": "netSAHYXZLWr5pfmVOcYp237v0+NTQfjRAeyFhKdgNc="
5424
6804
  }