aws-sdk-bedrockagentcorecontrol 1.65.0 → 1.66.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: e3afaeca7fc8892f28dfc06d419a82c9f60834aad5f252d600ea86c6ab33a9c9
4
- data.tar.gz: c40169a8a46178fc4ed83899a039609cad6fe025016ea7bfbd7fb730fe261e80
3
+ metadata.gz: 20114035ceba98dc7d6444c3633a65f57102f11f47ef11c640883edea5b7f208
4
+ data.tar.gz: 5861f438390825479ce682a74b3a01209319779f7d7147019490a4f759d1df68
5
5
  SHA512:
6
- metadata.gz: 9e00b914111ce4d07c804bcd29698c2900669953d10597b222cf21b84620082a80674260a9b9982e7aff8fed9096a881e835f86f4cddc1854ec7980a9f22b58b
7
- data.tar.gz: 8b2276b97453d5a9b479073196e576ff06a3d0fa91f6351dfe46eb09aa9741b14a4fde8c62c5f232722ebd984bcce371aadd9d911e2141800fd7e1418d2f2401
6
+ metadata.gz: 28faffe37c6b55de97746c231c9308e5a94c38e569965826783addcb95b6c8d704ce774755346a93b6b1fea8763a7c6444d7288c046b7a7b171d5f318661e138
7
+ data.tar.gz: '06872cfa1ad832d3de119022478cba97f984ca07dc514168f735ff87383912eddce4849b0b20328b4764b000d5d43bd4f975109d03a16308febd2aed3c343e5a'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2026-08-19)
5
+ ------------------
6
+
7
+ * Feature - AgentCore Memory now supports Flexible Namespaces
8
+
4
9
  1.65.0 (2026-08-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -569,8 +569,9 @@ module Aws::BedrockAgentCoreControl
569
569
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
570
570
  #
571
571
  # @option params [required, Array<Types::BatchPutLimitEntry>] :rate_limits
572
- # Complete set of rate limits for this gateway. Replaces all existing
573
- # limits atomically.
572
+ # The complete set of rate limits for this gateway. This operation
573
+ # replaces all existing rate limits in a single request. If the
574
+ # operation fails, no rate limits are changed.
574
575
  #
575
576
  # @return [Types::BatchPutGatewayRateLimitsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
576
577
  #
@@ -2213,18 +2214,20 @@ module Aws::BedrockAgentCoreControl
2213
2214
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
2214
2215
  #
2215
2216
  # @option params [String] :rate_limit_id
2216
- # Optional customer-defined limit ID. If not provided, system generates
2217
- # one.
2217
+ # An optional customer-defined identifier for the rate limit. If not
2218
+ # provided, the system generates one.
2218
2219
  #
2219
2220
  # @option params [String] :description
2220
- # Optional human-readable description for this limit.
2221
+ # An optional human-readable description for this rate limit. If not
2222
+ # provided, the rate limit is created without a description.
2221
2223
  #
2222
2224
  # @option params [required, Array<String>] :dimension_keys
2223
- # Ordered list of dimension names defining the scope of this limit.
2224
- # Unique per gateway no two limits can share the same dimensionKeys.
2225
+ # The ordered list of dimension key names that define the scope of this
2226
+ # rate limit. Must be unique per gateway—no two rate limits can share
2227
+ # the same dimension keys.
2225
2228
  #
2226
2229
  # @option params [required, Array<Types::LimitEntry>] :entries
2227
- # Rule entries mapping dimension values to rate configurations.
2230
+ # The rule entries that map dimension values to rate configurations.
2228
2231
  #
2229
2232
  # @return [Types::CreateGatewayRateLimitResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2230
2233
  #
@@ -3512,6 +3515,11 @@ module Aws::BedrockAgentCoreControl
3512
3515
  # Metadata keys to index for filtering. Once declared, indexed keys
3513
3516
  # cannot be removed.
3514
3517
  #
3518
+ # @option params [Array<Types::NamespaceKeyEntry>] :namespace_keys
3519
+ # The namespace variable key definitions with optional validation rules.
3520
+ # Use these `namespaceKeys` in `namespaceTemplates` to control namespace
3521
+ # hierarchy.
3522
+ #
3515
3523
  # @option params [Types::StreamDeliveryResources] :stream_delivery_resources
3516
3524
  # Configuration for streaming memory record data to external resources.
3517
3525
  #
@@ -3837,6 +3845,15 @@ module Aws::BedrockAgentCoreControl
3837
3845
  # type: "STRING", # required, accepts STRING, STRINGLIST, NUMBER
3838
3846
  # },
3839
3847
  # ],
3848
+ # namespace_keys: [
3849
+ # {
3850
+ # key: "NamespaceVariableKey", # required
3851
+ # validation: {
3852
+ # allowed_values: ["NamespaceAllowedValue"],
3853
+ # regex_pattern: "NamespaceRegexPattern",
3854
+ # },
3855
+ # },
3856
+ # ],
3840
3857
  # stream_delivery_resources: {
3841
3858
  # resources: [ # required
3842
3859
  # {
@@ -3956,6 +3973,11 @@ module Aws::BedrockAgentCoreControl
3956
3973
  # resp.memory.indexed_keys #=> Array
3957
3974
  # resp.memory.indexed_keys[0].key #=> String
3958
3975
  # resp.memory.indexed_keys[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
3976
+ # resp.memory.namespace_keys #=> Array
3977
+ # resp.memory.namespace_keys[0].key #=> String
3978
+ # resp.memory.namespace_keys[0].validation.allowed_values #=> Array
3979
+ # resp.memory.namespace_keys[0].validation.allowed_values[0] #=> String
3980
+ # resp.memory.namespace_keys[0].validation.regex_pattern #=> String
3959
3981
  # resp.memory.stream_delivery_resources.resources #=> Array
3960
3982
  # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
3961
3983
  # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
@@ -8249,6 +8271,11 @@ module Aws::BedrockAgentCoreControl
8249
8271
  # resp.memory.indexed_keys #=> Array
8250
8272
  # resp.memory.indexed_keys[0].key #=> String
8251
8273
  # resp.memory.indexed_keys[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
8274
+ # resp.memory.namespace_keys #=> Array
8275
+ # resp.memory.namespace_keys[0].key #=> String
8276
+ # resp.memory.namespace_keys[0].validation.allowed_values #=> Array
8277
+ # resp.memory.namespace_keys[0].validation.allowed_values[0] #=> String
8278
+ # resp.memory.namespace_keys[0].validation.regex_pattern #=> String
8252
8279
  # resp.memory.stream_delivery_resources.resources #=> Array
8253
8280
  # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
8254
8281
  # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
@@ -12946,11 +12973,11 @@ module Aws::BedrockAgentCoreControl
12946
12973
  # The unique identifier of the rate limit to update.
12947
12974
  #
12948
12975
  # @option params [String] :description
12949
- # Optional human-readable description for this limit.
12976
+ # The updated human-readable description for this rate limit.
12950
12977
  #
12951
12978
  # @option params [required, Array<Types::LimitEntry>] :entries
12952
- # Updated rule entries. key and dimensionKeys are immutable and cannot
12953
- # be changed.
12979
+ # The updated rule entries. The dimension keys are immutable after
12980
+ # creation and cannot be changed.
12954
12981
  #
12955
12982
  # @return [Types::UpdateGatewayRateLimitResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12956
12983
  #
@@ -14207,6 +14234,11 @@ module Aws::BedrockAgentCoreControl
14207
14234
  # Additional metadata keys to index. Previously indexed keys cannot be
14208
14235
  # removed.
14209
14236
  #
14237
+ # @option params [Array<Types::NamespaceKeyEntry>] :namespace_keys
14238
+ # The namespace variable key definitions with validation rules for this
14239
+ # memory. Use this parameter to update existing `namespaceKey`
14240
+ # validation rules or add new keys when namespace templates change.
14241
+ #
14210
14242
  # @option params [Types::StreamDeliveryResources] :stream_delivery_resources
14211
14243
  # Configuration for streaming memory record data to external resources.
14212
14244
  #
@@ -14697,6 +14729,15 @@ module Aws::BedrockAgentCoreControl
14697
14729
  # type: "STRING", # required, accepts STRING, STRINGLIST, NUMBER
14698
14730
  # },
14699
14731
  # ],
14732
+ # namespace_keys: [
14733
+ # {
14734
+ # key: "NamespaceVariableKey", # required
14735
+ # validation: {
14736
+ # allowed_values: ["NamespaceAllowedValue"],
14737
+ # regex_pattern: "NamespaceRegexPattern",
14738
+ # },
14739
+ # },
14740
+ # ],
14700
14741
  # stream_delivery_resources: {
14701
14742
  # resources: [ # required
14702
14743
  # {
@@ -14813,6 +14854,11 @@ module Aws::BedrockAgentCoreControl
14813
14854
  # resp.memory.indexed_keys #=> Array
14814
14855
  # resp.memory.indexed_keys[0].key #=> String
14815
14856
  # resp.memory.indexed_keys[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
14857
+ # resp.memory.namespace_keys #=> Array
14858
+ # resp.memory.namespace_keys[0].key #=> String
14859
+ # resp.memory.namespace_keys[0].validation.allowed_values #=> Array
14860
+ # resp.memory.namespace_keys[0].validation.allowed_values[0] #=> String
14861
+ # resp.memory.namespace_keys[0].validation.regex_pattern #=> String
14816
14862
  # resp.memory.stream_delivery_resources.resources #=> Array
14817
14863
  # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
14818
14864
  # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
@@ -16283,7 +16329,7 @@ module Aws::BedrockAgentCoreControl
16283
16329
  tracer: tracer
16284
16330
  )
