aws-sdk-bedrockagentcorecontrol 1.28.0 → 1.29.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4717e81ce2f6cac410111da186562bc418aaa917fba4c8598909e6eae2ef531
4
- data.tar.gz: a2e53359c6abd12616a6cdbeb8fa995b22dd80ca8861d7f56797f4b506ccb3f9
3
+ metadata.gz: 69a6e5f287f9fa3bed0dfa0c3ceb19bfc4f13e354bc8d26bb55675e72dc88630
4
+ data.tar.gz: c8cd22d5b20e5e24ab75b750790ac849c0aab10d3702f8c5283756ebf2219ef8
5
5
  SHA512:
6
- metadata.gz: 319dcbc4770f8beb85d36ce8aee5a7f102140fdc3540c0006b3ac034dfa63240a434cca8f37a5ca15dde6197a40716b0d750b63bd835ed82fb85a5032f0575c1
7
- data.tar.gz: b6e9538d04b64db5a26e5662db17f0d0a175ada6ddbd9c04b42d0303a0eec4d6bbfa4876f36c0d1369300e5602d8b181bda491103ba266b29a0fab77f53324c7
6
+ metadata.gz: b4cb2aad64b96bce1208b1961dc67aa54f1be3521844f50a00b2b2b7eba84ef147d124dd14613be8a3d432bf45f035b02463d9752946be2ef7aeaff70eeb1c30
7
+ data.tar.gz: bd424fa8047d3cdd4c3d08d25be62732d7b0d351e392298d3228285352663072f1456850f1a98a60440195984f169f82648b8b05d231549248732ca1de978be0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.29.0 (2026-03-17)
5
+ ------------------
6
+
7
+ * Feature - Deprecating namespaces field and adding namespaceTemplates.
8
+
4
9
  1.28.0 (2026-03-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.29.0
@@ -1597,21 +1597,25 @@ module Aws::BedrockAgentCoreControl
1597
1597
  # name: "Name", # required
1598
1598
  # description: "Description",
1599
1599
  # namespaces: ["Namespace"],
1600
+ # namespace_templates: ["Namespace"],
1600
1601
  # },
1601
1602
  # summary_memory_strategy: {
1602
1603
  # name: "Name", # required
1603
1604
  # description: "Description",
1604
1605
  # namespaces: ["Namespace"],
1606
+ # namespace_templates: ["Namespace"],
1605
1607
  # },
1606
1608
  # user_preference_memory_strategy: {
1607
1609
  # name: "Name", # required
1608
1610
  # description: "Description",
1609
1611
  # namespaces: ["Namespace"],
1612
+ # namespace_templates: ["Namespace"],
1610
1613
  # },
1611
1614
  # custom_memory_strategy: {
1612
1615
  # name: "Name", # required
1613
1616
  # description: "Description",
1614
1617
  # namespaces: ["Namespace"],
1618
+ # namespace_templates: ["Namespace"],
1615
1619
  # configuration: {
1616
1620
  # semantic_override: {
1617
1621
  # extraction: {
@@ -1652,6 +1656,7 @@ module Aws::BedrockAgentCoreControl
1652
1656
  # append_to_prompt: "Prompt", # required
1653
1657
  # model_id: "String", # required
1654
1658
  # namespaces: ["Namespace"],
1659
+ # namespace_templates: ["Namespace"],
1655
1660
  # },
1656
1661
  # },
1657
1662
  # self_managed_configuration: {
@@ -1680,8 +1685,10 @@ module Aws::BedrockAgentCoreControl
1680
1685
  # name: "Name", # required
1681
1686
  # description: "Description",
1682
1687
  # namespaces: ["Namespace"],
1688
+ # namespace_templates: ["Namespace"],
1683
1689
  # reflection_configuration: {
1684
- # namespaces: ["Namespace"], # required
1690
+ # namespaces: ["Namespace"],
1691
+ # namespace_templates: ["Namespace"],
1685
1692
  # },
1686
1693
  # },
1687
1694
  # },
@@ -1742,8 +1749,12 @@ module Aws::BedrockAgentCoreControl
1742
1749
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.model_id #=> String
1743
1750
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespaces #=> Array
1744
1751
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespaces[0] #=> String
1752
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates #=> Array
1753
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates[0] #=> String
1745
1754
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces #=> Array
1746
1755
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces[0] #=> String
1756
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates #=> Array
1757
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates[0] #=> String
1747
1758
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions #=> Array
1748
1759
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].message_based_trigger.message_count #=> Integer
1749
1760
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].token_based_trigger.token_count #=> Integer
@@ -1754,6 +1765,8 @@ module Aws::BedrockAgentCoreControl
1754
1765
  # resp.memory.strategies[0].type #=> String, one of "SEMANTIC", "SUMMARIZATION", "USER_PREFERENCE", "CUSTOM", "EPISODIC"
1755
1766
  # resp.memory.strategies[0].namespaces #=> Array
