aws-sdk-bedrockagentcorecontrol 1.64.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: d4d66c60f29171cfd96af4bee2121f2d65eb0ec92fdf4b6b5c809903a1b3e4ec
4
- data.tar.gz: f6f73da5571a62e21b63164b955bc50e14a425c412832a3926cceb4e8667faf7
3
+ metadata.gz: 20114035ceba98dc7d6444c3633a65f57102f11f47ef11c640883edea5b7f208
4
+ data.tar.gz: 5861f438390825479ce682a74b3a01209319779f7d7147019490a4f759d1df68
5
5
  SHA512:
6
- metadata.gz: dc0c72180032b750944533c21b11e96a106de3e121b2da90848d9724377af2449eca2260560e9c76fb0a985a332bd2c384d9cca51ca833f459c0fbaf1523ad0c
7
- data.tar.gz: c83935235c25b5a7aad6117c93f8b16189e1cbc1deee472ac6e14569617e8a416e9f9cf9893d9aa56b7afe82e0899529ed7d8621ef6629f23415b145c54b669b
6
+ metadata.gz: 28faffe37c6b55de97746c231c9308e5a94c38e569965826783addcb95b6c8d704ce774755346a93b6b1fea8763a7c6444d7288c046b7a7b171d5f318661e138
7
+ data.tar.gz: '06872cfa1ad832d3de119022478cba97f984ca07dc514168f735ff87383912eddce4849b0b20328b4764b000d5d43bd4f975109d03a16308febd2aed3c343e5a'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.65.0 (2026-08-17)
10
+ ------------------
11
+
12
+ * Feature - Adds implementations of third-party evaluators, both managed-as-a-service and as templates within custom evaluators.
13
+
4
14
  1.64.0 (2026-08-14)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.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
  #
@@ -1637,7 +1638,7 @@ module Aws::BedrockAgentCoreControl
1637
1638
  # s3_uri: "S3Uri", # required
1638
1639
  # },
1639
1640
  # },
1640
- # schema_type: "AGENTCORE_EVALUATION_PREDEFINED_V1", # required, accepts AGENTCORE_EVALUATION_PREDEFINED_V1, AGENTCORE_EVALUATION_SIMULATED_V1
1641
+ # schema_type: "AGENTCORE_EVALUATION_PREDEFINED_V1", # required, accepts AGENTCORE_EVALUATION_PREDEFINED_V1, AGENTCORE_EVALUATION_SIMULATED_V1, GENERIC_EVALUATION_PREDEFINED_V1
1641
1642
  # kms_key_arn: "KmsKeyArn",
1642
1643
  # tags: {
1643
1644
  # "TagKey" => "TagValue",
@@ -1829,6 +1830,31 @@ module Aws::BedrockAgentCoreControl
1829
1830
  # lambda_timeout_in_seconds: 1,
1830
1831
  # },
1831
1832
  # },
1833
+ # derived: {
1834
+ # base_evaluator_id: "EvaluatorId", # required
1835
+ # model_config: { # required
1836
+ # bedrock_evaluator_model_config: {
1837
+ # model_id: "ModelId", # required
1838
+ # inference_config: {
1839
+ # max_tokens: 1,
1840
+ # temperature: 1.0,
1841
+ # top_p: 1.0,
1842
+ # stop_sequences: ["NonEmptyString"],
1843
+ # },
1844
+ # additional_model_request_fields: {
1845
+ # },
1846
+ # },
1847
+ # responses_evaluator_model_config: {
1848
+ # model_id: "ModelId", # required
1849
+ # max_output_tokens: 1,
1850
+ # temperature: 1.0,
1851
+ # top_p: 1.0,
1852
+ # reasoning: {
1853
+ # effort: "ReasoningConfigurationEffortString",
1854
+ # },
1855
+ # },
1856
+ # },
1857
+ # },
1832
1858
  # },
1833
1859
  # level: "TOOL_CALL", # required, accepts TOOL_CALL, TRACE, SESSION
1834
1860
  # kms_key_arn: "KmsKeyArn",
@@ -2188,18 +2214,20 @@ module Aws::BedrockAgentCoreControl
2188
2214
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
2189
2215
  #
2190
2216
  # @option params [String] :rate_limit_id
2191
- # Optional customer-defined limit ID. If not provided, system generates
2192
- # one.
2217
+ # An optional customer-defined identifier for the rate limit. If not
2218
+ # provided, the system generates one.
2193
2219
  #
2194
2220
  # @option params [String] :description
2195
- # 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.
2196
2223
  #
2197
2224
  # @option params [required, Array<String>] :dimension_keys
2198
- # Ordered list of dimension names defining the scope of this limit.
2199
- # 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.
2200
2228
  #
2201
2229
  # @option params [required, Array<Types::LimitEntry>] :entries
2202
- # Rule entries mapping dimension values to rate configurations.
2230
+ # The rule entries that map dimension values to rate configurations.
2203
2231
  #
2204
2232
  # @return [Types::CreateGatewayRateLimitResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2205
2233
  #
@@ -3487,6 +3515,11 @@ module Aws::BedrockAgentCoreControl
3487
3515
  # Metadata keys to index for filtering. Once declared, indexed keys
3488
3516
  # cannot be removed.
3489
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
+ #
3490
3523
  # @option params [Types::StreamDeliveryResources] :stream_delivery_resources
3491
3524
  # Configuration for streaming memory record data to external resources.
3492
3525
  #
@@ -3812,6 +3845,15 @@ module Aws::BedrockAgentCoreControl
3812
3845
  # type: "STRING", # required, accepts STRING, STRINGLIST, NUMBER
3813
3846
  # },
3814
3847
  # ],
3848
+ # namespace_keys: [
3849
+ # {
3850
+ # key: "NamespaceVariableKey", # required
3851
+ # validation: {
3852
+ # allowed_values: ["NamespaceAllowedValue"],
3853
+ # regex_pattern: "NamespaceRegexPattern",
3854
+ # },
3855
+ # },
3856
+ # ],
3815
3857
  # stream_delivery_resources: {
3816
3858
  # resources: [ # required
3817
3859
  # {
@@ -3931,6 +3973,11 @@ module Aws::BedrockAgentCoreControl
3931
3973
  # resp.memory.indexed_keys #=> Array
3932
3974
  # resp.memory.indexed_keys[0].key #=> String
3933
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
3934
3981
  # resp.memory.stream_delivery_resources.resources #=> Array
3935
3982
  # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
3936
3983
  # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