16285
16331
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
16286
- context[:gem_version] = '1.65.0'
16332
+ context[:gem_version] = '1.66.0'
16287
16333
  Seahorse::Client::Request.new(handlers, context)
16288
16334
  end
16289
16335
 
@@ -898,6 +898,13 @@ module Aws::BedrockAgentCoreControl
898
898
  MountPath = Shapes::StringShape.new(name: 'MountPath')
899
899
  Name = Shapes::StringShape.new(name: 'Name')
900
900
  Namespace = Shapes::StringShape.new(name: 'Namespace')
901
+ NamespaceAllowedValue = Shapes::StringShape.new(name: 'NamespaceAllowedValue')
902
+ NamespaceAllowedValuesList = Shapes::ListShape.new(name: 'NamespaceAllowedValuesList')
903
+ NamespaceKeyEntry = Shapes::StructureShape.new(name: 'NamespaceKeyEntry')
904
+ NamespaceKeyValidation = Shapes::StructureShape.new(name: 'NamespaceKeyValidation')
905
+ NamespaceKeysList = Shapes::ListShape.new(name: 'NamespaceKeysList')
906
+ NamespaceRegexPattern = Shapes::StringShape.new(name: 'NamespaceRegexPattern')
907
+ NamespaceVariableKey = Shapes::StringShape.new(name: 'NamespaceVariableKey')
901
908
  NamespacesList = Shapes::ListShape.new(name: 'NamespacesList')