1756
1767
  # resp.memory.strategies[0].namespaces[0] #=> String
1768
+ # resp.memory.strategies[0].namespace_templates #=> Array
1769
+ # resp.memory.strategies[0].namespace_templates[0] #=> String
1757
1770
  # resp.memory.strategies[0].created_at #=> Time
1758
1771
  # resp.memory.strategies[0].updated_at #=> Time
1759
1772
  # resp.memory.strategies[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
@@ -3583,8 +3596,12 @@ module Aws::BedrockAgentCoreControl
3583
3596
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.model_id #=> String
3584
3597
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespaces #=> Array
3585
3598
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespaces[0] #=> String
3599
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates #=> Array
3600
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates[0] #=> String
3586
3601
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces #=> Array
3587
3602
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces[0] #=> String
3603
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates #=> Array
3604
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates[0] #=> String
3588
3605
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions #=> Array
3589
3606
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].message_based_trigger.message_count #=> Integer
3590
3607
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].token_based_trigger.token_count #=> Integer
@@ -3595,6 +3612,8 @@ module Aws::BedrockAgentCoreControl
3595
3612
  # resp.memory.strategies[0].type #=> String, one of "SEMANTIC", "SUMMARIZATION", "USER_PREFERENCE", "CUSTOM", "EPISODIC"
3596
3613
  # resp.memory.strategies[0].namespaces #=> Array
3597
3614
  # resp.memory.strategies[0].namespaces[0] #=> String
3615
+ # resp.memory.strategies[0].namespace_templates #=> Array
3616
+ # resp.memory.strategies[0].namespace_templates[0] #=> String
3598
3617
  # resp.memory.strategies[0].created_at #=> Time
3599
3618
  # resp.memory.strategies[0].updated_at #=> Time
3600
3619
  # resp.memory.strategies[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
@@ -6195,21 +6214,25 @@ module Aws::BedrockAgentCoreControl
6195
6214
  # name: "Name", # required
6196
6215
  # description: "Description",
6197
6216
  # namespaces: ["Namespace"],
6217
+ # namespace_templates: ["Namespace"],
6198
6218
  # },
6199
6219
  # summary_memory_strategy: {
6200
6220
  # name: "Name", # required
6201
6221
  # description: "Description",
6202
6222
  # namespaces: ["Namespace"],
6223
+ # namespace_templates: ["Namespace"],
6203
6224
  # },
6204
6225
  # user_preference_memory_strategy: {
6205
6226
  # name: "Name", # required
6206
6227
  # description: "Description",
6207
6228
  # namespaces: ["Namespace"],
6229
+ # namespace_templates: ["Namespace"],
6208
6230
  # },
6209
6231
  # custom_memory_strategy: {
6210
6232
  # name: "Name", # required
6211
6233
  # description: "Description",
6212
6234
  # namespaces: ["Namespace"],
6235
+ # namespace_templates: ["Namespace"],
6213
6236
  # configuration: {
6214
6237
  # semantic_override: {
6215
6238
  # extraction: {
@@ -6250,6 +6273,7 @@ module Aws::BedrockAgentCoreControl
6250
6273
  # append_to_prompt: "Prompt", # required
6251
6274
  # model_id: "String", # required
6252
6275
  # namespaces: ["Namespace"],
6276
+ # namespace_templates: ["Namespace"],
6253
6277
  # },
6254
6278
  # },
6255
6279
  # self_managed_configuration: {
@@ -6278,8 +6302,10 @@ module Aws::BedrockAgentCoreControl
6278
6302
  # name: "Name", # required
6279
6303
  # description: "Description",
6280
6304
  # namespaces: ["Namespace"],
6305
+ # namespace_templates: ["Namespace"],
6281
6306
  # reflection_configuration: {
6282
- # namespaces: ["Namespace"], # required
6307
+ # namespaces: ["Namespace"],
6308
+ # namespace_templates: ["Namespace"],
6283
6309
  # },
6284
6310
  # },
6285
6311
  # },
@@ -6289,6 +6315,7 @@ module Aws::BedrockAgentCoreControl
6289
6315
  # memory_strategy_id: "String", # required
6290
6316
  # description: "Description",
6291
6317
  # namespaces: ["Namespace"],
6318
+ # namespace_templates: ["Namespace"],
6292
6319
  # configuration: {
6293
6320
  # extraction: {
6294
6321
  # custom_extraction_configuration: {
@@ -6328,13 +6355,15 @@ module Aws::BedrockAgentCoreControl
6328
6355
  # },
6329
6356
  # reflection: {
6330
6357
  # episodic_reflection_configuration: {
6331
- # namespaces: ["Namespace"], # required
6358
+ # namespaces: ["Namespace"],
6359
+ # namespace_templates: ["Namespace"],
6332
6360
  # },
6333
6361
  # custom_reflection_configuration: {
6334
6362
  # episodic_reflection_override: {
6335
6363
  # append_to_prompt: "Prompt", # required