@@ -4844,9 +4891,17 @@ module Aws::BedrockAgentCoreControl
4844
4891
  # asynchronous operation. Use the [GetPolicy][1] operation to poll the
4845
4892
  # `status` field to track completion.
4846
4893
  #
4894
+ # If the new policy is a temporal policy, creating it invalidates the
4895
+ # policy engine's active temporal sessions. For more information about
4896
+ # temporal policy sessions, see [session-based temporal policies][2].
4897
+ # The policy engine returns an HTTP 409 `ConflictException` to in-flight
4898
+ # sessions. To resume, you must start a new session with a new session
4899
+ # ID.
4900
+ #
4847
4901
  #
4848
4902
  #
4849
4903
  # [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_GetPolicy.html
4904
+ # [2]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/policy-session-based-temporal.html
4850
4905
  #
4851
4906
  # @option params [required, String] :name
4852
4907
  # The customer-assigned immutable name for the policy. Must be unique
@@ -7336,7 +7391,7 @@ module Aws::BedrockAgentCoreControl
7336
7391
  # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
7337
7392
  # resp.draft_status #=> String, one of "MODIFIED", "UNMODIFIED"
7338
7393
  # resp.failure_reason #=> String
7339
- # resp.schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1"
7394
+ # resp.schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1", "GENERIC_EVALUATION_PREDEFINED_V1"
7340
7395
  # resp.kms_key_arn #=> String
7341
7396
  # resp.example_count #=> Integer
7342
7397
  # resp.download_url #=> String
@@ -7378,6 +7433,8 @@ module Aws::BedrockAgentCoreControl
7378
7433
  # * {Types::GetEvaluatorResponse#evaluator_name #evaluator_name} => String
7379
7434
  # * {Types::GetEvaluatorResponse#description #description} => String
7380
7435
  # * {Types::GetEvaluatorResponse#evaluator_config #evaluator_config} => Types::EvaluatorConfig
7436
+ # * {Types::GetEvaluatorResponse#evaluator_type #evaluator_type} => String
7437
+ # * {Types::GetEvaluatorResponse#provider #provider} => String
7381
7438
  # * {Types::GetEvaluatorResponse#level #level} => String
7382
7439
  # * {Types::GetEvaluatorResponse#status #status} => String
7383
7440
  # * {Types::GetEvaluatorResponse#created_at #created_at} => Time
@@ -7419,6 +7476,20 @@ module Aws::BedrockAgentCoreControl
7419
7476
  # resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.reasoning.effort #=> String
7420
7477
  # resp.evaluator_config.code_based.lambda_config.lambda_arn #=> String
7421
7478
  # resp.evaluator_config.code_based.lambda_config.lambda_timeout_in_seconds #=> Integer
7479
+ # resp.evaluator_config.derived.base_evaluator_id #=> String
7480
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.model_id #=> String
7481
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.inference_config.max_tokens #=> Integer
7482
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.inference_config.temperature #=> Float
7483
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.inference_config.top_p #=> Float
7484
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences #=> Array
7485
+ # resp.evaluator_config.derived.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences[0] #=> String
7486
+ # resp.evaluator_config.derived.model_config.responses_evaluator_model_config.model_id #=> String
7487
+ # resp.evaluator_config.derived.model_config.responses_evaluator_model_config.max_output_tokens #=> Integer
7488
+ # resp.evaluator_config.derived.model_config.responses_evaluator_model_config.temperature #=> Float
7489
+ # resp.evaluator_config.derived.model_config.responses_evaluator_model_config.top_p #=> Float
7490
+ # resp.evaluator_config.derived.model_config.responses_evaluator_model_config.reasoning.effort #=> String
7491
+ # resp.evaluator_type #=> String, one of "Builtin", "ThirdParty", "Custom", "CustomCode", "CustomDerived"
7492
+ # resp.provider #=> String, one of "AWS", "DeepEval", "AutoEval", "Custom"
7422
7493
  # resp.level #=> String, one of "TOOL_CALL", "TRACE", "SESSION"
7423
7494
  # resp.status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING"
7424
7495
  # resp.created_at #=> Time
@@ -8200,6 +8271,11 @@ module Aws::BedrockAgentCoreControl
8200
8271
  # resp.memory.indexed_keys #=> Array
8201
8272
  # resp.memory.indexed_keys[0].key #=> String
8202
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
8203
8279
  # resp.memory.stream_delivery_resources.resources #=> Array
8204
8280
  # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
8205
8281
  # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
@@ -9956,7 +10032,7 @@ module Aws::BedrockAgentCoreControl
9956
10032
  # resp.datasets[0].description #=> String
9957
10033
  # resp.datasets[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
9958
10034
  # resp.datasets[0].draft_status #=> String, one of "MODIFIED", "UNMODIFIED"
9959
- # resp.datasets[0].schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1"
10035
+ # resp.datasets[0].schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1", "GENERIC_EVALUATION_PREDEFINED_V1"
9960
10036
  # resp.datasets[0].example_count #=> Integer
9961
10037
  # resp.datasets[0].created_at #=> Time
9962
10038
  # resp.datasets[0].updated_at #=> Time
@@ -10002,7 +10078,8 @@ module Aws::BedrockAgentCoreControl
10002
10078
  # resp.evaluators[0].evaluator_id #=> String
10003
10079
  # resp.evaluators[0].evaluator_name #=> String
10004
10080
  # resp.evaluators[0].description #=> String
10005
- # resp.evaluators[0].evaluator_type #=> String, one of "Builtin", "Custom", "CustomCode"
10081
+ # resp.evaluators[0].evaluator_type #=> String, one of "Builtin", "ThirdParty", "Custom", "CustomCode", "CustomDerived"
10082
+ # resp.evaluators[0].provider #=> String, one of "AWS", "DeepEval", "AutoEval", "Custom"
10006
10083
  # resp.evaluators[0].level #=> String, one of "TOOL_CALL", "TRACE", "SESSION"
10007
10084
  # resp.evaluators[0].status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING"
10008
10085
  # resp.evaluators[0].created_at #=> Time
@@ -12543,6 +12620,31 @@ module Aws::BedrockAgentCoreControl
12543
12620
  # lambda_timeout_in_seconds: 1,
12544
12621
  # },
12545
12622
  # },