902
909
  NaturalLanguage = Shapes::StringShape.new(name: 'NaturalLanguage')
903
910
  NetworkConfiguration = Shapes::StructureShape.new(name: 'NetworkConfiguration')
@@ -2150,6 +2157,7 @@ module Aws::BedrockAgentCoreControl
2150
2157
  CreateMemoryInput.add_member(:event_expiry_duration, Shapes::ShapeRef.new(shape: CreateMemoryInputEventExpiryDurationInteger, required: true, location_name: "eventExpiryDuration"))
2151
2158
  CreateMemoryInput.add_member(:memory_strategies, Shapes::ShapeRef.new(shape: MemoryStrategyInputList, location_name: "memoryStrategies"))
2152
2159
  CreateMemoryInput.add_member(:indexed_keys, Shapes::ShapeRef.new(shape: IndexedKeysList, location_name: "indexedKeys"))
2160
+ CreateMemoryInput.add_member(:namespace_keys, Shapes::ShapeRef.new(shape: NamespaceKeysList, location_name: "namespaceKeys"))
2153
2161
  CreateMemoryInput.add_member(:stream_delivery_resources, Shapes::ShapeRef.new(shape: StreamDeliveryResources, location_name: "streamDeliveryResources"))
2154
2162
  CreateMemoryInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
2155
2163
  CreateMemoryInput.struct_class = Types::CreateMemoryInput
@@ -4552,6 +4560,7 @@ module Aws::BedrockAgentCoreControl
4552
4560
  Memory.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
4553
4561
  Memory.add_member(:strategies, Shapes::ShapeRef.new(shape: MemoryStrategyList, location_name: "strategies"))
4554
4562
  Memory.add_member(:indexed_keys, Shapes::ShapeRef.new(shape: IndexedKeysList, location_name: "indexedKeys"))
4563
+ Memory.add_member(:namespace_keys, Shapes::ShapeRef.new(shape: NamespaceKeysList, location_name: "namespaceKeys"))
4555
4564
  Memory.add_member(:stream_delivery_resources, Shapes::ShapeRef.new(shape: StreamDeliveryResources, location_name: "streamDeliveryResources"))
4556
4565
  Memory.add_member(:managed_by_resource_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "managedByResourceArn"))
4557
4566
  Memory.struct_class = Types::Memory
@@ -4688,6 +4697,18 @@ module Aws::BedrockAgentCoreControl
4688
4697
  ModifyStrategyConfiguration.add_member(:self_managed_configuration, Shapes::ShapeRef.new(shape: ModifySelfManagedConfiguration, location_name: "selfManagedConfiguration"))
4689
4698
  ModifyStrategyConfiguration.struct_class = Types::ModifyStrategyConfiguration
4690
4699
 
4700
+ NamespaceAllowedValuesList.member = Shapes::ShapeRef.new(shape: NamespaceAllowedValue)
4701
+
4702
+ NamespaceKeyEntry.add_member(:key, Shapes::ShapeRef.new(shape: NamespaceVariableKey, required: true, location_name: "key"))
4703
+ NamespaceKeyEntry.add_member(:validation, Shapes::ShapeRef.new(shape: NamespaceKeyValidation, location_name: "validation"))
4704
+ NamespaceKeyEntry.struct_class = Types::NamespaceKeyEntry
4705
+
4706
+ NamespaceKeyValidation.add_member(:allowed_values, Shapes::ShapeRef.new(shape: NamespaceAllowedValuesList, location_name: "allowedValues"))
4707
+ NamespaceKeyValidation.add_member(:regex_pattern, Shapes::ShapeRef.new(shape: NamespaceRegexPattern, location_name: "regexPattern"))
4708
+ NamespaceKeyValidation.struct_class = Types::NamespaceKeyValidation
4709
+
4710
+ NamespaceKeysList.member = Shapes::ShapeRef.new(shape: NamespaceKeyEntry)
4711
+
4691
4712
  NamespacesList.member = Shapes::ShapeRef.new(shape: Namespace)
4692
4713
 
4693
4714
  NetworkConfiguration.add_member(:network_mode, Shapes::ShapeRef.new(shape: NetworkMode, required: true, location_name: "networkMode"))
@@ -5869,6 +5890,7 @@ module Aws::BedrockAgentCoreControl
5869
5890
  UpdateMemoryInput.add_member(:memory_execution_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "memoryExecutionRoleArn"))
5870
5891
  UpdateMemoryInput.add_member(:memory_strategies, Shapes::ShapeRef.new(shape: ModifyMemoryStrategies, location_name: "memoryStrategies"))
5871
5892
  UpdateMemoryInput.add_member(:add_indexed_keys, Shapes::ShapeRef.new(shape: IndexedKeysList, location_name: "addIndexedKeys"))
5893
+ UpdateMemoryInput.add_member(:namespace_keys, Shapes::ShapeRef.new(shape: NamespaceKeysList, location_name: "namespaceKeys"))
5872
5894
  UpdateMemoryInput.add_member(:stream_delivery_resources, Shapes::ShapeRef.new(shape: StreamDeliveryResources, location_name: "streamDeliveryResources"))