6336
6364
  # model_id: "String", # required
6337
6365
  # namespaces: ["Namespace"],
6366
+ # namespace_templates: ["Namespace"],
6338
6367
  # },
6339
6368
  # },
6340
6369
  # },
@@ -6420,8 +6449,12 @@ module Aws::BedrockAgentCoreControl
6420
6449
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.model_id #=> String
6421
6450
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespaces #=> Array
6422
6451
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespaces[0] #=> String
6452
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates #=> Array
6453
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates[0] #=> String
6423
6454
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces #=> Array
6424
6455
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces[0] #=> String
6456
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates #=> Array
6457
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates[0] #=> String
6425
6458
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions #=> Array
6426
6459
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].message_based_trigger.message_count #=> Integer
6427
6460
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].token_based_trigger.token_count #=> Integer
@@ -6432,6 +6465,8 @@ module Aws::BedrockAgentCoreControl
6432
6465
  # resp.memory.strategies[0].type #=> String, one of "SEMANTIC", "SUMMARIZATION", "USER_PREFERENCE", "CUSTOM", "EPISODIC"
6433
6466
  # resp.memory.strategies[0].namespaces #=> Array
6434
6467
  # resp.memory.strategies[0].namespaces[0] #=> String
6468
+ # resp.memory.strategies[0].namespace_templates #=> Array
6469
+ # resp.memory.strategies[0].namespace_templates[0] #=> String
6435
6470
  # resp.memory.strategies[0].created_at #=> Time
6436
6471
  # resp.memory.strategies[0].updated_at #=> Time
6437
6472
  # resp.memory.strategies[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
@@ -6951,7 +6986,7 @@ module Aws::BedrockAgentCoreControl
6951
6986
  tracer: tracer
6952
6987
  )
6953
6988
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
6954
- context[:gem_version] = '1.28.0'
6989
+ context[:gem_version] = '1.29.0'
6955
6990
  Seahorse::Client::Request.new(handlers, context)
6956
6991
  end
6957
6992
 
@@ -1241,7 +1241,8 @@ module Aws::BedrockAgentCoreControl
1241
1241
 
1242
1242
  CustomMemoryStrategyInput.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
1243
1243
  CustomMemoryStrategyInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1244
- CustomMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaces"))
1244
+ CustomMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
1245
+ CustomMemoryStrategyInput.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaceTemplates"))
1245
1246
  CustomMemoryStrategyInput.add_member(:configuration, Shapes::ShapeRef.new(shape: CustomConfigurationInput, location_name: "configuration"))
1246
1247
  CustomMemoryStrategyInput.struct_class = Types::CustomMemoryStrategyInput
1247
1248
 
@@ -1435,7 +1436,8 @@ module Aws::BedrockAgentCoreControl
1435
1436
 
1436
1437
  EpisodicMemoryStrategyInput.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
1437
1438
  EpisodicMemoryStrategyInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1438
- EpisodicMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaces"))
1439
+ EpisodicMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
1440
+ EpisodicMemoryStrategyInput.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaceTemplates"))
1439
1441
  EpisodicMemoryStrategyInput.add_member(:reflection_configuration, Shapes::ShapeRef.new(shape: EpisodicReflectionConfigurationInput, location_name: "reflectionConfiguration"))
1440
1442
  EpisodicMemoryStrategyInput.struct_class = Types::EpisodicMemoryStrategyInput
1441
1443
 
@@ -1454,18 +1456,22 @@ module Aws::BedrockAgentCoreControl
1454
1456
 
1455
1457
  EpisodicOverrideReflectionConfigurationInput.add_member(:append_to_prompt, Shapes::ShapeRef.new(shape: Prompt, required: true, location_name: "appendToPrompt"))
1456
1458
  EpisodicOverrideReflectionConfigurationInput.add_member(:model_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "modelId"))
1457
- EpisodicOverrideReflectionConfigurationInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaces"))
1459
+ EpisodicOverrideReflectionConfigurationInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
1460
+ EpisodicOverrideReflectionConfigurationInput.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaceTemplates"))
1458
1461
  EpisodicOverrideReflectionConfigurationInput.struct_class = Types::EpisodicOverrideReflectionConfigurationInput
1459
1462
 
1460
- EpisodicReflectionConfiguration.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, required: true, location_name: "namespaces"))
1463
+ EpisodicReflectionConfiguration.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
1464
+ EpisodicReflectionConfiguration.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaceTemplates"))
1461
1465
  EpisodicReflectionConfiguration.struct_class = Types::EpisodicReflectionConfiguration
1462
1466
 
1463
- EpisodicReflectionConfigurationInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, required: true, location_name: "namespaces"))
1467
+ EpisodicReflectionConfigurationInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
1468
+ EpisodicReflectionConfigurationInput.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaceTemplates"))
1464
1469
  EpisodicReflectionConfigurationInput.struct_class = Types::EpisodicReflectionConfigurationInput