12623
+ # derived: {
12624
+ # base_evaluator_id: "EvaluatorId", # required
12625
+ # model_config: { # required
12626
+ # bedrock_evaluator_model_config: {
12627
+ # model_id: "ModelId", # required
12628
+ # inference_config: {
12629
+ # max_tokens: 1,
12630
+ # temperature: 1.0,
12631
+ # top_p: 1.0,
12632
+ # stop_sequences: ["NonEmptyString"],
12633
+ # },
12634
+ # additional_model_request_fields: {
12635
+ # },
12636
+ # },
12637
+ # responses_evaluator_model_config: {
12638
+ # model_id: "ModelId", # required
12639
+ # max_output_tokens: 1,
12640
+ # temperature: 1.0,
12641
+ # top_p: 1.0,
12642
+ # reasoning: {
12643
+ # effort: "ReasoningConfigurationEffortString",
12644
+ # },
12645
+ # },
12646
+ # },
12647
+ # },
12546
12648
  # },
12547
12649
  # level: "TOOL_CALL", # accepts TOOL_CALL, TRACE, SESSION
12548
12650
  # kms_key_arn: "KmsKeyArn",
@@ -12871,11 +12973,11 @@ module Aws::BedrockAgentCoreControl
12871
12973
  # The unique identifier of the rate limit to update.
12872
12974
  #
12873
12975
  # @option params [String] :description
12874
- # Optional human-readable description for this limit.
12976
+ # The updated human-readable description for this rate limit.
12875
12977
  #
12876
12978
  # @option params [required, Array<Types::LimitEntry>] :entries
12877
- # Updated rule entries. key and dimensionKeys are immutable and cannot
12878
- # be changed.
12979
+ # The updated rule entries. The dimension keys are immutable after
12980
+ # creation and cannot be changed.
12879
12981
  #
12880
12982
  # @return [Types::UpdateGatewayRateLimitResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12881
12983
  #
@@ -14132,6 +14234,11 @@ module Aws::BedrockAgentCoreControl
14132
14234
  # Additional metadata keys to index. Previously indexed keys cannot be
14133
14235
  # removed.
14134
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
+ #
14135
14242
  # @option params [Types::StreamDeliveryResources] :stream_delivery_resources
14136
14243
  # Configuration for streaming memory record data to external resources.
14137
14244
  #
@@ -14622,6 +14729,15 @@ module Aws::BedrockAgentCoreControl
14622
14729
  # type: "STRING", # required, accepts STRING, STRINGLIST, NUMBER
14623
14730
  # },
14624
14731
  # ],
14732
+ # namespace_keys: [
14733
+ # {
14734
+ # key: "NamespaceVariableKey", # required
14735
+ # validation: {
14736
+ # allowed_values: ["NamespaceAllowedValue"],
14737
+ # regex_pattern: "NamespaceRegexPattern",
14738
+ # },
14739
+ # },
14740
+ # ],
14625
14741
  # stream_delivery_resources: {
14626
14742
  # resources: [ # required
14627
14743
  # {
@@ -14738,6 +14854,11 @@ module Aws::BedrockAgentCoreControl
14738
14854
  # resp.memory.indexed_keys #=> Array
14739
14855
  # resp.memory.indexed_keys[0].key #=> String
14740
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
14741
14862
  # resp.memory.stream_delivery_resources.resources #=> Array
14742
14863
  # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
14743
14864
  # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
@@ -15536,6 +15657,18 @@ module Aws::BedrockAgentCoreControl
15536
15657
  # asynchronous operation. Use the `GetPolicy` operation to poll the
15537
15658
  # `status` field to track completion.
15538
15659
  #
15660
+ # If the updated policy is a temporal policy, the policy engine
15661
+ # invalidates all active temporal sessions. If the update adds or
15662
+ # removes temporal operators, the policy engine also invalidates active
15663
+ # temporal sessions. For more information about temporal policy
15664
+ # sessions, see [session-based temporal policies][1]. The policy engine
15665
+ # returns an HTTP 409 `ConflictException` to in-flight sessions. To
15666
+ # resume, you must start a new session with a new session ID.
15667
+ #
15668
+ #
15669
+ #
15670
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/policy-session-based-temporal.html
15671
+ #
15539
15672
  # @option params [required, String] :policy_engine_id
15540
15673
  # The identifier of the policy engine that manages the policy to be
15541
15674
  # updated. This ensures the policy is updated within the correct policy
@@ -16196,7 +16329,7 @@ module Aws::BedrockAgentCoreControl
16196
16329
  tracer: tracer
16197
16330
  )
16198
16331
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
16199
- context[:gem_version] = '1.64.0'
16332
+ context[:gem_version] = '1.66.0'
16200
16333
  Seahorse::Client::Request.new(handlers, context)
16201
16334
  end
16202
16335
 
@@ -373,6 +373,7 @@ module Aws::BedrockAgentCoreControl
373
373
  DeleteResourcePolicyResponse = Shapes::StructureShape.new(name: 'DeleteResourcePolicyResponse')
374
374
  DeleteWorkloadIdentityRequest = Shapes::StructureShape.new(name: 'DeleteWorkloadIdentityRequest')
375
375
  DeleteWorkloadIdentityResponse = Shapes::StructureShape.new(name: 'DeleteWorkloadIdentityResponse')
376
+ DerivedEvaluatorConfig = Shapes::StructureShape.new(name: 'DerivedEvaluatorConfig')
376
377
  Description = Shapes::StringShape.new(name: 'Description')
377
378
  DescriptorType = Shapes::StringShape.new(name: 'DescriptorType')
378
379
  Descriptors = Shapes::StructureShape.new(name: 'Descriptors')
@@ -897,6 +898,13 @@ module Aws::BedrockAgentCoreControl
897
898
  MountPath = Shapes::StringShape.new(name: 'MountPath')
898
899
  Name = Shapes::StringShape.new(name: 'Name')
899
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')
900
908
  NamespacesList = Shapes::ListShape.new(name: 'NamespacesList')
901
909
  NaturalLanguage = Shapes::StringShape.new(name: 'NaturalLanguage')
902
910
  NetworkConfiguration = Shapes::StructureShape.new(name: 'NetworkConfiguration')
@@ -1009,6 +1017,7 @@ module Aws::BedrockAgentCoreControl
1009
1017
  PrivateKeySource = Shapes::UnionShape.new(name: 'PrivateKeySource')
1010
1018
  Prompt = Shapes::StringShape.new(name: 'Prompt')
1011
1019
  ProtocolConfiguration = Shapes::StructureShape.new(name: 'ProtocolConfiguration')
1020
+ Provider = Shapes::StringShape.new(name: 'Provider')
1012
1021
  ProviderPrefix = Shapes::StructureShape.new(name: 'ProviderPrefix')
