@cdklabs/cdk-appmod-catalog-blueprints 1.16.0 → 1.17.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 (66) hide show
  1. package/.jsii +992 -168
  2. package/lib/document-processing/adapter/queued-s3-adapter.js +1 -1
  3. package/lib/document-processing/agentic-document-processing.js +1 -1
  4. package/lib/document-processing/base-document-processing.js +1 -1
  5. package/lib/document-processing/bedrock-document-processing.d.ts +1 -0
  6. package/lib/document-processing/bedrock-document-processing.js +10 -6
  7. package/lib/document-processing/default-document-processing-config.js +1 -1
  8. package/lib/document-processing/index.d.ts +2 -0
  9. package/lib/document-processing/index.js +3 -1
  10. package/lib/document-processing/localstack-agentic-document-processing.d.ts +20 -0
  11. package/lib/document-processing/localstack-agentic-document-processing.js +66 -0
  12. package/lib/document-processing/localstack-bedrock-document-processing.d.ts +16 -0
  13. package/lib/document-processing/localstack-bedrock-document-processing.js +38 -0
  14. package/lib/document-processing/resources/cleanup/handler.py +16 -1
  15. package/lib/document-processing/resources/default-localstack-invoke/index.py +184 -0
  16. package/lib/document-processing/resources/default-localstack-invoke/provider_runtime.py +251 -0
  17. package/lib/document-processing/resources/default-localstack-invoke/requirements.txt +5 -0
  18. package/lib/document-processing/resources/default-sqs-consumer/index.py +17 -2
  19. package/lib/document-processing/resources/pdf-chunking/handler.py +16 -1
  20. package/lib/document-processing/tests/localstack-agentic-document-processing.test.d.ts +1 -0
  21. package/lib/document-processing/tests/localstack-agentic-document-processing.test.js +78 -0
  22. package/lib/document-processing/tests/localstack-document-processing.test.d.ts +1 -0
  23. package/lib/document-processing/tests/localstack-document-processing.test.js +116 -0
  24. package/lib/framework/agents/base-agent.js +1 -1
  25. package/lib/framework/agents/batch-agent.d.ts +1 -0
  26. package/lib/framework/agents/batch-agent.js +7 -4
  27. package/lib/framework/agents/default-agent-config.js +1 -1
  28. package/lib/framework/agents/index.d.ts +1 -0
  29. package/lib/framework/agents/index.js +2 -1
  30. package/lib/framework/agents/interactive-agent.js +88 -11
  31. package/lib/framework/agents/knowledge-base/base-knowledge-base.js +1 -1
  32. package/lib/framework/agents/knowledge-base/bedrock-knowledge-base.js +1 -1
  33. package/lib/framework/agents/localstack-batch-agent.d.ts +15 -0
  34. package/lib/framework/agents/localstack-batch-agent.js +33 -0
  35. package/lib/framework/agents/resources/default-ollama-agent/batch.py +396 -0
  36. package/lib/framework/agents/resources/default-ollama-agent/models.py +7 -0
  37. package/lib/framework/agents/resources/default-ollama-agent/requirements.txt +9 -0
  38. package/lib/framework/agents/resources/default-ollama-agent/runtime_support.py +237 -0
  39. package/lib/framework/agents/resources/default-ollama-agent/utils.py +77 -0
  40. package/lib/framework/bedrock/bedrock.d.ts +9 -0
  41. package/lib/framework/bedrock/bedrock.js +20 -10
  42. package/lib/framework/custom-resource/default-runtimes.js +1 -1
  43. package/lib/framework/foundation/access-log.js +1 -1
  44. package/lib/framework/foundation/eventbridge-broker.js +1 -1
  45. package/lib/framework/foundation/network.d.ts +1 -1
  46. package/lib/framework/foundation/network.js +8 -3
  47. package/lib/framework/index.d.ts +1 -0
  48. package/lib/framework/index.js +2 -1
  49. package/lib/framework/localstack/index.d.ts +1 -0
  50. package/lib/framework/localstack/index.js +18 -0
  51. package/lib/framework/localstack/localstack-config.d.ts +79 -0
  52. package/lib/framework/localstack/localstack-config.js +49 -0
  53. package/lib/framework/tests/localstack-batch-agent.test.d.ts +1 -0
  54. package/lib/framework/tests/localstack-batch-agent.test.js +67 -0
  55. package/lib/tsconfig.tsbuildinfo +1 -1
  56. package/lib/utilities/data-loader.js +1 -1
  57. package/lib/utilities/lambda-iam-utils.js +1 -1
  58. package/lib/utilities/observability/cloudfront-distribution-observability-property-injector.js +1 -1
  59. package/lib/utilities/observability/cloudwatch-transaction-search.js +1 -1
  60. package/lib/utilities/observability/default-observability-config.js +1 -1
  61. package/lib/utilities/observability/lambda-observability-property-injector.js +1 -1
  62. package/lib/utilities/observability/log-group-data-protection-utils.js +1 -1
  63. package/lib/utilities/observability/powertools-config.js +1 -1
  64. package/lib/utilities/observability/state-machine-observability-property-injector.js +1 -1
  65. package/lib/webapp/frontend-construct.js +1 -1
  66. package/package.json +1 -1
package/.jsii CHANGED
@@ -7242,6 +7242,24 @@
7242
7242
  "filename": "use-cases/framework/agents/batch-agent.ts",
7243
7243
  "line": 74
7244
7244
  },
7245
+ "methods": [
7246
+ {
7247
+ "docs": {
7248
+ "stability": "experimental"
7249
+ },
7250
+ "locationInModule": {
7251
+ "filename": "use-cases/framework/agents/batch-agent.ts",
7252
+ "line": 168
7253
+ },
7254
+ "name": "resolveAgentRuntimeEntry",
7255
+ "protected": true,
7256
+ "returns": {
7257
+ "type": {
7258
+ "primitive": "string"
7259
+ }
7260
+ }
7261
+ }
7262
+ ],
7245
7263
  "name": "BatchAgent",
7246
7264
  "properties": [
7247
7265
  {
@@ -7387,7 +7405,7 @@
7387
7405
  },
7388
7406
  "locationInModule": {
7389
7407
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7390
- "line": 255
7408
+ "line": 259
7391
7409
  },
7392
7410
  "parameters": [
7393
7411
  {
@@ -7423,7 +7441,7 @@
7423
7441
  "kind": "class",
7424
7442
  "locationInModule": {
7425
7443
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7426
- "line": 164
7444
+ "line": 168
7427
7445
  },
7428
7446
  "methods": [
7429
7447
  {
@@ -7435,7 +7453,7 @@
7435
7453
  },
7436
7454
  "locationInModule": {
7437
7455
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7438
- "line": 365
7456
+ "line": 370
7439
7457
  },
7440
7458
  "name": "classificationStep",
7441
7459
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessing",
@@ -7467,7 +7485,7 @@
7467
7485
  },
7468
7486
  "locationInModule": {
7469
7487
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7470
- "line": 716
7488
+ "line": 725
7471
7489
  },
7472
7490
  "name": "createProcessingWorkflow",
7473
7491
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessing",
@@ -7487,7 +7505,7 @@
7487
7505
  },
7488
7506
  "locationInModule": {
7489
7507
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7490
- "line": 532
7508
+ "line": 541
7491
7509
  },
7492
7510
  "name": "enrichmentStep",
7493
7511
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessing",
@@ -7517,7 +7535,7 @@
7517
7535
  },
7518
7536
  "locationInModule": {
7519
7537
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7520
- "line": 508
7538
+ "line": 513
7521
7539
  },
7522
7540
  "name": "generateLambdaRoleForBedrock",
7523
7541
  "parameters": [
@@ -7551,7 +7569,7 @@
7551
7569
  },
7552
7570
  "locationInModule": {
7553
7571
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7554
- "line": 557
7572
+ "line": 566
7555
7573
  },
7556
7574
  "name": "postProcessingStep",
7557
7575
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessing",
@@ -7584,7 +7602,7 @@
7584
7602
  },