1465
1470
 
1466
1471
  EpisodicReflectionOverride.add_member(:append_to_prompt, Shapes::ShapeRef.new(shape: Prompt, required: true, location_name: "appendToPrompt"))
1467
1472
  EpisodicReflectionOverride.add_member(:model_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "modelId"))
1468
- EpisodicReflectionOverride.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaces"))
1473
+ EpisodicReflectionOverride.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
1474
+ EpisodicReflectionOverride.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaceTemplates"))
1469
1475
  EpisodicReflectionOverride.struct_class = Types::EpisodicReflectionOverride
1470
1476
 
1471
1477
  EvaluatorConfig.add_member(:llm_as_a_judge, Shapes::ShapeRef.new(shape: LlmAsAJudgeEvaluatorConfig, location_name: "llmAsAJudge"))
@@ -2138,7 +2144,8 @@ module Aws::BedrockAgentCoreControl
2138
2144
  MemoryStrategy.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
2139
2145
  MemoryStrategy.add_member(:configuration, Shapes::ShapeRef.new(shape: StrategyConfiguration, location_name: "configuration"))
2140
2146
  MemoryStrategy.add_member(:type, Shapes::ShapeRef.new(shape: MemoryStrategyType, required: true, location_name: "type"))
2141
- MemoryStrategy.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, required: true, location_name: "namespaces"))
2147
+ MemoryStrategy.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, required: true, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
2148
+ MemoryStrategy.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, required: true, location_name: "namespaceTemplates"))
2142
2149
  MemoryStrategy.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
2143
2150
  MemoryStrategy.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
2144
2151
  MemoryStrategy.add_member(:status, Shapes::ShapeRef.new(shape: MemoryStrategyStatus, location_name: "status"))
@@ -2216,7 +2223,8 @@ module Aws::BedrockAgentCoreControl
2216
2223
 
2217
2224
  ModifyMemoryStrategyInput.add_member(:memory_strategy_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "memoryStrategyId"))
2218
2225
  ModifyMemoryStrategyInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
2219
- ModifyMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaces"))
2226
+ ModifyMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
2227
+ ModifyMemoryStrategyInput.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaceTemplates"))
2220
2228
  ModifyMemoryStrategyInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ModifyStrategyConfiguration, location_name: "configuration"))
2221
2229
  ModifyMemoryStrategyInput.struct_class = Types::ModifyMemoryStrategyInput
2222
2230
 
@@ -2532,7 +2540,8 @@ module Aws::BedrockAgentCoreControl
2532
2540
 
2533
2541
  SemanticMemoryStrategyInput.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
2534
2542
  SemanticMemoryStrategyInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
2535
- SemanticMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaces"))
2543
+ SemanticMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
2544
+ SemanticMemoryStrategyInput.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaceTemplates"))
2536
2545
  SemanticMemoryStrategyInput.struct_class = Types::SemanticMemoryStrategyInput
2537
2546
 
2538
2547
  SemanticOverrideConfigurationInput.add_member(:extraction, Shapes::ShapeRef.new(shape: SemanticOverrideExtractionConfigurationInput, location_name: "extraction"))
@@ -2620,7 +2629,8 @@ module Aws::BedrockAgentCoreControl
2620
2629
 
2621
2630
  SummaryMemoryStrategyInput.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
2622
2631
  SummaryMemoryStrategyInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
2623
- SummaryMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaces"))
2632
+ SummaryMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
2633
+ SummaryMemoryStrategyInput.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaceTemplates"))
2624
2634
  SummaryMemoryStrategyInput.struct_class = Types::SummaryMemoryStrategyInput
2625
2635
 
2626
2636
  SummaryOverrideConfigurationInput.add_member(:consolidation, Shapes::ShapeRef.new(shape: SummaryOverrideConsolidationConfigurationInput, location_name: "consolidation"))
@@ -2959,7 +2969,8 @@ module Aws::BedrockAgentCoreControl
2959
2969
 
2960
2970
  UserPreferenceMemoryStrategyInput.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
2961
2971
  UserPreferenceMemoryStrategyInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
2962
- UserPreferenceMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaces"))
2972
+ UserPreferenceMemoryStrategyInput.add_member(:namespaces, Shapes::ShapeRef.new(shape: NamespacesList, deprecated: true, location_name: "namespaces", metadata: {"deprecatedMessage" => "Use namespaceTemplates instead", "deprecatedSince" => "2026-03-02"}))
2973
+ UserPreferenceMemoryStrategyInput.add_member(:namespace_templates, Shapes::ShapeRef.new(shape: NamespacesList, location_name: "namespaceTemplates"))
2963
2974
  UserPreferenceMemoryStrategyInput.struct_class = Types::UserPreferenceMemoryStrategyInput
2964
2975
 
2965
2976
  UserPreferenceOverrideConfigurationInput.add_member(:extraction, Shapes::ShapeRef.new(shape: UserPreferenceOverrideExtractionConfigurationInput, location_name: "extraction"))
