@cdklabs/cdk-appmod-catalog-blueprints 1.15.0 → 1.16.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 (32) hide show
  1. package/.jsii +242 -163
  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.js +1 -1
  6. package/lib/document-processing/default-document-processing-config.js +1 -1
  7. package/lib/framework/agents/base-agent.js +1 -1
  8. package/lib/framework/agents/batch-agent.js +1 -1
  9. package/lib/framework/agents/default-agent-config.js +1 -1
  10. package/lib/framework/agents/interactive-agent.d.ts +71 -5
  11. package/lib/framework/agents/interactive-agent.js +92 -15
  12. package/lib/framework/agents/knowledge-base/base-knowledge-base.js +1 -1
  13. package/lib/framework/agents/knowledge-base/bedrock-knowledge-base.js +1 -1
  14. package/lib/framework/bedrock/bedrock.js +1 -1
  15. package/lib/framework/custom-resource/default-runtimes.js +1 -1
  16. package/lib/framework/foundation/access-log.js +1 -1
  17. package/lib/framework/foundation/eventbridge-broker.js +1 -1
  18. package/lib/framework/foundation/network.js +1 -1
  19. package/lib/framework/tests/interactive-agent-nag.test.js +2 -2
  20. package/lib/framework/tests/interactive-agent.test.js +89 -2
  21. package/lib/tsconfig.tsbuildinfo +1 -1
  22. package/lib/utilities/data-loader.js +1 -1
  23. package/lib/utilities/lambda-iam-utils.js +1 -1
  24. package/lib/utilities/observability/cloudfront-distribution-observability-property-injector.js +1 -1
  25. package/lib/utilities/observability/cloudwatch-transaction-search.js +1 -1
  26. package/lib/utilities/observability/default-observability-config.js +1 -1
  27. package/lib/utilities/observability/lambda-observability-property-injector.js +1 -1
  28. package/lib/utilities/observability/log-group-data-protection-utils.js +1 -1
  29. package/lib/utilities/observability/powertools-config.js +1 -1
  30. package/lib/utilities/observability/state-machine-observability-property-injector.js +1 -1
  31. package/lib/webapp/frontend-construct.js +1 -1
  32. package/package.json +1 -1
package/.jsii CHANGED
@@ -4577,7 +4577,7 @@
4577
4577
  "kind": "interface",
4578
4578
  "locationInModule": {
4579
4579
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4580
- "line": 1254
4580
+ "line": 1255
4581
4581
  },
4582
4582
  "name": "AgentCoreJwtAuthorizerConfig",
