aws-sdk-bedrockagentcorecontrol 1.66.0 → 1.68.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: 20114035ceba98dc7d6444c3633a65f57102f11f47ef11c640883edea5b7f208
4
- data.tar.gz: 5861f438390825479ce682a74b3a01209319779f7d7147019490a4f759d1df68
3
+ metadata.gz: df3dca5e59c839473d19f04538f2240737e16f411fb95740412d585b04c03b28
4
+ data.tar.gz: 5901740c794fa61d97dbbe1c7d4d34be65db54a6ca66acb0fd0083c7d3ebffa6
5
5
  SHA512:
6
- metadata.gz: 28faffe37c6b55de97746c231c9308e5a94c38e569965826783addcb95b6c8d704ce774755346a93b6b1fea8763a7c6444d7288c046b7a7b171d5f318661e138
7
- data.tar.gz: '06872cfa1ad832d3de119022478cba97f984ca07dc514168f735ff87383912eddce4849b0b20328b4764b000d5d43bd4f975109d03a16308febd2aed3c343e5a'
6
+ metadata.gz: ef977f9ac563b15e15ad31c63d34e836817e493917066027d62b0c630b55c8494f3fc650419f96177283ed8b91144efa747acab4deea03470df1659482cffb38
7
+ data.tar.gz: 522256650b8c5bee01a83f765b41d7e78048494c529372c314a77f3d8648bb6c630d05555a5979f42b31729284fd86809a6717cfaf81c8b61572d1b815ccecaa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2026-09-01)
5
+ ------------------
6
+
7
+ * Feature - Online evaluation configurations now support up to 25 evaluators. CloudWatch Logs data sources for online evaluation now support up to 10 log groups.
8
+
9
+ 1.67.0 (2026-08-21)
10
+ ------------------
11
+
12
+ * Feature - Update Dataset schema to THIRDPARTYEVALUATIONV1
13
+
4
14
  1.66.0 (2026-08-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -1638,7 +1638,7 @@ module Aws::BedrockAgentCoreControl
1638
1638
  # s3_uri: "S3Uri", # required
1639
1639
  # },
1640
1640
  # },
1641
- # schema_type: "AGENTCORE_EVALUATION_PREDEFINED_V1", # required, accepts AGENTCORE_EVALUATION_PREDEFINED_V1, AGENTCORE_EVALUATION_SIMULATED_V1, GENERIC_EVALUATION_PREDEFINED_V1
1641
+ # schema_type: "AGENTCORE_EVALUATION_PREDEFINED_V1", # required, accepts AGENTCORE_EVALUATION_PREDEFINED_V1, AGENTCORE_EVALUATION_SIMULATED_V1, THIRD_PARTY_EVALUATION_V1
1642
1642
  # kms_key_arn: "KmsKeyArn",
1643
1643
  # tags: {
1644
1644
  # "TagKey" => "TagValue",
@@ -2680,7 +2680,12 @@ module Aws::BedrockAgentCoreControl
2680
2680
  # stickiness_configuration: {
2681
2681
  # identifier: "StickinessConfigurationIdentifierString", # required
2682
2682
  # timeout: 1,
2683
+ # composite_identifier: ["CompositeIdentifierEntry"],
2683
2684
  # },
2685
+ # static_query_parameters: {
2686
+ # "StaticQueryParameterName" => "StaticQueryParameterValue",
2687
+ # },
2688
+ # static_query_parameter_conflict_resolution: "CLIENT_OVERRIDE", # accepts CLIENT_OVERRIDE, STATIC_OVERRIDE
2684
2689
  # },
2685
2690
  # connector: {
2686
2691
  # source: { # required
@@ -2844,6 +2849,11 @@ module Aws::BedrockAgentCoreControl
2844
2849
  # resp.target_configuration.http.passthrough.schema.source.inline_payload #=> String
2845
2850
  # resp.target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
2846
2851
  # resp.target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
2852
+ # resp.target_configuration.http.passthrough.stickiness_configuration.composite_identifier #=> Array
2853
+ # resp.target_configuration.http.passthrough.stickiness_configuration.composite_identifier[0] #=> String
2854
+ # resp.target_configuration.http.passthrough.static_query_parameters #=> Hash
2855
+ # resp.target_configuration.http.passthrough.static_query_parameters["StaticQueryParameterName"] #=> String
2856
+ # resp.target_configuration.http.passthrough.static_query_parameter_conflict_resolution #=> String, one of "CLIENT_OVERRIDE", "STATIC_OVERRIDE"
2847
2857
  # resp.target_configuration.http.connector.source.connector_id #=> String
2848
2858
  # resp.target_configuration.http.connector.parameters #=> Hash
2849
2859
  # resp.target_configuration.http.connector.parameters["ConnectorParameterName"] #=> String
@@ -4881,15 +4891,15 @@ module Aws::BedrockAgentCoreControl
4881
4891
 
4882
4892
  # Creates a policy within the AgentCore Policy system. Policies provide
4883
4893
  # real-time, deterministic control over agentic interactions with
4884
- # AgentCore Gateway. Using the Cedar policy language, you can define
4885
- # fine-grained policies that specify which interactions with Gateway
4886
- # tools are permitted based on input parameters and OAuth claims,
4887
- # ensuring agents operate within defined boundaries and business rules.
4888
- # The policy is validated during creation against the Cedar schema
4889
- # generated from the Gateway's tools' input schemas, which defines the
4890
- # available tools, their parameters, and expected data types. This is an
4891
- # asynchronous operation. Use the [GetPolicy][1] operation to poll the
4892
- # `status` field to track completion.
4894
+ # AgentCore Gateway. Using Cedar or Dogwood, you can define fine-grained
4895
+ # policies that specify which interactions with Gateway tools are
4896
+ # permitted based on input parameters and OAuth claims, ensuring agents
4897
+ # operate within defined boundaries and business rules. The policy is
4898
+ # validated during creation against the Cedar schema generated from the
4899
+ # Gateway's tools' input schemas, which defines the available tools,
4900
+ # their parameters, and expected data types. This is an asynchronous
4901
+ # operation. Use the [GetPolicy][1] operation to poll the `status` field
4902
+ # to track completion.
4893
4903
  #
4894
4904
  # If the new policy is a temporal policy, creating it invalidates the
4895
4905
  # policy engine's active temporal sessions. For more information about
@@ -4909,10 +4919,10 @@ module Aws::BedrockAgentCoreControl
4909
4919
  # cannot be changed after creation.
4910
4920
  #
4911
4921
  # @option params [required, Types::PolicyDefinition] :definition
4912
- # The Cedar policy statement that defines the access control rules. This
4913
- # contains the actual policy logic written in Cedar policy language,
4914
- # specifying effect (permit or forbid), principals, actions, resources,
4915
- # and conditions for agent behavior control.
4922
+ # The Cedar or Dogwood policy statement that defines the access control
4923
+ # rules. This contains the actual policy logic written in Cedar or
4924
+ # Dogwood, specifying effect (permit or forbid), principals, actions,
4925
+ # resources, and conditions for agent behavior control.
4916
4926
  #
4917
4927
  # @option params [String] :description
4918
4928
  # A human-readable description of the policy's purpose and
@@ -6286,7 +6296,8 @@ module Aws::BedrockAgentCoreControl
6286
6296
  req.send_request(options)
6287
6297
  end
6288
6298
 
6289
- # Deletes an Amazon Bedrock AgentCore Memory resource.
6299
+ # Deletes an Amazon Bedrock AgentCore Memory resource. When you delete a
6300
+ # memory resource, it is permanently removed.
6290
6301
  #
6291
6302
  # @option params [String] :client_token
6292
6303
  # A client token is used for keeping track of idempotent requests. It
@@ -7391,7 +7402,7 @@ module Aws::BedrockAgentCoreControl
7391
7402
  # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
7392
7403
  # resp.draft_status #=> String, one of "MODIFIED", "UNMODIFIED"
7393
7404
  # resp.failure_reason #=> String
7394
- # resp.schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1", "GENERIC_EVALUATION_PREDEFINED_V1"
7405
+ # resp.schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1", "THIRD_PARTY_EVALUATION_V1"
7395
7406
  # resp.kms_key_arn #=> String
7396
7407
  # resp.example_count #=> Integer
7397
7408
  # resp.download_url #=> String
@@ -7872,6 +7883,11 @@ module Aws::BedrockAgentCoreControl
7872
7883
  # resp.target_configuration.http.passthrough.schema.source.inline_payload #=> String
7873
7884
  # resp.target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
7874
7885
  # resp.target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
7886
+ # resp.target_configuration.http.passthrough.stickiness_configuration.composite_identifier #=> Array
7887
+ # resp.target_configuration.http.passthrough.stickiness_configuration.composite_identifier[0] #=> String
7888
+ # resp.target_configuration.http.passthrough.static_query_parameters #=> Hash
7889
+ # resp.target_configuration.http.passthrough.static_query_parameters["StaticQueryParameterName"] #=> String
7890
+ # resp.target_configuration.http.passthrough.static_query_parameter_conflict_resolution #=> String, one of "CLIENT_OVERRIDE", "STATIC_OVERRIDE"
7875
7891
  # resp.target_configuration.http.connector.source.connector_id #=> String
7876
7892
  # resp.target_configuration.http.connector.parameters #=> Hash
7877
7893
  # resp.target_configuration.http.connector.parameters["ConnectorParameterName"] #=> String
@@ -8905,7 +8921,7 @@ module Aws::BedrockAgentCoreControl
8905
8921
 
8906
8922
  # Retrieves information about a policy generation request within the
8907
8923
  # AgentCore Policy system. Policy generation converts natural language
8908
- # descriptions into Cedar policy statements using AI-powered
8924
+ # descriptions into Dogwood policy statements using AI-powered
8909
8925
  # translation, enabling non-technical users to create policies.
8910
8926
  #
8911
8927
  # @option params [required, String] :policy_generation_id
@@ -10032,7 +10048,7 @@ module Aws::BedrockAgentCoreControl
10032
10048
  # resp.datasets[0].description #=> String
10033
10049
  # resp.datasets[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "ACTIVE", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
10034
10050
  # resp.datasets[0].draft_status #=> String, one of "MODIFIED", "UNMODIFIED"
10035
- # resp.datasets[0].schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1", "GENERIC_EVALUATION_PREDEFINED_V1"
10051
+ # resp.datasets[0].schema_type #=> String, one of "AGENTCORE_EVALUATION_PREDEFINED_V1", "AGENTCORE_EVALUATION_SIMULATED_V1", "THIRD_PARTY_EVALUATION_V1"
10036
10052
  # resp.datasets[0].example_count #=> Integer
10037
10053
  # resp.datasets[0].created_at #=> Time
10038
10054
  # resp.datasets[0].updated_at #=> Time
@@ -10959,9 +10975,9 @@ module Aws::BedrockAgentCoreControl
10959
10975
 
10960
10976
  # Retrieves a list of generated policy assets from a policy generation
10961
10977
  # request within the AgentCore Policy system. This operation returns the
10962
- # actual Cedar policies and related artifacts produced by the AI-powered
10963
- # policy generation process, allowing users to review and select from
10964
- # multiple generated policy options.
10978
+ # actual Dogwood policies and related artifacts produced by the
10979
+ # AI-powered policy generation process, allowing users to review and
10980
+ # select from multiple generated policy options.
10965
10981
  #
10966
10982
  # @option params [required, String] :policy_generation_id
10967
10983
  # The unique identifier of the policy generation request whose assets
@@ -11516,20 +11532,20 @@ module Aws::BedrockAgentCoreControl
11516
11532
  req.send_request(options)
11517
11533
  end
11518
11534
 
11519
- # Initiates the AI-powered generation of Cedar policies from natural
11535
+ # Initiates the AI-powered generation of Dogwood policies from natural
11520
11536
  # language descriptions within the AgentCore Policy system. This feature
11521
11537
  # enables both technical and non-technical users to create policies by
11522
11538
  # describing their authorization requirements in plain English, which is
11523
- # then automatically translated into formal Cedar policy statements. The
11524
- # generation process analyzes the natural language input along with the
11525
- # Gateway's tool context to produce validated policy options. Generated
11526
- # policy assets are automatically deleted after 7 days, so you should
11527
- # review and create policies from the generated assets within this
11528
- # timeframe. Once created, policies are permanent and not subject to
11529
- # this expiration. Generated policies should be reviewed and tested in
11530
- # log-only mode before deploying to production. Use this when you want
11531
- # to describe policy intent naturally rather than learning Cedar syntax,
11532
- # though generated policies may require refinement for complex
11539
+ # then automatically translated into formal Dogwood policy statements.
11540
+ # The generation process analyzes the natural language input along with
11541
+ # the Gateway's tool context to produce validated policy options.
11542
+ # Generated policy assets are automatically deleted after 7 days, so you
11543
+ # should review and create policies from the generated assets within
11544
+ # this timeframe. Once created, policies are permanent and not subject
11545
+ # to this expiration. Generated policies should be reviewed and tested
11546
+ # in log-only mode before deploying to production. Use this when you
11547
+ # want to describe policy intent naturally rather than learning Dogwood
11548
+ # syntax, though generated policies may require refinement for complex
11533
11549
  # scenarios.
11534
11550
  #
11535
11551
  # @option params [required, String] :policy_engine_id
@@ -11544,7 +11560,7 @@ module Aws::BedrockAgentCoreControl
11544
11560
  #
11545
11561
  # @option params [required, Types::Content] :content
11546
11562
  # The natural language description of the desired policy behavior. This
11547
- # content is processed by AI to generate corresponding Cedar policy
11563
+ # content is processed by AI to generate corresponding Dogwood policy
11548
11564
  # statements that match the described intent.
11549
11565
  #
11550
11566
  # @option params [required, String] :name
@@ -11763,6 +11779,11 @@ module Aws::BedrockAgentCoreControl
11763
11779
  # resp.targets[0].target_configuration.http.passthrough.schema.source.inline_payload #=> String
11764
11780
  # resp.targets[0].target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
11765
11781
  # resp.targets[0].target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
11782
+ # resp.targets[0].target_configuration.http.passthrough.stickiness_configuration.composite_identifier #=> Array
11783
+ # resp.targets[0].target_configuration.http.passthrough.stickiness_configuration.composite_identifier[0] #=> String
11784
+ # resp.targets[0].target_configuration.http.passthrough.static_query_parameters #=> Hash
11785
+ # resp.targets[0].target_configuration.http.passthrough.static_query_parameters["StaticQueryParameterName"] #=> String
11786
+ # resp.targets[0].target_configuration.http.passthrough.static_query_parameter_conflict_resolution #=> String, one of "CLIENT_OVERRIDE", "STATIC_OVERRIDE"
11766
11787
  # resp.targets[0].target_configuration.http.connector.source.connector_id #=> String
11767
11788
  # resp.targets[0].target_configuration.http.connector.parameters #=> Hash
11768
11789
  # resp.targets[0].target_configuration.http.connector.parameters["ConnectorParameterName"] #=> String
@@ -12326,7 +12347,7 @@ module Aws::BedrockAgentCoreControl
12326
12347
  # The updated component configurations. Creates a new version of the
12327
12348
  # bundle.
12328
12349
  #
12329
- # @option params [Array<String>] :parent_version_ids
12350
+ # @option params [required, Array<String>] :parent_version_ids
12330
12351
  # A list of parent version identifiers for lineage tracking. Regular
12331
12352
  # commits have a single parent. Merge commits have two parents: the
12332
12353
  # target branch parent and the source branch parent. If the branch
@@ -12369,7 +12390,7 @@ module Aws::BedrockAgentCoreControl
12369
12390
  # },
12370
12391
  # },
12371
12392
  # },
12372
- # parent_version_ids: ["ConfigurationBundleVersion"],
12393
+ # parent_version_ids: ["ConfigurationBundleVersion"], # required
12373
12394
  # branch_name: "BranchName",
12374
12395
  # commit_message: "UpdateConfigurationBundleRequestCommitMessageString",
12375
12396
  # created_by: {
@@ -13405,7 +13426,12 @@ module Aws::BedrockAgentCoreControl
13405
13426
  # stickiness_configuration: {
13406
13427
  # identifier: "StickinessConfigurationIdentifierString", # required
13407
13428
  # timeout: 1,
13429
+ # composite_identifier: ["CompositeIdentifierEntry"],
13430
+ # },
13431
+ # static_query_parameters: {
13432
+ # "StaticQueryParameterName" => "StaticQueryParameterValue",
13408
13433
  # },
13434
+ # static_query_parameter_conflict_resolution: "CLIENT_OVERRIDE", # accepts CLIENT_OVERRIDE, STATIC_OVERRIDE
13409
13435
  # },
13410
13436
  # connector: {
13411
13437
  # source: { # required
@@ -13569,6 +13595,11 @@ module Aws::BedrockAgentCoreControl
13569
13595
  # resp.target_configuration.http.passthrough.schema.source.inline_payload #=> String
13570
13596
  # resp.target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
13571
13597
  # resp.target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
13598
+ # resp.target_configuration.http.passthrough.stickiness_configuration.composite_identifier #=> Array
13599
+ # resp.target_configuration.http.passthrough.stickiness_configuration.composite_identifier[0] #=> String
13600
+ # resp.target_configuration.http.passthrough.static_query_parameters #=> Hash
13601
+ # resp.target_configuration.http.passthrough.static_query_parameters["StaticQueryParameterName"] #=> String
13602
+ # resp.target_configuration.http.passthrough.static_query_parameter_conflict_resolution #=> String, one of "CLIENT_OVERRIDE", "STATIC_OVERRIDE"
13572
13603
  # resp.target_configuration.http.connector.source.connector_id #=> String
13573
13604
  # resp.target_configuration.http.connector.parameters #=> Hash
13574
13605
  # resp.target_configuration.http.connector.parameters["ConnectorParameterName"] #=> String
@@ -14236,8 +14267,9 @@ module Aws::BedrockAgentCoreControl
14236
14267
  #
14237
14268
  # @option params [Array<Types::NamespaceKeyEntry>] :namespace_keys
14238
14269
  # 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.
14270
+ # memory. This value fully replaces the existing set — any key you omit
14271
+ # is removed. Any referenced `namespaceKey` omission will throw
14272
+ # ValidationException.
14241
14273
  #
14242
14274
  # @option params [Types::StreamDeliveryResources] :stream_delivery_resources
14243
14275
  # Configuration for streaming memory record data to external resources.
@@ -15684,9 +15716,9 @@ module Aws::BedrockAgentCoreControl
15684
15716
  # policy logic.
15685
15717
  #
15686
15718
  # @option params [Types::PolicyDefinition] :definition
15687
- # The new Cedar policy statement that defines the access control rules.
15688
- # This replaces the existing policy definition with new logic while
15689
- # maintaining the policy's identity.
15719
+ # The new Cedar or Dogwood policy statement that defines the access
15720
+ # control rules. This replaces the existing policy definition with new
15721
+ # logic while maintaining the policy's identity.
15690
15722
  #
15691
15723
  # @option params [String] :validation_mode
15692
15724
  # The validation mode for the policy update. Determines how Cedar
@@ -16329,7 +16361,7 @@ module Aws::BedrockAgentCoreControl
16329
16361
  tracer: tracer
16330
16362
  )