1013
1022
  ProviderPrefixSeparatorString = Shapes::StringShape.new(name: 'ProviderPrefixSeparatorString')
1014
1023
  PutResourcePolicyRequest = Shapes::StructureShape.new(name: 'PutResourcePolicyRequest')
@@ -2148,6 +2157,7 @@ module Aws::BedrockAgentCoreControl
2148
2157
  CreateMemoryInput.add_member(:event_expiry_duration, Shapes::ShapeRef.new(shape: CreateMemoryInputEventExpiryDurationInteger, required: true, location_name: "eventExpiryDuration"))
2149
2158
  CreateMemoryInput.add_member(:memory_strategies, Shapes::ShapeRef.new(shape: MemoryStrategyInputList, location_name: "memoryStrategies"))
2150
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"))
2151
2161
  CreateMemoryInput.add_member(:stream_delivery_resources, Shapes::ShapeRef.new(shape: StreamDeliveryResources, location_name: "streamDeliveryResources"))
2152
2162
  CreateMemoryInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
2153
2163
  CreateMemoryInput.struct_class = Types::CreateMemoryInput
@@ -2768,6 +2778,10 @@ module Aws::BedrockAgentCoreControl
2768
2778
 
2769
2779
  DeleteWorkloadIdentityResponse.struct_class = Types::DeleteWorkloadIdentityResponse
2770
2780
 
2781
+ DerivedEvaluatorConfig.add_member(:base_evaluator_id, Shapes::ShapeRef.new(shape: EvaluatorId, required: true, location_name: "baseEvaluatorId"))
2782
+ DerivedEvaluatorConfig.add_member(:model_config, Shapes::ShapeRef.new(shape: EvaluatorModelConfig, required: true, location_name: "modelConfig"))
2783
+ DerivedEvaluatorConfig.struct_class = Types::DerivedEvaluatorConfig
2784
+
2771
2785
  Descriptors.add_member(:mcp, Shapes::ShapeRef.new(shape: McpDescriptor, location_name: "mcp"))
2772
2786
  Descriptors.add_member(:a2a, Shapes::ShapeRef.new(shape: A2aDescriptor, location_name: "a2a"))
2773
2787
  Descriptors.add_member(:custom, Shapes::ShapeRef.new(shape: CustomDescriptor, location_name: "custom"))
@@ -2881,9 +2895,11 @@ module Aws::BedrockAgentCoreControl
2881
2895
 
2882
2896
  EvaluatorConfig.add_member(:llm_as_a_judge, Shapes::ShapeRef.new(shape: LlmAsAJudgeEvaluatorConfig, location_name: "llmAsAJudge"))
2883
2897
  EvaluatorConfig.add_member(:code_based, Shapes::ShapeRef.new(shape: CodeBasedEvaluatorConfig, location_name: "codeBased"))
2898
+ EvaluatorConfig.add_member(:derived, Shapes::ShapeRef.new(shape: DerivedEvaluatorConfig, location_name: "derived"))
2884
2899
  EvaluatorConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2885
2900
  EvaluatorConfig.add_member_subclass(:llm_as_a_judge, Types::EvaluatorConfig::LlmAsAJudge)
2886
2901
  EvaluatorConfig.add_member_subclass(:code_based, Types::EvaluatorConfig::CodeBased)
2902
+ EvaluatorConfig.add_member_subclass(:derived, Types::EvaluatorConfig::Derived)
2887
2903
  EvaluatorConfig.add_member_subclass(:unknown, Types::EvaluatorConfig::Unknown)
2888
2904
  EvaluatorConfig.struct_class = Types::EvaluatorConfig
2889
2905
 
@@ -2908,6 +2924,7 @@ module Aws::BedrockAgentCoreControl
2908
2924
  EvaluatorSummary.add_member(:evaluator_name, Shapes::ShapeRef.new(shape: EvaluatorName, required: true, location_name: "evaluatorName"))
2909
2925
  EvaluatorSummary.add_member(:description, Shapes::ShapeRef.new(shape: EvaluatorDescription, location_name: "description"))
2910
2926
  EvaluatorSummary.add_member(:evaluator_type, Shapes::ShapeRef.new(shape: EvaluatorType, required: true, location_name: "evaluatorType"))
2927
+ EvaluatorSummary.add_member(:provider, Shapes::ShapeRef.new(shape: Provider, location_name: "provider"))
2911
2928
  EvaluatorSummary.add_member(:level, Shapes::ShapeRef.new(shape: EvaluatorLevel, location_name: "level"))
2912
2929
  EvaluatorSummary.add_member(:status, Shapes::ShapeRef.new(shape: EvaluatorStatus, required: true, location_name: "status"))
2913
2930
  EvaluatorSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
@@ -3237,6 +3254,8 @@ module Aws::BedrockAgentCoreControl
3237
3254
  GetEvaluatorResponse.add_member(:evaluator_name, Shapes::ShapeRef.new(shape: EvaluatorName, required: true, location_name: "evaluatorName"))
3238
3255
  GetEvaluatorResponse.add_member(:description, Shapes::ShapeRef.new(shape: EvaluatorDescription, location_name: "description"))
3239
3256
  GetEvaluatorResponse.add_member(:evaluator_config, Shapes::ShapeRef.new(shape: EvaluatorConfig, required: true, location_name: "evaluatorConfig"))
3257
+ GetEvaluatorResponse.add_member(:evaluator_type, Shapes::ShapeRef.new(shape: EvaluatorType, location_name: "evaluatorType"))
3258
+ GetEvaluatorResponse.add_member(:provider, Shapes::ShapeRef.new(shape: Provider, location_name: "provider"))
3240
3259
  GetEvaluatorResponse.add_member(:level, Shapes::ShapeRef.new(shape: EvaluatorLevel, required: true, location_name: "level"))
3241
3260
  GetEvaluatorResponse.add_member(:status, Shapes::ShapeRef.new(shape: EvaluatorStatus, required: true, location_name: "status"))
3242
3261
  GetEvaluatorResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
@@ -4541,6 +4560,7 @@ module Aws::BedrockAgentCoreControl
4541
4560
  Memory.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
4542
4561
  Memory.add_member(:strategies, Shapes::ShapeRef.new(shape: MemoryStrategyList, location_name: "strategies"))
4543
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"))
4544
4564
  Memory.add_member(:stream_delivery_resources, Shapes::ShapeRef.new(shape: StreamDeliveryResources, location_name: "streamDeliveryResources"))