@@ -2807,6 +2807,10 @@ module Aws::BedrockAgentCoreControl
2807
2807
  # The namespaces associated with the custom memory strategy.
2808
2808
  # @return [Array<String>]
2809
2809
  #
2810
+ # @!attribute [rw] namespace_templates
2811
+ # The namespaceTemplates associated with the custom memory strategy.
2812
+ # @return [Array<String>]
2813
+ #
2810
2814
  # @!attribute [rw] configuration
2811
2815
  # The configuration for the custom memory strategy.
2812
2816
  # @return [Types::CustomConfigurationInput]
@@ -2817,6 +2821,7 @@ module Aws::BedrockAgentCoreControl
2817
2821
  :name,
2818
2822
  :description,
2819
2823
  :namespaces,
2824
+ :namespace_templates,
2820
2825
  :configuration)
2821
2826
  SENSITIVE = [:description]
2822
2827
  include Aws::Structure
@@ -3681,6 +3686,10 @@ module Aws::BedrockAgentCoreControl
3681
3686
  # The namespaces for which to create episodes.
3682
3687
  # @return [Array<String>]
3683
3688
  #
3689
+ # @!attribute [rw] namespace_templates
3690
+ # The namespaceTemplates for which to create episodes.
3691
+ # @return [Array<String>]
3692
+ #
3684
3693
  # @!attribute [rw] reflection_configuration
3685
3694
  # The configuration for the reflections created with the episodic
3686
3695
  # memory strategy.
@@ -3692,6 +3701,7 @@ module Aws::BedrockAgentCoreControl
3692
3701
  :name,
3693
3702
  :description,
3694
3703
  :namespaces,
3704
+ :namespace_templates,
3695
3705
  :reflection_configuration)
3696
3706
  SENSITIVE = [:description]
3697
3707
  include Aws::Structure
@@ -3786,12 +3796,18 @@ module Aws::BedrockAgentCoreControl
3786
3796
  # than the episodic namespaces.
3787
3797
  # @return [Array<String>]
3788
3798
  #
3799
+ # @!attribute [rw] namespace_templates
3800
+ # The namespaceTemplates to use for episodic reflection. Can be less
3801
+ # nested than the episodic namespaces.
3802
+ # @return [Array<String>]
3803
+ #
3789
3804
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicOverrideReflectionConfigurationInput AWS API Documentation
3790
3805
  #
3791
3806
  class EpisodicOverrideReflectionConfigurationInput < Struct.new(
3792
3807
  :append_to_prompt,
3793
3808
  :model_id,
3794
- :namespaces)
3809
+ :namespaces,
3810
+ :namespace_templates)
3795
3811
  SENSITIVE = [:append_to_prompt]
3796
3812
  include Aws::Structure
3797
3813
  end
@@ -3804,10 +3820,16 @@ module Aws::BedrockAgentCoreControl
3804
3820
  # than the episodic namespaces.
3805
3821
  # @return [Array<String>]
3806
3822
  #
3823
+ # @!attribute [rw] namespace_templates
3824
+ # The namespaceTemplates for which to create reflections. Can be less
3825
+ # nested than the episodic namespaces.
3826
+ # @return [Array<String>]
3827
+ #
3807
3828
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicReflectionConfiguration AWS API Documentation
3808
3829
  #
3809
3830
  class EpisodicReflectionConfiguration < Struct.new(
3810
- :namespaces)
3831
+ :namespaces,
3832
+ :namespace_templates)
3811
3833
  SENSITIVE = []
3812
3834
  include Aws::Structure
3813
3835
  end
@@ -3819,10 +3841,16 @@ module Aws::BedrockAgentCoreControl
3819
3841
  # than episode namespaces.
3820
3842
  # @return [Array<String>]
3821
3843
  #
3844
+ # @!attribute [rw] namespace_templates
3845
+ # The namespaceTemplates over which to create reflections. Can be less
3846
+ # nested than episode namespaces.
3847
+ # @return [Array<String>]
3848
+ #
3822
3849
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicReflectionConfigurationInput AWS API Documentation
3823
3850
  #
3824
3851
  class EpisodicReflectionConfigurationInput < Struct.new(
3825
- :namespaces)
3852
+ :namespaces,
3853
+ :namespace_templates)
3826
3854
  SENSITIVE = []
3827
3855
  include Aws::Structure
3828
3856
  end
@@ -3845,12 +3873,18 @@ module Aws::BedrockAgentCoreControl
3845
3873
  # nested than the episodic namespaces.
3846
3874
  # @return [Array<String>]
3847
3875
  #
3876
+ # @!attribute [rw] namespace_templates
3877
+ # The namespaceTemplates over which reflections were created. Can be
3878
+ # less nested than the episodic namespaces.
3879
+ # @return [Array<String>]
3880
+ #
3848
3881
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicReflectionOverride AWS API Documentation
3849
3882
  #
