@cdklabs/cdk-appmod-catalog-blueprints 1.16.1 → 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 (65) hide show
  1. package/.jsii +960 -143
  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 +10 -10
  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.js +1 -1
  46. package/lib/framework/index.d.ts +1 -0
  47. package/lib/framework/index.js +2 -1
  48. package/lib/framework/localstack/index.d.ts +1 -0
  49. package/lib/framework/localstack/index.js +18 -0
  50. package/lib/framework/localstack/localstack-config.d.ts +79 -0
  51. package/lib/framework/localstack/localstack-config.js +49 -0
  52. package/lib/framework/tests/localstack-batch-agent.test.d.ts +1 -0
  53. package/lib/framework/tests/localstack-batch-agent.test.js +67 -0
  54. package/lib/tsconfig.tsbuildinfo +1 -1
  55. package/lib/utilities/data-loader.js +1 -1
  56. package/lib/utilities/lambda-iam-utils.js +1 -1
  57. package/lib/utilities/observability/cloudfront-distribution-observability-property-injector.js +1 -1
  58. package/lib/utilities/observability/cloudwatch-transaction-search.js +1 -1
  59. package/lib/utilities/observability/default-observability-config.js +1 -1
  60. package/lib/utilities/observability/lambda-observability-property-injector.js +1 -1
  61. package/lib/utilities/observability/log-group-data-protection-utils.js +1 -1
  62. package/lib/utilities/observability/powertools-config.js +1 -1
  63. package/lib/utilities/observability/state-machine-observability-property-injector.js +1 -1
  64. package/lib/webapp/frontend-construct.js +1 -1
  65. 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": [
@@ -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,41 +14983,683 @@
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
- },
14949
- {
14950
- "docs": {
14951
- "stability": "experimental"
14952
- },
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
+ },
15659
+ {
15660
+ "docs": {
15661
+ "stability": "experimental"
15662
+ },
14953
15663
  "locationInModule": {
14954
15664
  "filename": "use-cases/framework/foundation/network.ts",
14955
15665
  "line": 108
@@ -15928,6 +16638,113 @@
15928
16638
  ],
15929
16639
  "symbolId": "use-cases/document-processing/adapter/queued-s3-adapter:QueuedS3AdapterProps"
15930
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
+ },
15931
16748
  "@cdklabs/cdk-appmod-catalog-blueprints.RetrievalConfiguration": {
15932
16749
  "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15933
16750
  "datatype": true,
@@ -16948,6 +17765,6 @@
16948
17765
  "usedFeatures": [
16949
17766
  "class-covariant-overrides"
16950
17767
  ],
16951
- "version": "1.16.1",
16952
- "fingerprint": "nOqZiA30a8KUi5UCggWI5QXGJVUGSDTSvDdKdI1JR+o="
17768
+ "version": "1.17.0",
17769
+ "fingerprint": "dJKcHbVry8+s+/UPrWi0+4cgMow7Vw95qBx+5mqAB5k="
16953
17770
  }