16331
16363
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
16332
- context[:gem_version] = '1.66.0'
16364
+ context[:gem_version] = '1.68.0'
16333
16365
  Seahorse::Client::Request.new(handlers, context)
16334
16366
  end
16335
16367
 
@@ -163,6 +163,8 @@ module Aws::BedrockAgentCoreControl
163
163
  ComponentConfiguration = Shapes::StructureShape.new(name: 'ComponentConfiguration')
164
164
  ComponentConfigurationMap = Shapes::MapShape.new(name: 'ComponentConfigurationMap')
165
165
  ComponentIdentifier = Shapes::StringShape.new(name: 'ComponentIdentifier')
166
+ CompositeIdentifierEntry = Shapes::StringShape.new(name: 'CompositeIdentifierEntry')
167
+ CompositeIdentifierList = Shapes::ListShape.new(name: 'CompositeIdentifierList')
166
168
  ComputeConfiguration = Shapes::UnionShape.new(name: 'ComputeConfiguration')
167
169
  ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
168
170
  Condition = Shapes::UnionShape.new(name: 'Condition')
@@ -1156,6 +1158,10 @@ module Aws::BedrockAgentCoreControl
1156
1158
  Statement = Shapes::StringShape.new(name: 'Statement')
1157
1159
  StaticOverride = Shapes::StructureShape.new(name: 'StaticOverride')