4545
4565
  Memory.add_member(:managed_by_resource_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "managedByResourceArn"))
4546
4566
  Memory.struct_class = Types::Memory
@@ -4677,6 +4697,18 @@ module Aws::BedrockAgentCoreControl
4677
4697
  ModifyStrategyConfiguration.add_member(:self_managed_configuration, Shapes::ShapeRef.new(shape: ModifySelfManagedConfiguration, location_name: "selfManagedConfiguration"))
4678
4698
  ModifyStrategyConfiguration.struct_class = Types::ModifyStrategyConfiguration
4679
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
+
4680
4712
  NamespacesList.member = Shapes::ShapeRef.new(shape: Namespace)
4681
4713
 
4682
4714
  NetworkConfiguration.add_member(:network_mode, Shapes::ShapeRef.new(shape: NetworkMode, required: true, location_name: "networkMode"))
@@ -5858,6 +5890,7 @@ module Aws::BedrockAgentCoreControl
5858
5890
  UpdateMemoryInput.add_member(:memory_execution_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "memoryExecutionRoleArn"))
5859
5891
  UpdateMemoryInput.add_member(:memory_strategies, Shapes::ShapeRef.new(shape: ModifyMemoryStrategies, location_name: "memoryStrategies"))
5860
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"))
5861
5894
  UpdateMemoryInput.add_member(:stream_delivery_resources, Shapes::ShapeRef.new(shape: StreamDeliveryResources, location_name: "streamDeliveryResources"))
5862
5895
  UpdateMemoryInput.struct_class = Types::UpdateMemoryInput
5863
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
@@ -6835,6 +6846,27 @@ module Aws::BedrockAgentCoreControl
6835
6846
  #
6836
6847
  class DeleteWorkloadIdentityResponse < Aws::EmptyStructure; end
6837
6848
 
6849
+ # The configuration for a derived evaluator. It reuses an existing
6850
+ # evaluator's logic on your own model.
6851
+ #
6852
+ # @!attribute [rw] base_evaluator_id
6853
+ # The identifier of the base evaluator whose logic to run (a
6854
+ # `Builtin.*` or `ThirdParty.*` evaluator).
6855
+ # @return [String]
6856
+ #
6857
+ # @!attribute [rw] model_config
6858
+ # The configuration of the evaluator model that you supply.
6859
+ # @return [Types::EvaluatorModelConfig]
6860
+ #
6861
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DerivedEvaluatorConfig AWS API Documentation
6862
+ #
6863
+ class DerivedEvaluatorConfig < Struct.new(
6864
+ :base_evaluator_id,
6865
+ :model_config)
6866
+ SENSITIVE = []
6867
+ include Aws::Structure
6868
+ end
6869
+
6838
6870
  # Contains descriptor-type-specific configurations for a registry
6839
6871
  # record. Only the descriptor matching the record's `descriptorType`
6840
6872
  # should be populated.
@@ -7450,11 +7482,18 @@ module Aws::BedrockAgentCoreControl
7450
7482
  # performance.
7451
7483
  # @return [Types::CodeBasedEvaluatorConfig]
7452
7484
  #
7485
+ # @!attribute [rw] derived
7486
+ # The configuration for an evaluator derived from an existing base
7487
+ # evaluator (a built-in or third-party evaluator), run on your own
7488
+ # model. The base evaluator supplies the prompt and scoring.
7489
+ # @return [Types::DerivedEvaluatorConfig]
7490
+ #
7453
7491
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EvaluatorConfig AWS API Documentation
7454
7492
  #
7455
7493
  class EvaluatorConfig < Struct.new(
7456
7494
  :llm_as_a_judge,
7457
7495
  :code_based,
7496
+ :derived,
7458
7497
  :unknown)
7459
7498
  SENSITIVE = []
7460
7499
  include Aws::Structure
@@ -7462,6 +7501,7 @@ module Aws::BedrockAgentCoreControl
7462
7501
 
7463
7502
  class LlmAsAJudge < EvaluatorConfig; end
7464
7503
  class CodeBased < EvaluatorConfig; end
7504
+ class Derived < EvaluatorConfig; end
7465
7505
  class Unknown < EvaluatorConfig; end
7466
7506
  end
7467
7507
 
@@ -7544,6 +7584,11 @@ module Aws::BedrockAgentCoreControl
7544
7584
  # provided by the service or a custom evaluator created by the user.
7545
7585
  # @return [String]
7546
7586
  #
7587
+ # @!attribute [rw] provider
7588
+ # The source of the evaluator's logic: Amazon Web Services, a
7589
+ # third-party library, or you.
7590
+ # @return [String]
7591
+ #
7547
7592
  # @!attribute [rw] level
7548
7593
  # The evaluation level (`TOOL_CALL`, `TRACE`, or `SESSION`) that
7549
7594
  # determines the scope of evaluation.
@@ -7580,6 +7625,7 @@ module Aws::BedrockAgentCoreControl
7580
7625
  :evaluator_name,
7581
7626
  :description,
7582
7627
  :evaluator_type,
7628
+ :provider,
7583
7629
  :level,
7584
7630
  :status,
7585
7631
  :created_at,
@@ -7890,11 +7936,11 @@ module Aws::BedrockAgentCoreControl
7890
7936
  class Unknown < GatewayProtocolConfiguration; end
7891
7937
  end
7892
7938
 
7893
- # Shared fields for GatewayRateLimit responses
7939
+ # Contains detailed information about a gateway rate limit, including
7940
+ # its configuration and current status.
7894
7941
  #
7895
7942
  # @!attribute [rw] rate_limit_id
7896
- # Limit identifier. Optional on Create (system-generates if not
7897
- # provided by customer). Always present in responses.
7943
+ # The unique identifier of the rate limit.
7898
7944
  # @return [String]
7899
7945
  #
7900
7946
  # @!attribute [rw] gateway_identifier
@@ -7902,19 +7948,21 @@ module Aws::BedrockAgentCoreControl
7902
7948
  # @return [String]
7903
7949
  #
7904
7950
  # @!attribute [rw] description
7905
- # Optional human-readable description for this limit.
7951
+ # The human-readable description of the rate limit.
7906
7952
  # @return [String]
7907
7953
  #
7908
7954
  # @!attribute [rw] dimension_keys
7909
- # 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.
7910
7957
  # @return [Array<String>]
7911
7958
  #
7912
7959
  # @!attribute [rw] entries
7913
- # List of rule entries within a limit
7960
+ # The list of rule entries that map dimension values to rate
7961
+ # configurations.
7914
7962
  # @return [Array<Types::LimitEntry>]