3850
3883
  class EpisodicReflectionOverride < Struct.new(
3851
3884
  :append_to_prompt,
3852
3885
  :model_id,
3853
- :namespaces)
3886
+ :namespaces,
3887
+ :namespace_templates)
3854
3888
  SENSITIVE = [:append_to_prompt]
3855
3889
  include Aws::Structure
3856
3890
  end
@@ -7066,6 +7100,10 @@ module Aws::BedrockAgentCoreControl
7066
7100
  # The namespaces associated with the memory strategy.
7067
7101
  # @return [Array<String>]
7068
7102
  #
7103
+ # @!attribute [rw] namespace_templates
7104
+ # The namespaceTemplates associated with the memory strategy.
7105
+ # @return [Array<String>]
7106
+ #
7069
7107
  # @!attribute [rw] created_at
7070
7108
  # The timestamp when the memory strategy was created.
7071
7109
  # @return [Time]
@@ -7087,6 +7125,7 @@ module Aws::BedrockAgentCoreControl
7087
7125
  :configuration,
7088
7126
  :type,
7089
7127
  :namespaces,
7128
+ :namespace_templates,
7090
7129
  :created_at,
7091
7130
  :updated_at,
7092
7131
  :status)
@@ -7373,6 +7412,10 @@ module Aws::BedrockAgentCoreControl
7373
7412
  # The updated namespaces for the memory strategy.
7374
7413
  # @return [Array<String>]
7375
7414
  #
7415
+ # @!attribute [rw] namespace_templates
7416
+ # The updated namespaceTemplates for the memory strategy.
7417
+ # @return [Array<String>]
7418
+ #
7376
7419
  # @!attribute [rw] configuration
7377
7420
  # The updated configuration for the memory strategy.
7378
7421
  # @return [Types::ModifyStrategyConfiguration]
@@ -7383,6 +7426,7 @@ module Aws::BedrockAgentCoreControl
7383
7426
  :memory_strategy_id,
7384
7427
  :description,
7385
7428
  :namespaces,
7429
+ :namespace_templates,
7386
7430
  :configuration)
7387
7431
  SENSITIVE = [:description]
7388
7432
  include Aws::Structure
@@ -8750,12 +8794,17 @@ module Aws::BedrockAgentCoreControl
8750
8794
  # The namespaces associated with the semantic memory strategy.
8751
8795
  # @return [Array<String>]
8752
8796
  #
8797
+ # @!attribute [rw] namespace_templates
8798
+ # The namespaceTemplates associated with the semantic memory strategy.
8799
+ # @return [Array<String>]
8800
+ #
8753
8801
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SemanticMemoryStrategyInput AWS API Documentation
8754
8802
  #
8755
8803
  class SemanticMemoryStrategyInput < Struct.new(
8756
8804
  :name,
8757
8805
  :description,
8758
- :namespaces)
8806
+ :namespaces,
8807
+ :namespace_templates)
8759
8808
  SENSITIVE = [:description]
8760
8809
  include Aws::Structure
8761
8810
  end
@@ -9151,12 +9200,17 @@ module Aws::BedrockAgentCoreControl
9151
9200
  # The namespaces associated with the summary memory strategy.
9152
9201
  # @return [Array<String>]
9153
9202
  #
9203
+ # @!attribute [rw] namespace_templates
9204
+ # The namespaceTemplates associated with the summary memory strategy.
9205
+ # @return [Array<String>]
9206
+ #
9154
9207
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SummaryMemoryStrategyInput AWS API Documentation
9155
9208
  #
9156
9209
  class SummaryMemoryStrategyInput < Struct.new(
9157
9210
  :name,
9158
9211
  :description,
9159
- :namespaces)
9212
+ :namespaces,
9213
+ :namespace_templates)
9160
9214
  SENSITIVE = [:description]
9161
9215
  include Aws::Structure
9162
9216
  end
@@ -10723,12 +10777,18 @@ module Aws::BedrockAgentCoreControl
10723
10777
  # The namespaces associated with the user preference memory strategy.
10724
10778
  # @return [Array<String>]
10725
10779
  #
10780
+ # @!attribute [rw] namespace_templates
10781
+ # The namespaceTemplates associated with the user preference memory
10782
+ # strategy.
10783
+ # @return [Array<String>]
10784
+ #
10726
10785
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UserPreferenceMemoryStrategyInput AWS API Documentation
10727
10786
  #
10728
10787
  class UserPreferenceMemoryStrategyInput < Struct.new(
10729
10788
  :name,
10730
10789
  :description,
10731
- :namespaces)
10790
+ :namespaces,
10791
+ :namespace_templates)
10732
10792
  SENSITIVE = [:description]
10733
10793
  include Aws::Structure