1158
1160
  StaticOverrideBundleVersionString = Shapes::StringShape.new(name: 'StaticOverrideBundleVersionString')
1161
+ StaticQueryParameterConflictResolution = Shapes::StringShape.new(name: 'StaticQueryParameterConflictResolution')
1162
+ StaticQueryParameterName = Shapes::StringShape.new(name: 'StaticQueryParameterName')
1163
+ StaticQueryParameterValue = Shapes::StringShape.new(name: 'StaticQueryParameterValue')
1164
+ StaticQueryParameters = Shapes::MapShape.new(name: 'StaticQueryParameters')
1159
1165
  StaticRoute = Shapes::StructureShape.new(name: 'StaticRoute')
1160
1166
  Status = Shapes::StringShape.new(name: 'Status')
1161
1167
  StatusReason = Shapes::StringShape.new(name: 'StatusReason')
@@ -1740,6 +1746,8 @@ module Aws::BedrockAgentCoreControl
1740
1746
  ComponentConfigurationMap.key = Shapes::ShapeRef.new(shape: ComponentIdentifier)
1741
1747
  ComponentConfigurationMap.value = Shapes::ShapeRef.new(shape: ComponentConfiguration)
1742
1748
 
1749
+ CompositeIdentifierList.member = Shapes::ShapeRef.new(shape: CompositeIdentifierEntry)
1750
+
1743
1751
  ComputeConfiguration.add_member(:ec2_configuration, Shapes::ShapeRef.new(shape: Ec2Configuration, location_name: "ec2Configuration"))