5873
5895
  UpdateMemoryInput.struct_class = Types::UpdateMemoryInput
5874
5896
 
@@ -742,8 +742,9 @@ module Aws::BedrockAgentCoreControl
742
742
  # @return [String]
743
743
  #
744
744
  # @!attribute [rw] rate_limits
745
- # Complete set of rate limits for this gateway. Replaces all existing
746
- # limits atomically.
745
+ # The complete set of rate limits for this gateway. This operation
746
+ # replaces all existing rate limits in a single request. If the
747
+ # operation fails, no rate limits are changed.
747
748
  # @return [Array<Types::BatchPutLimitEntry>]
748
749
  #
749
750
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BatchPutGatewayRateLimitsRequest AWS API Documentation
@@ -768,24 +769,28 @@ module Aws::BedrockAgentCoreControl
768
769
  include Aws::Structure
769
770
  end
770
771
 
771
- # A limit definition within a BatchPut request (rateLimitId used for
772
- # upsert matching)
772
+ # A rate limit definition within a batch put request. If you provide a
773
+ # `rateLimitId`, the service uses it for upsert matching against
774
+ # existing rate limits.
773
775
  #
774
776
  # @!attribute [rw] rate_limit_id
775
- # Optional if provided, used for upsert matching against existing
776
- # limits.
777
+ # The unique identifier of the rate limit. If provided, the service
778
+ # uses it for upsert matching against existing rate limits.
777
779
  # @return [String]
778
780
  #
779
781
  # @!attribute [rw] description
780
- # Optional human-readable description for this limit.
782
+ # An optional human-readable description for this rate limit. If not
783
+ # provided, the rate limit is created without a description.
781
784
  # @return [String]
782
785
  #
783
786
  # @!attribute [rw] dimension_keys
784
- # Ordered list of dimension key names defining the scope of a limit
787
+ # The ordered list of dimension key names that define the scope of
788
+ # this rate limit.
785
789
  # @return [Array<String>]
786
790
  #
787
791
  # @!attribute [rw] entries
788
- # List of rule entries within a limit
792
+ # The list of rule entries that map dimension values to rate
793
+ # configurations.
789
794
  # @return [Array<Types::LimitEntry>]
790
795
  #
791
796
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BatchPutLimitEntry AWS API Documentation
@@ -2975,21 +2980,23 @@ module Aws::BedrockAgentCoreControl
2975
2980
  # @return [String]
2976
2981
  #
2977
2982
  # @!attribute [rw] rate_limit_id
2978
- # Optional customer-defined limit ID. If not provided, system
2979
- # generates one.
2983
+ # An optional customer-defined identifier for the rate limit. If not
2984
+ # provided, the system generates one.
2980
2985
  # @return [String]
2981
2986
  #
2982
2987
  # @!attribute [rw] description
2983
- # Optional human-readable description for this limit.
2988
+ # An optional human-readable description for this rate limit. If not
2989
+ # provided, the rate limit is created without a description.
2984
2990
  # @return [String]
2985
2991
  #
2986
2992
  # @!attribute [rw] dimension_keys
2987
- # Ordered list of dimension names defining the scope of this limit.
2988
- # Unique per gateway no two limits can share the same dimensionKeys.
2993
+ # The ordered list of dimension key names that define the scope of
2994
+ # this rate limit. Must be unique per gateway—no two rate limits can
2995
+ # share the same dimension keys.
2989
2996
  # @return [Array<String>]
2990
2997
  #
2991
2998
  # @!attribute [rw] entries
2992
- # Rule entries mapping dimension values to rate configurations.
2999
+ # The rule entries that map dimension values to rate configurations.
2993
3000
  # @return [Array<Types::LimitEntry>]
2994
3001
  #
2995
3002
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayRateLimitRequest AWS API Documentation
@@ -3005,11 +3012,10 @@ module Aws::BedrockAgentCoreControl
3005
3012
  include Aws::Structure
3006
3013
  end
3007
3014
 
3008
- # Shared fields for GatewayRateLimit responses
3015
+ # Shared fields for `GatewayRateLimit` responses.
3009
3016
  #
3010
3017
  # @!attribute [rw] rate_limit_id
3011
- # Limit identifier. Optional on Create (system-generates if not
3012
- # provided by customer). Always present in responses.
3018
+ # The unique identifier of the created rate limit.
3013
3019
  # @return [String]
3014
3020
  #
3015
3021
  # @!attribute [rw] gateway_identifier
@@ -3017,19 +3023,21 @@ module Aws::BedrockAgentCoreControl
3017
3023
  # @return [String]
3018
3024
  #
3019
3025
  # @!attribute [rw] description
3020
- # Optional human-readable description for this limit.
3026
+ # The human-readable description of the rate limit.
3021
3027
  # @return [String]
3022
3028
  #
3023
3029
  # @!attribute [rw] dimension_keys
3024
- # Ordered list of dimension key names defining the scope of a limit
3030
+ # The ordered list of dimension key names that define the scope of
3031
+ # this rate limit.
3025
3032
  # @return [Array<String>]
3026
3033
  #
3027
3034
  # @!attribute [rw] entries
3028
- # List of rule entries within a limit
3035
+ # The list of rule entries that map dimension values to rate
3036
+ # configurations.
3029
3037
  # @return [Array<Types::LimitEntry>]
3030
3038
  #
3031
3039
  # @!attribute [rw] status