7915
7963
  #
7916
7964
  # @!attribute [rw] status
7917
- # Status of a gateway limit
7965
+ # The current status of the rate limit.
7918
7966
  # @return [String]
7919
7967
  #
7920
7968
  # @!attribute [rw] created_at
@@ -9063,6 +9111,27 @@ module Aws::BedrockAgentCoreControl
9063
9111
  # code-based settings.
9064
9112
  # @return [Types::EvaluatorConfig]
9065
9113
  #
9114
+ # @!attribute [rw] evaluator_type
9115
+ # The kind of evaluator resource. Valid values:
9116
+ #
9117
+ # * `Builtin` – An Amazon Web Services-managed global evaluator.
9118
+ #
9119
+ # * `ThirdParty` – An Amazon Web Services-managed global evaluator
9120
+ # from a third-party provider.
9121
+ #
9122
+ # * `Custom` – A customer-created evaluator.
9123
+ #
9124
+ # * `CustomCode` – A customer-created code-based evaluator.
9125
+ #
9126
+ # * `CustomDerived` – A customer-created evaluator derived from an
9127
+ # existing base evaluator.
9128
+ # @return [String]
9129
+ #
9130
+ # @!attribute [rw] provider
9131
+ # The source of the evaluator's logic: Amazon Web Services, a
9132
+ # third-party library, or you.
9133
+ # @return [String]
9134
+ #
9066
9135
  # @!attribute [rw] level
9067
9136
  # The evaluation level (`TOOL_CALL`, `TRACE`, or `SESSION`) that
9068
9137
  # determines the scope of evaluation.
@@ -9099,6 +9168,8 @@ module Aws::BedrockAgentCoreControl
9099
9168
  :evaluator_name,
9100
9169
  :description,
9101
9170
  :evaluator_config,
9171
+ :evaluator_type,
9172
+ :provider,
9102
9173
  :level,
9103
9174
  :status,
9104
9175
  :created_at,
@@ -9126,11 +9197,10 @@ module Aws::BedrockAgentCoreControl
9126
9197
  include Aws::Structure
9127
9198
  end
9128
9199
 
9129
- # Shared fields for GatewayRateLimit responses
9200
+ # Shared fields for `GatewayRateLimit` responses.
9130
9201
  #
9131
9202
  # @!attribute [rw] rate_limit_id
9132
- # Limit identifier. Optional on Create (system-generates if not
9133
- # provided by customer). Always present in responses.
9203
+ # The unique identifier of the rate limit.
9134
9204
  # @return [String]
9135
9205
  #
9136
9206
  # @!attribute [rw] gateway_identifier
@@ -9138,19 +9208,21 @@ module Aws::BedrockAgentCoreControl
9138
9208
  # @return [String]
9139
9209
  #
9140
9210
  # @!attribute [rw] description
9141
- # Optional human-readable description for this limit.
9211
+ # The human-readable description of the rate limit.
9142
9212
  # @return [String]
9143
9213
  #
9144
9214
  # @!attribute [rw] dimension_keys
9145
- # 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.
9146
9217
  # @return [Array<String>]
9147
9218
  #
9148
9219
  # @!attribute [rw] entries
9149
- # List of rule entries within a limit
9220
+ # The list of rule entries that map dimension values to rate
9221
+ # configurations.
9150
9222
  # @return [Array<Types::LimitEntry>]
9151
9223
  #
9152
9224
  # @!attribute [rw] status
9153
- # Status of a gateway limit
9225
+ # The current status of the rate limit.
9154
9226
  # @return [String]
9155
9227
  #
9156
9228
  # @!attribute [rw] created_at
@@ -12944,27 +13016,30 @@ module Aws::BedrockAgentCoreControl
12944
13016
  include Aws::Structure
12945
13017
  end
12946
13018
 
12947
- # A single rule entry within a limit, mapping dimension values to rate
12948
- # 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.
12949
13022
  #
12950
13023
  # @!attribute [rw] dimensions
12951
- # Map of dimension name to dimension value, matching the parent
12952
- # limit's dimensionKeys. Keys must exactly match the dimensionKeys.
12953
- # Values may be "*" as a wildcard. "*" may only appear at trailing
12954
- # 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.
12955
13028
  # @return [Hash<String,String>]
12956
13029
  #
12957
13030
  # @!attribute [rw] requests
12958
- # 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.
12959
13033
  # @return [Array<Types::RateConfig>]
12960
13034
  #
12961
13035
  # @!attribute [rw] tokens
12962
- # 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.
12963
13038
  # @return [Array<Types::RateConfig>]
12964
13039
  #
12965
13040
  # @!attribute [rw] connections
12966
- # Connection rate limits (per second only). Limited to 1 entry for
12967
- # now. P2
13041
+ # The connection rate limit configuration. Specifies the maximum
13042
+ # number of concurrent connections allowed.
12968
13043
  # @return [Array<Types::RateConfig>]
12969
13044
  #
12970
13045
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LimitEntry AWS API Documentation
@@ -15235,6 +15310,12 @@ module Aws::BedrockAgentCoreControl
15235
15310
  # used in metadata filters.
15236
15311
  # @return [Array<Types::IndexedKey>]
15237
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
+ #
15238
15319
  # @!attribute [rw] stream_delivery_resources
15239
15320
  # Configuration for streaming memory record data to external
15240
15321
  # resources.
@@ -15262,6 +15343,7 @@ module Aws::BedrockAgentCoreControl
15262
15343
  :updated_at,
15263
15344
  :strategies,
15264
15345
  :indexed_keys,
15346
+ :namespace_keys,
15265
15347
  :stream_delivery_resources,
15266
15348
  :managed_by_resource_arn)
15267
15349
  SENSITIVE = [:description]
@@ -15818,6 +15900,48 @@ module Aws::BedrockAgentCoreControl
15818
15900
  include Aws::Structure
15819
15901
  end
15820
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
+
15821
15945
  # SecurityConfig for the Agent.
15822
15946
  #
15823
15947
  # @!attribute [rw] network_mode
@@ -17221,10 +17345,8 @@ module Aws::BedrockAgentCoreControl
17221
17345
  include Aws::Structure
17222
17346
  end
17223
17347
 
17224
- # Configuration for private\_key\_jwt client authentication (RFC 7523).
17225
- # On Create: privateKeySource and signingAlgorithm are required
17226
- # (enforced server-side). On Update: all fields are optional — only
17227
- # provided fields are updated.
17348
+ # The private key configuration for private\_key\_jwt client
17349
+ # authentication.
17228
17350
  #