1744
1752
  ComputeConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1745
1753
  ComputeConfiguration.add_member_subclass(:ec2_configuration, Types::ComputeConfiguration::Ec2Configuration)
@@ -4843,6 +4851,8 @@ module Aws::BedrockAgentCoreControl
4843
4851
  PassthroughTargetConfiguration.add_member(:protocol_type, Shapes::ShapeRef.new(shape: PassthroughProtocolType, required: true, location_name: "protocolType"))
4844
4852
  PassthroughTargetConfiguration.add_member(:schema, Shapes::ShapeRef.new(shape: HttpApiSchemaConfiguration, location_name: "schema"))
4845
4853
  PassthroughTargetConfiguration.add_member(:stickiness_configuration, Shapes::ShapeRef.new(shape: StickinessConfiguration, location_name: "stickinessConfiguration"))
4854
+ PassthroughTargetConfiguration.add_member(:static_query_parameters, Shapes::ShapeRef.new(shape: StaticQueryParameters, location_name: "staticQueryParameters"))
4855
+ PassthroughTargetConfiguration.add_member(:static_query_parameter_conflict_resolution, Shapes::ShapeRef.new(shape: StaticQueryParameterConflictResolution, location_name: "staticQueryParameterConflictResolution"))
4846
4856
  PassthroughTargetConfiguration.struct_class = Types::PassthroughTargetConfiguration