3032
- # Status of a gateway limit
3040
+ # The current status of the rate limit.
3033
3041
  # @return [String]
3034
3042
  #
3035
3043
  # @!attribute [rw] created_at
@@ -3785,6 +3793,12 @@ module Aws::BedrockAgentCoreControl
3785
3793
  # cannot be removed.
3786
3794
  # @return [Array<Types::IndexedKey>]
3787
3795
  #
3796
+ # @!attribute [rw] namespace_keys
3797
+ # The namespace variable key definitions with optional validation
3798
+ # rules. Use these `namespaceKeys` in `namespaceTemplates` to control
3799
+ # namespace hierarchy.
3800
+ # @return [Array<Types::NamespaceKeyEntry>]
3801
+ #
3788
3802
  # @!attribute [rw] stream_delivery_resources
3789
3803
  # Configuration for streaming memory record data to external
3790
3804
  # resources.
@@ -3807,6 +3821,7 @@ module Aws::BedrockAgentCoreControl
3807
3821
  :event_expiry_duration,
3808
3822
  :memory_strategies,
3809
3823
  :indexed_keys,
3824
+ :namespace_keys,
3810
3825
  :stream_delivery_resources,
3811
3826
  :tags)
3812
3827
  SENSITIVE = [:description]
@@ -5349,10 +5364,9 @@ module Aws::BedrockAgentCoreControl
5349
5364
  # @return [String]
5350
5365
  #
5351
5366
  # @!attribute [rw] private_key_jwt_config
5352
- # Configuration for private\_key\_jwt client authentication (RFC
5353
- # 7523). On Create: privateKeySource and signingAlgorithm are required
5354
- # (enforced server-side). On Update: all fields are optional — only
5355
- # provided fields are updated.
5367
+ # The private\_key\_jwt client authentication configuration for this
5368
+ # credential provider. When specified, the credential provider uses
5369
+ # JWT client assertions to authenticate with the token endpoint.
5356
5370
  # @return [Types::PrivateKeyJwtConfig]
5357
5371
  #
5358
5372
  # @!attribute [rw] private_endpoint
@@ -5414,10 +5428,8 @@ module Aws::BedrockAgentCoreControl
5414
5428
  # @return [Array<Types::PrivateEndpointOverride>]
5415
5429
  #
5416
5430
  # @!attribute [rw] private_key_jwt_config
5417
- # Configuration for private\_key\_jwt client authentication (RFC
5418
- # 7523). On Create: privateKeySource and signingAlgorithm are required
5419
- # (enforced server-side). On Update: all fields are optional — only
5420
- # provided fields are updated.
5431
+ # The configuration for private\_key\_jwt client authentication used
5432
+ # by this OAuth2 credential provider.
5421
5433
  # @return [Types::PrivateKeyJwtConfig]
5422
5434
  #
5423
5435
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomOauth2ProviderConfigOutput AWS API Documentation
@@ -6146,12 +6158,11 @@ module Aws::BedrockAgentCoreControl
6146
6158
  end
6147
6159
 
6148
6160
  # @!attribute [rw] rate_limit_id
6149
- # Limit identifier. Optional on Create (system-generates if not
6150
- # provided by customer). Always present in responses.
6161
+ # The unique identifier of the deleted rate limit.
6151
6162
  # @return [String]
6152
6163
  #
6153
6164
  # @!attribute [rw] status
6154
- # Status of a gateway limit
6165
+ # The current status of the rate limit deletion.
6155
6166
  # @return [String]
6156
6167
  #
6157
6168
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayRateLimitResponse AWS API Documentation
@@ -7925,11 +7936,11 @@ module Aws::BedrockAgentCoreControl
7925
7936
  class Unknown < GatewayProtocolConfiguration; end
7926
7937
  end
7927
7938
 
7928
- # Shared fields for GatewayRateLimit responses
7939
+ # Contains detailed information about a gateway rate limit, including
7940
+ # its configuration and current status.
7929
7941
  #
7930
7942
  # @!attribute [rw] rate_limit_id
7931
- # Limit identifier. Optional on Create (system-generates if not
7932
- # provided by customer). Always present in responses.
7943
+ # The unique identifier of the rate limit.
7933
7944
  # @return [String]
7934
7945
  #
7935
7946
  # @!attribute [rw] gateway_identifier
@@ -7937,19 +7948,21 @@ module Aws::BedrockAgentCoreControl
7937
7948
  # @return [String]
7938
7949
  #
7939
7950
  # @!attribute [rw] description
7940
- # Optional human-readable description for this limit.
7951
+ # The human-readable description of the rate limit.
7941
7952
  # @return [String]
7942
7953
  #
7943
7954
  # @!attribute [rw] dimension_keys
7944
- # Ordered list of dimension key names defining the scope of a limit
7955
+ # The ordered list of dimension key names that define the scope of
7956
+ # this rate limit.
7945
7957
  # @return [Array<String>]
7946
7958
  #
7947
7959
  # @!attribute [rw] entries
7948
- # List of rule entries within a limit
7960
+ # The list of rule entries that map dimension values to rate
7961
+ # configurations.
7949
7962
  # @return [Array<Types::LimitEntry>]
7950
7963
  #
7951
7964
  # @!attribute [rw] status
7952
- # Status of a gateway limit
7965
+ # The current status of the rate limit.
7953
7966
  # @return [String]
7954
7967
  #
7955
7968
  # @!attribute [rw] created_at