17229
17351
  # @!attribute [rw] private_key_source
17230
17352
  # The private key source for the JWT client assertion.
@@ -17352,7 +17474,8 @@ module Aws::BedrockAgentCoreControl
17352
17474
  include Aws::Structure
17353
17475
  end
17354
17476
 
17355
- # 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.
17356
17479
  #
17357
17480
  # @!attribute [rw] rate
17358
17481
  # The rate value for the limit. For request limits, this is the number
@@ -17362,7 +17485,11 @@ module Aws::BedrockAgentCoreControl
17362
17485
  # @return [Float]
17363
17486
  #
17364
17487
  # @!attribute [rw] period
17365
- # 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.
17366
17493
  # @return [String]
17367
17494
  #
17368
17495
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RateConfig AWS API Documentation
@@ -20565,12 +20692,12 @@ module Aws::BedrockAgentCoreControl
20565
20692
  # @return [String]
20566
20693
  #
20567
20694
  # @!attribute [rw] description
20568
- # Optional human-readable description for this limit.
20695
+ # The updated human-readable description for this rate limit.
20569
20696
  # @return [String]
20570
20697
  #
20571
20698
  # @!attribute [rw] entries
20572
- # Updated rule entries. key and dimensionKeys are immutable and cannot
20573
- # be changed.
20699
+ # The updated rule entries. The dimension keys are immutable after
20700
+ # creation and cannot be changed.
20574
20701
  # @return [Array<Types::LimitEntry>]
20575
20702
  #
20576
20703
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRateLimitRequest AWS API Documentation
@@ -20584,11 +20711,10 @@ module Aws::BedrockAgentCoreControl
20584
20711
  include Aws::Structure
20585
20712
  end
20586
20713
 
20587
- # Shared fields for GatewayRateLimit responses
20714
+ # Shared fields for `GatewayRateLimit` responses.
20588
20715
  #
20589
20716
  # @!attribute [rw] rate_limit_id
20590
- # Limit identifier. Optional on Create (system-generates if not
20591
- # provided by customer). Always present in responses.
20717
+ # The unique identifier of the rate limit.
20592
20718
  # @return [String]
20593
20719
  #
20594
20720
  # @!attribute [rw] gateway_identifier
@@ -20596,19 +20722,21 @@ module Aws::BedrockAgentCoreControl
20596
20722
  # @return [String]
20597
20723
  #
20598
20724
  # @!attribute [rw] description
20599
- # Optional human-readable description for this limit.
20725
+ # The human-readable description of the rate limit.
20600
20726
  # @return [String]
20601
20727
  #
20602
20728
  # @!attribute [rw] dimension_keys
20603
- # 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.
20604
20731
  # @return [Array<String>]
20605
20732
  #
20606
20733
  # @!attribute [rw] entries
20607
- # List of rule entries within a limit
20734
+ # The list of rule entries that map dimension values to rate
20735
+ # configurations.
20608
20736
  # @return [Array<Types::LimitEntry>]
20609
20737
  #
20610
20738
  # @!attribute [rw] status
20611
- # Status of a gateway limit
20739
+ # The current status of the rate limit.
20612
20740
  # @return [String]
20613
20741
  #
20614
20742
  # @!attribute [rw] created_at
@@ -21313,6 +21441,12 @@ module Aws::BedrockAgentCoreControl
21313
21441
  # removed.
21314
21442
  # @return [Array<Types::IndexedKey>]
21315
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
+ #
21316
21450
  # @!attribute [rw] stream_delivery_resources
21317
21451
  # Configuration for streaming memory record data to external
21318
21452
  # resources.
@@ -21328,6 +21462,7 @@ module Aws::BedrockAgentCoreControl
21328
21462
  :memory_execution_role_arn,
21329
21463
  :memory_strategies,
21330
21464
  :add_indexed_keys,
21465
+ :namespace_keys,
21331
21466
  :stream_delivery_resources)
21332
21467
  SENSITIVE = [:description]
21333
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.64.0'
58
+ GEM_VERSION = '1.66.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -444,7 +444,7 @@ module Aws
444
444
  dataset_name: ::String,
445
445
  ?description: ::String,
446
446
  source: Params::data_source_type,
447
- schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1"),
447
+ schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1"),
448
448
  ?kms_key_arn: ::String,
449
449
  ?tags: Hash[::String, ::String]
450
450
  ) -> _CreateDatasetResponseSuccess
@@ -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
@@ -1521,7 +1530,7 @@ module Aws
1521
1530
  def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1522
1531
  def draft_status: () -> ("MODIFIED" | "UNMODIFIED")
1523
1532
  def failure_reason: () -> ::String
1524
- def schema_type: () -> ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
1533
+ def schema_type: () -> ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1")
1525
1534
  def kms_key_arn: () -> ::String
1526
1535
  def example_count: () -> ::Integer
1527
1536
  def download_url: () -> ::String
@@ -1544,6 +1553,8 @@ module Aws
1544
1553
  def evaluator_name: () -> ::String
1545
1554
  def description: () -> ::String
1546
1555
  def evaluator_config: () -> Types::EvaluatorConfig
1556
+ def evaluator_type: () -> ("Builtin" | "ThirdParty" | "Custom" | "CustomCode" | "CustomDerived")
1557
+ def provider: () -> ("AWS" | "DeepEval" | "AutoEval" | "Custom")
1547
1558
  def level: () -> ("TOOL_CALL" | "TRACE" | "SESSION")
1548
1559
  def status: () -> ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
1549
1560
  def created_at: () -> ::Time
@@ -3056,6 +3067,15 @@ module Aws
3056
3067
  type: ("STRING" | "STRINGLIST" | "NUMBER")
3057
3068
  }
3058
3069
  ],
3070
+ ?namespace_keys: Array[
3071
+ {
3072
+ key: ::String,
3073
+ validation: {
3074
+ allowed_values: Array[::String]?,
3075
+ regex_pattern: ::String?
3076
+ }?
3077
+ }
3078
+ ],
3059
3079
  ?stream_delivery_resources: Params::stream_delivery_resources
3060
3080
  ) -> _UpdateMemoryResponseSuccess
3061
3081
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMemoryResponseSuccess
data/sig/params.rbs CHANGED
@@ -210,6 +210,11 @@ module Aws
210
210
  model_config: Params::evaluator_model_config
211
211
  }
212
212
 