4847
4857
 
4848
4858
  PaymentConnectorSummaries.member = Shapes::ShapeRef.new(shape: PaymentConnectorSummary)
@@ -5366,6 +5376,9 @@ module Aws::BedrockAgentCoreControl
5366
5376
  StaticOverride.add_member(:bundle_version, Shapes::ShapeRef.new(shape: StaticOverrideBundleVersionString, required: true, location_name: "bundleVersion"))
5367
5377
  StaticOverride.struct_class = Types::StaticOverride
5368
5378
 
5379
+ StaticQueryParameters.key = Shapes::ShapeRef.new(shape: StaticQueryParameterName)
5380
+ StaticQueryParameters.value = Shapes::ShapeRef.new(shape: StaticQueryParameterValue)
5381
+
5369
5382
  StaticRoute.add_member(:target_name, Shapes::ShapeRef.new(shape: TargetName, required: true, location_name: "targetName"))
5370
5383
  StaticRoute.struct_class = Types::StaticRoute
5371
5384
 
@@ -5373,6 +5386,7 @@ module Aws::BedrockAgentCoreControl
5373
5386
 
5374
5387
  StickinessConfiguration.add_member(:identifier, Shapes::ShapeRef.new(shape: StickinessConfigurationIdentifierString, required: true, location_name: "identifier"))
5375
5388
  StickinessConfiguration.add_member(:timeout, Shapes::ShapeRef.new(shape: StickinessTimeout, location_name: "timeout"))
5389
+ StickinessConfiguration.add_member(:composite_identifier, Shapes::ShapeRef.new(shape: CompositeIdentifierList, location_name: "compositeIdentifier"))
5376
5390
  StickinessConfiguration.struct_class = Types::StickinessConfiguration
5377
5391
 
5378
5392
  StrategyConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: OverrideType, location_name: "type"))
@@ -5696,7 +5710,7 @@ module Aws::BedrockAgentCoreControl
5696
5710
  UpdateConfigurationBundleRequest.add_member(:bundle_name, Shapes::ShapeRef.new(shape: ConfigurationBundleName, location_name: "bundleName"))
5697
5711
  UpdateConfigurationBundleRequest.add_member(:description, Shapes::ShapeRef.new(shape: ConfigurationBundleDescription, location_name: "description"))
5698
5712
  UpdateConfigurationBundleRequest.add_member(:components, Shapes::ShapeRef.new(shape: ComponentConfigurationMap, location_name: "components"))
5699
- UpdateConfigurationBundleRequest.add_member(:parent_version_ids, Shapes::ShapeRef.new(shape: ConfigurationBundleVersionList, location_name: "parentVersionIds"))
5713
+ UpdateConfigurationBundleRequest.add_member(:parent_version_ids, Shapes::ShapeRef.new(shape: ConfigurationBundleVersionList, required: true, location_name: "parentVersionIds"))
5700
5714
  UpdateConfigurationBundleRequest.add_member(:branch_name, Shapes::ShapeRef.new(shape: BranchName, location_name: "branchName"))
5701
5715
  UpdateConfigurationBundleRequest.add_member(:commit_message, Shapes::ShapeRef.new(shape: UpdateConfigurationBundleRequestCommitMessageString, location_name: "commitMessage"))
5702
5716
  UpdateConfigurationBundleRequest.add_member(:created_by, Shapes::ShapeRef.new(shape: VersionCreatedBySource, location_name: "createdBy"))
@@ -1940,7 +1940,7 @@ module Aws::BedrockAgentCoreControl
1940
1940
  # @!attribute [rw] raw_text
1941
1941
  # The raw text content containing natural language descriptions of
1942
1942
  # desired policy behavior. This text is processed by AI to generate
1943
- # corresponding Cedar policy statements that match the described
1943
+ # corresponding Dogwood policy statements that match the described
1944
1944
  # intent.
1945
1945
  # @return [String]
1946
1946
  #
@@ -4499,10 +4499,10 @@ module Aws::BedrockAgentCoreControl
4499
4499
  # @return [String]
4500
4500
  #
4501
4501
  # @!attribute [rw] definition
4502
- # The Cedar policy statement that defines the access control rules.
4503
- # This contains the actual policy logic written in Cedar policy
4504
- # language, specifying effect (permit or forbid), principals, actions,
4505
- # resources, and conditions for agent behavior control.
4502
+ # The Cedar or Dogwood policy statement that defines the access
4503
+ # control rules. This contains the actual policy logic written in
4504
+ # Cedar or Dogwood, specifying effect (permit or forbid), principals,
4505
+ # actions, resources, and conditions for agent behavior control.
4506
4506
  # @return [Types::PolicyDefinition]
4507
4507
  #
4508
4508
  # @!attribute [rw] description
@@ -4612,9 +4612,9 @@ module Aws::BedrockAgentCoreControl
4612
4612
  # @return [String]
4613
4613
  #
4614
4614
  # @!attribute [rw] definition
4615
- # The Cedar policy statement that was created. This is the validated
4616
- # policy definition that will be used for agent behavior control and
4617
- # access decisions.
4615
+ # The Cedar or Dogwood policy statement that was created. This is the
4616
+ # validated policy definition that will be used for agent behavior
4617
+ # control and access decisions.
4618
4618
  # @return [Types::PolicyDefinition]
4619
4619
  #
4620
4620
  # @!attribute [rw] description
@@ -7880,10 +7880,10 @@ module Aws::BedrockAgentCoreControl
7880
7880
  # allow or deny each action based on the defined policies.
7881
7881
  #
7882
7882
  # @!attribute [rw] arn