@@ -9184,11 +9197,10 @@ module Aws::BedrockAgentCoreControl
9184
9197
  include Aws::Structure
9185
9198
  end
9186
9199
 
9187
- # Shared fields for GatewayRateLimit responses
9200
+ # Shared fields for `GatewayRateLimit` responses.
9188
9201
  #
9189
9202
  # @!attribute [rw] rate_limit_id
9190
- # Limit identifier. Optional on Create (system-generates if not
9191
- # provided by customer). Always present in responses.
9203
+ # The unique identifier of the rate limit.
9192
9204
  # @return [String]
9193
9205
  #
9194
9206
  # @!attribute [rw] gateway_identifier
@@ -9196,19 +9208,21 @@ module Aws::BedrockAgentCoreControl
9196
9208
  # @return [String]
9197
9209
  #
9198
9210
  # @!attribute [rw] description
9199
- # Optional human-readable description for this limit.
9211
+ # The human-readable description of the rate limit.
9200
9212
  # @return [String]
9201
9213
  #
9202
9214
  # @!attribute [rw] dimension_keys
9203
- # Ordered list of dimension key names defining the scope of a limit
9215
+ # The ordered list of dimension key names that define the scope of
9216
+ # this rate limit.
9204
9217
  # @return [Array<String>]
9205
9218
  #
9206
9219
  # @!attribute [rw] entries
9207
- # List of rule entries within a limit
9220
+ # The list of rule entries that map dimension values to rate
9221
+ # configurations.
9208
9222
  # @return [Array<Types::LimitEntry>]
9209
9223
  #
9210
9224
  # @!attribute [rw] status
9211
- # Status of a gateway limit
9225
+ # The current status of the rate limit.
9212
9226
  # @return [String]
9213
9227
  #
9214
9228
  # @!attribute [rw] created_at
@@ -13002,27 +13016,30 @@ module Aws::BedrockAgentCoreControl
13002
13016
  include Aws::Structure
13003
13017
  end
13004
13018
 
13005
- # A single rule entry within a limit, mapping dimension values to rate
13006
- # configurations
13019
+ # A single rule entry within a rate limit that maps dimension values to
13020
+ # rate configurations. Each entry defines the rate limits for a specific
13021
+ # combination of dimension values.
13007
13022
  #
13008
13023
  # @!attribute [rw] dimensions
13009
- # Map of dimension name to dimension value, matching the parent
13010
- # limit's dimensionKeys. Keys must exactly match the dimensionKeys.
13011
- # Values may be "*" as a wildcard. "*" may only appear at trailing
13012
- # positions (based on dimensionKeys ordering).
13024
+ # A map of dimension names to dimension values for this rule entry.
13025
+ # Keys must match the parent rate limit's dimension keys. Values may
13026
+ # use `*` as a wildcard, but only in trailing positions based on the
13027
+ # dimension keys ordering.
13013
13028
  # @return [Hash<String,String>]
13014
13029
  #
13015
13030
  # @!attribute [rw] requests
13016
- # Request rate limits (RPS or RPM). Limited to 1 entry for now.
13031
+ # The request rate limit configuration. Specifies the maximum number
13032
+ # of requests allowed per time period.
13017
13033
  # @return [Array<Types::RateConfig>]
13018
13034
  #
13019
13035
  # @!attribute [rw] tokens
13020
- # Token rate limits (TPM). Limited to 1 entry for now. — P1
13036
+ # The token rate limit configuration. Specifies the maximum number of
13037
+ # tokens allowed per time period.
13021
13038
  # @return [Array<Types::RateConfig>]
13022
13039
  #
13023
13040
  # @!attribute [rw] connections
13024
- # Connection rate limits (per second only). Limited to 1 entry for
13025
- # now. P2
13041
+ # The connection rate limit configuration. Specifies the maximum
13042
+ # number of concurrent connections allowed.
13026
13043
  # @return [Array<Types::RateConfig>]
13027
13044
  #
13028
13045
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LimitEntry AWS API Documentation
@@ -15293,6 +15310,12 @@ module Aws::BedrockAgentCoreControl
15293
15310
  # used in metadata filters.
15294
15311
  # @return [Array<Types::IndexedKey>]
15295
15312
  #
15313
+ # @!attribute [rw] namespace_keys
15314
+ # The namespace variable key definitions for this memory. Namespace
15315
+ # keys define custom variables used in `namespaceTemplates` with
15316
+ # optional validation rules.
15317
+ # @return [Array<Types::NamespaceKeyEntry>]
15318
+ #
15296
15319
  # @!attribute [rw] stream_delivery_resources
15297
15320
  # Configuration for streaming memory record data to external
15298
15321
  # resources.
@@ -15320,6 +15343,7 @@ module Aws::BedrockAgentCoreControl
15320
15343
  :updated_at,
15321
15344
  :strategies,
15322
15345
  :indexed_keys,
15346
+ :namespace_keys,
15323
15347
  :stream_delivery_resources,
15324
15348
  :managed_by_resource_arn)
15325
15349
  SENSITIVE = [:description]
@@ -15876,6 +15900,48 @@ module Aws::BedrockAgentCoreControl
15876
15900
  include Aws::Structure
15877
15901
  end
15878
15902
 