7585
7603
  "locationInModule": {
7586
7604
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7587
- "line": 684
7605
+ "line": 693
7588
7606
  },
7589
7607
  "name": "preprocessingMetadata",
7590
7608
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessing",
@@ -7609,7 +7627,7 @@
7609
7627
  },
7610
7628
  "locationInModule": {
7611
7629
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7612
- "line": 585
7630
+ "line": 594
7613
7631
  },
7614
7632
  "name": "preprocessingStep",
7615
7633
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessing",
@@ -7642,7 +7660,7 @@
7642
7660
  },
7643
7661
  "locationInModule": {
7644
7662
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7645
- "line": 443
7663
+ "line": 448
7646
7664
  },
7647
7665
  "name": "processingStep",
7648
7666
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BaseDocumentProcessing",
@@ -7664,6 +7682,22 @@
7664
7682
  }
7665
7683
  }
7666
7684
  }
7685
+ },
7686
+ {
7687
+ "docs": {
7688
+ "stability": "experimental"
7689
+ },
7690
+ "locationInModule": {
7691
+ "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7692
+ "line": 528
7693
+ },
7694
+ "name": "resolveBedrockInvokeEntry",
7695
+ "protected": true,
7696
+ "returns": {
7697
+ "type": {
7698
+ "primitive": "string"
7699
+ }
7700
+ }
7667
7701
  }
7668
7702
  ],
7669
7703
  "name": "BedrockDocumentProcessing",
@@ -7676,7 +7710,7 @@
7676
7710
  "immutable": true,
7677
7711
  "locationInModule": {
7678
7712
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7679
- "line": 196
7713
+ "line": 200
7680
7714
  },
7681
7715
  "name": "DEFAULT_AGGREGATION_PROMPT",
7682
7716
  "protected": true,
@@ -7693,7 +7727,7 @@
7693
7727
  "immutable": true,
7694
7728
  "locationInModule": {
7695
7729
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7696
- "line": 165
7730
+ "line": 169
7697
7731
  },
7698
7732
  "name": "DEFAULT_CLASSIFICATION_PROMPT",
7699
7733
  "protected": true,
@@ -7710,7 +7744,7 @@
7710
7744
  "immutable": true,
7711
7745
  "locationInModule": {
7712
7746
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7713
- "line": 176
7747
+ "line": 180
7714
7748
  },
7715
7749
  "name": "DEFAULT_PROCESSING_PROMPT",
7716
7750
  "protected": true,
@@ -7727,7 +7761,7 @@
7727
7761
  "immutable": true,
7728
7762
  "locationInModule": {
7729
7763
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7730
- "line": 220
7764
+ "line": 224
7731
7765
  },
7732
7766
  "name": "bedrockDocumentProcessingProps",
7733
7767
  "protected": true,
@@ -7743,7 +7777,7 @@
7743
7777
  "immutable": true,
7744
7778
  "locationInModule": {
7745
7779
  "filename": "use-cases/document-processing/bedrock-document-processing.ts",
7746
- "line": 222
7780
+ "line": 226
7747
7781
  },
7748
7782
  "name": "stateMachine",
7749
7783
  "type": {
@@ -8256,7 +8290,7 @@
8256
8290
  "immutable": true,
8257
8291
  "locationInModule": {
8258
8292
  "filename": "use-cases/framework/bedrock/bedrock.ts",
8259
- "line": 39
8293
+ "line": 49
8260
8294
  },
8261
8295
  "name": "crossRegionInferencePrefix",
8262
8296
  "optional": true,
@@ -8264,6 +8298,24 @@
8264
8298
  "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.BedrockCrossRegionInferencePrefix"
8265
8299
  }
8266
8300
  },