7883
- # The ARN of the policy engine. The policy engine contains Cedar
7884
- # policies that define fine-grained authorization rules specifying who
7885
- # can perform what actions on which resources as agents interact
7886
- # through the gateway.
7883
+ # The ARN of the policy engine. The policy engine contains Cedar or
7884
+ # Dogwood policies that define fine-grained authorization rules
7885
+ # specifying who can perform what actions on which resources as agents
7886
+ # interact through the gateway.
7887
7887
  # @return [String]
7888
7888
  #
7889
7889
  # @!attribute [rw] mode
@@ -10449,9 +10449,9 @@ module Aws::BedrockAgentCoreControl
10449
10449
  # @return [String]
10450
10450
  #
10451
10451
  # @!attribute [rw] definition
10452
- # The Cedar policy statement that defines the access control rules.
10453
- # This contains the actual policy logic used for agent behavior
10454
- # control and access decisions.
10452
+ # The Cedar or Dogwood policy statement that defines the access
10453
+ # control rules. This contains the actual policy logic used for agent
10454
+ # behavior control and access decisions.
10455
10455
  # @return [Types::PolicyDefinition]
10456
10456
  #
10457
10457
  # @!attribute [rw] description
@@ -14480,7 +14480,7 @@ module Aws::BedrockAgentCoreControl
14480
14480
  end
14481
14481
 
14482
14482
  # @!attribute [rw] policy_generation_assets
14483
- # An array of generated policy assets including Cedar policies and
14483
+ # An array of generated policy assets including Dogwood policies and
14484
14484
  # related artifacts from the AI-powered policy generation process.
14485
14485
  # Each asset represents a different policy option or variation
14486
14486
  # generated from the original natural language input.
@@ -16498,14 +16498,35 @@ module Aws::BedrockAgentCoreControl
16498
16498
  # same target.
16499
16499
  # @return [Types::StickinessConfiguration]
16500
16500
  #
16501
+ # @!attribute [rw] static_query_parameters
16502
+ # A map of static query parameters that the gateway always appends to
16503
+ # the outbound URL when forwarding requests to the target. The total
16504
+ # outbound URL length, which includes the endpoint and the
16505
+ # percent-encoded query parameters, is enforced by the service.
16506
+ # @return [Hash<String,String>]
16507
+ #
16508
+ # @!attribute [rw] static_query_parameter_conflict_resolution
16509
+ # Controls precedence when a client request supplies a query parameter
16510
+ # whose name matches a configured static query parameter. If not set,
16511
+ # defaults to `CLIENT_OVERRIDE`:
16512
+ #
16513
+ # * `CLIENT_OVERRIDE` - The client-supplied value overrides the
16514
+ # configured static value for that parameter name.
16515
+ #
16516
+ # * `STATIC_OVERRIDE` - The configured static value is retained,
16517
+ # overriding the client-supplied value for that parameter name.
16518
+ # @return [String]
16519
+ #
16501
16520
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PassthroughTargetConfiguration AWS API Documentation
16502
16521
  #
16503
16522
  class PassthroughTargetConfiguration < Struct.new(
16504
16523
  :endpoint,
16505
16524
  :protocol_type,
16506
16525
  :schema,
16507
- :stickiness_configuration)
16508
- SENSITIVE = []
16526
+ :stickiness_configuration,
16527
+ :static_query_parameters,
16528
+ :static_query_parameter_conflict_resolution)
16529
+ SENSITIVE = [:static_query_parameters]
16509
16530
  include Aws::Structure
16510
16531
  end
16511
16532
 
@@ -16741,17 +16762,17 @@ module Aws::BedrockAgentCoreControl
16741
16762
  end
16742
16763
 
16743
16764
  # Represents a complete policy resource within the AgentCore Policy
16744
- # system. Policies are ARN-able resources that contain Cedar policy
16745
- # statements and associated metadata for controlling agent behavior and
16746
- # access decisions. Each policy belongs to a policy engine and defines
16747
- # fine-grained authorization rules that are evaluated in real-time as
16748
- # agents interact with tools through Gateway. Policies use the Cedar
16749
- # policy language to specify who (principals based on OAuth claims like
16765
+ # system. Policies are ARN-able resources that contain Cedar or Dogwood
16766
+ # policy statements and associated metadata for controlling agent
16767
+ # behavior and access decisions. Each policy belongs to a policy engine
16768
+ # and defines fine-grained authorization rules that are evaluated in
16769
+ # real-time as agents interact with tools through Gateway. Policies use
16770
+ # Cedar or Dogwood to specify who (principals based on OAuth claims like
16750
16771
  # username, role, or scope) can perform what actions (tool calls) on
16751
16772
  # which resources (Gateways), with optional conditions for
16752
16773
  # attribute-based access control. Multiple policies can apply to a
16753
- # single request, with Cedar's forbid-wins semantics ensuring that
16754
- # security restrictions are never accidentally overridden.
16774
+ # single request, with forbid-wins semantics ensuring that security
16775
+ # restrictions are never accidentally overridden.
16755
16776
  #
16756
16777
  # @!attribute [rw] policy_id
16757
16778
  # The unique identifier for the policy. This system-generated
@@ -16797,9 +16818,9 @@ module Aws::BedrockAgentCoreControl
16797
16818
  # @return [String]
16798
16819
  #
16799
16820
  # @!attribute [rw] definition
16800
- # The Cedar policy statement that defines the access control rules.
16801
- # This contains the actual policy logic used for agent behavior
16802
- # control and access decisions.
16821
+ # The Cedar or Dogwood policy statement that defines the access
16822
+ # control rules. This contains the actual policy logic used for agent
16823
+ # behavior control and access decisions.
16803
16824
  # @return [Types::PolicyDefinition]
16804
16825
  #
16805
16826
  # @!attribute [rw] description
@@ -16858,15 +16879,16 @@ module Aws::BedrockAgentCoreControl
16858
16879
  # The generated policy asset information within the policy definition
16859
16880
  # structure. This contains information identifying a generated policy
16860
16881
  # asset from the AI-powered policy generation process within the