15903
+ # A namespace variable key definition with optional
15904
+ # `NamespaceKeyValidation` rules.
15905
+ #
15906
+ # @!attribute [rw] key
15907
+ # The namespace variable key name.
15908
+ # @return [String]
15909
+ #
15910
+ # @!attribute [rw] validation
15911
+ # The validation rules that constrain values for this namespace
15912
+ # variable at runtime (`CreateEvent` API).
15913
+ # @return [Types::NamespaceKeyValidation]
15914
+ #
15915
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/NamespaceKeyEntry AWS API Documentation
15916
+ #
15917
+ class NamespaceKeyEntry < Struct.new(
15918
+ :key,
15919
+ :validation)
15920
+ SENSITIVE = []
15921
+ include Aws::Structure
15922
+ end
15923
+
15924
+ # The validation rules for namespace variable values. When you specify
15925
+ # multiple rules, the service enforces a logical `AND` across all
15926
+ # provided key-value pairs.
15927
+ #
15928
+ # @!attribute [rw] allowed_values
15929
+ # The allowed values for this namespace variable key.
15930
+ # @return [Array<String>]
15931
+ #
15932
+ # @!attribute [rw] regex_pattern
15933
+ # A regex pattern that the namespace variable key-value must match.
15934
+ # @return [String]
15935
+ #
15936
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/NamespaceKeyValidation AWS API Documentation
15937
+ #
15938
+ class NamespaceKeyValidation < Struct.new(
15939
+ :allowed_values,
15940
+ :regex_pattern)
15941
+ SENSITIVE = []
15942
+ include Aws::Structure
15943
+ end
15944
+
15879
15945
  # SecurityConfig for the Agent.
15880
15946
  #
15881
15947
  # @!attribute [rw] network_mode
@@ -17279,10 +17345,8 @@ module Aws::BedrockAgentCoreControl
17279
17345
  include Aws::Structure
17280
17346
  end
17281
17347
 
17282
- # Configuration for private\_key\_jwt client authentication (RFC 7523).
17283
- # On Create: privateKeySource and signingAlgorithm are required
17284
- # (enforced server-side). On Update: all fields are optional — only
17285
- # provided fields are updated.
17348
+ # The private key configuration for private\_key\_jwt client
17349
+ # authentication.
17286
17350
  #
17287
17351
  # @!attribute [rw] private_key_source
17288
17352
  # The private key source for the JWT client assertion.
@@ -17410,7 +17474,8 @@ module Aws::BedrockAgentCoreControl
17410
17474
  include Aws::Structure
17411
17475
  end
17412
17476
 
17413
- # Rate configuration for a metric (requests or tokens)
17477
+ # Contains the rate configuration for a rate limit metric, specifying
17478
+ # the allowed rate and time period.
17414
17479
  #
17415
17480
  # @!attribute [rw] rate
17416
17481
  # The rate value for the limit. For request limits, this is the number
@@ -17420,7 +17485,11 @@ module Aws::BedrockAgentCoreControl
17420
17485
  # @return [Float]
17421
17486
  #
17422
17487
  # @!attribute [rw] period
17423
- # Time period for rate limiting
17488
+ # The time period for the rate limit. Valid values:
17489
+ #
17490
+ # * `second`—Measures the rate limit over a one-second window.
17491
+ #
17492
+ # * `minute`—Measures the rate limit over a one-minute window.
17424
17493
  # @return [String]
17425
17494
  #
17426
17495
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RateConfig AWS API Documentation
@@ -20623,12 +20692,12 @@ module Aws::BedrockAgentCoreControl
20623
20692
  # @return [String]
20624
20693
  #
20625
20694
  # @!attribute [rw] description
20626
- # Optional human-readable description for this limit.
20695
+ # The updated human-readable description for this rate limit.
20627
20696
  # @return [String]
20628
20697
  #
20629
20698
  # @!attribute [rw] entries
20630
- # Updated rule entries. key and dimensionKeys are immutable and cannot
20631
- # be changed.
20699
+ # The updated rule entries. The dimension keys are immutable after
20700
+ # creation and cannot be changed.
20632
20701
  # @return [Array<Types::LimitEntry>]
20633
20702
  #
20634
20703
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRateLimitRequest AWS API Documentation
@@ -20642,11 +20711,10 @@ module Aws::BedrockAgentCoreControl
20642
20711
  include Aws::Structure
20643
20712
  end
20644
20713
 
20645
- # Shared fields for GatewayRateLimit responses
20714
+ # Shared fields for `GatewayRateLimit` responses.
20646
20715
  #
20647
20716
  # @!attribute [rw] rate_limit_id
20648
- # Limit identifier. Optional on Create (system-generates if not
20649
- # provided by customer). Always present in responses.
20717
+ # The unique identifier of the rate limit.
20650
20718
  # @return [String]
20651
20719
  #
20652
20720
  # @!attribute [rw] gateway_identifier
@@ -20654,19 +20722,21 @@ module Aws::BedrockAgentCoreControl
20654
20722
  # @return [String]
20655
20723
  #
20656
20724
  # @!attribute [rw] description
20657
- # Optional human-readable description for this limit.
20725
+ # The human-readable description of the rate limit.
20658
20726
  # @return [String]
20659
20727
  #
20660
20728
  # @!attribute [rw] dimension_keys
20661
- # Ordered list of dimension key names defining the scope of a limit
20729
+ # The ordered list of dimension key names that define the scope of
20730
+ # this rate limit.
20662
20731
  # @return [Array<String>]
20663
20732
  #
20664
20733
  # @!attribute [rw] entries