213
+ type derived_evaluator_config = {
214
+ base_evaluator_id: ::String,
215
+ model_config: Params::evaluator_model_config
216
+ }
217
+
213
218
  type evaluator_config = {
214
219
  llm_as_a_judge: Params::llm_as_a_judge_evaluator_config?,
215
220
  code_based: {
@@ -217,7 +222,8 @@ module Aws
217
222
  lambda_arn: ::String,
218
223
  lambda_timeout_in_seconds: ::Integer?
219
224
  }?
220
- }?
225
+ }?,
226
+ derived: Params::derived_evaluator_config?
221
227
  }
222
228
 
223
229
  type mcp_gateway_configuration = {
data/sig/types.rbs CHANGED
@@ -757,7 +757,7 @@ module Aws::BedrockAgentCoreControl
757
757
  attr_accessor dataset_name: ::String
758
758
  attr_accessor description: ::String
759
759
  attr_accessor source: Types::DataSourceType
760
- attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
760
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1")
761
761
  attr_accessor kms_key_arn: ::String
762
762
  attr_accessor tags: ::Hash[::String, ::String]
763
763
  SENSITIVE: []
@@ -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]
@@ -1447,7 +1448,7 @@ module Aws::BedrockAgentCoreControl
1447
1448
  attr_accessor description: ::String
1448
1449
  attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1449
1450
  attr_accessor draft_status: ("MODIFIED" | "UNMODIFIED")
1450
- attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
1451
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1")
1451
1452
  attr_accessor example_count: ::Integer
1452
1453
  attr_accessor created_at: ::Time
1453
1454
  attr_accessor updated_at: ::Time
@@ -1827,6 +1828,12 @@ module Aws::BedrockAgentCoreControl
1827
1828
  class DeleteWorkloadIdentityResponse < Aws::EmptyStructure
1828
1829
  end
1829
1830
 
1831
+ class DerivedEvaluatorConfig
1832
+ attr_accessor base_evaluator_id: ::String
1833
+ attr_accessor model_config: Types::EvaluatorModelConfig
1834
+ SENSITIVE: []
1835
+ end
1836
+
1830
1837
  class Descriptors
1831
1838
  attr_accessor mcp: Types::McpDescriptor
1832
1839
  attr_accessor a2a: Types::A2aDescriptor
@@ -1970,6 +1977,7 @@ module Aws::BedrockAgentCoreControl
1970
1977
  class EvaluatorConfig
1971
1978
  attr_accessor llm_as_a_judge: Types::LlmAsAJudgeEvaluatorConfig
1972
1979
  attr_accessor code_based: Types::CodeBasedEvaluatorConfig
1980
+ attr_accessor derived: Types::DerivedEvaluatorConfig
1973
1981
  attr_accessor unknown: untyped
1974
1982
  SENSITIVE: []
1975
1983
 
@@ -1977,6 +1985,8 @@ module Aws::BedrockAgentCoreControl
1977
1985
  end
1978
1986
  class CodeBased < EvaluatorConfig
1979
1987
  end
1988
+ class Derived < EvaluatorConfig
1989
+ end
1980
1990
  class Unknown < EvaluatorConfig
1981
1991
  end
1982
1992
  end
@@ -2011,7 +2021,8 @@ module Aws::BedrockAgentCoreControl
2011
2021
  attr_accessor evaluator_id: ::String
2012
2022
  attr_accessor evaluator_name: ::String
2013
2023
  attr_accessor description: ::String
2014
- attr_accessor evaluator_type: ("Builtin" | "Custom" | "CustomCode")
2024
+ attr_accessor evaluator_type: ("Builtin" | "ThirdParty" | "Custom" | "CustomCode" | "CustomDerived")
2025
+ attr_accessor provider: ("AWS" | "DeepEval" | "AutoEval" | "Custom")
2015
2026
  attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
2016
2027
  attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
2017
2028
  attr_accessor created_at: ::Time
@@ -2388,7 +2399,7 @@ module Aws::BedrockAgentCoreControl
2388
2399
  attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2389
2400
  attr_accessor draft_status: ("MODIFIED" | "UNMODIFIED")
2390
2401
  attr_accessor failure_reason: ::String
2391
- attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
2402
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1")
2392
2403
  attr_accessor kms_key_arn: ::String
2393
2404
  attr_accessor example_count: ::Integer
2394
2405
  attr_accessor download_url: ::String
@@ -2411,6 +2422,8 @@ module Aws::BedrockAgentCoreControl
2411
2422
  attr_accessor evaluator_name: ::String
2412
2423
  attr_accessor description: ::String
2413
2424
  attr_accessor evaluator_config: Types::EvaluatorConfig
2425
+ attr_accessor evaluator_type: ("Builtin" | "ThirdParty" | "Custom" | "CustomCode" | "CustomDerived")
2426
+ attr_accessor provider: ("AWS" | "DeepEval" | "AutoEval" | "Custom")
2414
2427
  attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
2415
2428
  attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
2416
2429
  attr_accessor created_at: ::Time
@@ -4168,6 +4181,7 @@ module Aws::BedrockAgentCoreControl
4168
4181
  attr_accessor updated_at: ::Time
4169
4182
  attr_accessor strategies: ::Array[Types::MemoryStrategy]
4170
4183
  attr_accessor indexed_keys: ::Array[Types::IndexedKey]
4184
+ attr_accessor namespace_keys: ::Array[Types::NamespaceKeyEntry]
4171
4185
  attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
4172
4186
  attr_accessor managed_by_resource_arn: ::String
4173
4187
  SENSITIVE: [:description]
@@ -4350,6 +4364,18 @@ module Aws::BedrockAgentCoreControl
4350
4364
  SENSITIVE: []
4351
4365
  end
4352
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
+
4353
4379
  class NetworkConfiguration
4354
4380
  attr_accessor network_mode: ("PUBLIC" | "VPC")
4355
4381
  attr_accessor network_mode_config: Types::VpcConfig
@@ -5865,6 +5891,7 @@ module Aws::BedrockAgentCoreControl
5865
5891
  attr_accessor memory_execution_role_arn: ::String
5866
5892
  attr_accessor memory_strategies: Types::ModifyMemoryStrategies
5867
5893
  attr_accessor add_indexed_keys: ::Array[Types::IndexedKey]
5894
+ attr_accessor namespace_keys: ::Array[Types::NamespaceKeyEntry]
5868
5895
  attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
5869
5896
  SENSITIVE: [:description]
5870
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.64.0
4
+ version: 1.66.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services