16861
- # AgentCore Policy system. Each asset contains a Cedar policy
16882
+ # AgentCore Policy system. Each asset contains a Dogwood policy
16862
16883
  # statement generated from natural language input, along with
16863
16884
  # associated metadata and analysis findings to help users evaluate and
16864
16885
  # select the most appropriate policy option.
16865
16886
  # @return [Types::PolicyGenerationDetails]
16866
16887
  #
16867
16888
  # @!attribute [rw] policy
16868
- # An AgentCore policy statement that defines the access control rules.
16869
- # The statement can be a Cedar policy or a guardrails definition.
16889
+ # The Dogwood policy statement that defines the access control rules.
16890
+ # This policy definition can include Dogwood policies and supports
16891
+ # temporal conditions and information providers such as guardrails.
16870
16892
  # @return [Types::PolicyStatement]
16871
16893
  #
16872
16894
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyDefinition AWS API Documentation
@@ -17019,7 +17041,7 @@ module Aws::BedrockAgentCoreControl
17019
17041
 
17020
17042
  # Represents a policy generation request within the AgentCore Policy
17021
17043
  # system. Tracks the AI-powered conversion of natural language
17022
- # descriptions into Cedar policy statements, enabling users to author
17044
+ # descriptions into Dogwood policy statements, enabling users to author
17023
17045
  # policies by describing authorization requirements in plain English.
17024
17046
  # The generation process analyzes the natural language input along with
17025
17047
  # the Gateway's tool context and Cedar schema to produce one or more
@@ -17090,7 +17112,7 @@ module Aws::BedrockAgentCoreControl
17090
17112
 
17091
17113
  # Represents a generated policy asset from the AI-powered policy
17092
17114
  # generation process within the AgentCore Policy system. Each asset
17093
- # contains a Cedar policy statement generated from natural language
17115
+ # contains a Dogwood policy statement generated from natural language
17094
17116
  # input, along with associated metadata and analysis findings to help
17095
17117
  # users evaluate and select the most appropriate policy option.
17096
17118
  #
@@ -17112,13 +17134,13 @@ module Aws::BedrockAgentCoreControl
17112
17134
  # The portion of the original natural language input that this
17113
17135
  # generated policy asset addresses. This helps users understand which
17114
17136
  # part of their policy description was translated into this specific
17115
- # Cedar policy statement, enabling better policy selection and
17137
+ # Dogwood policy statement, enabling better policy selection and
17116
17138
  # refinement. When a single natural language input describes multiple
17117
17139
  # authorization requirements, the generation process creates separate
17118
17140
  # policy assets for each requirement, with each asset's
17119
17141
  # rawTextFragment showing which requirement it addresses. Use this
17120
17142
  # mapping to verify that all parts of your natural language input were
17121
- # correctly translated into Cedar policies.
17143
+ # correctly translated into Dogwood policies.
17122
17144
  # @return [String]
17123
17145
  #
17124
17146
  # @!attribute [rw] findings
@@ -17141,7 +17163,7 @@ module Aws::BedrockAgentCoreControl
17141
17163
 
17142
17164
  # Represents the information identifying a generated policy asset from
17143
17165
  # the AI-powered policy generation process within the AgentCore Policy
17144
- # system. Each asset contains a Cedar policy statement generated from
17166
+ # system. Each asset contains a Dogwood policy statement generated from
17145
17167
  # natural language input, along with associated metadata and analysis
17146
17168
  # findings to help users evaluate and select the most appropriate policy
17147
17169
  # option.
@@ -17223,12 +17245,13 @@ module Aws::BedrockAgentCoreControl
17223
17245
  include Aws::Structure
17224
17246
  end
17225
17247
 
17226
- # An AgentCore policy statement, which supports plain Cedar policies as
17227
- # well as guardrails definitions.
17248
+ # An AgentCore Cedar or Dogwood policy statement, which supports plain
17249
+ # Cedar policies, temporal policies, and guardrails definitions.
17228
17250
  #
17229
17251
  # @!attribute [rw] statement
17230
- # The body of the AgentCore policy statement. Contains the policy
17231
- # logic, which can be a Cedar policy or a guardrails definition.
17252
+ # The body of the AgentCore Cedar or Dogwood policy statement.
17253
+ # Contains the policy logic, which can be a Cedar policy, a temporal
17254
+ # policy, or a guardrails definition.
17232
17255
  # @return [String]
17233
17256
  #
17234
17257
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyStatement AWS API Documentation
@@ -18849,7 +18872,7 @@ module Aws::BedrockAgentCoreControl
18849
18872
  #
18850
18873
  # @!attribute [rw] content
18851
18874
  # The natural language description of the desired policy behavior.
18852
- # This content is processed by AI to generate corresponding Cedar
18875
+ # This content is processed by AI to generate corresponding Dogwood
18853
18876
  # policy statements that match the described intent.
18854
18877
  # @return [Types::Content]
18855
18878
  #
@@ -18991,11 +19014,18 @@ module Aws::BedrockAgentCoreControl
18991
19014
  # to 86400.
18992
19015
  # @return [Integer]
18993
19016
  #
19017
+ # @!attribute [rw] composite_identifier
19018
+ # Additional headers to include in session affinity routing. When set,
19019
+ # requests are only considered part of the same session if both the
19020
+ # `identifier` and all composite identifier values match.
19021
+ # @return [Array<String>]
19022
+ #
18994
19023
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StickinessConfiguration AWS API Documentation
18995
19024
  #
18996
19025
  class StickinessConfiguration < Struct.new(
18997
19026
  :identifier,
18998
- :timeout)
19027
+ :timeout,
19028
+ :composite_identifier)
18999
19029
  SENSITIVE = []
19000
19030
  include Aws::Structure
19001
19031
  end
@@ -21443,8 +21473,9 @@ module Aws::BedrockAgentCoreControl
21443
21473
  #
21444
21474
  # @!attribute [rw] namespace_keys