20665
- # List of rule entries within a limit
20734
+ # The list of rule entries that map dimension values to rate
20735
+ # configurations.
20666
20736
  # @return [Array<Types::LimitEntry>]
20667
20737
  #
20668
20738
  # @!attribute [rw] status
20669
- # Status of a gateway limit
20739
+ # The current status of the rate limit.
20670
20740
  # @return [String]
20671
20741
  #
20672
20742
  # @!attribute [rw] created_at
@@ -21371,6 +21441,12 @@ module Aws::BedrockAgentCoreControl
21371
21441
  # removed.
21372
21442
  # @return [Array<Types::IndexedKey>]
21373
21443
  #
21444
+ # @!attribute [rw] namespace_keys
21445
+ # The namespace variable key definitions with validation rules for
21446
+ # this memory. Use this parameter to update existing `namespaceKey`
21447
+ # validation rules or add new keys when namespace templates change.
21448
+ # @return [Array<Types::NamespaceKeyEntry>]
21449
+ #
21374
21450
  # @!attribute [rw] stream_delivery_resources
21375
21451
  # Configuration for streaming memory record data to external
21376
21452
  # resources.
@@ -21386,6 +21462,7 @@ module Aws::BedrockAgentCoreControl
21386
21462
  :memory_execution_role_arn,
21387
21463
  :memory_strategies,
21388
21464
  :add_indexed_keys,
21465
+ :namespace_keys,
21389
21466
  :stream_delivery_resources)
21390
21467
  SENSITIVE = [:description]
21391
21468
  include Aws::Structure
@@ -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.65.0'
58
+ GEM_VERSION = '1.66.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -696,6 +696,15 @@ module Aws
696
696
  type: ("STRING" | "STRINGLIST" | "NUMBER")
697
697
  }
698
698
  ],
699
+ ?namespace_keys: Array[
700
+ {
701
+ key: ::String,
702
+ validation: {
703
+ allowed_values: Array[::String]?,
704
+ regex_pattern: ::String?
705
+ }?
706
+ }
707
+ ],
699
708
  ?stream_delivery_resources: Params::stream_delivery_resources,
700
709
  ?tags: Hash[::String, ::String]
701
710
  ) -> _CreateMemoryResponseSuccess
@@ -3058,6 +3067,15 @@ module Aws
3058
3067
  type: ("STRING" | "STRINGLIST" | "NUMBER")
3059
3068
  }
3060
3069
  ],
3070
+ ?namespace_keys: Array[
3071
+ {
3072
+ key: ::String,
3073
+ validation: {
3074
+ allowed_values: Array[::String]?,
3075
+ regex_pattern: ::String?
3076
+ }?
3077
+ }
3078
+ ],
3061
3079
  ?stream_delivery_resources: Params::stream_delivery_resources
3062
3080
  ) -> _UpdateMemoryResponseSuccess
3063
3081
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMemoryResponseSuccess
data/sig/types.rbs CHANGED
@@ -976,6 +976,7 @@ module Aws::BedrockAgentCoreControl
976
976
  attr_accessor event_expiry_duration: ::Integer
977
977
  attr_accessor memory_strategies: ::Array[Types::MemoryStrategyInput]
978
978
  attr_accessor indexed_keys: ::Array[Types::IndexedKey]
979
+ attr_accessor namespace_keys: ::Array[Types::NamespaceKeyEntry]
979
980
  attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
980
981
  attr_accessor tags: ::Hash[::String, ::String]
981
982
  SENSITIVE: [:description]
@@ -4180,6 +4181,7 @@ module Aws::BedrockAgentCoreControl
4180
4181
  attr_accessor updated_at: ::Time
4181
4182
  attr_accessor strategies: ::Array[Types::MemoryStrategy]
4182
4183
  attr_accessor indexed_keys: ::Array[Types::IndexedKey]
4184
+ attr_accessor namespace_keys: ::Array[Types::NamespaceKeyEntry]
4183
4185
  attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
4184
4186
  attr_accessor managed_by_resource_arn: ::String
4185
4187
  SENSITIVE: [:description]
@@ -4362,6 +4364,18 @@ module Aws::BedrockAgentCoreControl
4362
4364
  SENSITIVE: []
4363
4365
  end
4364
4366
 
4367
+ class NamespaceKeyEntry
4368
+ attr_accessor key: ::String
4369
+ attr_accessor validation: Types::NamespaceKeyValidation
4370
+ SENSITIVE: []
4371
+ end
4372
+
4373
+ class NamespaceKeyValidation
4374
+ attr_accessor allowed_values: ::Array[::String]
4375
+ attr_accessor regex_pattern: ::String
4376
+ SENSITIVE: []
4377
+ end
4378
+
4365
4379
  class NetworkConfiguration
4366
4380
  attr_accessor network_mode: ("PUBLIC" | "VPC")
4367
4381
  attr_accessor network_mode_config: Types::VpcConfig
@@ -5877,6 +5891,7 @@ module Aws::BedrockAgentCoreControl
5877
5891
  attr_accessor memory_execution_role_arn: ::String
5878
5892
  attr_accessor memory_strategies: Types::ModifyMemoryStrategies
5879
5893
  attr_accessor add_indexed_keys: ::Array[Types::IndexedKey]
5894
+ attr_accessor namespace_keys: ::Array[Types::NamespaceKeyEntry]
5880
5895
  attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
5881
5896
  SENSITIVE: [:description]
5882
5897
  end
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.65.0
4
+ version: 1.66.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services