4583
4583
  "properties": [
@@ -4590,7 +4590,7 @@
4590
4590
  "immutable": true,
4591
4591
  "locationInModule": {
4592
4592
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4593
- "line": 1256
4593
+ "line": 1257
4594
4594
  },
4595
4595
  "name": "discoveryUrl",
4596
4596
  "type": {
@@ -4606,7 +4606,7 @@
4606
4606
  "immutable": true,
4607
4607
  "locationInModule": {
4608
4608
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4609
- "line": 1258
4609
+ "line": 1259
4610
4610
  },
4611
4611
  "name": "allowedAudience",
4612
4612
  "optional": true,
@@ -4628,7 +4628,7 @@
4628
4628
  "immutable": true,
4629
4629
  "locationInModule": {
4630
4630
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4631
- "line": 1260
4631
+ "line": 1261
4632
4632
  },
4633
4633
  "name": "allowedClients",
4634
4634
  "optional": true,
@@ -4647,7 +4647,7 @@
4647
4647
  "@cdklabs/cdk-appmod-catalog-blueprints.AgentCoreRuntimeHostingAdapter": {
4648
4648
  "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
4649
4649
  "docs": {
4650
- "remarks": "Deploys the agent as a container running on AgentCore Runtime (microVM).\nUses L1 constructs `CfnRuntime` and `CfnRuntimeEndpoint` from\n`aws-cdk-lib/aws-bedrockagentcore`.\n\n## Architecture\n\n```\nClient → AgentCore Runtime Endpoint → Container (FastAPI on port 8080) → Bedrock\n```\n\n## Features\n\n- **Session Isolation**: microVM provides per-session isolation (no S3 session bucket needed)\n- **Managed Infrastructure**: No Lambda cold starts or timeout limits\n- **Multiple Protocols**: HTTP, MCP, or A2A protocol support\n- **Container-Based**: Standard Docker image deployment\n\n## Usage\n\n```typescript\nimport { Asset } from 'aws-cdk-lib/aws-s3-assets';\nimport { InteractiveAgent, AgentCoreRuntimeHostingAdapter } from '@cdklabs/cdk-appmod-catalog-blueprints';\n\ndeclare const myPrompt: Asset;\n\nnew InteractiveAgent(this, 'Agent', {\n agentName: 'MyChatbot',\n agentDefinition: { bedrockModel: {}, systemPrompt: myPrompt },\n hostingAdapter: new AgentCoreRuntimeHostingAdapter({\n networkMode: 'PUBLIC',\n }),\n});\n```",
4650
+ "remarks": "Deploys the agent as a container running on AgentCore Runtime (microVM).\nUses L1 constructs `CfnRuntime` and `CfnRuntimeEndpoint` from\n`aws-cdk-lib/aws-bedrockagentcore`.\n\n## Architecture\n\n```\nClient → AgentCore Runtime Endpoint → Container (FastAPI on port 8080) → Bedrock\n```\n\n## Features\n\n- **Session Isolation**: microVM provides per-session isolation (no S3 session bucket needed)\n- **Managed Infrastructure**: No Lambda cold starts or timeout limits\n- **Multiple Protocols**: HTTP, MCP, or A2A protocol support\n- **Container-Based**: Standard Docker image deployment\n- **VPC Support**: Run inside a VPC with private subnets for network isolation\n\n## Usage\n\n```typescript\nimport { Asset } from 'aws-cdk-lib/aws-s3-assets';\nimport { InteractiveAgent, AgentCoreRuntimeHostingAdapter, NetworkMode } from '@cdklabs/cdk-appmod-catalog-blueprints';\n\ndeclare const myPrompt: Asset;\n\nnew InteractiveAgent(this, 'Agent', {\n agentName: 'MyChatbot',\n agentDefinition: { bedrockModel: {}, systemPrompt: myPrompt },\n hostingAdapter: new AgentCoreRuntimeHostingAdapter({\n networkMode: NetworkMode.PUBLIC,\n }),\n});\n```",
4651
4651
  "stability": "experimental",
4652
4652
  "summary": "AgentCore Runtime hosting adapter for InteractiveAgent."
4653
4653
  },
@@ -4658,7 +4658,7 @@
4658
4658
  },
4659
4659
  "locationInModule": {
4660
4660
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4661
- "line": 1342
4661
+ "line": 1412
4662
4662
  },
4663
4663
  "parameters": [
4664
4664
  {
@@ -4676,7 +4676,7 @@
4676
4676
  "kind": "class",
4677
4677
  "locationInModule": {
4678
4678
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4679
- "line": 1339
4679
+ "line": 1409
4680
4680
  },
4681
4681
  "methods": [
4682
4682
  {
@@ -4686,7 +4686,7 @@
4686
4686
  },
4687
4687
  "locationInModule": {
4688
4688
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4689
- "line": 1351
4689
+ "line": 1421
4690
4690
  },
4691
4691
  "name": "deploy",
4692
4692
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IHostingAdapter",
@@ -4716,7 +4716,7 @@
4716
4716
  "immutable": true,
4717
4717
  "locationInModule": {
4718
4718
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4719
- "line": 1346
4719
+ "line": 1416
4720
4720
  },
4721
4721
  "name": "servicePrincipal",
4722
4722
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IHostingAdapter",
@@ -4731,14 +4731,13 @@
4731
4731
  "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
4732
4732
  "datatype": true,
4733
4733
  "docs": {
4734
- "stability": "experimental",
4735
- "summary": "Configuration properties for AgentCoreRuntimeHostingAdapter."
4734
+ "stability": "experimental"
4736
4735
  },
4737
4736
  "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.AgentCoreRuntimeHostingAdapterProps",
4738
4737
  "kind": "interface",
4739
4738
  "locationInModule": {
4740
4739
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4741
- "line": 1266
4740
+ "line": 1295
4742
4741
  },
4743
4742
  "name": "AgentCoreRuntimeHostingAdapterProps",
4744
4743
  "properties": [
@@ -4753,7 +4752,7 @@
4753
4752
  "immutable": true,
4754
4753
  "locationInModule": {
4755
4754
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4756
- "line": 1272
4755
+ "line": 1301
4757
4756
  },
4758
4757
  "name": "containerImageUri",
4759
4758
  "optional": true,
@@ -4771,7 +4770,7 @@
4771
4770
  "immutable": true,
4772
4771
  "locationInModule": {
4773
4772
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4774
- "line": 1285
4773
+ "line": 1354
4775
4774
  },
4776
4775
  "name": "customJwtAuthorizer",
4777
4776
  "optional": true,
@@ -4789,7 +4788,7 @@
4789
4788
  "immutable": true,
4790
4789
  "locationInModule": {
4791
4790
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4792
- "line": 1299
4791
+ "line": 1368
4793
4792
  },
4794
4793
  "name": "endpointName",
4795
4794
  "optional": true,
@@ -4800,19 +4799,21 @@
4800
4799
  {
4801
4800
  "abstract": true,
4802
4801
  "docs": {
4803
- "default": "'PUBLIC'",
4802
+ "default": "NetworkMode.PUBLIC",
4803
+ "remarks": "When set to `NetworkMode.VPC`, the runtime runs inside a VPC and AgentCore creates\nENIs in the specified subnets. You must provide either explicit `vpcSubnets`\nand `securityGroups`, or pass a `Network` construct via `AgentHostingConfig.network`\n(which is set automatically by `InteractiveAgent` when `network` is provided).\n\nFor VPC mode, use private subnets with a NAT Gateway for internet access.\nPublic subnets do NOT provide internet access to AgentCore ENIs.",
4804
+ "see": "https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/agentcore-vpc.html",
4804
4805
  "stability": "experimental",
4805
- "summary": "Network mode: 'PUBLIC' or 'VPC'."
4806
+ "summary": "Network mode for the AgentCore Runtime."
4806
4807
  },
4807
4808
  "immutable": true,
4808
4809
  "locationInModule": {
4809
4810
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4810
- "line": 1279
4811
+ "line": 1317
4811
4812
  },
4812
4813
  "name": "networkMode",
4813
4814
  "optional": true,
4814
4815
  "type": {
4815
- "primitive": "string"
4816
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.NetworkMode"
4816
4817
  }
4817
4818
  },
4818
4819
  {
@@ -4825,13 +4826,56 @@
4825
4826
  "immutable": true,
4826
4827
  "locationInModule": {
4827
4828
  "filename": "use-cases/framework/agents/interactive-agent.ts",
4828
- "line": 1292
4829
+ "line": 1361
4829
4830
  },
4830
4831
  "name": "protocolConfiguration",
4831
4832
  "optional": true,
4832
4833
  "type": {
4833
4834
  "primitive": "string"
4834
4835
  }
4836
+ },
4837
+ {
4838
+ "abstract": true,
4839
+ "docs": {
4840
+ "default": "- A new security group allowing all outbound traffic is created\nfrom AgentHostingConfig.network if available",
4841
+ "remarks": "Attached to the AgentCore Runtime ENIs. Maximum 16 security groups.\n\nWhen both `securityGroups` and `AgentHostingConfig.network` are provided,\n`securityGroups` takes precedence.",
4842
+ "stability": "experimental",
4843
+ "summary": "Security groups for VPC network mode."
4844
+ },
4845
+ "immutable": true,
4846
+ "locationInModule": {
4847
+ "filename": "use-cases/framework/agents/interactive-agent.ts",
4848
+ "line": 1348
4849
+ },
4850
+ "name": "securityGroups",
4851
+ "optional": true,
4852
+ "type": {
4853
+ "collection": {
4854
+ "elementtype": {
4855
+ "fqn": "aws-cdk-lib.aws_ec2.ISecurityGroup"
4856
+ },
4857
+ "kind": "array"
4858
+ }
4859
+ }
4860
+ },
4861
+ {
4862
+ "abstract": true,
4863
+ "docs": {
4864
+ "default": "- Derived from AgentHostingConfig.network.applicationSubnetSelection() if available",
4865
+ "remarks": "Selects which subnets the AgentCore Runtime ENIs are placed in.\nRequires a VPC to be provided via `AgentHostingConfig.network`\n(set automatically by `InteractiveAgent` when `network` is provided)\nso that subnets can be resolved.\n\nBest practice is to select private subnets with a NAT Gateway\nin at least 2 Availability Zones. Maximum 16 subnets.\n\nWhen both `vpcSubnets` and `AgentHostingConfig.network` are provided,\n`vpcSubnets` takes precedence over the network's default application subnets.",
4866
+ "stability": "experimental",
4867
+ "summary": "Subnet selection for VPC network mode."
4868
+ },
4869
+ "immutable": true,
4870
+ "locationInModule": {
4871
+ "filename": "use-cases/framework/agents/interactive-agent.ts",
4872
+ "line": 1335
4873
+ },
4874
+ "name": "vpcSubnets",
4875
+ "optional": true,
4876
+ "type": {
4877
+ "fqn": "aws-cdk-lib.aws_ec2.SubnetSelection"
4878
+ }
4835
4879
  }
4836
4880
  ],
4837
4881
  "symbolId": "use-cases/framework/agents/interactive-agent:AgentCoreRuntimeHostingAdapterProps"
@@ -5012,7 +5056,7 @@
5012
5056
  "kind": "interface",
5013
5057
  "locationInModule": {
5014
5058
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5015
- "line": 939
5059
+ "line": 940
5016
5060
  },
5017
5061
  "name": "AgentHostingConfig",
5018
5062
  "properties": [
@@ -5025,7 +5069,7 @@
5025
5069
  "immutable": true,
5026
5070
  "locationInModule": {
5027
5071
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5028
- "line": 943
5072
+ "line": 944
5029
5073
  },
5030
5074
  "name": "agentName",
5031
5075
  "type": {
@@ -5041,7 +5085,7 @@
5041
5085
  "immutable": true,
5042
5086
  "locationInModule": {
5043
5087
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5044
- "line": 945
5088
+ "line": 946
5045
5089
  },
5046
5090
  "name": "agentRole",
5047
5091
  "type": {
@@ -5057,7 +5101,7 @@
5057
5101
  "immutable": true,
5058
5102
  "locationInModule": {
5059
5103
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5060
- "line": 949
5104
+ "line": 950
5061
5105
  },
5062
5106
  "name": "encryptionKey",
5063
5107
  "type": {
@@ -5073,7 +5117,7 @@
5073
5117
  "immutable": true,
5074
5118
  "locationInModule": {
5075
5119
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5076
- "line": 947
5120
+ "line": 948
5077
5121
  },
5078
5122
  "name": "environment",
5079
5123
  "type": {
@@ -5094,7 +5138,7 @@
5094
5138
  "immutable": true,
5095
5139
  "locationInModule": {
5096
5140
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5097
- "line": 941
5141
+ "line": 942
5098
5142
  },
5099
5143
  "name": "scope",
5100
5144
  "type": {
@@ -5110,7 +5154,7 @@
5110
5154
  "immutable": true,
5111
5155
  "locationInModule": {
5112
5156
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5113
- "line": 969
5157
+ "line": 970
5114
5158
  },
5115
5159
  "name": "systemPromptBucket",
5116
5160
  "type": {
@@ -5126,7 +5170,7 @@
5126
5170
  "immutable": true,
5127
5171
  "locationInModule": {
5128
5172
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5129
- "line": 971
5173
+ "line": 972
5130
5174
  },
5131
5175
  "name": "systemPromptKey",
5132
5176
  "type": {
@@ -5142,7 +5186,7 @@
5142
5186
  "immutable": true,
5143
5187
  "locationInModule": {
5144
5188
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5145
- "line": 967
5189
+ "line": 968
5146
5190
  },
5147
5191
  "name": "toolsConfig",
5148
5192
  "type": {
@@ -5158,7 +5202,7 @@
5158
5202
  "immutable": true,
5159
5203
  "locationInModule": {
5160
5204
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5161
- "line": 953
5205
+ "line": 954
5162
5206
  },
5163
5207
  "name": "architecture",
5164
5208
  "optional": true,
@@ -5175,7 +5219,7 @@
5175
5219
  "immutable": true,
5176
5220
  "locationInModule": {
5177
5221
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5178
- "line": 965
5222
+ "line": 966
5179
5223
  },
5180
5224
  "name": "enableObservability",
5181
5225
  "optional": true,
@@ -5192,7 +5236,7 @@
5192
5236
  "immutable": true,
5193
5237
  "locationInModule": {
5194
5238
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5195
- "line": 973
5239
+ "line": 974
5196
5240
  },
5197
5241
  "name": "knowledgeBaseConfigs",
5198
5242
  "optional": true,
@@ -5209,7 +5253,7 @@
5209
5253
  "immutable": true,
5210
5254
  "locationInModule": {
5211
5255
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5212
- "line": 963
5256
+ "line": 964
5213
5257
  },
5214
5258
  "name": "knowledgeBaseLayers",
5215
5259
  "optional": true,
@@ -5231,7 +5275,7 @@
5231
5275
  "immutable": true,
5232
5276
  "locationInModule": {
5233
5277
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5234
- "line": 975
5278
+ "line": 976
5235
5279
  },
5236
5280
  "name": "knowledgeBaseSystemPromptAddition",
5237
5281
  "optional": true,
@@ -5248,7 +5292,7 @@
5248
5292
  "immutable": true,
5249
5293
  "locationInModule": {
5250
5294
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5251
- "line": 961
5295
+ "line": 962
5252
5296
  },
5253
5297
  "name": "lambdaLayers",
5254
5298
  "optional": true,
@@ -5270,7 +5314,7 @@
5270
5314
  "immutable": true,
5271
5315
  "locationInModule": {
5272
5316
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5273
- "line": 955
5317
+ "line": 956
5274
5318
  },
5275
5319
  "name": "memorySize",
5276
5320
  "optional": true,
@@ -5287,7 +5331,7 @@
5287
5331
  "immutable": true,
5288
5332
  "locationInModule": {
5289
5333
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5290
- "line": 951
5334
+ "line": 952
5291
5335
  },
5292
5336
  "name": "network",
5293
5337
  "optional": true,
@@ -5304,7 +5348,7 @@
5304
5348
  "immutable": true,
5305
5349
  "locationInModule": {
5306
5350
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5307
- "line": 977
5351
+ "line": 978
5308
5352
  },
5309
5353
  "name": "removalPolicy",
5310
5354
  "optional": true,
@@ -5321,7 +5365,7 @@
5321
5365
  "immutable": true,
5322
5366
  "locationInModule": {
5323
5367
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5324
- "line": 959
5368
+ "line": 960
5325
5369
  },
5326
5370
  "name": "reservedConcurrentExecutions",
5327
5371
  "optional": true,
@@ -5338,7 +5382,7 @@
5338
5382
  "immutable": true,
5339
5383
  "locationInModule": {
5340
5384
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5341
- "line": 957
5385
+ "line": 958
5342
5386
  },
5343
5387
  "name": "timeout",
5344
5388
  "optional": true,
@@ -5360,7 +5404,7 @@
5360
5404
  "kind": "interface",
5361
5405
  "locationInModule": {
5362
5406
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5363
- "line": 983
5407
+ "line": 984
5364
5408
  },
5365
5409
  "name": "AgentHostingResult",
5366
5410
  "properties": [
@@ -5373,7 +5417,7 @@
5373
5417
  "immutable": true,
5374
5418
  "locationInModule": {
5375
5419
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5376
- "line": 985
5420
+ "line": 986
5377
5421
  },
5378
5422
  "name": "endpoint",
5379
5423
  "type": {
@@ -5389,7 +5433,7 @@
5389
5433
  "immutable": true,
5390
5434
  "locationInModule": {
5391
5435
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5392
- "line": 987
5436
+ "line": 988
5393
5437
  },
5394
5438
  "name": "agentFunction",
5395
5439
  "optional": true,
@@ -5406,7 +5450,7 @@
5406
5450
  "immutable": true,
5407
5451
  "locationInModule": {
5408
5452
  "filename": "use-cases/framework/agents/interactive-agent.ts",
5409
- "line": 989
5453
+ "line": 990
5410
5454
  },
5411
5455
  "name": "cfnRuntime",
5412
5456
  "optional": true,
@@ -9739,7 +9783,7 @@
9739
9783
  },
9740
9784
  "locationInModule": {
9741
9785
  "filename": "use-cases/framework/agents/interactive-agent.ts",
9742
- "line": 651
9786
+ "line": 652
9743
9787
  },
9744
9788
  "parameters": [
9745
9789
  {
@@ -9757,7 +9801,7 @@
9757
9801
  "kind": "class",
9758
9802
  "locationInModule": {
9759
9803
  "filename": "use-cases/framework/agents/interactive-agent.ts",
9760
- "line": 637
9804
+ "line": 638
9761
9805
  },
9762
9806
  "methods": [
9763
9807
  {
@@ -9767,7 +9811,7 @@
9767
9811
  },
9768
9812
  "locationInModule": {
9769
9813
  "filename": "use-cases/framework/agents/interactive-agent.ts",
9770
- "line": 685
9814
+ "line": 686
9771
9815
  },
9772
9816
  "name": "environmentVariables",
9773
9817
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IAuthenticator",
@@ -9790,7 +9834,7 @@
9790
9834
  },
9791
9835
  "locationInModule": {
9792
9836
  "filename": "use-cases/framework/agents/interactive-agent.ts",
9793
- "line": 661
9837
+ "line": 662
9794
9838
  },
9795
9839
  "name": "grantAuthenticate",
9796
9840
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IAuthenticator",
@@ -9814,7 +9858,7 @@
9814
9858
  "immutable": true,
9815
9859
  "locationInModule": {
9816
9860
  "filename": "use-cases/framework/agents/interactive-agent.ts",
9817
- "line": 641
9861
+ "line": 642
9818
9862
  },
9819
9863
  "name": "userPool",
9820
9864
  "optional": true,
@@ -9830,7 +9874,7 @@
9830
9874
  "immutable": true,
9831
9875
  "locationInModule": {
9832
9876
  "filename": "use-cases/framework/agents/interactive-agent.ts",
9833
- "line": 646
9877
+ "line": 647
9834
9878
  },
9835
9879
  "name": "userPoolClient",
9836
9880
  "optional": true,
@@ -9852,7 +9896,7 @@
9852
9896
  "kind": "interface",
9853
9897
  "locationInModule": {
9854
9898
  "filename": "use-cases/framework/agents/interactive-agent.ts",
9855
- "line": 581
9899
+ "line": 582
9856
9900
  },
9857
9901
  "name": "CognitoAuthenticatorProps",
9858
9902
  "properties": [
@@ -9866,7 +9910,7 @@
9866
9910
  "immutable": true,
9867
9911
  "locationInModule": {
9868
9912
  "filename": "use-cases/framework/agents/interactive-agent.ts",
9869
- "line": 601
9913
+ "line": 602
9870
9914
  },
9871
9915
  "name": "removalPolicy",
9872
9916
  "optional": true,
@@ -9884,7 +9928,7 @@
9884
9928
  "immutable": true,
9885
9929
  "locationInModule": {
9886
9930
  "filename": "use-cases/framework/agents/interactive-agent.ts",
9887
- "line": 587
9931
+ "line": 588
9888
9932
  },
9889
9933
  "name": "userPool",
9890
9934
  "optional": true,
@@ -9902,7 +9946,7 @@
9902
9946
  "immutable": true,
9903
9947
  "locationInModule": {
9904
9948
  "filename": "use-cases/framework/agents/interactive-agent.ts",
9905
- "line": 594
9949
+ "line": 595
9906
9950
  },
9907
9951
  "name": "userPoolClient",
9908
9952
  "optional": true,
@@ -10839,7 +10883,7 @@
10839
10883
  },
10840
10884
  "locationInModule": {
10841
10885
  "filename": "use-cases/framework/agents/interactive-agent.ts",
10842
- "line": 854
10886
+ "line": 855
10843
10887
  },
10844
10888
  "parameters": [
10845
10889
  {
@@ -10869,7 +10913,7 @@
10869
10913
  "kind": "class",
10870
10914
  "locationInModule": {
10871
10915
  "filename": "use-cases/framework/agents/interactive-agent.ts",
10872
- "line": 843
10916
+ "line": 844
10873
10917
  },
10874
10918
  "methods": [
10875
10919
  {
@@ -10879,7 +10923,7 @@
10879
10923
  },
10880
10924
  "locationInModule": {
10881
10925
  "filename": "use-cases/framework/agents/interactive-agent.ts",
10882
- "line": 893
10926
+ "line": 894
10883
10927
  },
10884
10928
  "name": "environmentVariables",
10885
10929
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.ISessionIndex",
@@ -10901,7 +10945,7 @@
10901
10945
  },
10902
10946
  "locationInModule": {
10903
10947
  "filename": "use-cases/framework/agents/interactive-agent.ts",
10904
- "line": 886
10948
+ "line": 887
10905
10949
  },
10906
10950
  "name": "grantReadWrite",
10907
10951
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.ISessionIndex",
@@ -10925,7 +10969,7 @@
10925
10969
  "immutable": true,
10926
10970
  "locationInModule": {
10927
10971
  "filename": "use-cases/framework/agents/interactive-agent.ts",
10928
- "line": 847
10972
+ "line": 848
10929
10973
  },
10930
10974
  "name": "table",
10931
10975
  "type": {
@@ -10940,7 +10984,7 @@
10940
10984
  "immutable": true,
10941
10985
  "locationInModule": {
10942
10986
  "filename": "use-cases/framework/agents/interactive-agent.ts",
10943
- "line": 852
10987
+ "line": 853
10944
10988
  },
10945
10989
  "name": "sessionTTL",
10946
10990
  "optional": true,
@@ -10962,7 +11006,7 @@
10962
11006
  "kind": "interface",
10963
11007
  "locationInModule": {
10964
11008
  "filename": "use-cases/framework/agents/interactive-agent.ts",
10965
- "line": 772
11009
+ "line": 773
10966
11010
  },
10967
11011
  "name": "DynamoDBSessionIndexProps",
10968
11012
  "properties": [
@@ -10976,7 +11020,7 @@
10976
11020
  "immutable": true,
10977
11021
  "locationInModule": {
10978
11022
  "filename": "use-cases/framework/agents/interactive-agent.ts",
10979
- "line": 794
11023
+ "line": 795
10980
11024
  },
10981
11025
  "name": "encryptionKey",
10982
11026
  "optional": true,
@@ -10994,7 +11038,7 @@
10994
11038
  "immutable": true,
10995
11039
  "locationInModule": {
10996
11040
  "filename": "use-cases/framework/agents/interactive-agent.ts",
10997
- "line": 801
11041
+ "line": 802
10998
11042
  },
10999
11043
  "name": "removalPolicy",
11000
11044
  "optional": true,
@@ -11013,7 +11057,7 @@
11013
11057
  "immutable": true,
11014
11058
  "locationInModule": {
11015
11059
  "filename": "use-cases/framework/agents/interactive-agent.ts",
11016
- "line": 787
11060
+ "line": 788
11017
11061
  },
11018
11062
  "name": "sessionTTL",
11019
11063
  "optional": true,
@@ -11032,7 +11076,7 @@
11032
11076
  "immutable": true,
11033
11077
  "locationInModule": {
11034
11078
  "filename": "use-cases/framework/agents/interactive-agent.ts",
11035
- "line": 779
11079
+ "line": 780
11036
11080
  },
11037
11081
  "name": "table",
11038
11082
  "optional": true,
@@ -12285,7 +12329,7 @@
12285
12329
  "kind": "interface",
12286
12330
  "locationInModule": {
12287
12331
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12288
- "line": 566
12332
+ "line": 567
12289
12333
  },
12290
12334
  "methods": [
12291
12335
  {
@@ -12296,7 +12340,7 @@
12296
12340
  },
12297
12341
  "locationInModule": {
12298
12342
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12299
- "line": 575
12343
+ "line": 576
12300
12344
  },
12301
12345
  "name": "environmentVariables",
12302
12346
  "returns": {
@@ -12318,7 +12362,7 @@
12318
12362
  },
12319
12363
  "locationInModule": {
12320
12364
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12321
- "line": 570
12365
+ "line": 571
12322
12366
  },
12323
12367
  "name": "grantAuthenticate",
12324
12368
  "parameters": [
@@ -12345,7 +12389,7 @@
12345
12389
  "kind": "interface",
12346
12390
  "locationInModule": {
12347
12391
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12348
- "line": 38
12392
+ "line": 39
12349
12393
  },
12350
12394
  "methods": [
12351
12395
  {
@@ -12357,7 +12401,7 @@
12357
12401
  },
12358
12402
  "locationInModule": {
12359
12403
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12360
- "line": 43
12404
+ "line": 44
12361
12405
  },
12362
12406
  "name": "attachToFunction",
12363
12407
  "parameters": [
@@ -12382,7 +12426,7 @@
12382
12426
  },
12383
12427
  "locationInModule": {
12384
12428
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12385
- "line": 48
12429
+ "line": 49
12386
12430
  },
12387
12431
  "name": "grantInvoke",
12388
12432
  "parameters": [
@@ -12410,7 +12454,7 @@
12410
12454
  "kind": "interface",
12411
12455
  "locationInModule": {
12412
12456
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12413
- "line": 461
12457
+ "line": 462
12414
12458
  },
12415
12459
  "methods": [
12416
12460
  {
@@ -12422,7 +12466,7 @@
12422
12466
  },
12423
12467
  "locationInModule": {
12424
12468
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12425
- "line": 467
12469
+ "line": 468
12426
12470
  },
12427
12471
  "name": "environmentVariables",
12428
12472
  "returns": {
@@ -12451,7 +12495,7 @@
12451
12495
  "kind": "interface",
12452
12496
  "locationInModule": {
12453
12497
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12454
- "line": 999
12498
+ "line": 1000
12455
12499
  },
12456
12500
  "methods": [
12457
12501
  {
@@ -12463,7 +12507,7 @@
12463
12507
  },
12464
12508
  "locationInModule": {
12465
12509
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12466
- "line": 1015
12510
+ "line": 1016
12467
12511
  },
12468
12512
  "name": "deploy",
12469
12513
  "parameters": [
@@ -12496,7 +12540,7 @@
12496
12540
  "immutable": true,
12497
12541
  "locationInModule": {
12498
12542
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12499
- "line": 1007
12543
+ "line": 1008
12500
12544
  },
12501
12545
  "name": "servicePrincipal",
12502
12546
  "type": {
@@ -12746,7 +12790,7 @@
12746
12790
  "kind": "interface",
12747
12791
  "locationInModule": {
12748
12792
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12749
- "line": 753
12793
+ "line": 754
12750
12794
  },
12751
12795
  "methods": [
12752
12796
  {
@@ -12758,7 +12802,7 @@
12758
12802
  },
12759
12803
  "locationInModule": {
12760
12804
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12761
- "line": 766
12805
+ "line": 767
12762
12806
  },
12763
12807
  "name": "environmentVariables",
12764
12808
  "returns": {
@@ -12780,7 +12824,7 @@
12780
12824
  },
12781
12825
  "locationInModule": {
12782
12826
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12783
- "line": 759
12827
+ "line": 760
12784
12828
  },
12785
12829
  "name": "grantReadWrite",
12786
12830
  "parameters": [
@@ -12811,7 +12855,7 @@
12811
12855
  "kind": "interface",
12812
12856
  "locationInModule": {
12813
12857
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12814
- "line": 312
12858
+ "line": 313
12815
12859
  },
12816
12860
  "methods": [
12817
12861
  {
@@ -12822,7 +12866,7 @@
12822
12866
  },
12823
12867
  "locationInModule": {
12824
12868
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12825
- "line": 323
12869
+ "line": 324
12826
12870
  },
12827
12871
  "name": "grantReadWrite",
12828
12872
  "parameters": [
@@ -12849,7 +12893,7 @@
12849
12893
  "immutable": true,
12850
12894
  "locationInModule": {
12851
12895
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12852
- "line": 316
12896
+ "line": 317
12853
12897
  },
12854
12898
  "name": "sessionBucket",
12855
12899
  "optional": true,
@@ -12875,7 +12919,7 @@
12875
12919
  },
12876
12920
  "locationInModule": {
12877
12921
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12878
- "line": 1706
12922
+ "line": 1830
12879
12923
  },
12880
12924
  "parameters": [
12881
12925
  {
@@ -12901,7 +12945,7 @@
12901
12945
  "kind": "class",
12902
12946
  "locationInModule": {
12903
12947
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12904
- "line": 1684
12948
+ "line": 1808
12905
12949
  },
12906
12950
  "name": "InteractiveAgent",
12907
12951
  "properties": [
@@ -12912,7 +12956,7 @@
12912
12956
  "immutable": true,
12913
12957
  "locationInModule": {
12914
12958
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12915
- "line": 1690
12959
+ "line": 1814
12916
12960
  },
12917
12961
  "name": "apiEndpoint",
12918
12962
  "type": {
@@ -12926,7 +12970,7 @@
12926
12970
  "immutable": true,
12927
12971
  "locationInModule": {
12928
12972
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12929
- "line": 1686
12973
+ "line": 1810
12930
12974
  },
12931
12975
  "name": "adapter",
12932
12976
  "optional": true,
@@ -12943,7 +12987,7 @@
12943
12987
  "immutable": true,
12944
12988
  "locationInModule": {
12945
12989
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12946
- "line": 1685
12990
+ "line": 1809
12947
12991
  },
12948
12992
  "name": "agentFunction",
12949
12993
  "optional": true,
@@ -12959,7 +13003,7 @@
12959
13003
  "immutable": true,
12960
13004
  "locationInModule": {
12961
13005
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12962
- "line": 1689
13006
+ "line": 1813
12963
13007
  },
12964
13008
  "name": "authenticator",
12965
13009
  "optional": true,
@@ -12974,7 +13018,7 @@
12974
13018
  "immutable": true,
12975
13019
  "locationInModule": {
12976
13020
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12977
- "line": 1692
13021
+ "line": 1816
12978
13022
  },
12979
13023
  "name": "cfnRuntime",
12980
13024
  "optional": true,
@@ -12990,7 +13034,7 @@
12990
13034
  "immutable": true,
12991
13035
  "locationInModule": {
12992
13036
  "filename": "use-cases/framework/agents/interactive-agent.ts",
12993
- "line": 1704
13037
+ "line": 1828
12994
13038
  },
12995
13039
  "name": "cognitoAuthorizer",
12996
13040
  "optional": true,
@@ -13005,7 +13049,7 @@
13005
13049
  "immutable": true,
13006
13050
  "locationInModule": {
13007
13051
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13008
- "line": 1688
13052
+ "line": 1812
13009
13053
  },
13010
13054
  "name": "contextStrategy",
13011
13055
  "optional": true,
@@ -13021,7 +13065,7 @@
13021
13065
  "immutable": true,
13022
13066
  "locationInModule": {
13023
13067
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13024
- "line": 1700
13068
+ "line": 1824
13025
13069
  },
13026
13070
  "name": "restApi",
13027
13071
  "optional": true,
@@ -13036,7 +13080,7 @@
13036
13080
  "immutable": true,
13037
13081
  "locationInModule": {
13038
13082
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13039
- "line": 1691
13083
+ "line": 1815
13040
13084
  },
13041
13085
  "name": "sessionBucket",
13042
13086
  "optional": true,
@@ -13052,7 +13096,7 @@
13052
13096
  "immutable": true,
13053
13097
  "locationInModule": {
13054
13098
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13055
- "line": 1696
13099
+ "line": 1820
13056
13100
  },
13057
13101
  "name": "sessionIndex",
13058
13102
  "optional": true,
@@ -13067,7 +13111,7 @@
13067
13111
  "immutable": true,
13068
13112
  "locationInModule": {
13069
13113
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13070
- "line": 1687
13114
+ "line": 1811
13071
13115
  },
13072
13116
  "name": "sessionStore",
13073
13117
  "optional": true,
@@ -13093,7 +13137,7 @@
13093
13137
  "kind": "interface",
13094
13138
  "locationInModule": {
13095
13139
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13096
- "line": 1514
13140
+ "line": 1638
13097
13141
  },
13098
13142
  "name": "InteractiveAgentProps",
13099
13143
  "properties": [
@@ -13107,7 +13151,7 @@
13107
13151
  "immutable": true,
13108
13152
  "locationInModule": {
13109
13153
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13110
- "line": 1623
13154
+ "line": 1747
13111
13155
  },
13112
13156
  "name": "architecture",
13113
13157
  "optional": true,
@@ -13125,7 +13169,7 @@
13125
13169
  "immutable": true,
13126
13170
  "locationInModule": {
13127
13171
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13128
- "line": 1593
13172
+ "line": 1717
13129
13173
  },
13130
13174
  "name": "authenticator",
13131
13175
  "optional": true,
@@ -13143,7 +13187,7 @@
13143
13187
  "immutable": true,
13144
13188
  "locationInModule": {
13145
13189
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13146
- "line": 1533
13190
+ "line": 1657
13147
13191
  },
13148
13192
  "name": "communicationAdapter",
13149
13193
  "optional": true,
@@ -13162,7 +13206,7 @@
13162
13206
  "immutable": true,
13163
13207
  "locationInModule": {
13164
13208
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13165
- "line": 1575
13209
+ "line": 1699
13166
13210
  },
13167
13211
  "name": "contextStrategy",
13168
13212
  "optional": true,
@@ -13181,7 +13225,7 @@
13181
13225
  "immutable": true,
13182
13226
  "locationInModule": {
13183
13227
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13184
- "line": 1602
13228
+ "line": 1726
13185
13229
  },
13186
13230
  "name": "corsAllowMethods",
13187
13231
  "optional": true,
@@ -13205,7 +13249,7 @@
13205
13249
  "immutable": true,
13206
13250
  "locationInModule": {
13207
13251
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13208
- "line": 1527
13252
+ "line": 1651
13209
13253
  },
13210
13254
  "name": "hostingAdapter",
13211
13255
  "optional": true,
@@ -13223,7 +13267,7 @@
13223
13267
  "immutable": true,
13224
13268
  "locationInModule": {
13225
13269
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13226
- "line": 1609
13270
+ "line": 1733
13227
13271
  },
13228
13272
  "name": "memorySize",
13229
13273
  "optional": true,
@@ -13243,7 +13287,7 @@
13243
13287
  "immutable": true,
13244
13288
  "locationInModule": {
13245
13289
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13246
- "line": 1586
13290
+ "line": 1710
13247
13291
  },
13248
13292
  "name": "messageHistoryLimit",
13249
13293
  "optional": true,
@@ -13261,7 +13305,7 @@
13261
13305
  "immutable": true,
13262
13306
  "locationInModule": {
13263
13307
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13264
- "line": 1630
13308
+ "line": 1754
13265
13309
  },
13266
13310
  "name": "reservedConcurrentExecutions",
13267
13311
  "optional": true,
@@ -13280,7 +13324,7 @@
13280
13324
  "immutable": true,
13281
13325
  "locationInModule": {
13282
13326
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13283
- "line": 1551
13327
+ "line": 1675
13284
13328
  },
13285
13329
  "name": "sessionBucket",
13286
13330
  "optional": true,
@@ -13299,7 +13343,7 @@
13299
13343
  "immutable": true,
13300
13344
  "locationInModule": {
13301
13345
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13302
- "line": 1566
13346
+ "line": 1690
13303
13347
  },
13304
13348
  "name": "sessionIndex",
13305
13349
  "optional": true,
@@ -13319,7 +13363,7 @@
13319
13363
  "immutable": true,
13320
13364
  "locationInModule": {
13321
13365
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13322
- "line": 1543
13366
+ "line": 1667
13323
13367
  },
13324
13368
  "name": "sessionStore",
13325
13369
  "optional": true,
@@ -13337,7 +13381,7 @@
13337
13381
  "immutable": true,
13338
13382
  "locationInModule": {
13339
13383
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13340
- "line": 1558
13384
+ "line": 1682
13341
13385
  },
13342
13386
  "name": "sessionTTL",
13343
13387
  "optional": true,
@@ -13355,7 +13399,7 @@
13355
13399
  "immutable": true,
13356
13400
  "locationInModule": {
13357
13401
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13358
- "line": 1616
13402
+ "line": 1740
13359
13403
  },
13360
13404
  "name": "timeout",
13361
13405
  "optional": true,
@@ -13617,7 +13661,7 @@
13617
13661
  },
13618
13662
  "locationInModule": {
13619
13663
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13620
- "line": 1095
13664
+ "line": 1096
13621
13665
  },
13622
13666
  "parameters": [
13623
13667
  {
@@ -13635,7 +13679,7 @@
13635
13679
  "kind": "class",
13636
13680
  "locationInModule": {
13637
13681
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13638
- "line": 1087
13682
+ "line": 1088
13639
13683
  },
13640
13684
  "methods": [
13641
13685
  {
@@ -13645,7 +13689,7 @@
13645
13689
  },
13646
13690
  "locationInModule": {
13647
13691
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13648
- "line": 1104
13692
+ "line": 1105
13649
13693
  },
13650
13694
  "name": "deploy",
13651
13695
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IHostingAdapter",
@@ -13675,7 +13719,7 @@
13675
13719
  "immutable": true,
13676
13720
  "locationInModule": {
13677
13721
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13678
- "line": 1099
13722
+ "line": 1100
13679
13723
  },
13680
13724
  "name": "servicePrincipal",
13681
13725
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IHostingAdapter",
@@ -13691,7 +13735,7 @@
13691
13735
  "immutable": true,
13692
13736
  "locationInModule": {
13693
13737
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13694
- "line": 1091
13738
+ "line": 1092
13695
13739
  },
13696
13740
  "name": "authenticator",
13697
13741
  "optional": true,
@@ -13707,7 +13751,7 @@
13707
13751
  "immutable": true,
13708
13752
  "locationInModule": {
13709
13753
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13710
- "line": 1089
13754
+ "line": 1090
13711
13755
  },
13712
13756
  "name": "communicationAdapter",
13713
13757
  "optional": true,
@@ -13729,7 +13773,7 @@
13729
13773
  "kind": "interface",
13730
13774
  "locationInModule": {
13731
13775
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13732
- "line": 1021
13776
+ "line": 1022
13733
13777
  },
13734
13778
  "name": "LambdaHostingAdapterProps",
13735
13779
  "properties": [
@@ -13743,7 +13787,7 @@
13743
13787
  "immutable": true,
13744
13788
  "locationInModule": {
13745
13789
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13746
- "line": 1064
13790
+ "line": 1065
13747
13791
  },
13748
13792
  "name": "architecture",
13749
13793
  "optional": true,
@@ -13761,7 +13805,7 @@
13761
13805
  "immutable": true,
13762
13806
  "locationInModule": {
13763
13807
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13764
- "line": 1034
13808
+ "line": 1035
13765
13809
  },
13766
13810
  "name": "authenticator",
13767
13811
  "optional": true,
@@ -13779,7 +13823,7 @@
13779
13823
  "immutable": true,
13780
13824
  "locationInModule": {
13781
13825
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13782
- "line": 1027
13826
+ "line": 1028
13783
13827
  },
13784
13828
  "name": "communicationAdapter",
13785
13829
  "optional": true,
@@ -13798,7 +13842,7 @@
13798
13842
  "immutable": true,
13799
13843
  "locationInModule": {
13800
13844
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13801
- "line": 1043
13845
+ "line": 1044
13802
13846
  },
13803
13847
  "name": "corsAllowMethods",
13804
13848
  "optional": true,
@@ -13821,7 +13865,7 @@
13821
13865
  "immutable": true,
13822
13866
  "locationInModule": {
13823
13867
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13824
- "line": 1050
13868
+ "line": 1051
13825
13869
  },
13826
13870
  "name": "memorySize",
13827
13871
  "optional": true,
@@ -13839,7 +13883,7 @@
13839
13883
  "immutable": true,
13840
13884
  "locationInModule": {
13841
13885
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13842
- "line": 1071
13886
+ "line": 1072
13843
13887
  },
13844
13888
  "name": "reservedConcurrentExecutions",
13845
13889
  "optional": true,
@@ -13857,7 +13901,7 @@
13857
13901
  "immutable": true,
13858
13902
  "locationInModule": {
13859
13903
  "filename": "use-cases/framework/agents/interactive-agent.ts",
13860
- "line": 1057
13904
+ "line": 1058
13861
13905
  },
13862
13906
  "name": "timeout",
13863
13907
  "optional": true,
@@ -14973,6 +15017,41 @@
14973
15017
  ],
14974
15018
  "symbolId": "use-cases/framework/foundation/network:Network"
14975
15019
  },
15020
+ "@cdklabs/cdk-appmod-catalog-blueprints.NetworkMode": {
15021
+ "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
15022
+ "docs": {
15023
+ "remarks": "Determines whether the AgentCore Runtime runs on the public internet\nor inside a VPC with private networking.",
15024
+ "stability": "experimental",
15025
+ "summary": "Network mode for AgentCore Runtime hosting."
15026
+ },
15027
+ "fqn": "@cdklabs/cdk-appmod-catalog-blueprints.NetworkMode",
15028
+ "kind": "enum",
15029
+ "locationInModule": {
15030
+ "filename": "use-cases/framework/agents/interactive-agent.ts",
15031
+ "line": 1273
15032
+ },
15033
+ "members": [
15034
+ {
15035
+ "docs": {
15036
+ "remarks": "No VPC configuration required.",
15037
+ "stability": "experimental",
15038
+ "summary": "Runtime is publicly accessible (default)."
15039
+ },
15040
+ "name": "PUBLIC"
15041
+ },
15042
+ {
15043
+ "docs": {
15044
+ "remarks": "AgentCore creates ENIs in the specified subnets. You must provide\neither explicit `vpcSubnets` and `securityGroups`, or pass a\n`Network` construct via `InteractiveAgent.network`.\n\nUse private subnets with a NAT Gateway for internet access.\nPublic subnets do NOT provide internet access to AgentCore ENIs.",
15045
+ "see": "https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/agentcore-vpc.html",
15046
+ "stability": "experimental",
15047
+ "summary": "Runtime runs inside a VPC."
15048
+ },
15049
+ "name": "VPC"
15050
+ }
15051
+ ],
15052
+ "name": "NetworkMode",
15053
+ "symbolId": "use-cases/framework/agents/interactive-agent:NetworkMode"
15054
+ },
14976
15055
  "@cdklabs/cdk-appmod-catalog-blueprints.NetworkProps": {
14977
15056
  "assembly": "@cdklabs/cdk-appmod-catalog-blueprints",
14978
15057
  "datatype": true,
@@ -15158,7 +15237,7 @@
15158
15237
  "kind": "class",
15159
15238
  "locationInModule": {
15160
15239
  "filename": "use-cases/framework/agents/interactive-agent.ts",
15161
- "line": 917
15240
+ "line": 918
15162
15241
  },
15163
15242
  "methods": [
15164
15243
  {
@@ -15168,7 +15247,7 @@
15168
15247
  },
15169
15248
  "locationInModule": {
15170
15249
  "filename": "use-cases/framework/agents/interactive-agent.ts",
15171
- "line": 928
15250
+ "line": 929
15172
15251
  },
15173
15252
  "name": "environmentVariables",
15174
15253
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IAuthenticator",
@@ -15190,7 +15269,7 @@
15190
15269
  },
15191
15270
  "locationInModule": {
15192
15271
  "filename": "use-cases/framework/agents/interactive-agent.ts",
15193
- "line": 921
15272
+ "line": 922
15194
15273
  },
15195
15274
  "name": "grantAuthenticate",
15196
15275
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IAuthenticator",
@@ -15311,7 +15390,7 @@
15311
15390
  "kind": "class",
15312
15391
  "locationInModule": {
15313
15392
  "filename": "use-cases/framework/agents/interactive-agent.ts",
15314
- "line": 548
15393
+ "line": 549
15315
15394
  },
15316
15395
  "methods": [
15317
15396
  {
@@ -15321,7 +15400,7 @@
15321
15400
  },
15322
15401
  "locationInModule": {
15323
15402
  "filename": "use-cases/framework/agents/interactive-agent.ts",
15324
- "line": 552
15403
+ "line": 553
15325
15404
  },
15326
15405
  "name": "environmentVariables",
15327
15406
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IContextStrategy",
@@ -15919,7 +15998,7 @@
15919
15998
  },
15920
15999
  "locationInModule": {
15921
16000
  "filename": "use-cases/framework/agents/interactive-agent.ts",
15922
- "line": 411
16001
+ "line": 412
15923
16002
  },
15924
16003
  "parameters": [
15925
16004
  {
@@ -15949,7 +16028,7 @@
15949
16028
  "kind": "class",
15950
16029
  "locationInModule": {
15951
16030
  "filename": "use-cases/framework/agents/interactive-agent.ts",
15952
- "line": 400
16031
+ "line": 401
15953
16032
  },
15954
16033
  "methods": [
15955
16034
  {
@@ -15959,7 +16038,7 @@
15959
16038
  },
15960
16039
  "locationInModule": {
15961
16040
  "filename": "use-cases/framework/agents/interactive-agent.ts",
15962
- "line": 446
16041
+ "line": 447
15963
16042
  },
15964
16043
  "name": "grantReadWrite",
15965
16044
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.ISessionStore",
@@ -15983,7 +16062,7 @@
15983
16062
  "immutable": true,
15984
16063
  "locationInModule": {
15985
16064
  "filename": "use-cases/framework/agents/interactive-agent.ts",
15986
- "line": 404
16065
+ "line": 405
15987
16066
  },
15988
16067
  "name": "bucket",
15989
16068
  "type": {
@@ -15998,7 +16077,7 @@
15998
16077
  "immutable": true,
15999
16078
  "locationInModule": {
16000
16079
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16001
- "line": 409
16080
+ "line": 410
16002
16081
  },
16003
16082
  "name": "sessionTTL",
16004
16083
  "type": {
@@ -16013,7 +16092,7 @@
16013
16092
  "immutable": true,
16014
16093
  "locationInModule": {
16015
16094
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16016
- "line": 439
16095
+ "line": 440
16017
16096
  },
16018
16097
  "name": "sessionBucket",
16019
16098
  "optional": true,
@@ -16037,7 +16116,7 @@
16037
16116
  "kind": "interface",
16038
16117
  "locationInModule": {
16039
16118
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16040
- "line": 331
16119
+ "line": 332
16041
16120
  },
16042
16121
  "name": "S3SessionManagerProps",
16043
16122
  "properties": [
@@ -16051,7 +16130,7 @@
16051
16130
  "immutable": true,
16052
16131
  "locationInModule": {
16053
16132
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16054
- "line": 337
16133
+ "line": 338
16055
16134
  },
16056
16135
  "name": "bucket",
16057
16136
  "optional": true,
@@ -16069,7 +16148,7 @@
16069
16148
  "immutable": true,
16070
16149
  "locationInModule": {
16071
16150
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16072
- "line": 352
16151
+ "line": 353
16073
16152
  },
16074
16153
  "name": "encryptionKey",
16075
16154
  "optional": true,
@@ -16087,7 +16166,7 @@
16087
16166
  "immutable": true,
16088
16167
  "locationInModule": {
16089
16168
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16090
- "line": 359
16169
+ "line": 360
16091
16170
  },
16092
16171
  "name": "removalPolicy",
16093
16172
  "optional": true,
@@ -16106,7 +16185,7 @@
16106
16185
  "immutable": true,
16107
16186
  "locationInModule": {
16108
16187
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16109
- "line": 345
16188
+ "line": 346
16110
16189
  },
16111
16190
  "name": "sessionTTL",
16112
16191
  "optional": true,
@@ -16132,7 +16211,7 @@
16132
16211
  },
16133
16212
  "locationInModule": {
16134
16213
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16135
- "line": 517
16214
+ "line": 518
16136
16215
  },
16137
16216
  "parameters": [
16138
16217
  {
@@ -16150,7 +16229,7 @@
16150
16229
  "kind": "class",
16151
16230
  "locationInModule": {
16152
16231
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16153
- "line": 511
16232
+ "line": 512
16154
16233
  },
16155
16234
  "methods": [
16156
16235
  {
@@ -16160,7 +16239,7 @@
16160
16239
  },
16161
16240
  "locationInModule": {
16162
16241
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16163
- "line": 530
16242
+ "line": 531
16164
16243
  },
16165
16244
  "name": "environmentVariables",
16166
16245
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.IContextStrategy",
@@ -16186,7 +16265,7 @@
16186
16265
  "immutable": true,
16187
16266
  "locationInModule": {
16188
16267
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16189
- "line": 515
16268
+ "line": 516
16190
16269
  },
16191
16270
  "name": "windowSize",
16192
16271
  "type": {
@@ -16208,7 +16287,7 @@
16208
16287
  "kind": "interface",
16209
16288
  "locationInModule": {
16210
16289
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16211
- "line": 476
16290
+ "line": 477
16212
16291
  },
16213
16292
  "name": "SlidingWindowConversationManagerProps",
16214
16293
  "properties": [
@@ -16222,7 +16301,7 @@
16222
16301
  "immutable": true,
16223
16302
  "locationInModule": {
16224
16303
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16225
- "line": 482
16304
+ "line": 483
16226
16305
  },
16227
16306
  "name": "windowSize",
16228
16307
  "optional": true,
@@ -16346,7 +16425,7 @@
16346
16425
  },
16347
16426
  "locationInModule": {
16348
16427
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16349
- "line": 161
16428
+ "line": 162
16350
16429
  },
16351
16430
  "parameters": [
16352
16431
  {
@@ -16364,7 +16443,7 @@
16364
16443
  "kind": "class",
16365
16444
  "locationInModule": {
16366
16445
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16367
- "line": 142
16446
+ "line": 143
16368
16447
  },
16369
16448
  "methods": [
16370
16449
  {
@@ -16375,7 +16454,7 @@
16375
16454
  },
16376
16455
  "locationInModule": {
16377
16456
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16378
- "line": 169
16457
+ "line": 170
16379
16458
  },
16380
16459
  "name": "attachToFunction",
16381
16460
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.ICommunicationAdapter",
@@ -16401,7 +16480,7 @@
16401
16480
  },
16402
16481
  "locationInModule": {
16403
16482
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16404
- "line": 287
16483
+ "line": 288
16405
16484
  },
16406
16485
  "name": "grantInvoke",
16407
16486
  "overrides": "@cdklabs/cdk-appmod-catalog-blueprints.ICommunicationAdapter",
@@ -16425,7 +16504,7 @@
16425
16504
  "immutable": true,
16426
16505
  "locationInModule": {
16427
16506
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16428
- "line": 156
16507
+ "line": 157
16429
16508
  },
16430
16509
  "name": "apiEndpoint",
16431
16510
  "optional": true,
@@ -16441,7 +16520,7 @@
16441
16520
  "immutable": true,
16442
16521
  "locationInModule": {
16443
16522
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16444
- "line": 151
16523
+ "line": 152
16445
16524
  },
16446
16525
  "name": "cognitoAuthorizer",
16447
16526
  "optional": true,
@@ -16457,7 +16536,7 @@
16457
16536
  "immutable": true,
16458
16537
  "locationInModule": {
16459
16538
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16460
- "line": 146
16539
+ "line": 147
16461
16540
  },
16462
16541
  "name": "restApi",
16463
16542
  "optional": true,
@@ -16479,7 +16558,7 @@
16479
16558
  "kind": "interface",
16480
16559
  "locationInModule": {
16481
16560
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16482
- "line": 69
16561
+ "line": 70
16483
16562
  },
16484
16563
  "name": "StreamingHttpAdapterProps",
16485
16564
  "properties": [
@@ -16493,7 +16572,7 @@
16493
16572
  "immutable": true,
16494
16573
  "locationInModule": {
16495
16574
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16496
- "line": 89
16575
+ "line": 90
16497
16576
  },
16498
16577
  "name": "authenticator",
16499
16578
  "optional": true,
@@ -16512,7 +16591,7 @@
16512
16591
  "immutable": true,
16513
16592
  "locationInModule": {
16514
16593
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16515
- "line": 98
16594
+ "line": 99
16516
16595
  },
16517
16596
  "name": "corsAllowMethods",
16518
16597
  "optional": true,
@@ -16535,7 +16614,7 @@
16535
16614
  "immutable": true,
16536
16615
  "locationInModule": {
16537
16616
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16538
- "line": 75
16617
+ "line": 76
16539
16618
  },
16540
16619
  "name": "stageName",
16541
16620
  "optional": true,
@@ -16553,7 +16632,7 @@
16553
16632
  "immutable": true,
16554
16633
  "locationInModule": {
16555
16634
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16556
- "line": 82
16635
+ "line": 83
16557
16636
  },
16558
16637
  "name": "throttle",
16559
16638
  "optional": true,
@@ -16575,7 +16654,7 @@
16575
16654
  "kind": "interface",
16576
16655
  "locationInModule": {
16577
16656
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16578
- "line": 54
16657
+ "line": 55
16579
16658
  },
16580
16659
  "name": "ThrottleSettings",
16581
16660
  "properties": [
@@ -16588,7 +16667,7 @@
16588
16667
  "immutable": true,
16589
16668
  "locationInModule": {
16590
16669
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16591
- "line": 63
16670
+ "line": 64
16592
16671
  },
16593
16672
  "name": "burstLimit",
16594
16673
  "optional": true,
@@ -16605,7 +16684,7 @@
16605
16684
  "immutable": true,
16606
16685
  "locationInModule": {
16607
16686
  "filename": "use-cases/framework/agents/interactive-agent.ts",
16608
- "line": 58
16687
+ "line": 59
16609
16688
  },
16610
16689
  "name": "rateLimit",
16611
16690
  "optional": true,
@@ -16862,6 +16941,6 @@
16862
16941
  "usedFeatures": [
16863
16942
  "class-covariant-overrides"
16864
16943
  ],
16865
- "version": "1.15.0",
16866
- "fingerprint": "b6872X836IVSwc+W1h7vMNGk37B6C4lQBrgRxZS60yY="
16944
+ "version": "1.16.0",
16945
+ "fingerprint": "qMgFSYJ/Ddnd7v4XlRse9mWTeos+hvInFuI+o5b9pn0="
16867
16946
  }