21445
21475
  # 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.
21476
+ # this memory. This value fully replaces the existing set — any key
21477
+ # you omit is removed. Any referenced `namespaceKey` omission will
21478
+ # throw ValidationException.
21448
21479
  # @return [Array<Types::NamespaceKeyEntry>]
21449
21480
  #
21450
21481
  # @!attribute [rw] stream_delivery_resources
@@ -22050,9 +22081,9 @@ module Aws::BedrockAgentCoreControl
22050
22081
  # @return [Types::UpdatedDescription]
22051
22082
  #
22052
22083
  # @!attribute [rw] definition
22053
- # The new Cedar policy statement that defines the access control
22054
- # rules. This replaces the existing policy definition with new logic
22055
- # while maintaining the policy's identity.
22084
+ # The new Cedar or Dogwood policy statement that defines the access
22085
+ # control rules. This replaces the existing policy definition with new
22086
+ # logic while maintaining the policy's identity.
22056
22087
  # @return [Types::PolicyDefinition]
22057
22088
  #
22058
22089
  # @!attribute [rw] validation_mode
@@ -22120,7 +22151,7 @@ module Aws::BedrockAgentCoreControl
22120
22151
  # @return [String]
22121
22152
  #
22122
22153
  # @!attribute [rw] definition
22123
- # The updated Cedar policy statement.
22154
+ # The updated Cedar or Dogwood policy statement.
22124
22155
  # @return [Types::PolicyDefinition]
22125
22156
  #
22126
22157
  # @!attribute [rw] description
@@ -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.66.0'
58
+ GEM_VERSION = '1.68.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" | "GENERIC_EVALUATION_PREDEFINED_V1"),
447
+ schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "THIRD_PARTY_EVALUATION_V1"),
448
448
  ?kms_key_arn: ::String,
449
449
  ?tags: Hash[::String, ::String]
450
450
  ) -> _CreateDatasetResponseSuccess
@@ -1530,7 +1530,7 @@ module Aws
1530
1530
  def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1531
1531
  def draft_status: () -> ("MODIFIED" | "UNMODIFIED")
1532
1532
  def failure_reason: () -> ::String
1533
- def schema_type: () -> ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1")
1533
+ def schema_type: () -> ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "THIRD_PARTY_EVALUATION_V1")
1534
1534
  def kms_key_arn: () -> ::String
1535
1535
  def example_count: () -> ::Integer
1536
1536
  def download_url: () -> ::String
@@ -2716,7 +2716,7 @@ module Aws
2716
2716
  configuration: {
2717
2717
  }
2718
2718
  }],
2719
- ?parent_version_ids: Array[::String],
2719
+ parent_version_ids: Array[::String],
2720
2720
  ?branch_name: ::String,
2721
2721
  ?commit_message: ::String,
2722
2722
  ?created_by: {
data/sig/params.rbs CHANGED
@@ -435,8 +435,11 @@ module Aws
435
435
  schema: Params::http_api_schema_configuration?,
436
436
  stickiness_configuration: {
437
437
  identifier: ::String,
438
- timeout: ::Integer?
439
- }?
438
+ timeout: ::Integer?,
439
+ composite_identifier: Array[::String]?
440
+ }?,
441
+ static_query_parameters: Hash[::String, ::String]?,
442
+ static_query_parameter_conflict_resolution: ("CLIENT_OVERRIDE" | "STATIC_OVERRIDE")?
440
443
  }
441
444
 
442
445
  type http_target_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" | "GENERIC_EVALUATION_PREDEFINED_V1")
760
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "THIRD_PARTY_EVALUATION_V1")
761
761
  attr_accessor kms_key_arn: ::String
762
762
  attr_accessor tags: ::Hash[::String, ::String]
763
763
  SENSITIVE: []
@@ -1448,7 +1448,7 @@ module Aws::BedrockAgentCoreControl
1448
1448
  attr_accessor description: ::String
1449
1449
  attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1450
1450
  attr_accessor draft_status: ("MODIFIED" | "UNMODIFIED")
1451
- attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1")
1451
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "THIRD_PARTY_EVALUATION_V1")
1452
1452
  attr_accessor example_count: ::Integer
1453
1453
  attr_accessor created_at: ::Time
1454
1454
  attr_accessor updated_at: ::Time
@@ -2399,7 +2399,7 @@ module Aws::BedrockAgentCoreControl
2399
2399
  attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2400
2400
  attr_accessor draft_status: ("MODIFIED" | "UNMODIFIED")
2401
2401
  attr_accessor failure_reason: ::String
2402
- attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1")
2402
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "THIRD_PARTY_EVALUATION_V1")
2403
2403
  attr_accessor kms_key_arn: ::String
2404
2404
  attr_accessor example_count: ::Integer
2405
2405
  attr_accessor download_url: ::String
@@ -4552,6 +4552,8 @@ module Aws::BedrockAgentCoreControl
4552
4552
  attr_accessor protocol_type: ("MCP" | "A2A" | "INFERENCE" | "CUSTOM")
4553
4553
  attr_accessor schema: Types::HttpApiSchemaConfiguration
4554
4554
  attr_accessor stickiness_configuration: Types::StickinessConfiguration
4555
+ attr_accessor static_query_parameters: ::Hash[::String, ::String]
4556
+ attr_accessor static_query_parameter_conflict_resolution: ("CLIENT_OVERRIDE" | "STATIC_OVERRIDE")
4555
4557
  SENSITIVE: []
4556
4558
  end
4557
4559
 
@@ -5243,6 +5245,7 @@ module Aws::BedrockAgentCoreControl
5243
5245
  class StickinessConfiguration
5244
5246
  attr_accessor identifier: ::String
5245
5247
  attr_accessor timeout: ::Integer
5248
+ attr_accessor composite_identifier: ::Array[::String]
5246
5249
  SENSITIVE: []
5247
5250
  end
5248
5251
 
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.66.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services