10734
10794
  end
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.28.0'
58
+ GEM_VERSION = '1.29.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -529,22 +529,26 @@ module Aws
529
529
  semantic_memory_strategy: {
530
530
  name: ::String,
531
531
  description: ::String?,
532
- namespaces: Array[::String]?
532
+ namespaces: Array[::String]?,
533
+ namespace_templates: Array[::String]?
533
534
  }?,
534
535
  summary_memory_strategy: {
535
536
  name: ::String,
536
537
  description: ::String?,
537
- namespaces: Array[::String]?
538
+ namespaces: Array[::String]?,
539
+ namespace_templates: Array[::String]?
538
540
  }?,
539
541
  user_preference_memory_strategy: {
540
542
  name: ::String,
541
543
  description: ::String?,
542
- namespaces: Array[::String]?
544
+ namespaces: Array[::String]?,
545
+ namespace_templates: Array[::String]?
543
546
  }?,
544
547
  custom_memory_strategy: {
545
548
  name: ::String,
546
549
  description: ::String?,
547
550
  namespaces: Array[::String]?,
551
+ namespace_templates: Array[::String]?,
548
552
  configuration: {
549
553
  semantic_override: {
550
554
  extraction: {
@@ -584,7 +588,8 @@ module Aws
584
588
  reflection: {
585
589
  append_to_prompt: ::String,
586
590
  model_id: ::String,
587
- namespaces: Array[::String]?
591
+ namespaces: Array[::String]?,
592
+ namespace_templates: Array[::String]?
588
593
  }?
589
594
  }?,
590
595
  self_managed_configuration: {
@@ -613,8 +618,10 @@ module Aws
613
618
  name: ::String,
614
619
  description: ::String?,
615
620
  namespaces: Array[::String]?,
621
+ namespace_templates: Array[::String]?,
616
622
  reflection_configuration: {
617
- namespaces: Array[::String]
623
+ namespaces: Array[::String]?,
624
+ namespace_templates: Array[::String]?
618
625
  }?
619
626
  }?
620
627
  },
@@ -2063,22 +2070,26 @@ module Aws
2063
2070
  semantic_memory_strategy: {
2064
2071
  name: ::String,
2065
2072
  description: ::String?,
2066
- namespaces: Array[::String]?
2073
+ namespaces: Array[::String]?,
2074
+ namespace_templates: Array[::String]?
2067
2075
  }?,
2068
2076
  summary_memory_strategy: {
2069
2077
  name: ::String,
2070
2078
  description: ::String?,
2071
- namespaces: Array[::String]?
2079
+ namespaces: Array[::String]?,
2080
+ namespace_templates: Array[::String]?
2072
2081
  }?,
2073
2082
  user_preference_memory_strategy: {
2074
2083
  name: ::String,
2075
2084
  description: ::String?,
2076
- namespaces: Array[::String]?
2085
+ namespaces: Array[::String]?,
2086
+ namespace_templates: Array[::String]?
2077
2087
  }?,
2078
2088
  custom_memory_strategy: {
2079
2089
  name: ::String,
2080
2090
  description: ::String?,
2081
2091
  namespaces: Array[::String]?,
2092
+ namespace_templates: Array[::String]?,
2082
2093
  configuration: {
2083
2094
  semantic_override: {
2084
2095
  extraction: {
@@ -2118,7 +2129,8 @@ module Aws
2118
2129
  reflection: {
2119
2130
  append_to_prompt: ::String,
2120
2131
  model_id: ::String,
2121
- namespaces: Array[::String]?
2132
+ namespaces: Array[::String]?,
2133
+ namespace_templates: Array[::String]?
2122
2134
  }?
2123
2135
  }?,
2124
2136
  self_managed_configuration: {
@@ -2147,8 +2159,10 @@ module Aws
2147
2159
  name: ::String,
2148
2160
  description: ::String?,
2149
2161
  namespaces: Array[::String]?,
2162
+ namespace_templates: Array[::String]?,
2150
2163
  reflection_configuration: {
2151
- namespaces: Array[::String]
2164
+ namespaces: Array[::String]?,
2165
+ namespace_templates: Array[::String]?
2152
2166
  }?
2153
2167
  }?
2154
2168
  },
@@ -2158,6 +2172,7 @@ module Aws
2158
2172
  memory_strategy_id: ::String,
2159
2173
  description: ::String?,
2160
2174
  namespaces: Array[::String]?,
2175
+ namespace_templates: Array[::String]?,
2161
2176
  configuration: {
2162
2177
  extraction: {
2163
2178
  custom_extraction_configuration: {
@@ -2197,13 +2212,15 @@ module Aws
2197
2212
  }?,
2198
2213
  reflection: {
2199
2214
  episodic_reflection_configuration: {
2200
- namespaces: Array[::String]
2215
+ namespaces: Array[::String]?,
2216
+ namespace_templates: Array[::String]?
2201
2217
  }?,
2202
2218
  custom_reflection_configuration: {
2203
2219
  episodic_reflection_override: {
2204
2220
  append_to_prompt: ::String,
2205
2221
  model_id: ::String,
2206
- namespaces: Array[::String]?
2222
+ namespaces: Array[::String]?,
2223
+ namespace_templates: Array[::String]?
2207
2224
  }?
2208
2225
  }?
2209
2226
  }?,
data/sig/types.rbs CHANGED
@@ -756,6 +756,7 @@ module Aws::BedrockAgentCoreControl
756
756
  attr_accessor name: ::String
757
757
  attr_accessor description: ::String
758
758
  attr_accessor namespaces: ::Array[::String]
759
+ attr_accessor namespace_templates: ::Array[::String]
759
760
  attr_accessor configuration: Types::CustomConfigurationInput
760
761
  SENSITIVE: [:description]
761
762
  end
@@ -1036,6 +1037,7 @@ module Aws::BedrockAgentCoreControl
1036
1037
  attr_accessor name: ::String
1037
1038
  attr_accessor description: ::String
1038
1039
  attr_accessor namespaces: ::Array[::String]
1040
+ attr_accessor namespace_templates: ::Array[::String]
1039
1041
  attr_accessor reflection_configuration: Types::EpisodicReflectionConfigurationInput
1040
1042
  SENSITIVE: [:description]
1041
1043
  end
@@ -1063,16 +1065,19 @@ module Aws::BedrockAgentCoreControl
1063
1065
  attr_accessor append_to_prompt: ::String
1064
1066
  attr_accessor model_id: ::String
1065
1067
  attr_accessor namespaces: ::Array[::String]
1068
+ attr_accessor namespace_templates: ::Array[::String]
1066
1069
  SENSITIVE: [:append_to_prompt]
1067
1070
  end
1068
1071
 
1069
1072
  class EpisodicReflectionConfiguration
1070
1073
  attr_accessor namespaces: ::Array[::String]
1074
+ attr_accessor namespace_templates: ::Array[::String]
1071
1075
  SENSITIVE: []
1072
1076
  end
1073
1077
 
1074
1078
  class EpisodicReflectionConfigurationInput
1075
1079
  attr_accessor namespaces: ::Array[::String]
1080
+ attr_accessor namespace_templates: ::Array[::String]
1076
1081
  SENSITIVE: []
1077
1082
  end
1078
1083
 
@@ -1080,6 +1085,7 @@ module Aws::BedrockAgentCoreControl
1080
1085
  attr_accessor append_to_prompt: ::String
1081
1086
  attr_accessor model_id: ::String
1082
1087
  attr_accessor namespaces: ::Array[::String]
1088
+ attr_accessor namespace_templates: ::Array[::String]
1083
1089
  SENSITIVE: [:append_to_prompt]
1084
1090
  end
1085
1091
 
@@ -1983,6 +1989,7 @@ module Aws::BedrockAgentCoreControl
1983
1989
  attr_accessor configuration: Types::StrategyConfiguration
1984
1990
  attr_accessor type: ("SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM" | "EPISODIC")
1985
1991
  attr_accessor namespaces: ::Array[::String]
1992
+ attr_accessor namespace_templates: ::Array[::String]
1986
1993
  attr_accessor created_at: ::Time
1987
1994
  attr_accessor updated_at: ::Time
1988
1995
  attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
@@ -2090,6 +2097,7 @@ module Aws::BedrockAgentCoreControl
2090
2097
  attr_accessor memory_strategy_id: ::String
2091
2098
  attr_accessor description: ::String
2092
2099
  attr_accessor namespaces: ::Array[::String]
2100
+ attr_accessor namespace_templates: ::Array[::String]
2093
2101
  attr_accessor configuration: Types::ModifyStrategyConfiguration
2094
2102
  SENSITIVE: [:description]
2095
2103
  end
@@ -2502,6 +2510,7 @@ module Aws::BedrockAgentCoreControl
2502
2510
  attr_accessor name: ::String
2503
2511
  attr_accessor description: ::String
2504
2512
  attr_accessor namespaces: ::Array[::String]
2513
+ attr_accessor namespace_templates: ::Array[::String]
2505
2514
  SENSITIVE: [:description]
2506
2515
  end
2507
2516
 
@@ -2621,6 +2630,7 @@ module Aws::BedrockAgentCoreControl
2621
2630
  attr_accessor name: ::String
2622
2631
  attr_accessor description: ::String
2623
2632
  attr_accessor namespaces: ::Array[::String]
2633
+ attr_accessor namespace_templates: ::Array[::String]
2624
2634
  SENSITIVE: [:description]
2625
2635
  end
2626
2636
 
@@ -3056,6 +3066,7 @@ module Aws::BedrockAgentCoreControl
3056
3066
  attr_accessor name: ::String
3057
3067
  attr_accessor description: ::String
3058
3068
  attr_accessor namespaces: ::Array[::String]
3069
+ attr_accessor namespace_templates: ::Array[::String]
3059
3070
  SENSITIVE: [:description]
3060
3071
  end
3061
3072
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.28.0
4
+ version: 1.29.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services