8301
+ {
8302
+ "abstract": true,
8303
+ "docs": {
8304
+ "remarks": "Use this when invoking a model ID not available in `FoundationModelIdentifier`,\nfor example LocalStack Bedrock/Ollama-backed model IDs.\n\nWhen provided, this value is used as-is for runtime invocation.",
8305
+ "stability": "experimental",
8306
+ "summary": "Direct model ID override."
8307
+ },
8308
+ "immutable": true,
8309
+ "locationInModule": {
8310
+ "filename": "use-cases/framework/bedrock/bedrock.ts",
8311
+ "line": 36
8312
+ },
8313
+ "name": "customModelId",
8314
+ "optional": true,
8315
+ "type": {
8316
+ "primitive": "string"
8317
+ }
8318
+ },
8267
8319
  {
8268
8320
  "abstract": true,
8269
8321
  "docs": {
@@ -8293,7 +8345,7 @@
8293
8345
  "immutable": true,
8294
8346
  "locationInModule": {
8295
8347
  "filename": "use-cases/framework/bedrock/bedrock.ts",
8296
- "line": 33
8348
+ "line": 43
8297
8349
  },
8298
8350
  "name": "useCrossRegionInference",
8299
8351
  "optional": true,
@@ -8318,7 +8370,7 @@
8318
8370
  "kind": "class",
8319
8371
  "locationInModule": {
8320
8372
  "filename": "use-cases/framework/bedrock/bedrock.ts",
8321
- "line": 42
8373
+ "line": 52
8322
8374
  },
8323
8375
  "methods": [
8324
8376
  {
@@ -8327,7 +8379,7 @@
8327
8379
  },
8328
8380
  "locationInModule": {
8329
8381
  "filename": "use-cases/framework/bedrock/bedrock.ts",
8330
- "line": 43
8382
+ "line": 53
8331
8383
  },
8332
8384
  "name": "deriveActualModelId",
8333
8385
  "parameters": [
@@ -8352,7 +8404,7 @@
8352
8404
  },
8353
8405
  "locationInModule": {
8354
8406
  "filename": "use-cases/framework/bedrock/bedrock.ts",
8355
- "line": 48
8407
+ "line": 61
8356
8408
  },
8357
8409
  "name": "generateModelIAMPermissions",
8358
8410
  "parameters": [
@@ -12919,7 +12971,7 @@
12919
12971
  },
12920
12972
  "locationInModule": {
12921
12973
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12922
- "line": 1830
12974
+ "line": 1912
12923
12975
  },
12924
12976
  "parameters": [
12925
12977
  {
@@ -12945,7 +12997,7 @@
12945
12997
  "kind": "class",
12946
12998
  "locationInModule": {
12947
12999
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12948
- "line": 1808
13000
+ "line": 1890
12949
13001
  },
12950
13002
  "name": "InteractiveAgent",
12951
13003
  "properties": [
@@ -12956,7 +13008,7 @@
12956
13008
  "immutable": true,
12957
13009
  "locationInModule": {
12958
13010
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12959
- "line": 1814
13011
+ "line": 1896
12960
13012
  },
12961
13013
  "name": "apiEndpoint",
12962
13014
  "type": {
@@ -12970,7 +13022,7 @@
12970
13022
  "immutable": true,
12971
13023
  "locationInModule": {
12972
13024
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12973
- "line": 1810
13025
+ "line": 1892
12974
13026
  },
12975
13027
  "name": "adapter",
12976
13028
  "optional": true,
@@ -12987,7 +13039,7 @@
12987
13039
  "immutable": true,
12988
13040
  "locationInModule": {
12989
13041
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12990
- "line": 1809
13042
+ "line": 1891
12991
13043
  },
12992
13044
  "name": "agentFunction",
12993
13045
  "optional": true,
@@ -13003,7 +13055,7 @@
13003
13055
  "immutable": true,
13004
13056
  "locationInModule": {
13005
13057
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13006
- "line": 1813
13058
+ "line": 1895
13007
13059
  },
13008
13060
  "name": "authenticator",
13009
13061
  "optional": true,
@@ -13018,7 +13070,7 @@
13018
13070
  "immutable": true,
13019
13071
  "locationInModule": {
13020
13072
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13021
- "line": 1816
13073
+ "line": 1898
13022
13074
  },
13023
13075
  "name": "cfnRuntime",
13024
13076
  "optional": true,
@@ -13034,7 +13086,7 @@
13034
13086
  "immutable": true,
13035
13087
  "locationInModule": {
13036
13088
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13037
- "line": 1828
13089
+ "line": 1910
13038
13090
  },
13039
13091
  "name": "cognitoAuthorizer",
13040
13092
  "optional": true,
@@ -13049,7 +13101,7 @@
13049
13101
  "immutable": true,
13050
13102
  "locationInModule": {
13051
13103
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13052
- "line": 1812
13104
+ "line": 1894
13053
13105
  },
13054
13106
  "name": "contextStrategy",
13055
13107
  "optional": true,
@@ -13065,7 +13117,7 @@
13065
13117
  "immutable": true,
13066
13118
  "locationInModule": {
13067
13119
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13068
- "line": 1824
13120
+ "line": 1906
13069
13121
  },
13070
13122
  "name": "restApi",
13071
13123
  "optional": true,
@@ -13080,7 +13132,7 @@
13080
13132
  "immutable": true,
13081
13133
  "locationInModule": {
13082
13134
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13083
- "line": 1815
13135
+ "line": 1897
13084
13136
  },
13085
13137
  "name": "sessionBucket",
13086
13138
  "optional": true,
@@ -13096,7 +13148,7 @@
13096
13148
  "immutable": true,
13097
13149
  "locationInModule": {
13098
13150
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13099
- "line": 1820
13151
+ "line": 1902
13100
13152
  },
13101
13153
  "name": "sessionIndex",
13102
13154
  "optional": true,
@@ -13111,7 +13163,7 @@
13111
13163
  "immutable": true,
13112
13164
  "locationInModule": {
13113
13165
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13114
- "line": 1811
13166
+ "line": 1893
13115
13167
  },
13116
13168
  "name": "sessionStore",
13117
13169
  "optional": true,
@@ -13137,7 +13189,7 @@
13137
13189
  "kind": "interface",
13138
13190
  "locationInModule": {
13139
13191
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13140
- "line": 1638
13192
+ "line": 1720
13141
13193
  },
13142
13194
  "name": "InteractiveAgentProps",
13143
13195
  "properties": [
@@ -13151,7 +13203,7 @@
13151
13203
  "immutable": true,
13152
13204
  "locationInModule": {
13153
13205
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13154
- "line": 1747
13206
+ "line": 1829
13155
13207
  },
13156
13208
  "name": "architecture",
13157
13209
  "optional": true,
@@ -13169,7 +13221,7 @@
13169
13221
  "immutable": true,
13170
13222
  "locationInModule": {
13171
13223
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13172
- "line": 1717
13224
+ "line": 1799
13173
13225
  },
13174
13226
  "name": "authenticator",
13175
13227
  "optional": true,
@@ -13187,7 +13239,7 @@
13187
13239
  "immutable": true,
13188
13240
  "locationInModule": {
13189
13241
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13190
- "line": 1657
13242
+ "line": 1739
13191
13243
  },
13192
13244
  "name": "communicationAdapter",
13193
13245
  "optional": true,
@@ -13206,7 +13258,7 @@
13206
13258
  "immutable": true,
13207
13259
  "locationInModule": {
13208
13260
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13209
- "line": 1699
13261
+ "line": 1781
13210
13262
  },
13211
13263
  "name": "contextStrategy",
13212
13264
  "optional": true,
@@ -13225,7 +13277,7 @@
13225
13277
  "immutable": true,
13226
13278
  "locationInModule": {
13227
13279
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13228
- "line": 1726
13280
+ "line": 1808
13229
13281
  },
13230
13282
  "name": "corsAllowMethods",
13231
13283
  "optional": true,
@@ -13249,7 +13301,7 @@
13249
13301
  "immutable": true,
13250
13302
  "locationInModule": {
13251
13303
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13252
- "line": 1651
13304
+ "line": 1733
13253
13305
  },
13254
13306
  "name": "hostingAdapter",
13255
13307
  "optional": true,
@@ -13267,7 +13319,7 @@
13267
13319
  "immutable": true,
13268
13320
  "locationInModule": {
13269
13321
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13270
- "line": 1733
13322
+ "line": 1815
13271
13323
  },
13272
13324
  "name": "memorySize",
13273
13325
  "optional": true,
@@ -13287,7 +13339,7 @@
13287
13339
  "immutable": true,
13288
13340
  "locationInModule": {
13289
13341
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13290
- "line": 1710
13342
+ "line": 1792
13291
13343
  },
13292
13344
  "name": "messageHistoryLimit",
13293
13345
  "optional": true,
@@ -13305,7 +13357,7 @@
13305
13357
  "immutable": true,
13306
13358
  "locationInModule": {
13307
13359
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13308
- "line": 1754
13360
+ "line": 1836
13309
13361
  },
13310
13362
  "name": "reservedConcurrentExecutions",
13311
13363
  "optional": true,
@@ -13324,7 +13376,7 @@
13324
13376
  "immutable": true,
13325
13377
  "locationInModule": {
13326
13378
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13327
- "line": 1675
13379
+ "line": 1757
13328
13380
  },
13329
13381
  "name": "sessionBucket",
13330
13382
  "optional": true,
@@ -13343,7 +13395,7 @@
13343
13395
  "immutable": true,
13344
13396
  "locationInModule": {
13345
13397
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13346
- "line": 1690
13398
+ "line": 1772
13347
13399
  },
13348
13400
  "name": "sessionIndex",
13349
13401
  "optional": true,
@@ -13363,7 +13415,7 @@
13363
13415
  "immutable": true,
13364
13416
  "locationInModule": {
13365
13417
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13366
- "line": 1667
13418
+ "line": 1749
13367
13419
  },
13368
13420
  "name": "sessionStore",
13369
13421
  "optional": true,
@@ -13381,7 +13433,7 @@
13381
13433
  "immutable": true,
13382
13434
  "locationInModule": {
13383
13435
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13384
- "line": 1682
13436
+ "line": 1764
13385
13437
  },
13386
13438
  "name": "sessionTTL",
13387
13439
  "optional": true,
@@ -13399,7 +13451,7 @@
13399
13451
  "immutable": true,
13400
13452
  "locationInModule": {
13401
13453
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13402
- "line": 1740
13454
+ "line": 1822
13403
13455
  },
13404
13456
  "name": "timeout",
13405
13457
  "optional": true,
@@ -14749,138 +14801,155 @@
14749
14801
  ],
14750
14802
  "symbolId": "use-cases/utilities/observability/lambda-observability-property-injector:LambdaObservabilityPropertyInjector"
14751
14803
  },
14752
- "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionProps": {
14804
+ "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackAgenticDocumentProcessing": {
14753
14805
  "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
14754
- "datatype": true,
14806
+ "base": "@cdklabs/cdk-appmod-catalog-blueprints.AgenticDocumentProcessing",
14755
14807
  "docs": {
14756
- "stability": "experimental",
14757
- "summary": "Props to enable various data protection configuration for CloudWatch Log Groups."
14808
+ "stability": "experimental"
14758
14809
  },
14759
- "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionProps",
14760
- "kind": "interface",
14810
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackAgenticDocumentProcessing",
14811
+ "initializer": {
14812
+ "docs": {
14813
+ "stability": "experimental"
14814
+ },
14815
+ "locationInModule": {
14816
+ "filename": "use-cases/document-processing/localstack-agentic-document-processing.ts",
14817
+ "line": 23
14818
+ },
14819
+ "parameters": [
14820
+ {
14821
+ "name": "scope",
14822
+ "type": {
14823
+ "fqn": "constructs.Construct"
14824
+ }
14825
+ },
14826
+ {
14827
+ "name": "id",
14828
+ "type": {
14829
+ "primitive": "string"
14830
+ }
14831
+ },
14832
+ {
14833
+ "docs": {
14834
+ "summary": "Configuration properties for the document processing pipeline."
14835
+ },
14836
+ "name": "props",
14837
+ "type": {
14838
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackAgenticDocumentProcessingProps"
14839
+ }
14840
+ }
14841
+ ]
14842
+ },
14843
+ "kind": "class",
14761
14844
  "locationInModule": {
14762
- "filename": "use-cases/utilities/observability/log-group-data-protection-props.ts",
14763
- "line": 11
14845
+ "filename": "use-cases/document-processing/localstack-agentic-document-processing.ts",
14846
+ "line": 19
14764
14847
  },
14765
- "name": "LogGroupDataProtectionProps",
14766
- "properties": [
14848
+ "methods": [
14767
14849
  {
14768
- "abstract": true,
14769
14850
  "docs": {
14770
- "default": "Data Protection Policy won't be enabled",
14851
+ "remarks": "Creates a Lambda function that invokes the configured Bedrock model to extract\nstructured data from the document. Uses the classification result from the\nprevious step to provide context for more accurate extraction.\n\nThis method caches the Lambda function to avoid creating duplicate resources,\nbut creates a new LambdaInvoke task each time to allow proper state chaining.",
14771
14852
  "stability": "experimental",
14772
- "summary": "List of DataIdentifiers that would be used as part of the Data Protection Policy that would be created for the log group."
14853
+ "summary": "Implements the document extraction step using Amazon Bedrock."
14773
14854
  },
14774
- "immutable": true,
14775
14855
  "locationInModule": {
14776
- "filename": "use-cases/utilities/observability/log-group-data-protection-props.ts",
14777
- "line": 23
14856
+ "filename": "use-cases/document-processing/localstack-agentic-document-processing.ts",
14857
+ "line": 35
14778
14858
  },
14779
- "name": "dataProtectionIdentifiers",
14780
- "optional": true,
14781
- "type": {
14782
- "collection": {
14783
- "elementtype": {
14784
- "fqn": "aws-cdk-lib.aws_logs.DataIdentifier"
14785
- },
14786
- "kind": "array"
14859
+ "name": "processingStep",
14860
+ "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.AgenticDocumentProcessing",
14861
+ "protected": true,
14862
+ "returns": {
14863
+ "type": {
14864
+ "union": {
14865
+ "types": [
14866
+ {
14867
+ "fqn": "aws-cdk-lib.aws_stepfunctions_tasks.LambdaInvoke"
14868
+ },
14869
+ {
14870
+ "fqn": "aws-cdk-lib.aws_stepfunctions_tasks.BedrockInvokeModel"
14871
+ },
14872
+ {
14873
+ "fqn": "aws-cdk-lib.aws_stepfunctions_tasks.StepFunctionsStartExecution"
14874
+ }
14875
+ ]
14876
+ }
14787
14877
  }
14788
14878
  }
14789
14879
  },
14790
14880
  {
14791
- "abstract": true,
14792
14881
  "docs": {
14793
- "default": "a new KMS key would automatically be created",
14794
- "stability": "experimental",
14795
- "summary": "Encryption key that would be used to encrypt the relevant log group."
14882
+ "stability": "experimental"
14796
14883
  },
14797
- "immutable": true,
14798
14884
  "locationInModule": {
14799
- "filename": "use-cases/utilities/observability/log-group-data-protection-props.ts",
14800
- "line": 16
14885
+ "filename": "use-cases/document-processing/localstack-agentic-document-processing.ts",
14886
+ "line": 31
14801
14887
  },
14802
- "name": "logGroupEncryptionKey",
14803
- "optional": true,
14804
- "type": {
14805
- "fqn": "aws-cdk-lib.aws_kms.Key"
14888
+ "name": "resolveBedrockInvokeEntry",
14889
+ "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BedrockDocumentProcessing",
14890
+ "protected": true,
14891
+ "returns": {
14892
+ "type": {
14893
+ "primitive": "string"
14894
+ }
14806
14895
  }
14807
14896
  }
14808
14897
  ],
14809
- "symbolId": "use-cases/utilities/observability/log-group-data-protection-props:LogGroupDataProtectionProps"
14898
+ "name": "LocalStackAgenticDocumentProcessing",
14899
+ "symbolId": "use-cases/document-processing/localstack-agentic-document-processing:LocalStackAgenticDocumentProcessing"
14810
14900
  },
14811
- "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionUtils": {
14901
+ "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackAgenticDocumentProcessingProps": {
14812
14902
  "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
14903
+ "datatype": true,
14813
14904
  "docs": {
14814
14905
  "stability": "experimental"
14815
14906
  },
14816
- "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionUtils",
14817
- "initializer": {
14818
- "docs": {
14819
- "stability": "experimental"
14820
- }
14821
- },
14822
- "kind": "class",
14907
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackAgenticDocumentProcessingProps",
14908
+ "interfaces": [
14909
+ "@cdklabs/cdk-appmod-catalog-blueprints.AgenticDocumentProcessingProps"
14910
+ ],
14911
+ "kind": "interface",
14823
14912
  "locationInModule": {
14824
- "filename": "use-cases/utilities/observability/log-group-data-protection-utils.ts",
14825
- "line": 9
14913
+ "filename": "use-cases/document-processing/localstack-agentic-document-processing.ts",
14914
+ "line": 10
14826
14915
  },
14827
- "methods": [
14916
+ "name": "LocalStackAgenticDocumentProcessingProps",
14917
+ "properties": [
14828
14918
  {
14919
+ "abstract": true,
14829
14920
  "docs": {
14830
- "stability": "experimental"
14921
+ "default": "{ enabled: true }",
14922
+ "stability": "experimental",
14923
+ "summary": "LocalStack endpoint routing configuration for Lambda runtime SDK calls."
14831
14924
  },
14925
+ "immutable": true,
14832
14926
  "locationInModule": {
14833
- "filename": "use-cases/utilities/observability/log-group-data-protection-utils.ts",
14834
- "line": 10
14835
- },
14836
- "name": "handleDefault",
14837
- "parameters": [
14838
- {
14839
- "name": "scope",
14840
- "type": {
14841
- "fqn": "constructs.Construct"
14842
- }
14843
- },
14844
- {
14845
- "name": "props",
14846
- "optional": true,
14847
- "type": {
14848
- "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionProps"
14849
- }
14850
- },
14851
- {
14852
- "name": "removalPolicy",
14853
- "optional": true,
14854
- "type": {
14855
- "fqn": "aws-cdk-lib.RemovalPolicy"
14856
- }
14857
- }
14858
- ],
14859
- "returns": {
14860
- "type": {
14861
- "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionProps"
14862
- }
14927
+ "filename": "use-cases/document-processing/localstack-agentic-document-processing.ts",
14928
+ "line": 16
14863
14929
  },
14864
- "static": true
14930
+ "name": "localStack",
14931
+ "optional": true,
14932
+ "type": {
14933
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackEndpointOverrides"
14934
+ }
14865
14935
  }
14866
14936
  ],
14867
- "name": "LogGroupDataProtectionUtils",
14868
- "symbolId": "use-cases/utilities/observability/log-group-data-protection-utils:LogGroupDataProtectionUtils"
14937
+ "symbolId": "use-cases/document-processing/localstack-agentic-document-processing:LocalStackAgenticDocumentProcessingProps"
14869
14938
  },
14870
- "@cdklabs/cdk-appmod-catalog-blueprints.Network": {
14939
+ "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackBatchAgent": {
14871
14940
  "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
14872
- "base": "constructs.Construct",
14941
+ "base": "@cdklabs/cdk-appmod-catalog-blueprints.BatchAgent",
14873
14942
  "docs": {
14874
14943
  "stability": "experimental"
14875
14944
  },
14876
- "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.Network",
14945
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackBatchAgent",
14877
14946
  "initializer": {
14878
14947
  "docs": {
14879
14948
  "stability": "experimental"
14880
14949
  },
14881
14950
  "locationInModule": {
14882
- "filename": "use-cases/framework/foundation/network.ts",
14883
- "line": 30
14951
+ "filename": "use-cases/framework/agents/localstack-batch-agent.ts",
14952
+ "line": 17
14884
14953
  },
14885
14954
  "parameters": [
14886
14955
  {
@@ -14897,17 +14966,16 @@
14897
14966
  },
14898
14967
  {
14899
14968
  "name": "props",
14900
- "optional": true,
14901
14969
  "type": {
14902
- "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.NetworkProps"
14970
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackBatchAgentProps"
14903
14971
  }
14904
14972
  }
14905
14973
  ]
14906
14974
  },
14907
14975
  "kind": "class",
14908
14976
  "locationInModule": {
14909
- "filename": "use-cases/framework/foundation/network.ts",
14910
- "line": 18
14977
+ "filename": "use-cases/framework/agents/localstack-batch-agent.ts",
14978
+ "line": 16
14911
14979
  },
14912
14980
  "methods": [
14913
14981
  {
@@ -14915,44 +14983,686 @@
14915
14983
  "stability": "experimental"
14916
14984
  },
14917
14985
  "locationInModule": {
14918
- "filename": "use-cases/framework/foundation/network.ts",
14919
- "line": 19
14986
+ "filename": "use-cases/framework/agents/localstack-batch-agent.ts",
14987
+ "line": 35
14920
14988
  },
14921
- "name": "useExistingVPCFromLookup",
14922
- "parameters": [
14923
- {
14924
- "name": "scope",
14925
- "type": {
14926
- "fqn": "constructs.Construct"
14927
- }
14928
- },
14929
- {
14930
- "name": "id",
14931
- "type": {
14932
- "primitive": "string"
14933
- }
14934
- },
14935
- {
14936
- "name": "options",
14937
- "type": {
14938
- "fqn": "aws-cdk-lib.aws_ec2.VpcLookupOptions"
14939
- }
14940
- }
14941
- ],
14989
+ "name": "resolveAgentRuntimeEntry",
14990
+ "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BatchAgent",
14991
+ "protected": true,
14942
14992
  "returns": {
14943
14993
  "type": {
14944
- "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.Network"
14994
+ "primitive": "string"
14945
14995
  }
14946
- },
14947
- "static": true
14948
- },
14996
+ }
14997
+ }
14998
+ ],
14999
+ "name": "LocalStackBatchAgent",
15000
+ "symbolId": "use-cases/framework/agents/localstack-batch-agent:LocalStackBatchAgent"
15001
+ },
15002
+ "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackBatchAgentProps": {
15003
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15004
+ "datatype": true,
15005
+ "docs": {
15006
+ "stability": "experimental"
15007
+ },
15008
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackBatchAgentProps",
15009
+ "interfaces": [
15010
+ "@cdklabs/cdk-appmod-catalog-blueprints.BatchAgentProps"
15011
+ ],
15012
+ "kind": "interface",
15013
+ "locationInModule": {
15014
+ "filename": "use-cases/framework/agents/localstack-batch-agent.ts",
15015
+ "line": 7
15016
+ },
15017
+ "name": "LocalStackBatchAgentProps",
15018
+ "properties": [
15019
+ {
15020
+ "abstract": true,
15021
+ "docs": {
15022
+ "default": "{ enabled: true }",
15023
+ "stability": "experimental",
15024
+ "summary": "LocalStack endpoint routing configuration for Lambda runtime SDK calls."
15025
+ },
15026
+ "immutable": true,
15027
+ "locationInModule": {
15028
+ "filename": "use-cases/framework/agents/localstack-batch-agent.ts",
15029
+ "line": 13
15030
+ },
15031
+ "name": "localStack",
15032
+ "optional": true,
15033
+ "type": {
15034
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackEndpointOverrides"
15035
+ }
15036
+ }
15037
+ ],
15038
+ "symbolId": "use-cases/framework/agents/localstack-batch-agent:LocalStackBatchAgentProps"
15039
+ },
15040
+ "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackBedrockDocumentProcessing": {
15041
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15042
+ "base": "@cdklabs/cdk-appmod-catalog-blueprints.BedrockDocumentProcessing",
15043
+ "docs": {
15044
+ "stability": "experimental"
15045
+ },
15046
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackBedrockDocumentProcessing",
15047
+ "initializer": {
15048
+ "docs": {
15049
+ "stability": "experimental"
15050
+ },
15051
+ "locationInModule": {
15052
+ "filename": "use-cases/document-processing/localstack-bedrock-document-processing.ts",
15053
+ "line": 17
15054
+ },
15055
+ "parameters": [
15056
+ {
15057
+ "name": "scope",
15058
+ "type": {
15059
+ "fqn": "constructs.Construct"
15060
+ }
15061
+ },
15062
+ {
15063
+ "name": "id",
15064
+ "type": {
15065
+ "primitive": "string"
15066
+ }
15067
+ },
15068
+ {
15069
+ "docs": {
15070
+ "summary": "Configuration properties for the document processing pipeline."
15071
+ },
15072
+ "name": "props",
15073
+ "type": {
15074
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackBedrockDocumentProcessingProps"
15075
+ }
15076
+ }
15077
+ ]
15078
+ },
15079
+ "kind": "class",
15080
+ "locationInModule": {
15081
+ "filename": "use-cases/document-processing/localstack-bedrock-document-processing.ts",
15082
+ "line": 16
15083
+ },
15084
+ "methods": [
15085
+ {
15086
+ "docs": {
15087
+ "stability": "experimental"
15088
+ },
15089
+ "locationInModule": {
15090
+ "filename": "use-cases/document-processing/localstack-bedrock-document-processing.ts",
15091
+ "line": 25
15092
+ },
15093
+ "name": "resolveBedrockInvokeEntry",
15094
+ "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.BedrockDocumentProcessing",
15095
+ "protected": true,
15096
+ "returns": {
15097
+ "type": {
15098
+ "primitive": "string"
15099
+ }
15100
+ }
15101
+ }
15102
+ ],
15103
+ "name": "LocalStackBedrockDocumentProcessing",
15104
+ "symbolId": "use-cases/document-processing/localstack-bedrock-document-processing:LocalStackBedrockDocumentProcessing"
15105
+ },
15106
+ "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackBedrockDocumentProcessingProps": {
15107
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15108
+ "datatype": true,
15109
+ "docs": {
15110
+ "stability": "experimental"
15111
+ },
15112
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackBedrockDocumentProcessingProps",
15113
+ "interfaces": [
15114
+ "@cdklabs/cdk-appmod-catalog-blueprints.BedrockDocumentProcessingProps"
15115
+ ],
15116
+ "kind": "interface",
15117
+ "locationInModule": {
15118
+ "filename": "use-cases/document-processing/localstack-bedrock-document-processing.ts",
15119
+ "line": 7
15120
+ },
15121
+ "name": "LocalStackBedrockDocumentProcessingProps",
15122
+ "properties": [
15123
+ {
15124
+ "abstract": true,
15125
+ "docs": {
15126
+ "default": "{ enabled: true }",
15127
+ "stability": "experimental",
15128
+ "summary": "LocalStack endpoint routing configuration for Lambda runtime SDK calls."
15129
+ },
15130
+ "immutable": true,
15131
+ "locationInModule": {
15132
+ "filename": "use-cases/document-processing/localstack-bedrock-document-processing.ts",
15133
+ "line": 13
15134
+ },
15135
+ "name": "localStack",
15136
+ "optional": true,
15137
+ "type": {
15138
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackEndpointOverrides"
15139
+ }
15140
+ }
15141
+ ],
15142
+ "symbolId": "use-cases/document-processing/localstack-bedrock-document-processing:LocalStackBedrockDocumentProcessingProps"
15143
+ },
15144
+ "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackEndpointOverrides": {
15145
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15146
+ "datatype": true,
15147
+ "docs": {
15148
+ "stability": "experimental"
15149
+ },
15150
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackEndpointOverrides",
15151
+ "kind": "interface",
15152
+ "locationInModule": {
15153
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15154
+ "line": 37
15155
+ },
15156
+ "name": "LocalStackEndpointOverrides",
15157
+ "properties": [
15158
+ {
15159
+ "abstract": true,
15160
+ "docs": {
15161
+ "stability": "experimental",
15162
+ "summary": "Optional service-specific Bedrock Agent Runtime endpoint override."
15163
+ },
15164
+ "immutable": true,
15165
+ "locationInModule": {
15166
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15167
+ "line": 59
15168
+ },
15169
+ "name": "bedrockAgentRuntimeEndpointUrl",
15170
+ "optional": true,
15171
+ "type": {
15172
+ "primitive": "string"
15173
+ }
15174
+ },
15175
+ {
15176
+ "abstract": true,
15177
+ "docs": {
15178
+ "stability": "experimental",
15179
+ "summary": "Optional service-specific Bedrock Runtime endpoint override."
15180
+ },
15181
+ "immutable": true,
15182
+ "locationInModule": {
15183
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15184
+ "line": 55
15185
+ },
15186
+ "name": "bedrockRuntimeEndpointUrl",
15187
+ "optional": true,
15188
+ "type": {
15189
+ "primitive": "string"
15190
+ }
15191
+ },
15192
+ {
15193
+ "abstract": true,
15194
+ "docs": {
15195
+ "default": "http://localhost.localstack.cloud:4566",
15196
+ "stability": "experimental",
15197
+ "summary": "Default endpoint used when service-specific endpoints are not provided."
15198
+ },
15199
+ "immutable": true,
15200
+ "locationInModule": {
15201
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15202
+ "line": 43
15203
+ },
15204
+ "name": "endpointUrl",
15205
+ "optional": true,
15206
+ "type": {
15207
+ "primitive": "string"
15208
+ }
15209
+ },
15210
+ {
15211
+ "abstract": true,
15212
+ "docs": {
15213
+ "stability": "experimental",
15214
+ "summary": "Optional service-specific S3 endpoint override."
15215
+ },
15216
+ "immutable": true,
15217
+ "locationInModule": {
15218
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15219
+ "line": 47
15220
+ },
15221
+ "name": "s3EndpointUrl",
15222
+ "optional": true,
15223
+ "type": {
15224
+ "primitive": "string"
15225
+ }
15226
+ },
15227
+ {
15228
+ "abstract": true,
15229
+ "docs": {
15230
+ "stability": "experimental",
15231
+ "summary": "Optional service-specific Step Functions endpoint override."
15232
+ },
15233
+ "immutable": true,
15234
+ "locationInModule": {
15235
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15236
+ "line": 51
15237
+ },
15238
+ "name": "stepFunctionsEndpointUrl",
15239
+ "optional": true,
15240
+ "type": {
15241
+ "primitive": "string"
15242
+ }
15243
+ }
15244
+ ],
15245
+ "symbolId": "use-cases/framework/localstack/localstack-config:LocalStackEndpointOverrides"
15246
+ },
15247
+ "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackIntegrationConfig": {
15248
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15249
+ "datatype": true,
15250
+ "docs": {
15251
+ "stability": "experimental"
15252
+ },
15253
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackIntegrationConfig",
15254
+ "kind": "interface",
15255
+ "locationInModule": {
15256
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15257
+ "line": 1
15258
+ },
15259
+ "name": "LocalStackIntegrationConfig",
15260
+ "properties": [
15261
+ {
15262
+ "abstract": true,
15263
+ "docs": {
15264
+ "stability": "experimental",
15265
+ "summary": "Optional service-specific Bedrock Agent Runtime endpoint override."
15266
+ },
15267
+ "immutable": true,
15268
+ "locationInModule": {
15269
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15270
+ "line": 34
15271
+ },
15272
+ "name": "bedrockAgentRuntimeEndpointUrl",
15273
+ "optional": true,
15274
+ "type": {
15275
+ "primitive": "string"
15276
+ }
15277
+ },
15278
+ {
15279
+ "abstract": true,
15280
+ "docs": {
15281
+ "stability": "experimental",
15282
+ "summary": "Optional service-specific Bedrock Runtime endpoint override."
15283
+ },
15284
+ "immutable": true,
15285
+ "locationInModule": {
15286
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15287
+ "line": 29
15288
+ },
15289
+ "name": "bedrockRuntimeEndpointUrl",
15290
+ "optional": true,
15291
+ "type": {
15292
+ "primitive": "string"
15293
+ }
15294
+ },
15295
+ {
15296
+ "abstract": true,
15297
+ "docs": {
15298
+ "default": "false",
15299
+ "stability": "experimental",
15300
+ "summary": "Enable LocalStack endpoint routing for runtime AWS SDK calls."
15301
+ },
15302
+ "immutable": true,
15303
+ "locationInModule": {
15304
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15305
+ "line": 7
15306
+ },
15307
+ "name": "enabled",
15308
+ "optional": true,
15309
+ "type": {
15310
+ "primitive": "boolean"
15311
+ }
15312
+ },
15313
+ {
15314
+ "abstract": true,
15315
+ "docs": {
15316
+ "default": "http://localhost.localstack.cloud:4566",
15317
+ "stability": "experimental",
15318
+ "summary": "Default endpoint used when service-specific endpoints are not provided."
15319
+ },
15320
+ "immutable": true,
15321
+ "locationInModule": {
15322
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15323
+ "line": 14
15324
+ },
15325
+ "name": "endpointUrl",
15326
+ "optional": true,
15327
+ "type": {
15328
+ "primitive": "string"
15329
+ }
15330
+ },
15331
+ {
15332
+ "abstract": true,
15333
+ "docs": {
15334
+ "stability": "experimental",
15335
+ "summary": "Optional service-specific S3 endpoint override."
15336
+ },
15337
+ "immutable": true,
15338
+ "locationInModule": {
15339
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15340
+ "line": 19
15341
+ },
15342
+ "name": "s3EndpointUrl",
15343
+ "optional": true,
15344
+ "type": {
15345
+ "primitive": "string"
15346
+ }
15347
+ },
15348
+ {
15349
+ "abstract": true,
15350
+ "docs": {
15351
+ "stability": "experimental",
15352
+ "summary": "Optional service-specific Step Functions endpoint override."
15353
+ },
15354
+ "immutable": true,
15355
+ "locationInModule": {
15356
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15357
+ "line": 24
15358
+ },
15359
+ "name": "stepFunctionsEndpointUrl",
15360
+ "optional": true,
15361
+ "type": {
15362
+ "primitive": "string"
15363
+ }
15364
+ }
15365
+ ],
15366
+ "symbolId": "use-cases/framework/localstack/localstack-config:LocalStackIntegrationConfig"
15367
+ },
15368
+ "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackIntegrationUtils": {
15369
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15370
+ "docs": {
15371
+ "stability": "experimental"
15372
+ },
15373
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackIntegrationUtils",
15374
+ "initializer": {
15375
+ "docs": {
15376
+ "stability": "experimental"
15377
+ }
15378
+ },
15379
+ "kind": "class",
15380
+ "locationInModule": {
15381
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15382
+ "line": 84
15383
+ },
15384
+ "methods": [
15385
+ {
15386
+ "docs": {
15387
+ "stability": "experimental"
15388
+ },
15389
+ "locationInModule": {
15390
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15391
+ "line": 87
15392
+ },
15393
+ "name": "resolveConfig",
15394
+ "parameters": [
15395
+ {
15396
+ "name": "config",
15397
+ "optional": true,
15398
+ "type": {
15399
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackIntegrationConfig"
15400
+ }
15401
+ }
15402
+ ],
15403
+ "returns": {
15404
+ "type": {
15405
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.ResolvedLocalStackIntegrationConfig"
15406
+ }
15407
+ },
15408
+ "static": true
15409
+ },
15410
+ {
15411
+ "docs": {
15412
+ "stability": "experimental"
15413
+ },
15414
+ "locationInModule": {
15415
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15416
+ "line": 100
15417
+ },
15418
+ "name": "toLambdaEnvironment",
15419
+ "parameters": [
15420
+ {
15421
+ "name": "config",
15422
+ "optional": true,
15423
+ "type": {
15424
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LocalStackIntegrationConfig"
15425
+ }
15426
+ }
15427
+ ],
15428
+ "returns": {
15429
+ "type": {
15430
+ "collection": {
15431
+ "elementtype": {
15432
+ "primitive": "string"
15433
+ },
15434
+ "kind": "map"
15435
+ }
15436
+ }
15437
+ },
15438
+ "static": true
15439
+ }
15440
+ ],
15441
+ "name": "LocalStackIntegrationUtils",
15442
+ "properties": [
15443
+ {
15444
+ "const": true,
15445
+ "docs": {
15446
+ "stability": "experimental"
15447
+ },
15448
+ "immutable": true,
15449
+ "locationInModule": {
15450
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
15451
+ "line": 85
15452
+ },
15453
+ "name": "DEFAULT_ENDPOINT_URL",
15454
+ "static": true,
15455
+ "type": {
15456
+ "primitive": "string"
15457
+ }
15458
+ }
15459
+ ],
15460
+ "symbolId": "use-cases/framework/localstack/localstack-config:LocalStackIntegrationUtils"
15461
+ },
15462
+ "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionProps": {
15463
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15464
+ "datatype": true,
15465
+ "docs": {
15466
+ "stability": "experimental",
15467
+ "summary": "Props to enable various data protection configuration for CloudWatch Log Groups."
15468
+ },
15469
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionProps",
15470
+ "kind": "interface",
15471
+ "locationInModule": {
15472
+ "filename": "use-cases/utilities/observability/log-group-data-protection-props.ts",
15473
+ "line": 11
15474
+ },
15475
+ "name": "LogGroupDataProtectionProps",
15476
+ "properties": [
15477
+ {
15478
+ "abstract": true,
15479
+ "docs": {
15480
+ "default": "Data Protection Policy won't be enabled",
15481
+ "stability": "experimental",
15482
+ "summary": "List of DataIdentifiers that would be used as part of the Data Protection Policy that would be created for the log group."
15483
+ },
15484
+ "immutable": true,
15485
+ "locationInModule": {
15486
+ "filename": "use-cases/utilities/observability/log-group-data-protection-props.ts",
15487
+ "line": 23
15488
+ },
15489
+ "name": "dataProtectionIdentifiers",
15490
+ "optional": true,
15491
+ "type": {
15492
+ "collection": {
15493
+ "elementtype": {
15494
+ "fqn": "aws-cdk-lib.aws_logs.DataIdentifier"
15495
+ },
15496
+ "kind": "array"
15497
+ }
15498
+ }
15499
+ },
15500
+ {
15501
+ "abstract": true,
15502
+ "docs": {
15503
+ "default": "a new KMS key would automatically be created",
15504
+ "stability": "experimental",
15505
+ "summary": "Encryption key that would be used to encrypt the relevant log group."
15506
+ },
15507
+ "immutable": true,
15508
+ "locationInModule": {
15509
+ "filename": "use-cases/utilities/observability/log-group-data-protection-props.ts",
15510
+ "line": 16
15511
+ },
15512
+ "name": "logGroupEncryptionKey",
15513
+ "optional": true,
15514
+ "type": {
15515
+ "fqn": "aws-cdk-lib.aws_kms.Key"
15516
+ }
15517
+ }
15518
+ ],
15519
+ "symbolId": "use-cases/utilities/observability/log-group-data-protection-props:LogGroupDataProtectionProps"
15520
+ },
15521
+ "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionUtils": {
15522
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15523
+ "docs": {
15524
+ "stability": "experimental"
15525
+ },
15526
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionUtils",
15527
+ "initializer": {
15528
+ "docs": {
15529
+ "stability": "experimental"
15530
+ }
15531
+ },
15532
+ "kind": "class",
15533
+ "locationInModule": {
15534
+ "filename": "use-cases/utilities/observability/log-group-data-protection-utils.ts",
15535
+ "line": 9
15536
+ },
15537
+ "methods": [
15538
+ {
15539
+ "docs": {
15540
+ "stability": "experimental"
15541
+ },
15542
+ "locationInModule": {
15543
+ "filename": "use-cases/utilities/observability/log-group-data-protection-utils.ts",
15544
+ "line": 10
15545
+ },
15546
+ "name": "handleDefault",
15547
+ "parameters": [
15548
+ {
15549
+ "name": "scope",
15550
+ "type": {
15551
+ "fqn": "constructs.Construct"
15552
+ }
15553
+ },
15554
+ {
15555
+ "name": "props",
15556
+ "optional": true,
15557
+ "type": {
15558
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionProps"
15559
+ }
15560
+ },
15561
+ {
15562
+ "name": "removalPolicy",
15563
+ "optional": true,
15564
+ "type": {
15565
+ "fqn": "aws-cdk-lib.RemovalPolicy"
15566
+ }
15567
+ }
15568
+ ],
15569
+ "returns": {
15570
+ "type": {
15571
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.LogGroupDataProtectionProps"
15572
+ }
15573
+ },
15574
+ "static": true
15575
+ }
15576
+ ],
15577
+ "name": "LogGroupDataProtectionUtils",
15578
+ "symbolId": "use-cases/utilities/observability/log-group-data-protection-utils:LogGroupDataProtectionUtils"
15579
+ },
15580
+ "@cdklabs/cdk-appmod-catalog-blueprints.Network": {
15581
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15582
+ "base": "constructs.Construct",
15583
+ "docs": {
15584
+ "stability": "experimental"
15585
+ },
15586
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.Network",
15587
+ "initializer": {
15588
+ "docs": {
15589
+ "stability": "experimental"
15590
+ },
15591
+ "locationInModule": {
15592
+ "filename": "use-cases/framework/foundation/network.ts",
15593
+ "line": 30
15594
+ },
15595
+ "parameters": [
15596
+ {
15597
+ "name": "scope",
15598
+ "type": {
15599
+ "fqn": "constructs.Construct"
15600
+ }
15601
+ },
15602
+ {
15603
+ "name": "id",
15604
+ "type": {
15605
+ "primitive": "string"
15606
+ }
15607
+ },
15608
+ {
15609
+ "name": "props",
15610
+ "optional": true,
15611
+ "type": {
15612
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.NetworkProps"
15613
+ }
15614
+ }
15615
+ ]
15616
+ },
15617
+ "kind": "class",
15618
+ "locationInModule": {
15619
+ "filename": "use-cases/framework/foundation/network.ts",
15620
+ "line": 18
15621
+ },
15622
+ "methods": [
15623
+ {
15624
+ "docs": {
15625
+ "stability": "experimental"
15626
+ },
15627
+ "locationInModule": {
15628
+ "filename": "use-cases/framework/foundation/network.ts",
15629
+ "line": 19
15630
+ },
15631
+ "name": "useExistingVPCFromLookup",
15632
+ "parameters": [
15633
+ {
15634
+ "name": "scope",
15635
+ "type": {
15636
+ "fqn": "constructs.Construct"
15637
+ }
15638
+ },
15639
+ {
15640
+ "name": "id",
15641
+ "type": {
15642
+ "primitive": "string"
15643
+ }
15644
+ },
15645
+ {
15646
+ "name": "options",
15647
+ "type": {
15648
+ "fqn": "aws-cdk-lib.aws_ec2.VpcLookupOptions"
15649
+ }
15650
+ }
15651
+ ],
15652
+ "returns": {
15653
+ "type": {
15654
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.Network"
15655
+ }
15656
+ },
15657
+ "static": true
15658
+ },
14949
15659
  {
14950
15660
  "docs": {
14951
15661
  "stability": "experimental"
14952
15662
  },
14953
15663
  "locationInModule": {
14954
15664
  "filename": "use-cases/framework/foundation/network.ts",
14955
- "line": 102
15665
+ "line": 108
14956
15666
  },
14957
15667
  "name": "applicationSubnetSelection",
14958
15668
  "returns": {
@@ -14989,6 +15699,13 @@
14989
15699
  "type": {
14990
15700
  "fqn": "aws-cdk-lib.aws_ec2.IPeer"
14991
15701
  }
15702
+ },
15703
+ {
15704
+ "name": "privateDnsEnabled",
15705
+ "optional": true,
15706
+ "type": {
15707
+ "primitive": "boolean"
15708
+ }
14992
15709
  }
14993
15710
  ],
14994
15711
  "returns": {
@@ -15921,6 +16638,113 @@
15921
16638
  ],
15922
16639
  "symbolId": "use-cases/document-processing/adapter/queued-s3-adapter:QueuedS3AdapterProps"
15923
16640
  },
16641
+ "@cdklabs/cdk-appmod-catalog-blueprints.ResolvedLocalStackIntegrationConfig": {
16642
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
16643
+ "datatype": true,
16644
+ "docs": {
16645
+ "stability": "experimental"
16646
+ },
16647
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.ResolvedLocalStackIntegrationConfig",
16648
+ "kind": "interface",
16649
+ "locationInModule": {
16650
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
16651
+ "line": 62
16652
+ },
16653
+ "name": "ResolvedLocalStackIntegrationConfig",
16654
+ "properties": [
16655
+ {
16656
+ "abstract": true,
16657
+ "docs": {
16658
+ "stability": "experimental"
16659
+ },
16660
+ "immutable": true,
16661
+ "locationInModule": {
16662
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
16663
+ "line": 68
16664
+ },
16665
+ "name": "bedrockAgentRuntimeEndpointUrl",
16666
+ "type": {
16667
+ "primitive": "string"
16668
+ }
16669
+ },
16670
+ {
16671
+ "abstract": true,
16672
+ "docs": {
16673
+ "stability": "experimental"
16674
+ },
16675
+ "immutable": true,
16676
+ "locationInModule": {
16677
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
16678
+ "line": 67
16679
+ },
16680
+ "name": "bedrockRuntimeEndpointUrl",
16681
+ "type": {
16682
+ "primitive": "string"
16683
+ }
16684
+ },
16685
+ {
16686
+ "abstract": true,
16687
+ "docs": {
16688
+ "stability": "experimental"
16689
+ },
16690
+ "immutable": true,
16691
+ "locationInModule": {
16692
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
16693
+ "line": 63
16694
+ },
16695
+ "name": "enabled",
16696
+ "type": {
16697
+ "primitive": "boolean"
16698
+ }
16699
+ },
16700
+ {
16701
+ "abstract": true,
16702
+ "docs": {
16703
+ "stability": "experimental"
16704
+ },
16705
+ "immutable": true,
16706
+ "locationInModule": {
16707
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
16708
+ "line": 64
16709
+ },
16710
+ "name": "endpointUrl",
16711
+ "type": {
16712
+ "primitive": "string"
16713
+ }
16714
+ },
16715
+ {
16716
+ "abstract": true,
16717
+ "docs": {
16718
+ "stability": "experimental"
16719
+ },
16720
+ "immutable": true,
16721
+ "locationInModule": {
16722
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
16723
+ "line": 65
16724
+ },
16725
+ "name": "s3EndpointUrl",
16726
+ "type": {
16727
+ "primitive": "string"
16728
+ }
16729
+ },
16730
+ {
16731
+ "abstract": true,
16732
+ "docs": {
16733
+ "stability": "experimental"
16734
+ },
16735
+ "immutable": true,
16736
+ "locationInModule": {
16737
+ "filename": "use-cases/framework/localstack/localstack-config.ts",
16738
+ "line": 66
16739
+ },
16740
+ "name": "stepFunctionsEndpointUrl",
16741
+ "type": {
16742
+ "primitive": "string"
16743
+ }
16744
+ }
16745
+ ],
16746
+ "symbolId": "use-cases/framework/localstack/localstack-config:ResolvedLocalStackIntegrationConfig"
16747
+ },
15924
16748
  "@cdklabs/cdk-appmod-catalog-blueprints.RetrievalConfiguration": {
15925
16749
  "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15926
16750
  "datatype": true,
@@ -16941,6 +17765,6 @@
16941
17765
  "usedFeatures": [
16942
17766
  "class-covariant-overrides"
16943
17767
  ],
16944
- "version": "1.16.0",
16945
- "fingerprint": "qMgFSYJ/Ddnd7v4XlRse9mWTeos+hvInFuI+o5b9pn0="
17768
+ "version": "1.17.0",
17769
+ "fingerprint": "dJKcHbVry8+s+/UPrWi0+4cgMow7Vw95qBx+5mqAB5k="
16946
17770
  }