aws-sdk-bedrockagentcorecontrol 1.40.0 → 1.42.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.
@@ -41,6 +41,36 @@ module Aws::BedrockAgentCoreControl
41
41
  include Aws::Structure
42
42
  end
43
43
 
44
+ # An action to take when a gateway rule's conditions are met.
45
+ #
46
+ # @note Action is a union - when making an API calls you must set exactly one of the members.
47
+ #
48
+ # @note Action is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Action corresponding to the set member.
49
+ #
50
+ # @!attribute [rw] configuration_bundle
51
+ # An action that applies a configuration bundle override to the
52
+ # request.
53
+ # @return [Types::ConfigurationBundleAction]
54
+ #
55
+ # @!attribute [rw] route_to_target
56
+ # An action that routes the request to a specific target.
57
+ # @return [Types::RouteToTargetAction]
58
+ #
59
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Action AWS API Documentation
60
+ #
61
+ class Action < Struct.new(
62
+ :configuration_bundle,
63
+ :route_to_target,
64
+ :unknown)
65
+ SENSITIVE = []
66
+ include Aws::Structure
67
+ include Aws::Structure::Union
68
+
69
+ class ConfigurationBundle < Action; end
70
+ class RouteToTarget < Action; end
71
+ class Unknown < Action; end
72
+ end
73
+
44
74
  # The agent card definition for an A2A descriptor. Contains the schema
45
75
  # version and inline content for the agent card.
46
76
  #
@@ -1066,6 +1096,21 @@ module Aws::BedrockAgentCoreControl
1066
1096
  include Aws::Structure
1067
1097
  end
1068
1098
 
1099
+ # The configuration for a component within a configuration bundle. The
1100
+ # component type is inferred from the component identifier ARN.
1101
+ #
1102
+ # @!attribute [rw] configuration
1103
+ # The configuration values as a flexible JSON document.
1104
+ # @return [Hash,Array,String,Numeric,Boolean]
1105
+ #
1106
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ComponentConfiguration AWS API Documentation
1107
+ #
1108
+ class ComponentConfiguration < Struct.new(
1109
+ :configuration)
1110
+ SENSITIVE = []
1111
+ include Aws::Structure
1112
+ end
1113
+
1069
1114
  # Exception thrown when a resource is modified concurrently by multiple
1070
1115
  # requests.
1071
1116
  #
@@ -1080,6 +1125,152 @@ module Aws::BedrockAgentCoreControl
1080
1125
  include Aws::Structure
1081
1126
  end
1082
1127
 
1128
+ # A condition that determines when a gateway rule applies. Conditions
1129
+ # can match on principals or request paths.
1130
+ #
1131
+ # @note Condition is a union - when making an API calls you must set exactly one of the members.
1132
+ #
1133
+ # @note Condition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Condition corresponding to the set member.
1134
+ #
1135
+ # @!attribute [rw] match_principals
1136
+ # A condition that matches on the identity of the caller making the
1137
+ # request.
1138
+ # @return [Types::MatchPrincipals]
1139
+ #
1140
+ # @!attribute [rw] match_paths
1141
+ # A condition that matches on the request path.
1142
+ # @return [Types::MatchPaths]
1143
+ #
1144
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Condition AWS API Documentation
1145
+ #
1146
+ class Condition < Struct.new(
1147
+ :match_principals,
1148
+ :match_paths,
1149
+ :unknown)
1150
+ SENSITIVE = []
1151
+ include Aws::Structure
1152
+ include Aws::Structure::Union
1153
+
1154
+ class MatchPrincipals < Condition; end
1155
+ class MatchPaths < Condition; end
1156
+ class Unknown < Condition; end
1157
+ end
1158
+
1159
+ # An action that applies a configuration bundle override, either as a
1160
+ # static override or a weighted split for A/B testing.
1161
+ #
1162
+ # @note ConfigurationBundleAction is a union - when making an API calls you must set exactly one of the members.
1163
+ #
1164
+ # @note ConfigurationBundleAction is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfigurationBundleAction corresponding to the set member.
1165
+ #
1166
+ # @!attribute [rw] static_override
1167
+ # A static configuration bundle override that applies a single bundle
1168
+ # version to all matching requests.
1169
+ # @return [Types::StaticOverride]
1170
+ #
1171
+ # @!attribute [rw] weighted_override
1172
+ # A weighted configuration bundle override that splits traffic between
1173
+ # multiple bundle versions based on configured weights.
1174
+ # @return [Types::WeightedOverride]
1175
+ #
1176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConfigurationBundleAction AWS API Documentation
1177
+ #
1178
+ class ConfigurationBundleAction < Struct.new(
1179
+ :static_override,
1180
+ :weighted_override,
1181
+ :unknown)
1182
+ SENSITIVE = []
1183
+ include Aws::Structure
1184
+ include Aws::Structure::Union
1185
+
1186
+ class StaticOverride < ConfigurationBundleAction; end
1187
+ class WeightedOverride < ConfigurationBundleAction; end
1188
+ class Unknown < ConfigurationBundleAction; end
1189
+ end
1190
+
1191
+ # A reference to a specific version of a configuration bundle.
1192
+ #
1193
+ # @!attribute [rw] bundle_arn
1194
+ # The Amazon Resource Name (ARN) of the configuration bundle.
1195
+ # @return [String]
1196
+ #
1197
+ # @!attribute [rw] bundle_version
1198
+ # The version of the configuration bundle.
1199
+ # @return [String]
1200
+ #
1201
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConfigurationBundleReference AWS API Documentation
1202
+ #
1203
+ class ConfigurationBundleReference < Struct.new(
1204
+ :bundle_arn,
1205
+ :bundle_version)
1206
+ SENSITIVE = []
1207
+ include Aws::Structure
1208
+ end
1209
+
1210
+ # Summary information about a configuration bundle.
1211
+ #
1212
+ # @!attribute [rw] bundle_arn
1213
+ # The Amazon Resource Name (ARN) of the configuration bundle.
1214
+ # @return [String]
1215
+ #
1216
+ # @!attribute [rw] bundle_id
1217
+ # The unique identifier of the configuration bundle.
1218
+ # @return [String]
1219
+ #
1220
+ # @!attribute [rw] bundle_name
1221
+ # The name of the configuration bundle.
1222
+ # @return [String]
1223
+ #
1224
+ # @!attribute [rw] description
1225
+ # The description of the configuration bundle.
1226
+ # @return [String]
1227
+ #
1228
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConfigurationBundleSummary AWS API Documentation
1229
+ #
1230
+ class ConfigurationBundleSummary < Struct.new(
1231
+ :bundle_arn,
1232
+ :bundle_id,
1233
+ :bundle_name,
1234
+ :description)
1235
+ SENSITIVE = [:description]
1236
+ include Aws::Structure
1237
+ end
1238
+
1239
+ # Summary information about a configuration bundle version.
1240
+ #
1241
+ # @!attribute [rw] bundle_arn
1242
+ # The Amazon Resource Name (ARN) of the configuration bundle.
1243
+ # @return [String]
1244
+ #
1245
+ # @!attribute [rw] bundle_id
1246
+ # The unique identifier of the configuration bundle.
1247
+ # @return [String]
1248
+ #
1249
+ # @!attribute [rw] version_id
1250
+ # The version identifier of this configuration bundle version.
1251
+ # @return [String]
1252
+ #
1253
+ # @!attribute [rw] lineage_metadata
1254
+ # The version lineage metadata, including parent versions, branch
1255
+ # name, and creation source.
1256
+ # @return [Types::VersionLineageMetadata]
1257
+ #
1258
+ # @!attribute [rw] version_created_at
1259
+ # The timestamp when this version was created.
1260
+ # @return [Time]
1261
+ #
1262
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConfigurationBundleVersionSummary AWS API Documentation
1263
+ #
1264
+ class ConfigurationBundleVersionSummary < Struct.new(
1265
+ :bundle_arn,
1266
+ :bundle_id,
1267
+ :version_id,
1268
+ :lineage_metadata,
1269
+ :version_created_at)
1270
+ SENSITIVE = []
1271
+ include Aws::Structure
1272
+ end
1273
+
1083
1274
  # This exception is thrown when there is a conflict performing an
1084
1275
  # operation
1085
1276
  #
@@ -1675,6 +1866,99 @@ module Aws::BedrockAgentCoreControl
1675
1866
  include Aws::Structure
1676
1867
  end
1677
1868
 
1869
+ # @!attribute [rw] client_token
1870
+ # A unique, case-sensitive identifier to ensure that the API request
1871
+ # completes no more than one time. If you don't specify this field, a
1872
+ # value is randomly generated for you. If this token matches a
1873
+ # previous request, the service ignores the request, but doesn't
1874
+ # return an error. For more information, see [Ensuring
1875
+ # idempotency][1].
1876
+ #
1877
+ # **A suitable default value is auto-generated.** You should normally
1878
+ # not need to pass this option.
1879
+ #
1880
+ #
1881
+ #
1882
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
1883
+ # @return [String]
1884
+ #
1885
+ # @!attribute [rw] bundle_name
1886
+ # The name for the configuration bundle. Names must be unique within
1887
+ # your account.
1888
+ # @return [String]
1889
+ #
1890
+ # @!attribute [rw] description
1891
+ # The description for the configuration bundle.
1892
+ # @return [String]
1893
+ #
1894
+ # @!attribute [rw] components
1895
+ # A map of component identifiers to their configurations. Each
1896
+ # component represents a configurable element within the bundle.
1897
+ # @return [Hash<String,Types::ComponentConfiguration>]
1898
+ #
1899
+ # @!attribute [rw] branch_name
1900
+ # The branch name for version tracking. Defaults to `mainline` if not
1901
+ # specified.
1902
+ # @return [String]
1903
+ #
1904
+ # @!attribute [rw] commit_message
1905
+ # A commit message describing the initial version of the configuration
1906
+ # bundle.
1907
+ # @return [String]
1908
+ #
1909
+ # @!attribute [rw] created_by
1910
+ # The source that created this version, including the source name and
1911
+ # optional ARN.
1912
+ # @return [Types::VersionCreatedBySource]
1913
+ #
1914
+ # @!attribute [rw] tags
1915
+ # A map of tag keys and values to assign to the configuration bundle.
1916
+ # Tags enable you to categorize your resources in different ways, for
1917
+ # example, by purpose, owner, or environment.
1918
+ # @return [Hash<String,String>]
1919
+ #
1920
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateConfigurationBundleRequest AWS API Documentation
1921
+ #
1922
+ class CreateConfigurationBundleRequest < Struct.new(
1923
+ :client_token,
1924
+ :bundle_name,
1925
+ :description,
1926
+ :components,
1927
+ :branch_name,
1928
+ :commit_message,
1929
+ :created_by,
1930
+ :tags)
1931
+ SENSITIVE = [:description, :components]
1932
+ include Aws::Structure
1933
+ end
1934
+
1935
+ # @!attribute [rw] bundle_arn
1936
+ # The Amazon Resource Name (ARN) of the created configuration bundle.
1937
+ # @return [String]
1938
+ #
1939
+ # @!attribute [rw] bundle_id
1940
+ # The unique identifier of the created configuration bundle.
1941
+ # @return [String]
1942
+ #
1943
+ # @!attribute [rw] version_id
1944
+ # The initial version identifier of the configuration bundle.
1945
+ # @return [String]
1946
+ #
1947
+ # @!attribute [rw] created_at
1948
+ # The timestamp when the configuration bundle was created.
1949
+ # @return [Time]
1950
+ #
1951
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateConfigurationBundleResponse AWS API Documentation
1952
+ #
1953
+ class CreateConfigurationBundleResponse < Struct.new(
1954
+ :bundle_arn,
1955
+ :bundle_id,
1956
+ :version_id,
1957
+ :created_at)
1958
+ SENSITIVE = []
1959
+ include Aws::Structure
1960
+ end
1961
+
1678
1962
  # @!attribute [rw] client_token
1679
1963
  # A unique, case-sensitive identifier to ensure that the API request
1680
1964
  # completes no more than one time. If you don't specify this field, a
@@ -1713,6 +1997,19 @@ module Aws::BedrockAgentCoreControl
1713
1997
  # conversation sessions.
1714
1998
  # @return [String]
1715
1999
  #
2000
+ # @!attribute [rw] kms_key_arn
2001
+ # The Amazon Resource Name (ARN) of a customer managed KMS key to use
2002
+ # for encrypting sensitive evaluator data, including instructions and
2003
+ # rating scale. If you don't specify a KMS key, the evaluator data is
2004
+ # encrypted with an Amazon Web Services owned key. Only symmetric
2005
+ # encryption KMS keys are supported. For more information, see
2006
+ # [Encryption at rest for AgentCore Evaluations][1].
2007
+ #
2008
+ #
2009
+ #
2010
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/evaluations-encryption.html
2011
+ # @return [String]
2012
+ #
1716
2013
  # @!attribute [rw] tags
1717
2014
  # A map of tag keys and values to assign to an AgentCore Evaluator.
1718
2015
  # Tags enable you to categorize your resources in different ways, for
@@ -1727,6 +2024,7 @@ module Aws::BedrockAgentCoreControl
1727
2024
  :description,
1728
2025
  :evaluator_config,
1729
2026
  :level,
2027
+ :kms_key_arn,
1730
2028
  :tags)
1731
2029
  SENSITIVE = [:description]
1732
2030
  include Aws::Structure
@@ -1980,6 +2278,112 @@ module Aws::BedrockAgentCoreControl
1980
2278
  include Aws::Structure
1981
2279
  end
1982
2280
 
2281
+ # @!attribute [rw] gateway_identifier
2282
+ # The identifier of the gateway to create a rule for.
2283
+ # @return [String]
2284
+ #
2285
+ # @!attribute [rw] client_token
2286
+ # A unique, case-sensitive identifier to ensure that the API request
2287
+ # completes no more than one time. If you don't specify this field, a
2288
+ # value is randomly generated for you. If this token matches a
2289
+ # previous request, the service ignores the request, but doesn't
2290
+ # return an error. For more information, see [Ensuring
2291
+ # idempotency][1].
2292
+ #
2293
+ # **A suitable default value is auto-generated.** You should normally
2294
+ # not need to pass this option.
2295
+ #
2296
+ #
2297
+ #
2298
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
2299
+ # @return [String]
2300
+ #
2301
+ # @!attribute [rw] priority
2302
+ # The priority of the rule. Rules are evaluated in order of priority,
2303
+ # with lower numbers evaluated first. Must be between 1 and 1,000,000.
2304
+ # @return [Integer]
2305
+ #
2306
+ # @!attribute [rw] conditions
2307
+ # The conditions that must be met for the rule to apply. Conditions
2308
+ # can match on principals (IAM ARNs) or request paths.
2309
+ # @return [Array<Types::Condition>]
2310
+ #
2311
+ # @!attribute [rw] actions
2312
+ # The actions to take when the rule conditions are met. Actions can
2313
+ # route to a specific target or apply a configuration bundle override.
2314
+ # @return [Array<Types::Action>]
2315
+ #
2316
+ # @!attribute [rw] description
2317
+ # The description of the gateway rule.
2318
+ # @return [String]
2319
+ #
2320
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayRuleRequest AWS API Documentation
2321
+ #
2322
+ class CreateGatewayRuleRequest < Struct.new(
2323
+ :gateway_identifier,
2324
+ :client_token,
2325
+ :priority,
2326
+ :conditions,
2327
+ :actions,
2328
+ :description)
2329
+ SENSITIVE = []
2330
+ include Aws::Structure
2331
+ end
2332
+
2333
+ # @!attribute [rw] rule_id
2334
+ # The unique identifier of the gateway rule.
2335
+ # @return [String]
2336
+ #
2337
+ # @!attribute [rw] gateway_arn
2338
+ # The Amazon Resource Name (ARN) of the gateway that the rule belongs
2339
+ # to.
2340
+ # @return [String]
2341
+ #
2342
+ # @!attribute [rw] priority
2343
+ # The priority of the rule. Rules are evaluated in order of priority,
2344
+ # with lower numbers evaluated first.
2345
+ # @return [Integer]
2346
+ #
2347
+ # @!attribute [rw] conditions
2348
+ # The conditions that must be met for the rule to apply.
2349
+ # @return [Array<Types::Condition>]
2350
+ #
2351
+ # @!attribute [rw] actions
2352
+ # The actions to take when the rule conditions are met.
2353
+ # @return [Array<Types::Action>]
2354
+ #
2355
+ # @!attribute [rw] description
2356
+ # The description of the gateway rule.
2357
+ # @return [String]
2358
+ #
2359
+ # @!attribute [rw] created_at
2360
+ # The timestamp when the rule was created.
2361
+ # @return [Time]
2362
+ #
2363
+ # @!attribute [rw] status
2364
+ # The current status of the rule.
2365
+ # @return [String]
2366
+ #
2367
+ # @!attribute [rw] system
2368
+ # System-managed metadata for rules created by automated processes.
2369
+ # @return [Types::SystemManagedBlock]
2370
+ #
2371
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayRuleResponse AWS API Documentation
2372
+ #
2373
+ class CreateGatewayRuleResponse < Struct.new(
2374
+ :rule_id,
2375
+ :gateway_arn,
2376
+ :priority,
2377
+ :conditions,
2378
+ :actions,
2379
+ :description,
2380
+ :created_at,
2381
+ :status,
2382
+ :system)
2383
+ SENSITIVE = []
2384
+ include Aws::Structure
2385
+ end
2386
+
1983
2387
  # @!attribute [rw] gateway_identifier
1984
2388
  # The identifier of the gateway to create a target for.
1985
2389
  # @return [String]
@@ -2109,6 +2513,10 @@ module Aws::BedrockAgentCoreControl
2109
2513
  # with authorization code grant type and requires user federation.
2110
2514
  # @return [Types::AuthorizationData]
2111
2515
  #
2516
+ # @!attribute [rw] protocol_type
2517
+ # The protocol type of the created gateway target.
2518
+ # @return [String]
2519
+ #
2112
2520
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayTargetResponse AWS API Documentation
2113
2521
  #
2114
2522
  class CreateGatewayTargetResponse < Struct.new(
@@ -2126,7 +2534,8 @@ module Aws::BedrockAgentCoreControl
2126
2534
  :metadata_configuration,
2127
2535
  :private_endpoint,
2128
2536
  :private_endpoint_managed_resources,
2129
- :authorization_data)
2537
+ :authorization_data,
2538
+ :protocol_type)
2130
2539
  SENSITIVE = [:name, :description]
2131
2540
  include Aws::Structure
2132
2541
  end
@@ -2212,7 +2621,8 @@ module Aws::BedrockAgentCoreControl
2212
2621
  # @return [Integer]
2213
2622
  #
2214
2623
  # @!attribute [rw] max_tokens
2215
- # The maximum number of tokens the agent can generate per iteration.
2624
+ # The maximum total number of output tokens the agent can generate
2625
+ # across all model calls within a single invocation.
2216
2626
  # @return [Integer]
2217
2627
  #
2218
2628
  # @!attribute [rw] timeout_seconds
@@ -2299,6 +2709,11 @@ module Aws::BedrockAgentCoreControl
2299
2709
  # information is extracted, processed, and consolidated.
2300
2710
  # @return [Array<Types::MemoryStrategyInput>]
2301
2711
  #
2712
+ # @!attribute [rw] indexed_keys
2713
+ # Metadata keys to index for filtering. Once declared, indexed keys
2714
+ # cannot be removed.
2715
+ # @return [Array<Types::IndexedKey>]
2716
+ #
2302
2717
  # @!attribute [rw] stream_delivery_resources
2303
2718
  # Configuration for streaming memory record data to external
2304
2719
  # resources.
@@ -2320,6 +2735,7 @@ module Aws::BedrockAgentCoreControl
2320
2735
  :memory_execution_role_arn,
2321
2736
  :event_expiry_duration,
2322
2737
  :memory_strategies,
2738
+ :indexed_keys,
2323
2739
  :stream_delivery_resources,
2324
2740
  :tags)
2325
2741
  SENSITIVE = [:description]
@@ -2456,7 +2872,16 @@ module Aws::BedrockAgentCoreControl
2456
2872
  # @!attribute [rw] evaluation_execution_role_arn
2457
2873
  # The Amazon Resource Name (ARN) of the IAM role that grants
2458
2874
  # permissions to read from CloudWatch logs, write evaluation results,
2459
- # and invoke Amazon Bedrock models for evaluation.
2875
+ # and invoke Amazon Bedrock models for evaluation. If the
2876
+ # configuration references evaluators encrypted with a customer
2877
+ # managed KMS key, this role must also have `kms:Decrypt` permission
2878
+ # on the KMS key. The service validates this permission at
2879
+ # configuration creation time. For more information, see [Encryption
2880
+ # at rest for AgentCore Evaluations][1].
2881
+ #
2882
+ #
2883
+ #
2884
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/evaluations-encryption.html
2460
2885
  # @return [String]
2461
2886
  #
2462
2887
  # @!attribute [rw] enable_on_create
@@ -3396,6 +3821,10 @@ module Aws::BedrockAgentCoreControl
3396
3821
  # The configuration for the custom memory strategy.
3397
3822
  # @return [Types::CustomConfigurationInput]
3398
3823
  #
3824
+ # @!attribute [rw] memory_record_schema
3825
+ # Schema for metadata fields on records generated by this strategy.
3826
+ # @return [Types::MemoryRecordSchema]
3827
+ #
3399
3828
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomMemoryStrategyInput AWS API Documentation
3400
3829
  #
3401
3830
  class CustomMemoryStrategyInput < Struct.new(
@@ -3403,7 +3832,8 @@ module Aws::BedrockAgentCoreControl
3403
3832
  :description,
3404
3833
  :namespaces,
3405
3834
  :namespace_templates,
3406
- :configuration)
3835
+ :configuration,
3836
+ :memory_record_schema)
3407
3837
  SENSITIVE = [:description]
3408
3838
  include Aws::Structure
3409
3839
  end
@@ -3435,6 +3865,17 @@ module Aws::BedrockAgentCoreControl
3435
3865
  # configurations.
3436
3866
  # @return [Array<Types::PrivateEndpointOverride>]
3437
3867
  #
3868
+ # @!attribute [rw] on_behalf_of_token_exchange_config
3869
+ # The configuration for on-behalf-of token exchange. This enables
3870
+ # authentication flows that use RFC 8693 token exchange or RFC 7523
3871
+ # JWT authorization grants.
3872
+ # @return [Types::OnBehalfOfTokenExchangeConfigType]
3873
+ #
3874
+ # @!attribute [rw] client_authentication_method
3875
+ # The client authentication method to use when authenticating with the
3876
+ # token endpoint.
3877
+ # @return [String]
3878
+ #
3438
3879
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomOauth2ProviderConfigInput AWS API Documentation
3439
3880
  #
3440
3881
  class CustomOauth2ProviderConfigInput < Struct.new(
@@ -3442,7 +3883,9 @@ module Aws::BedrockAgentCoreControl
3442
3883
  :client_id,
3443
3884
  :client_secret,
3444
3885
  :private_endpoint,
3445
- :private_endpoint_overrides)
3886
+ :private_endpoint_overrides,
3887
+ :on_behalf_of_token_exchange_config,
3888
+ :client_authentication_method)
3446
3889
  SENSITIVE = [:client_secret]
3447
3890
  include Aws::Structure
3448
3891
  end
@@ -3470,13 +3913,24 @@ module Aws::BedrockAgentCoreControl
3470
3913
  # configurations.
3471
3914
  # @return [Array<Types::PrivateEndpointOverride>]
3472
3915
  #
3916
+ # @!attribute [rw] on_behalf_of_token_exchange_config
3917
+ # The configuration for on-behalf-of token exchange.
3918
+ # @return [Types::OnBehalfOfTokenExchangeConfigType]
3919
+ #
3920
+ # @!attribute [rw] client_authentication_method
3921
+ # The client authentication method used when authenticating with the
3922
+ # token endpoint.
3923
+ # @return [String]
3924
+ #
3473
3925
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomOauth2ProviderConfigOutput AWS API Documentation
3474
3926
  #
3475
3927
  class CustomOauth2ProviderConfigOutput < Struct.new(
3476
3928
  :oauth_discovery,
3477
3929
  :client_id,
3478
3930
  :private_endpoint,
3479
- :private_endpoint_overrides)
3931
+ :private_endpoint_overrides,
3932
+ :on_behalf_of_token_exchange_config,
3933
+ :client_authentication_method)
3480
3934
  SENSITIVE = []
3481
3935
  include Aws::Structure
3482
3936
  end
@@ -3807,6 +4261,35 @@ module Aws::BedrockAgentCoreControl
3807
4261
  include Aws::Structure
3808
4262
  end
3809
4263
 
4264
+ # @!attribute [rw] bundle_id
4265
+ # The unique identifier of the configuration bundle to delete.
4266
+ # @return [String]
4267
+ #
4268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteConfigurationBundleRequest AWS API Documentation
4269
+ #
4270
+ class DeleteConfigurationBundleRequest < Struct.new(
4271
+ :bundle_id)
4272
+ SENSITIVE = []
4273
+ include Aws::Structure
4274
+ end
4275
+
4276
+ # @!attribute [rw] bundle_id
4277
+ # The unique identifier of the deleted configuration bundle.
4278
+ # @return [String]
4279
+ #
4280
+ # @!attribute [rw] status
4281
+ # The status of the configuration bundle deletion operation.
4282
+ # @return [String]
4283
+ #
4284
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteConfigurationBundleResponse AWS API Documentation
4285
+ #
4286
+ class DeleteConfigurationBundleResponse < Struct.new(
4287
+ :bundle_id,
4288
+ :status)
4289
+ SENSITIVE = []
4290
+ include Aws::Structure
4291
+ end
4292
+
3810
4293
  # @!attribute [rw] evaluator_id
3811
4294
  # The unique identifier of the evaluator to delete.
3812
4295
  # @return [String]
@@ -3875,6 +4358,40 @@ module Aws::BedrockAgentCoreControl
3875
4358
  include Aws::Structure
3876
4359
  end
3877
4360
 
4361
+ # @!attribute [rw] gateway_identifier
4362
+ # The identifier of the gateway containing the rule.
4363
+ # @return [String]
4364
+ #
4365
+ # @!attribute [rw] rule_id
4366
+ # The unique identifier of the rule to delete.
4367
+ # @return [String]
4368
+ #
4369
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayRuleRequest AWS API Documentation
4370
+ #
4371
+ class DeleteGatewayRuleRequest < Struct.new(
4372
+ :gateway_identifier,
4373
+ :rule_id)
4374
+ SENSITIVE = []
4375
+ include Aws::Structure
4376
+ end
4377
+
4378
+ # @!attribute [rw] rule_id
4379
+ # The unique identifier of the deleted rule.
4380
+ # @return [String]
4381
+ #
4382
+ # @!attribute [rw] status
4383
+ # The status of the rule deletion operation.
4384
+ # @return [String]
4385
+ #
4386
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayRuleResponse AWS API Documentation
4387
+ #
4388
+ class DeleteGatewayRuleResponse < Struct.new(
4389
+ :rule_id,
4390
+ :status)
4391
+ SENSITIVE = []
4392
+ include Aws::Structure
4393
+ end
4394
+
3878
4395
  # @!attribute [rw] gateway_identifier
3879
4396
  # The unique identifier of the gateway associated with the target.
3880
4397
  # @return [String]
@@ -4425,6 +4942,10 @@ module Aws::BedrockAgentCoreControl
4425
4942
  # memory strategy.
4426
4943
  # @return [Types::EpisodicReflectionConfigurationInput]
4427
4944
  #
4945
+ # @!attribute [rw] memory_record_schema
4946
+ # Schema for metadata fields on records generated by this strategy.
4947
+ # @return [Types::MemoryRecordSchema]
4948
+ #
4428
4949
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicMemoryStrategyInput AWS API Documentation
4429
4950
  #
4430
4951
  class EpisodicMemoryStrategyInput < Struct.new(
@@ -4432,7 +4953,8 @@ module Aws::BedrockAgentCoreControl
4432
4953
  :description,
4433
4954
  :namespaces,
4434
4955
  :namespace_templates,
4435
- :reflection_configuration)
4956
+ :reflection_configuration,
4957
+ :memory_record_schema)
4436
4958
  SENSITIVE = [:description]
4437
4959
  include Aws::Structure
4438
4960
  end
@@ -4531,13 +5053,19 @@ module Aws::BedrockAgentCoreControl
4531
5053
  # nested than the episodic namespaces.
4532
5054
  # @return [Array<String>]
4533
5055
  #
5056
+ # @!attribute [rw] memory_record_schema
5057
+ # Schema for metadata fields on records generated by this reflection
5058
+ # override.
5059
+ # @return [Types::MemoryRecordSchema]
5060
+ #
4534
5061
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicOverrideReflectionConfigurationInput AWS API Documentation
4535
5062
  #
4536
5063
  class EpisodicOverrideReflectionConfigurationInput < Struct.new(
4537
5064
  :append_to_prompt,
4538
5065
  :model_id,
4539
5066
  :namespaces,
4540
- :namespace_templates)
5067
+ :namespace_templates,
5068
+ :memory_record_schema)
4541
5069
  SENSITIVE = [:append_to_prompt]
4542
5070
  include Aws::Structure
4543
5071
  end
@@ -4555,11 +5083,16 @@ module Aws::BedrockAgentCoreControl
4555
5083
  # nested than the episodic namespaces.
4556
5084
  # @return [Array<String>]
4557
5085
  #
5086
+ # @!attribute [rw] memory_record_schema
5087
+ # "Schema for metadata fields on records generated by reflections.
5088
+ # @return [Types::MemoryRecordSchema]
5089
+ #
4558
5090
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicReflectionConfiguration AWS API Documentation
4559
5091
  #
4560
5092
  class EpisodicReflectionConfiguration < Struct.new(
4561
5093
  :namespaces,
4562
- :namespace_templates)
5094
+ :namespace_templates,
5095
+ :memory_record_schema)
4563
5096
  SENSITIVE = []
4564
5097
  include Aws::Structure
4565
5098
  end
@@ -4576,11 +5109,16 @@ module Aws::BedrockAgentCoreControl
4576
5109
  # nested than episode namespaces.
4577
5110
  # @return [Array<String>]
4578
5111
  #
5112
+ # @!attribute [rw] memory_record_schema
5113
+ # Schema for metadata fields on records generated by reflections.
5114
+ # @return [Types::MemoryRecordSchema]
5115
+ #
4579
5116
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicReflectionConfigurationInput AWS API Documentation
4580
5117
  #
4581
5118
  class EpisodicReflectionConfigurationInput < Struct.new(
4582
5119
  :namespaces,
4583
- :namespace_templates)
5120
+ :namespace_templates,
5121
+ :memory_record_schema)
4584
5122
  SENSITIVE = []
4585
5123
  include Aws::Structure
4586
5124
  end
@@ -4608,13 +5146,19 @@ module Aws::BedrockAgentCoreControl
4608
5146
  # less nested than the episodic namespaces.
4609
5147
  # @return [Array<String>]
4610
5148
  #
5149
+ # @!attribute [rw] memory_record_schema
5150
+ # Schema for metadata fields on records generated by this reflection
5151
+ # override.
5152
+ # @return [Types::MemoryRecordSchema]
5153
+ #
4611
5154
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicReflectionOverride AWS API Documentation
4612
5155
  #
4613
5156
  class EpisodicReflectionOverride < Struct.new(
4614
5157
  :append_to_prompt,
4615
5158
  :model_id,
4616
5159
  :namespaces,
4617
- :namespace_templates)
5160
+ :namespace_templates,
5161
+ :memory_record_schema)
4618
5162
  SENSITIVE = [:append_to_prompt]
4619
5163
  include Aws::Structure
4620
5164
  end
@@ -4748,6 +5292,12 @@ module Aws::BedrockAgentCoreControl
4748
5292
  # referenced by active online evaluation configurations.
4749
5293
  # @return [Boolean]
4750
5294
  #
5295
+ # @!attribute [rw] kms_key_arn
5296
+ # The Amazon Resource Name (ARN) of the customer managed KMS key used
5297
+ # to encrypt the evaluator's sensitive data. This field is only
5298
+ # present for evaluators encrypted with a customer managed key.
5299
+ # @return [String]
5300
+ #
4751
5301
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EvaluatorSummary AWS API Documentation
4752
5302
  #
4753
5303
  class EvaluatorSummary < Struct.new(
@@ -4760,11 +5310,35 @@ module Aws::BedrockAgentCoreControl
4760
5310
  :status,
4761
5311
  :created_at,
4762
5312
  :updated_at,
4763
- :locked_for_modification)
5313
+ :locked_for_modification,
5314
+ :kms_key_arn)
4764
5315
  SENSITIVE = [:description]
4765
5316
  include Aws::Structure
4766
5317
  end
4767
5318
 
5319
+ # Configuration for metadata extraction from conversational content.
5320
+ #
5321
+ # @note ExtractionConfig is a union - when making an API calls you must set exactly one of the members.
5322
+ #
5323
+ # @note ExtractionConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExtractionConfig corresponding to the set member.
5324
+ #
5325
+ # @!attribute [rw] llm_extraction_config
5326
+ # Model-based extraction using a definition and instructions.
5327
+ # @return [Types::LlmExtractionConfig]
5328
+ #
5329
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ExtractionConfig AWS API Documentation
5330
+ #
5331
+ class ExtractionConfig < Struct.new(
5332
+ :llm_extraction_config,
5333
+ :unknown)
5334
+ SENSITIVE = []
5335
+ include Aws::Structure
5336
+ include Aws::Structure::Union
5337
+
5338
+ class LlmExtractionConfig < ExtractionConfig; end
5339
+ class Unknown < ExtractionConfig; end
5340
+ end
5341
+
4768
5342
  # Contains extraction configuration information for a memory strategy.
4769
5343
  #
4770
5344
  # @note ExtractionConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExtractionConfiguration corresponding to the set member.
@@ -5020,6 +5594,67 @@ module Aws::BedrockAgentCoreControl
5020
5594
  class Unknown < GatewayProtocolConfiguration; end
5021
5595
  end
5022
5596
 
5597
+ # Detailed information about a gateway rule.
5598
+ #
5599
+ # @!attribute [rw] rule_id
5600
+ # The unique identifier of the gateway rule.
5601
+ # @return [String]
5602
+ #
5603
+ # @!attribute [rw] gateway_arn
5604
+ # The Amazon Resource Name (ARN) of the gateway that the rule belongs
5605
+ # to.
5606
+ # @return [String]
5607
+ #
5608
+ # @!attribute [rw] priority
5609
+ # The priority of the rule. Rules are evaluated in order of priority,
5610
+ # with lower numbers evaluated first.
5611
+ # @return [Integer]
5612
+ #
5613
+ # @!attribute [rw] conditions
5614
+ # The conditions that must be met for the rule to apply.
5615
+ # @return [Array<Types::Condition>]
5616
+ #
5617
+ # @!attribute [rw] actions
5618
+ # The actions to take when the rule conditions are met.
5619
+ # @return [Array<Types::Action>]
5620
+ #
5621
+ # @!attribute [rw] description
5622
+ # The description of the gateway rule.
5623
+ # @return [String]
5624
+ #
5625
+ # @!attribute [rw] created_at
5626
+ # The timestamp when the rule was created.
5627
+ # @return [Time]
5628
+ #
5629
+ # @!attribute [rw] status
5630
+ # The current status of the rule.
5631
+ # @return [String]
5632
+ #
5633
+ # @!attribute [rw] system
5634
+ # System-managed metadata for rules created by automated processes.
5635
+ # @return [Types::SystemManagedBlock]
5636
+ #
5637
+ # @!attribute [rw] updated_at
5638
+ # The timestamp when the rule was last updated.
5639
+ # @return [Time]
5640
+ #
5641
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GatewayRuleDetail AWS API Documentation
5642
+ #
5643
+ class GatewayRuleDetail < Struct.new(
5644
+ :rule_id,
5645
+ :gateway_arn,
5646
+ :priority,
5647
+ :conditions,
5648
+ :actions,
5649
+ :description,
5650
+ :created_at,
5651
+ :status,
5652
+ :system,
5653
+ :updated_at)
5654
+ SENSITIVE = []
5655
+ include Aws::Structure
5656
+ end
5657
+
5023
5658
  # Contains summary information about a gateway.
5024
5659
  #
5025
5660
  # @!attribute [rw] gateway_id
@@ -5138,6 +5773,10 @@ module Aws::BedrockAgentCoreControl
5138
5773
  # authorization code grant type and requires user federation.
5139
5774
  # @return [Types::AuthorizationData]
5140
5775
  #
5776
+ # @!attribute [rw] protocol_type
5777
+ # The protocol type of the gateway target.
5778
+ # @return [String]
5779
+ #
5141
5780
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GatewayTarget AWS API Documentation
5142
5781
  #
5143
5782
  class GatewayTarget < Struct.new(
@@ -5155,7 +5794,8 @@ module Aws::BedrockAgentCoreControl
5155
5794
  :metadata_configuration,
5156
5795
  :private_endpoint,
5157
5796
  :private_endpoint_managed_resources,
5158
- :authorization_data)
5797
+ :authorization_data,
5798
+ :protocol_type)
5159
5799
  SENSITIVE = [:name, :description]
5160
5800
  include Aws::Structure
5161
5801
  end
@@ -5655,16 +6295,171 @@ module Aws::BedrockAgentCoreControl
5655
6295
  include Aws::Structure
5656
6296
  end
5657
6297
 
6298
+ # @!attribute [rw] bundle_id
6299
+ # The unique identifier of the configuration bundle to retrieve.
6300
+ # @return [String]
6301
+ #
6302
+ # @!attribute [rw] branch_name
6303
+ # The branch name to get the latest version from. If not specified,
6304
+ # returns the latest version on the mainline branch.
6305
+ # @return [String]
6306
+ #
6307
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleRequest AWS API Documentation
6308
+ #
6309
+ class GetConfigurationBundleRequest < Struct.new(
6310
+ :bundle_id,
6311
+ :branch_name)
6312
+ SENSITIVE = []
6313
+ include Aws::Structure
6314
+ end
6315
+
6316
+ # @!attribute [rw] bundle_arn
6317
+ # The Amazon Resource Name (ARN) of the configuration bundle.
6318
+ # @return [String]
6319
+ #
6320
+ # @!attribute [rw] bundle_id
6321
+ # The unique identifier of the configuration bundle.
6322
+ # @return [String]
6323
+ #
6324
+ # @!attribute [rw] bundle_name
6325
+ # The name of the configuration bundle.
6326
+ # @return [String]
6327
+ #
6328
+ # @!attribute [rw] description
6329
+ # The description of the configuration bundle.
6330
+ # @return [String]
6331
+ #
6332
+ # @!attribute [rw] version_id
6333
+ # The version identifier of this configuration bundle.
6334
+ # @return [String]
6335
+ #
6336
+ # @!attribute [rw] components
6337
+ # A map of component identifiers to their configurations for this
6338
+ # version.
6339
+ # @return [Hash<String,Types::ComponentConfiguration>]
6340
+ #
6341
+ # @!attribute [rw] lineage_metadata
6342
+ # The version lineage metadata, including parent versions, branch
6343
+ # name, and creation source.
6344
+ # @return [Types::VersionLineageMetadata]
6345
+ #
6346
+ # @!attribute [rw] created_at
6347
+ # The timestamp when the configuration bundle was created.
6348
+ # @return [Time]
6349
+ #
6350
+ # @!attribute [rw] updated_at
6351
+ # The timestamp when the configuration bundle was last updated.
6352
+ # @return [Time]
6353
+ #
6354
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleResponse AWS API Documentation
6355
+ #
6356
+ class GetConfigurationBundleResponse < Struct.new(
6357
+ :bundle_arn,
6358
+ :bundle_id,
6359
+ :bundle_name,
6360
+ :description,
6361
+ :version_id,
6362
+ :components,
6363
+ :lineage_metadata,
6364
+ :created_at,
6365
+ :updated_at)
6366
+ SENSITIVE = [:description, :components]
6367
+ include Aws::Structure
6368
+ end
6369
+
6370
+ # @!attribute [rw] bundle_id
6371
+ # The unique identifier of the configuration bundle.
6372
+ # @return [String]
6373
+ #
6374
+ # @!attribute [rw] version_id
6375
+ # The version identifier of the configuration bundle version to
6376
+ # retrieve.
6377
+ # @return [String]
6378
+ #
6379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersionRequest AWS API Documentation
6380
+ #
6381
+ class GetConfigurationBundleVersionRequest < Struct.new(
6382
+ :bundle_id,
6383
+ :version_id)
6384
+ SENSITIVE = []
6385
+ include Aws::Structure
6386
+ end
6387
+
6388
+ # @!attribute [rw] bundle_arn
6389
+ # The Amazon Resource Name (ARN) of the configuration bundle.
6390
+ # @return [String]
6391
+ #
6392
+ # @!attribute [rw] bundle_id
6393
+ # The unique identifier of the configuration bundle.
6394
+ # @return [String]
6395
+ #
6396
+ # @!attribute [rw] bundle_name
6397
+ # The name of the configuration bundle.
6398
+ # @return [String]
6399
+ #
6400
+ # @!attribute [rw] description
6401
+ # The description of the configuration bundle.
6402
+ # @return [String]
6403
+ #
6404
+ # @!attribute [rw] version_id
6405
+ # The version identifier of this configuration bundle version.
6406
+ # @return [String]
6407
+ #
6408
+ # @!attribute [rw] components
6409
+ # A map of component identifiers to their configurations for this
6410
+ # version.
6411
+ # @return [Hash<String,Types::ComponentConfiguration>]
6412
+ #
6413
+ # @!attribute [rw] lineage_metadata
6414
+ # The version lineage metadata, including parent versions, branch
6415
+ # name, and creation source.
6416
+ # @return [Types::VersionLineageMetadata]
6417
+ #
6418
+ # @!attribute [rw] created_at
6419
+ # The timestamp when the configuration bundle was created.
6420
+ # @return [Time]
6421
+ #
6422
+ # @!attribute [rw] version_created_at
6423
+ # The timestamp when this specific version was created.
6424
+ # @return [Time]
6425
+ #
6426
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersionResponse AWS API Documentation
6427
+ #
6428
+ class GetConfigurationBundleVersionResponse < Struct.new(
6429
+ :bundle_arn,
6430
+ :bundle_id,
6431
+ :bundle_name,
6432
+ :description,
6433
+ :version_id,
6434
+ :components,
6435
+ :lineage_metadata,
6436
+ :created_at,
6437
+ :version_created_at)
6438
+ SENSITIVE = [:description, :components]
6439
+ include Aws::Structure
6440
+ end
6441
+
5658
6442
  # @!attribute [rw] evaluator_id
5659
6443
  # The unique identifier of the evaluator to retrieve. Can be a
5660
6444
  # built-in evaluator ID (e.g., Builtin.Helpfulness) or a custom
5661
6445
  # evaluator ID.
5662
6446
  # @return [String]
5663
6447
  #
6448
+ # @!attribute [rw] included_data
6449
+ # Controls which data is returned in the response. `ALL_DATA`
6450
+ # (default) returns the full evaluator including decrypted
6451
+ # instructions and rating scale. For evaluators encrypted with a
6452
+ # customer managed KMS key, this requires `kms:Decrypt` permission on
6453
+ # the key. `METADATA_ONLY` returns evaluator metadata and model
6454
+ # configuration without instructions or rating scale, and does not
6455
+ # require any KMS permissions.
6456
+ # @return [String]
6457
+ #
5664
6458
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetEvaluatorRequest AWS API Documentation
5665
6459
  #
5666
6460
  class GetEvaluatorRequest < Struct.new(
5667
- :evaluator_id)
6461
+ :evaluator_id,
6462
+ :included_data)
5668
6463
  SENSITIVE = []
5669
6464
  include Aws::Structure
5670
6465
  end
@@ -5712,6 +6507,12 @@ module Aws::BedrockAgentCoreControl
5712
6507
  # referenced by active online evaluation configurations.
5713
6508
  # @return [Boolean]
5714
6509
  #
6510
+ # @!attribute [rw] kms_key_arn
6511
+ # The Amazon Resource Name (ARN) of the customer managed KMS key used
6512
+ # to encrypt the evaluator's sensitive data. This field is only
6513
+ # present for evaluators encrypted with a customer managed key.
6514
+ # @return [String]
6515
+ #
5715
6516
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetEvaluatorResponse AWS API Documentation
5716
6517
  #
5717
6518
  class GetEvaluatorResponse < Struct.new(
@@ -5724,7 +6525,8 @@ module Aws::BedrockAgentCoreControl
5724
6525
  :status,
5725
6526
  :created_at,
5726
6527
  :updated_at,
5727
- :locked_for_modification)
6528
+ :locked_for_modification,
6529
+ :kms_key_arn)
5728
6530
  SENSITIVE = [:description]
5729
6531
  include Aws::Structure
5730
6532
  end
@@ -5852,6 +6654,85 @@ module Aws::BedrockAgentCoreControl
5852
6654
  include Aws::Structure
5853
6655
  end
5854
6656
 
6657
+ # @!attribute [rw] gateway_identifier
6658
+ # The identifier of the gateway containing the rule.
6659
+ # @return [String]
6660
+ #
6661
+ # @!attribute [rw] rule_id
6662
+ # The unique identifier of the rule to retrieve.
6663
+ # @return [String]
6664
+ #
6665
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayRuleRequest AWS API Documentation
6666
+ #
6667
+ class GetGatewayRuleRequest < Struct.new(
6668
+ :gateway_identifier,
6669
+ :rule_id)
6670
+ SENSITIVE = []
6671
+ include Aws::Structure
6672
+ end
6673
+
6674
+ # Create response excludes updatedAt (redundant on create). Get/Update
6675
+ # responses include it via their own output structures.
6676
+ #
6677
+ # @!attribute [rw] rule_id
6678
+ # The unique identifier of the gateway rule.
6679
+ # @return [String]
6680
+ #
6681
+ # @!attribute [rw] gateway_arn
6682
+ # The Amazon Resource Name (ARN) of the gateway that the rule belongs
6683
+ # to.
6684
+ # @return [String]
6685
+ #
6686
+ # @!attribute [rw] priority
6687
+ # The priority of the rule. Rules are evaluated in order of priority,
6688
+ # with lower numbers evaluated first.
6689
+ # @return [Integer]
6690
+ #
6691
+ # @!attribute [rw] conditions
6692
+ # The conditions that must be met for the rule to apply.
6693
+ # @return [Array<Types::Condition>]
6694
+ #
6695
+ # @!attribute [rw] actions
6696
+ # The actions to take when the rule conditions are met.
6697
+ # @return [Array<Types::Action>]
6698
+ #
6699
+ # @!attribute [rw] description
6700
+ # The description of the gateway rule.
6701
+ # @return [String]
6702
+ #
6703
+ # @!attribute [rw] created_at
6704
+ # The timestamp when the rule was created.
6705
+ # @return [Time]
6706
+ #
6707
+ # @!attribute [rw] status
6708
+ # The current status of the rule.
6709
+ # @return [String]
6710
+ #
6711
+ # @!attribute [rw] system
6712
+ # System-managed metadata for rules created by automated processes.
6713
+ # @return [Types::SystemManagedBlock]
6714
+ #
6715
+ # @!attribute [rw] updated_at
6716
+ # The timestamp when the rule was last updated.
6717
+ # @return [Time]
6718
+ #
6719
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayRuleResponse AWS API Documentation
6720
+ #
6721
+ class GetGatewayRuleResponse < Struct.new(
6722
+ :rule_id,
6723
+ :gateway_arn,
6724
+ :priority,
6725
+ :conditions,
6726
+ :actions,
6727
+ :description,
6728
+ :created_at,
6729
+ :status,
6730
+ :system,
6731
+ :updated_at)
6732
+ SENSITIVE = []
6733
+ include Aws::Structure
6734
+ end
6735
+
5855
6736
  # @!attribute [rw] gateway_identifier
5856
6737
  # The identifier of the gateway that contains the target.
5857
6738
  # @return [String]
@@ -5934,6 +6815,10 @@ module Aws::BedrockAgentCoreControl
5934
6815
  # authorization code grant type and requires user federation.
5935
6816
  # @return [Types::AuthorizationData]
5936
6817
  #
6818
+ # @!attribute [rw] protocol_type
6819
+ # The protocol type of the gateway target.
6820
+ # @return [String]
6821
+ #
5937
6822
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTargetResponse AWS API Documentation
5938
6823
  #
5939
6824
  class GetGatewayTargetResponse < Struct.new(
@@ -5951,7 +6836,8 @@ module Aws::BedrockAgentCoreControl
5951
6836
  :metadata_configuration,
5952
6837
  :private_endpoint,
5953
6838
  :private_endpoint_managed_resources,
5954
- :authorization_data)
6839
+ :authorization_data,
6840
+ :protocol_type)
5955
6841
  SENSITIVE = [:name, :description]
5956
6842
  include Aws::Structure
5957
6843
  end
@@ -6905,7 +7791,8 @@ module Aws::BedrockAgentCoreControl
6905
7791
  # @return [Integer]
6906
7792
  #
6907
7793
  # @!attribute [rw] max_tokens
6908
- # The maximum number of tokens allowed before exiting per invocation.
7794
+ # The maximum total number of output tokens the agent can generate
7795
+ # across all model calls within a single invocation.
6909
7796
  # @return [Integer]
6910
7797
  #
6911
7798
  # @!attribute [rw] timeout_seconds
@@ -6980,7 +7867,7 @@ module Aws::BedrockAgentCoreControl
6980
7867
  # @return [String]
6981
7868
  #
6982
7869
  # @!attribute [rw] outbound_auth
6983
- # How Loopy authenticates to this Gateway. Defaults to AWS\_IAM
7870
+ # How harness authenticates to this Gateway. Defaults to AWS\_IAM
6984
7871
  # (SigV4) if omitted.
6985
7872
  # @return [Types::HarnessGatewayOutboundAuth]
6986
7873
  #
@@ -7126,7 +8013,7 @@ module Aws::BedrockAgentCoreControl
7126
8013
  #
7127
8014
  # @!attribute [rw] max_tokens
7128
8015
  # The maximum number of tokens to allow in the generated response per
7129
- # iteration.
8016
+ # model call.
7130
8017
  # @return [Integer]
7131
8018
  #
7132
8019
  # @!attribute [rw] temperature
@@ -7264,7 +8151,7 @@ module Aws::BedrockAgentCoreControl
7264
8151
  #
7265
8152
  # @!attribute [rw] max_tokens
7266
8153
  # The maximum number of tokens to allow in the generated response per
7267
- # iteration.
8154
+ # model call.
7268
8155
  # @return [Integer]
7269
8156
  #
7270
8157
  # @!attribute [rw] temperature
@@ -7383,7 +8270,7 @@ module Aws::BedrockAgentCoreControl
7383
8270
  #
7384
8271
  # @!attribute [rw] max_tokens
7385
8272
  # The maximum number of tokens to allow in the generated response per
7386
- # iteration.
8273
+ # model call.
7387
8274
  # @return [Integer]
7388
8275
  #
7389
8276
  # @!attribute [rw] temperature
@@ -7413,7 +8300,7 @@ module Aws::BedrockAgentCoreControl
7413
8300
  # @return [String]
7414
8301
  #
7415
8302
  # @!attribute [rw] headers
7416
- # Map of key/value pairs for HTTP headers.
8303
+ # Custom headers to include when connecting to the remote MCP server.
7417
8304
  # @return [Hash<String,String>]
7418
8305
  #
7419
8306
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessRemoteMcpConfig AWS API Documentation
@@ -7669,6 +8556,31 @@ module Aws::BedrockAgentCoreControl
7669
8556
  class Unknown < HarnessTruncationStrategyConfiguration; end
7670
8557
  end
7671
8558
 
8559
+ # The HTTP target configuration for a gateway target. Contains the
8560
+ # configuration for HTTP-based target endpoints.
8561
+ #
8562
+ # @note HttpTargetConfiguration is a union - when making an API calls you must set exactly one of the members.
8563
+ #
8564
+ # @note HttpTargetConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of HttpTargetConfiguration corresponding to the set member.
8565
+ #
8566
+ # @!attribute [rw] agentcore_runtime
8567
+ # The AgentCore Runtime target configuration for HTTP-based
8568
+ # communication with an agent runtime.
8569
+ # @return [Types::RuntimeTargetConfiguration]
8570
+ #
8571
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HttpTargetConfiguration AWS API Documentation
8572
+ #
8573
+ class HttpTargetConfiguration < Struct.new(
8574
+ :agentcore_runtime,
8575
+ :unknown)
8576
+ SENSITIVE = []
8577
+ include Aws::Structure
8578
+ include Aws::Structure::Union
8579
+
8580
+ class AgentcoreRuntime < HttpTargetConfiguration; end
8581
+ class Unknown < HttpTargetConfiguration; end
8582
+ end
8583
+
7672
8584
  # An IAM credential provider for gateway authentication. This structure
7673
8585
  # contains the configuration for authenticating with the target endpoint
7674
8586
  # using IAM credentials and SigV4 signing.
@@ -7693,6 +8605,28 @@ module Aws::BedrockAgentCoreControl
7693
8605
  include Aws::Structure
7694
8606
  end
7695
8607
 
8608
+ # An IAM principal specification for rule matching.
8609
+ #
8610
+ # @!attribute [rw] arn
8611
+ # The Amazon Resource Name (ARN) of the IAM principal. Supports user,
8612
+ # role, and assumed-role ARNs. Wildcards can be used with the
8613
+ # `StringLike` operator.
8614
+ # @return [String]
8615
+ #
8616
+ # @!attribute [rw] operator
8617
+ # The match operator. `StringEquals` requires an exact match.
8618
+ # `StringLike` supports wildcard patterns using `*` and `?`.
8619
+ # @return [String]
8620
+ #
8621
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/IamPrincipal AWS API Documentation
8622
+ #
8623
+ class IamPrincipal < Struct.new(
8624
+ :arn,
8625
+ :operator)
8626
+ SENSITIVE = []
8627
+ include Aws::Structure
8628
+ end
8629
+
7696
8630
  # Configuration settings for connecting to a supported OAuth2 provider.
7697
8631
  # This includes client credentials and OAuth2 discovery information for
7698
8632
  # providers that have built-in support.
@@ -7757,6 +8691,25 @@ module Aws::BedrockAgentCoreControl
7757
8691
  include Aws::Structure
7758
8692
  end
7759
8693
 
8694
+ # A metadata key indexed for filtering.
8695
+ #
8696
+ # @!attribute [rw] key
8697
+ # The metadata key name to index.
8698
+ # @return [String]
8699
+ #
8700
+ # @!attribute [rw] type
8701
+ # The data type of the indexed key.
8702
+ # @return [String]
8703
+ #
8704
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/IndexedKey AWS API Documentation
8705
+ #
8706
+ class IndexedKey < Struct.new(
8707
+ :key,
8708
+ :type)
8709
+ SENSITIVE = []
8710
+ include Aws::Structure
8711
+ end
8712
+
7760
8713
  # The configuration parameters that control how the foundation model
7761
8714
  # behaves during evaluation, including response generation settings.
7762
8715
  #
@@ -8296,9 +9249,108 @@ module Aws::BedrockAgentCoreControl
8296
9249
  include Aws::Structure
8297
9250
  end
8298
9251
 
8299
- # @!attribute [rw] next_token
8300
- # The pagination token from a previous request to retrieve the next
8301
- # page of results.
9252
+ # @!attribute [rw] bundle_id
9253
+ # The unique identifier of the configuration bundle to list versions
9254
+ # for.
9255
+ # @return [String]
9256
+ #
9257
+ # @!attribute [rw] next_token
9258
+ # If the total number of results is greater than the `maxResults`
9259
+ # value provided in the request, enter the token returned in the
9260
+ # `nextToken` field in the response in this field to return the next
9261
+ # batch of results.
9262
+ # @return [String]
9263
+ #
9264
+ # @!attribute [rw] max_results
9265
+ # The maximum number of results to return in the response. If the
9266
+ # total number of results is greater than this value, use the token
9267
+ # returned in the response in the `nextToken` field when making
9268
+ # another request to return the next batch of results.
9269
+ # @return [Integer]
9270
+ #
9271
+ # @!attribute [rw] filter
9272
+ # An optional filter for listing versions, including branch name,
9273
+ # creation source, and whether to return only the latest version per
9274
+ # branch.
9275
+ # @return [Types::VersionFilter]
9276
+ #
9277
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundleVersionsRequest AWS API Documentation
9278
+ #
9279
+ class ListConfigurationBundleVersionsRequest < Struct.new(
9280
+ :bundle_id,
9281
+ :next_token,
9282
+ :max_results,
9283
+ :filter)
9284
+ SENSITIVE = []
9285
+ include Aws::Structure
9286
+ end
9287
+
9288
+ # @!attribute [rw] versions
9289
+ # The list of configuration bundle version summaries.
9290
+ # @return [Array<Types::ConfigurationBundleVersionSummary>]
9291
+ #
9292
+ # @!attribute [rw] next_token
9293
+ # If the total number of results is greater than the `maxResults`
9294
+ # value provided in the request, use this token when making another
9295
+ # request in the `nextToken` field to return the next batch of
9296
+ # results.
9297
+ # @return [String]
9298
+ #
9299
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundleVersionsResponse AWS API Documentation
9300
+ #
9301
+ class ListConfigurationBundleVersionsResponse < Struct.new(
9302
+ :versions,
9303
+ :next_token)
9304
+ SENSITIVE = []
9305
+ include Aws::Structure
9306
+ end
9307
+
9308
+ # @!attribute [rw] next_token
9309
+ # If the total number of results is greater than the `maxResults`
9310
+ # value provided in the request, enter the token returned in the
9311
+ # `nextToken` field in the response in this field to return the next
9312
+ # batch of results.
9313
+ # @return [String]
9314
+ #
9315
+ # @!attribute [rw] max_results
9316
+ # The maximum number of results to return in the response. If the
9317
+ # total number of results is greater than this value, use the token
9318
+ # returned in the response in the `nextToken` field when making
9319
+ # another request to return the next batch of results.
9320
+ # @return [Integer]
9321
+ #
9322
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundlesRequest AWS API Documentation
9323
+ #
9324
+ class ListConfigurationBundlesRequest < Struct.new(
9325
+ :next_token,
9326
+ :max_results)
9327
+ SENSITIVE = []
9328
+ include Aws::Structure
9329
+ end
9330
+
9331
+ # @!attribute [rw] bundles
9332
+ # The list of configuration bundle summaries.
9333
+ # @return [Array<Types::ConfigurationBundleSummary>]
9334
+ #
9335
+ # @!attribute [rw] next_token
9336
+ # If the total number of results is greater than the `maxResults`
9337
+ # value provided in the request, use this token when making another
9338
+ # request in the `nextToken` field to return the next batch of
9339
+ # results.
9340
+ # @return [String]
9341
+ #
9342
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundlesResponse AWS API Documentation
9343
+ #
9344
+ class ListConfigurationBundlesResponse < Struct.new(
9345
+ :bundles,
9346
+ :next_token)
9347
+ SENSITIVE = []
9348
+ include Aws::Structure
9349
+ end
9350
+
9351
+ # @!attribute [rw] next_token
9352
+ # The pagination token from a previous request to retrieve the next
9353
+ # page of results.
8302
9354
  # @return [String]
8303
9355
  #
8304
9356
  # @!attribute [rw] max_results
@@ -8333,6 +9385,48 @@ module Aws::BedrockAgentCoreControl
8333
9385
  include Aws::Structure
8334
9386
  end
8335
9387
 
9388
+ # @!attribute [rw] gateway_identifier
9389
+ # The identifier of the gateway to list rules for.
9390
+ # @return [String]
9391
+ #
9392
+ # @!attribute [rw] max_results
9393
+ # The maximum number of results to return in the response. If the
9394
+ # total number of results is greater than this value, use the token
9395
+ # returned in the response in the `nextToken` field when making
9396
+ # another request to return the next batch of results.
9397
+ # @return [Integer]
9398
+ #
9399
+ # @!attribute [rw] next_token
9400
+ # The pagination token from a previous request.
9401
+ # @return [String]
9402
+ #
9403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayRulesRequest AWS API Documentation
9404
+ #
9405
+ class ListGatewayRulesRequest < Struct.new(
9406
+ :gateway_identifier,
9407
+ :max_results,
9408
+ :next_token)
9409
+ SENSITIVE = []
9410
+ include Aws::Structure
9411
+ end
9412
+
9413
+ # @!attribute [rw] gateway_rules
9414
+ # The list of gateway rules.
9415
+ # @return [Array<Types::GatewayRuleDetail>]
9416
+ #
9417
+ # @!attribute [rw] next_token
9418
+ # The pagination token to use in a subsequent request.
9419
+ # @return [String]
9420
+ #
9421
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayRulesResponse AWS API Documentation
9422
+ #
9423
+ class ListGatewayRulesResponse < Struct.new(
9424
+ :gateway_rules,
9425
+ :next_token)
9426
+ SENSITIVE = []
9427
+ include Aws::Structure
9428
+ end
9429
+
8336
9430
  # @!attribute [rw] gateway_identifier
8337
9431
  # The identifier of the gateway to list targets for.
8338
9432
  # @return [String]
@@ -9004,6 +10098,31 @@ module Aws::BedrockAgentCoreControl
9004
10098
  include Aws::Structure
9005
10099
  end
9006
10100
 
10101
+ # Model-based metadata extraction configuration.
10102
+ #
10103
+ # @!attribute [rw] llm_extraction_instruction
10104
+ # Instructions for extraction. Supports built-in operators like
10105
+ # LATEST\_VALUE or custom natural-language instructions.
10106
+ # @return [String]
10107
+ #
10108
+ # @!attribute [rw] definition
10109
+ # Description of what this metadata field represents.
10110
+ # @return [String]
10111
+ #
10112
+ # @!attribute [rw] validation
10113
+ # Validation rules to constrain extracted values.
10114
+ # @return [Types::Validation]
10115
+ #
10116
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LlmExtractionConfig AWS API Documentation
10117
+ #
10118
+ class LlmExtractionConfig < Struct.new(
10119
+ :llm_extraction_instruction,
10120
+ :definition,
10121
+ :validation)
10122
+ SENSITIVE = [:llm_extraction_instruction, :definition]
10123
+ include Aws::Structure
10124
+ end
10125
+
9007
10126
  # The configuration for a Model Context Protocol (MCP) gateway. This
9008
10127
  # structure defines how the gateway implements the MCP protocol.
9009
10128
  #
@@ -9103,6 +10222,61 @@ module Aws::BedrockAgentCoreControl
9103
10222
  include Aws::Structure
9104
10223
  end
9105
10224
 
10225
+ # A condition that matches requests based on the request path.
10226
+ #
10227
+ # @!attribute [rw] any_of
10228
+ # A list of path patterns. The condition is met if the request path
10229
+ # matches any of the patterns.
10230
+ # @return [Array<String>]
10231
+ #
10232
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MatchPaths AWS API Documentation
10233
+ #
10234
+ class MatchPaths < Struct.new(
10235
+ :any_of)
10236
+ SENSITIVE = []
10237
+ include Aws::Structure
10238
+ end
10239
+
10240
+ # Union for principal matching. Currently supports IAM principal ARN
10241
+ # glob matching. Extensible for future principal types (e.g., OAuth
10242
+ # client ID).
10243
+ #
10244
+ # @note MatchPrincipalEntry is a union - when making an API calls you must set exactly one of the members.
10245
+ #
10246
+ # @note MatchPrincipalEntry is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MatchPrincipalEntry corresponding to the set member.
10247
+ #
10248
+ # @!attribute [rw] iam_principal
10249
+ # An IAM principal to match against, specified by ARN.
10250
+ # @return [Types::IamPrincipal]
10251
+ #
10252
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MatchPrincipalEntry AWS API Documentation
10253
+ #
10254
+ class MatchPrincipalEntry < Struct.new(
10255
+ :iam_principal,
10256
+ :unknown)
10257
+ SENSITIVE = []
10258
+ include Aws::Structure
10259
+ include Aws::Structure::Union
10260
+
10261
+ class IamPrincipal < MatchPrincipalEntry; end
10262
+ class Unknown < MatchPrincipalEntry; end
10263
+ end
10264
+
10265
+ # A condition that matches requests based on the caller's identity.
10266
+ #
10267
+ # @!attribute [rw] any_of
10268
+ # A list of principal entries. The condition is met if any of the
10269
+ # entries match the caller's identity.
10270
+ # @return [Array<Types::MatchPrincipalEntry>]
10271
+ #
10272
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MatchPrincipals AWS API Documentation
10273
+ #
10274
+ class MatchPrincipals < Struct.new(
10275
+ :any_of)
10276
+ SENSITIVE = []
10277
+ include Aws::Structure
10278
+ end
10279
+
9106
10280
  # The Model Context Protocol (MCP) descriptor for a registry record.
9107
10281
  # Contains the server definition and tools definition for an
9108
10282
  # MCP-compatible server. The schema is validated against the MCP
@@ -9164,11 +10338,6 @@ module Aws::BedrockAgentCoreControl
9164
10338
  # with mcpToolSchema.
9165
10339
  # @return [Types::McpToolSchemaConfiguration]
9166
10340
  #
9167
- # @!attribute [rw] resource_priority
9168
- # Priority for resolving MCP server targets with shared resource URIs.
9169
- # Lower values take precedence. Defaults to 1000 when not set.
9170
- # @return [Integer]
9171
- #
9172
10341
  # @!attribute [rw] listing_mode
9173
10342
  # The listing mode for the MCP server target configuration. MCP
9174
10343
  # resources for default targets are cached at the control plane for
@@ -9176,13 +10345,18 @@ module Aws::BedrockAgentCoreControl
9176
10345
  # retrieved when listing tools.
9177
10346
  # @return [String]
9178
10347
  #
10348
+ # @!attribute [rw] resource_priority
10349
+ # Priority for resolving MCP server targets with shared resource URIs.
10350
+ # Lower values take precedence. Defaults to 1000 when not set.
10351
+ # @return [Integer]
10352
+ #
9179
10353
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/McpServerTargetConfiguration AWS API Documentation
9180
10354
  #
9181
10355
  class McpServerTargetConfiguration < Struct.new(
9182
10356
  :endpoint,
9183
10357
  :mcp_tool_schema,
9184
- :resource_priority,
9185
- :listing_mode)
10358
+ :listing_mode,
10359
+ :resource_priority)
9186
10360
  SENSITIVE = []
9187
10361
  include Aws::Structure
9188
10362
  end
@@ -9322,6 +10496,11 @@ module Aws::BedrockAgentCoreControl
9322
10496
  # The list of memory strategies associated with this memory.
9323
10497
  # @return [Array<Types::MemoryStrategy>]
9324
10498
  #
10499
+ # @!attribute [rw] indexed_keys
10500
+ # The indexed metadata keys for this memory. Only indexed keys can be
10501
+ # used in metadata filters.
10502
+ # @return [Array<Types::IndexedKey>]
10503
+ #
9325
10504
  # @!attribute [rw] stream_delivery_resources
9326
10505
  # Configuration for streaming memory record data to external
9327
10506
  # resources.
@@ -9342,11 +10521,26 @@ module Aws::BedrockAgentCoreControl
9342
10521
  :created_at,
9343
10522
  :updated_at,
9344
10523
  :strategies,
10524
+ :indexed_keys,
9345
10525
  :stream_delivery_resources)
9346
10526
  SENSITIVE = [:description]
9347
10527
  include Aws::Structure
9348
10528
  end
9349
10529
 
10530
+ # Schema for metadata on memory records generated by a strategy.
10531
+ #
10532
+ # @!attribute [rw] metadata_schema
10533
+ # The metadata field definitions for this strategy.
10534
+ # @return [Array<Types::MetadataSchemaEntry>]
10535
+ #
10536
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MemoryRecordSchema AWS API Documentation
10537
+ #
10538
+ class MemoryRecordSchema < Struct.new(
10539
+ :metadata_schema)
10540
+ SENSITIVE = []
10541
+ include Aws::Structure
10542
+ end
10543
+
9350
10544
  # Contains information about a memory strategy.
9351
10545
  #
9352
10546
  # @!attribute [rw] strategy_id
@@ -9389,6 +10583,10 @@ module Aws::BedrockAgentCoreControl
9389
10583
  # The current status of the memory strategy.
9390
10584
  # @return [String]
9391
10585
  #
10586
+ # @!attribute [rw] memory_record_schema
10587
+ # Schema for metadata fields on records generated by this strategy.
10588
+ # @return [Types::MemoryRecordSchema]
10589
+ #
9392
10590
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MemoryStrategy AWS API Documentation
9393
10591
  #
9394
10592
  class MemoryStrategy < Struct.new(
@@ -9401,7 +10599,8 @@ module Aws::BedrockAgentCoreControl
9401
10599
  :namespace_templates,
9402
10600
  :created_at,
9403
10601
  :updated_at,
9404
- :status)
10602
+ :status,
10603
+ :memory_record_schema)
9405
10604
  SENSITIVE = [:description]
9406
10605
  include Aws::Structure
9407
10606
  end
@@ -9541,6 +10740,32 @@ module Aws::BedrockAgentCoreControl
9541
10740
  include Aws::Structure
9542
10741
  end
9543
10742
 
10743
+ # A metadata field definition within a strategy's schema.
10744
+ #
10745
+ # @!attribute [rw] key
10746
+ # The metadata field name. Must match an indexed key to be queryable
10747
+ # via metadata filters.
10748
+ # @return [String]
10749
+ #
10750
+ # @!attribute [rw] type
10751
+ # The MetadataValueType.
10752
+ # @return [String]
10753
+ #
10754
+ # @!attribute [rw] extraction_config
10755
+ # Configuration for extracting this metadata value from conversational
10756
+ # content.
10757
+ # @return [Types::ExtractionConfig]
10758
+ #
10759
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MetadataSchemaEntry AWS API Documentation
10760
+ #
10761
+ class MetadataSchemaEntry < Struct.new(
10762
+ :key,
10763
+ :type,
10764
+ :extraction_config)
10765
+ SENSITIVE = []
10766
+ include Aws::Structure
10767
+ end
10768
+
9544
10769
  # Input configuration for a Microsoft OAuth2 provider.
9545
10770
  #
9546
10771
  # @!attribute [rw] client_id
@@ -9693,6 +10918,10 @@ module Aws::BedrockAgentCoreControl
9693
10918
  # The updated configuration for the memory strategy.
9694
10919
  # @return [Types::ModifyStrategyConfiguration]
9695
10920
  #
10921
+ # @!attribute [rw] memory_record_schema
10922
+ # Updated metadata schema for records generated by this strategy.
10923
+ # @return [Types::MemoryRecordSchema]
10924
+ #
9696
10925
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModifyMemoryStrategyInput AWS API Documentation
9697
10926
  #
9698
10927
  class ModifyMemoryStrategyInput < Struct.new(
@@ -9700,7 +10929,8 @@ module Aws::BedrockAgentCoreControl
9700
10929
  :description,
9701
10930
  :namespaces,
9702
10931
  :namespace_templates,
9703
- :configuration)
10932
+ :configuration,
10933
+ :memory_record_schema)
9704
10934
  SENSITIVE = [:description]
9705
10935
  include Aws::Structure
9706
10936
  end
@@ -9806,6 +11036,25 @@ module Aws::BedrockAgentCoreControl
9806
11036
  include Aws::Structure
9807
11037
  end
9808
11038
 
11039
+ # Validation for NUMBER fields.
11040
+ #
11041
+ # @!attribute [rw] min_value
11042
+ # Minimum allowed value.
11043
+ # @return [Float]
11044
+ #
11045
+ # @!attribute [rw] max_value
11046
+ # Maximum allowed value.
11047
+ # @return [Float]
11048
+ #
11049
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/NumberValidation AWS API Documentation
11050
+ #
11051
+ class NumberValidation < Struct.new(
11052
+ :min_value,
11053
+ :max_value)
11054
+ SENSITIVE = []
11055
+ include Aws::Structure
11056
+ end
11057
+
9809
11058
  # The definition of a numerical rating scale option that provides a
9810
11059
  # numeric value with its description for evaluation scoring.
9811
11060
  #
@@ -10142,6 +11391,25 @@ module Aws::BedrockAgentCoreControl
10142
11391
  class Unknown < Oauth2ProviderConfigOutput; end
10143
11392
  end
10144
11393
 
11394
+ # Configuration for on-behalf-of token exchange
11395
+ #
11396
+ # @!attribute [rw] grant_type
11397
+ # The grant type for the on-behalf-of token exchange.
11398
+ # @return [String]
11399
+ #
11400
+ # @!attribute [rw] token_exchange_grant_type_config
11401
+ # Configuration specific to TOKEN\_EXCHANGE grant type (RFC 8693)
11402
+ # @return [Types::TokenExchangeGrantTypeConfigType]
11403
+ #
11404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OnBehalfOfTokenExchangeConfigType AWS API Documentation
11405
+ #
11406
+ class OnBehalfOfTokenExchangeConfigType < Struct.new(
11407
+ :grant_type,
11408
+ :token_exchange_grant_type_config)
11409
+ SENSITIVE = []
11410
+ include Aws::Structure
11411
+ end
11412
+
10145
11413
  # The summary information about an online evaluation configuration,
10146
11414
  # including basic metadata and execution status.
10147
11415
  #
@@ -11109,6 +12377,36 @@ module Aws::BedrockAgentCoreControl
11109
12377
  include Aws::Structure
11110
12378
  end
11111
12379
 
12380
+ # An action that routes requests to a gateway target, either statically
12381
+ # or with weighted traffic splitting.
12382
+ #
12383
+ # @note RouteToTargetAction is a union - when making an API calls you must set exactly one of the members.
12384
+ #
12385
+ # @note RouteToTargetAction is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RouteToTargetAction corresponding to the set member.
12386
+ #
12387
+ # @!attribute [rw] static_route
12388
+ # A static route that sends all matching requests to a single target.
12389
+ # @return [Types::StaticRoute]
12390
+ #
12391
+ # @!attribute [rw] weighted_route
12392
+ # A weighted route that splits traffic between multiple targets.
12393
+ # @return [Types::WeightedRoute]
12394
+ #
12395
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RouteToTargetAction AWS API Documentation
12396
+ #
12397
+ class RouteToTargetAction < Struct.new(
12398
+ :static_route,
12399
+ :weighted_route,
12400
+ :unknown)
12401
+ SENSITIVE = []
12402
+ include Aws::Structure
12403
+ include Aws::Structure::Union
12404
+
12405
+ class StaticRoute < RouteToTargetAction; end
12406
+ class WeightedRoute < RouteToTargetAction; end
12407
+ class Unknown < RouteToTargetAction; end
12408
+ end
12409
+
11112
12410
  # The evaluation rule that defines sampling configuration, filtering
11113
12411
  # criteria, and session detection settings for online evaluation.
11114
12412
  #
@@ -11153,6 +12451,28 @@ module Aws::BedrockAgentCoreControl
11153
12451
  include Aws::Structure
11154
12452
  end
11155
12453
 
12454
+ # Configuration for an AgentCore Runtime target. Specifies the agent
12455
+ # runtime to route requests to via HTTP.
12456
+ #
12457
+ # @!attribute [rw] arn
12458
+ # The Amazon Resource Name (ARN) of the AgentCore Runtime to route
12459
+ # requests to.
12460
+ # @return [String]
12461
+ #
12462
+ # @!attribute [rw] qualifier
12463
+ # The qualifier for the agent runtime, used to target a specific
12464
+ # endpoint version. If not specified, the default endpoint is used.
12465
+ # @return [String]
12466
+ #
12467
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RuntimeTargetConfiguration AWS API Documentation
12468
+ #
12469
+ class RuntimeTargetConfiguration < Struct.new(
12470
+ :arn,
12471
+ :qualifier)
12472
+ SENSITIVE = []
12473
+ include Aws::Structure
12474
+ end
12475
+
11156
12476
  # The Amazon S3 configuration for a gateway. This structure defines how
11157
12477
  # the gateway accesses files in Amazon S3.
11158
12478
  #
@@ -11456,13 +12776,18 @@ module Aws::BedrockAgentCoreControl
11456
12776
  # The namespaceTemplates associated with the semantic memory strategy.
11457
12777
  # @return [Array<String>]
11458
12778
  #
12779
+ # @!attribute [rw] memory_record_schema
12780
+ # Schema for metadata on memory records generated by a strategy.
12781
+ # @return [Types::MemoryRecordSchema]
12782
+ #
11459
12783
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SemanticMemoryStrategyInput AWS API Documentation
11460
12784
  #
11461
12785
  class SemanticMemoryStrategyInput < Struct.new(
11462
12786
  :name,
11463
12787
  :description,
11464
12788
  :namespaces,
11465
- :namespace_templates)
12789
+ :namespace_templates,
12790
+ :memory_record_schema)
11466
12791
  SENSITIVE = [:description]
11467
12792
  include Aws::Structure
11468
12793
  end
@@ -11829,6 +13154,39 @@ module Aws::BedrockAgentCoreControl
11829
13154
  include Aws::Structure
11830
13155
  end
11831
13156
 
13157
+ # A static configuration bundle override.
13158
+ #
13159
+ # @!attribute [rw] bundle_arn
13160
+ # The Amazon Resource Name (ARN) of the configuration bundle to apply.
13161
+ # @return [String]
13162
+ #
13163
+ # @!attribute [rw] bundle_version
13164
+ # The version of the configuration bundle to apply.
13165
+ # @return [String]
13166
+ #
13167
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StaticOverride AWS API Documentation
13168
+ #
13169
+ class StaticOverride < Struct.new(
13170
+ :bundle_arn,
13171
+ :bundle_version)
13172
+ SENSITIVE = []
13173
+ include Aws::Structure
13174
+ end
13175
+
13176
+ # A static route to a single gateway target.
13177
+ #
13178
+ # @!attribute [rw] target_name
13179
+ # The name of the target to route requests to.
13180
+ # @return [String]
13181
+ #
13182
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StaticRoute AWS API Documentation
13183
+ #
13184
+ class StaticRoute < Struct.new(
13185
+ :target_name)
13186
+ SENSITIVE = [:target_name]
13187
+ include Aws::Structure
13188
+ end
13189
+
11832
13190
  # Contains configuration information for a memory strategy.
11833
13191
  #
11834
13192
  # @!attribute [rw] type
@@ -11900,11 +13258,44 @@ module Aws::BedrockAgentCoreControl
11900
13258
  include Aws::Structure
11901
13259
  end
11902
13260
 
11903
- # @!attribute [rw] registry_id
11904
- # The identifier of the registry containing the record. You can
11905
- # specify either the Amazon Resource Name (ARN) or the ID of the
11906
- # registry.
11907
- # @return [String]
13261
+ # Validation for STRINGLIST fields.
13262
+ #
13263
+ # @!attribute [rw] allowed_values
13264
+ # Allowed values for items in this STRINGLIST field.
13265
+ # @return [Array<String>]
13266
+ #
13267
+ # @!attribute [rw] max_items
13268
+ # Maximum number of items in the string list.
13269
+ # @return [Integer]
13270
+ #
13271
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StringListValidation AWS API Documentation
13272
+ #
13273
+ class StringListValidation < Struct.new(
13274
+ :allowed_values,
13275
+ :max_items)
13276
+ SENSITIVE = []
13277
+ include Aws::Structure
13278
+ end
13279
+
13280
+ # Validation for STRING fields.
13281
+ #
13282
+ # @!attribute [rw] allowed_values
13283
+ # Allowed values for this STRING field.
13284
+ # @return [Array<String>]
13285
+ #
13286
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StringValidation AWS API Documentation
13287
+ #
13288
+ class StringValidation < Struct.new(
13289
+ :allowed_values)
13290
+ SENSITIVE = []
13291
+ include Aws::Structure
13292
+ end
13293
+
13294
+ # @!attribute [rw] registry_id
13295
+ # The identifier of the registry containing the record. You can
13296
+ # specify either the Amazon Resource Name (ARN) or the ID of the
13297
+ # registry.
13298
+ # @return [String]
11908
13299
  #
11909
13300
  # @!attribute [rw] record_id
11910
13301
  # The identifier of the registry record to submit for approval. You
@@ -11991,13 +13382,18 @@ module Aws::BedrockAgentCoreControl
11991
13382
  # The namespaceTemplates associated with the summary memory strategy.
11992
13383
  # @return [Array<String>]
11993
13384
  #
13385
+ # @!attribute [rw] memory_record_schema
13386
+ # Schema for metadata fields on records generated by this strategy.
13387
+ # @return [Types::MemoryRecordSchema]
13388
+ #
11994
13389
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SummaryMemoryStrategyInput AWS API Documentation
11995
13390
  #
11996
13391
  class SummaryMemoryStrategyInput < Struct.new(
11997
13392
  :name,
11998
13393
  :description,
11999
13394
  :namespaces,
12000
- :namespace_templates)
13395
+ :namespace_templates,
13396
+ :memory_record_schema)
12001
13397
  SENSITIVE = [:description]
12002
13398
  include Aws::Structure
12003
13399
  end
@@ -12080,6 +13476,21 @@ module Aws::BedrockAgentCoreControl
12080
13476
  include Aws::Structure
12081
13477
  end
12082
13478
 
13479
+ # System-managed metadata for rules created by automated processes such
13480
+ # as A/B tests.
13481
+ #
13482
+ # @!attribute [rw] managed_by
13483
+ # The identifier of the system or process that manages this rule.
13484
+ # @return [String]
13485
+ #
13486
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SystemManagedBlock AWS API Documentation
13487
+ #
13488
+ class SystemManagedBlock < Struct.new(
13489
+ :managed_by)
13490
+ SENSITIVE = []
13491
+ include Aws::Structure
13492
+ end
13493
+
12083
13494
  # @!attribute [rw] resource_arn
12084
13495
  # The Amazon Resource Name (ARN) of the resource that you want to tag.
12085
13496
  # @return [String]
@@ -12114,16 +13525,23 @@ module Aws::BedrockAgentCoreControl
12114
13525
  # the target.
12115
13526
  # @return [Types::McpTargetConfiguration]
12116
13527
  #
13528
+ # @!attribute [rw] http
13529
+ # The HTTP target configuration. Use this to route gateway requests to
13530
+ # an HTTP-based endpoint such as an AgentCore Runtime.
13531
+ # @return [Types::HttpTargetConfiguration]
13532
+ #
12117
13533
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TargetConfiguration AWS API Documentation
12118
13534
  #
12119
13535
  class TargetConfiguration < Struct.new(
12120
13536
  :mcp,
13537
+ :http,
12121
13538
  :unknown)
12122
13539
  SENSITIVE = []
12123
13540
  include Aws::Structure
12124
13541
  include Aws::Structure::Union
12125
13542
 
12126
13543
  class Mcp < TargetConfiguration; end
13544
+ class Http < TargetConfiguration; end
12127
13545
  class Unknown < TargetConfiguration; end
12128
13546
  end
12129
13547
 
@@ -12173,6 +13591,40 @@ module Aws::BedrockAgentCoreControl
12173
13591
  include Aws::Structure
12174
13592
  end
12175
13593
 
13594
+ # An entry in a target traffic split configuration.
13595
+ #
13596
+ # @!attribute [rw] name
13597
+ # The name of this traffic split variant.
13598
+ # @return [String]
13599
+ #
13600
+ # @!attribute [rw] weight
13601
+ # The percentage of traffic to route to this variant.
13602
+ # @return [Integer]
13603
+ #
13604
+ # @!attribute [rw] target_name
13605
+ # The name of the target to route traffic to.
13606
+ # @return [String]
13607
+ #
13608
+ # @!attribute [rw] description
13609
+ # The description of this traffic split variant.
13610
+ # @return [String]
13611
+ #
13612
+ # @!attribute [rw] metadata
13613
+ # Key-value metadata associated with this traffic split variant.
13614
+ # @return [Hash<String,String>]
13615
+ #
13616
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TargetTrafficSplitEntry AWS API Documentation
13617
+ #
13618
+ class TargetTrafficSplitEntry < Struct.new(
13619
+ :name,
13620
+ :weight,
13621
+ :target_name,
13622
+ :description,
13623
+ :metadata)
13624
+ SENSITIVE = [:target_name]
13625
+ include Aws::Structure
13626
+ end
13627
+
12176
13628
  # API rate limit has been exceeded.
12177
13629
  #
12178
13630
  # @!attribute [rw] message
@@ -12255,6 +13707,25 @@ module Aws::BedrockAgentCoreControl
12255
13707
  include Aws::Structure
12256
13708
  end
12257
13709
 
13710
+ # Configuration for RFC 8693 Token Exchange
13711
+ #
13712
+ # @!attribute [rw] actor_token_content
13713
+ # The content type for the actor token in the token exchange.
13714
+ # @return [String]
13715
+ #
13716
+ # @!attribute [rw] actor_token_scopes
13717
+ # Only valid when actorTokenContent is M2M
13718
+ # @return [Array<String>]
13719
+ #
13720
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TokenExchangeGrantTypeConfigType AWS API Documentation
13721
+ #
13722
+ class TokenExchangeGrantTypeConfigType < Struct.new(
13723
+ :actor_token_content,
13724
+ :actor_token_scopes)
13725
+ SENSITIVE = []
13726
+ include Aws::Structure
13727
+ end
13728
+
12258
13729
  # A tool definition for a gateway target. This structure defines a tool
12259
13730
  # that the target exposes through the Model Context Protocol.
12260
13731
  #
@@ -12344,6 +13815,42 @@ module Aws::BedrockAgentCoreControl
12344
13815
  include Aws::Structure
12345
13816
  end
12346
13817
 
13818
+ # An entry in a traffic split configuration, defining a named variant
13819
+ # with a weight and configuration bundle reference.
13820
+ #
13821
+ # @!attribute [rw] name
13822
+ # The name of this traffic split variant.
13823
+ # @return [String]
13824
+ #
13825
+ # @!attribute [rw] weight
13826
+ # The percentage of traffic to route to this variant. Weights across
13827
+ # all entries must sum to 100.
13828
+ # @return [Integer]
13829
+ #
13830
+ # @!attribute [rw] configuration_bundle
13831
+ # The configuration bundle reference for this variant.
13832
+ # @return [Types::ConfigurationBundleReference]
13833
+ #
13834
+ # @!attribute [rw] description
13835
+ # The description of this traffic split variant.
13836
+ # @return [String]
13837
+ #
13838
+ # @!attribute [rw] metadata
13839
+ # Key-value metadata associated with this traffic split variant.
13840
+ # @return [Hash<String,String>]
13841
+ #
13842
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TrafficSplitEntry AWS API Documentation
13843
+ #
13844
+ class TrafficSplitEntry < Struct.new(
13845
+ :name,
13846
+ :weight,
13847
+ :configuration_bundle,
13848
+ :description,
13849
+ :metadata)
13850
+ SENSITIVE = []
13851
+ include Aws::Structure
13852
+ end
13853
+
12347
13854
  # Condition that triggers memory processing.
12348
13855
  #
12349
13856
  # @note TriggerCondition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TriggerCondition corresponding to the set member.
@@ -12707,6 +14214,104 @@ module Aws::BedrockAgentCoreControl
12707
14214
  include Aws::Structure
12708
14215
  end
12709
14216
 
14217
+ # @!attribute [rw] client_token
14218
+ # A unique, case-sensitive identifier to ensure that the API request
14219
+ # completes no more than one time. If you don't specify this field, a
14220
+ # value is randomly generated for you. If this token matches a
14221
+ # previous request, the service ignores the request, but doesn't
14222
+ # return an error. For more information, see [Ensuring
14223
+ # idempotency][1].
14224
+ #
14225
+ # **A suitable default value is auto-generated.** You should normally
14226
+ # not need to pass this option.
14227
+ #
14228
+ #
14229
+ #
14230
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
14231
+ # @return [String]
14232
+ #
14233
+ # @!attribute [rw] bundle_id
14234
+ # The unique identifier of the configuration bundle to update.
14235
+ # @return [String]
14236
+ #
14237
+ # @!attribute [rw] bundle_name
14238
+ # The updated name for the configuration bundle.
14239
+ # @return [String]
14240
+ #
14241
+ # @!attribute [rw] description
14242
+ # The updated description for the configuration bundle.
14243
+ # @return [String]
14244
+ #
14245
+ # @!attribute [rw] components
14246
+ # The updated component configurations. Creates a new version of the
14247
+ # bundle.
14248
+ # @return [Hash<String,Types::ComponentConfiguration>]
14249
+ #
14250
+ # @!attribute [rw] parent_version_ids
14251
+ # A list of parent version identifiers for lineage tracking. Regular
14252
+ # commits have a single parent. Merge commits have two parents: the
14253
+ # target branch parent and the source branch parent. If the branch
14254
+ # already exists, the first parent must be the latest version on that
14255
+ # branch.
14256
+ # @return [Array<String>]
14257
+ #
14258
+ # @!attribute [rw] branch_name
14259
+ # The branch name for this version. If not specified, inherits the
14260
+ # parent's branch or defaults to `mainline`.
14261
+ # @return [String]
14262
+ #
14263
+ # @!attribute [rw] commit_message
14264
+ # A commit message describing the changes in this version.
14265
+ # @return [String]
14266
+ #
14267
+ # @!attribute [rw] created_by
14268
+ # The source that created this version, including the source name and
14269
+ # optional ARN.
14270
+ # @return [Types::VersionCreatedBySource]
14271
+ #
14272
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateConfigurationBundleRequest AWS API Documentation
14273
+ #
14274
+ class UpdateConfigurationBundleRequest < Struct.new(
14275
+ :client_token,
14276
+ :bundle_id,
14277
+ :bundle_name,
14278
+ :description,
14279
+ :components,
14280
+ :parent_version_ids,
14281
+ :branch_name,
14282
+ :commit_message,
14283
+ :created_by)
14284
+ SENSITIVE = [:description, :components]
14285
+ include Aws::Structure
14286
+ end
14287
+
14288
+ # @!attribute [rw] bundle_arn
14289
+ # The Amazon Resource Name (ARN) of the updated configuration bundle.
14290
+ # @return [String]
14291
+ #
14292
+ # @!attribute [rw] bundle_id
14293
+ # The unique identifier of the updated configuration bundle.
14294
+ # @return [String]
14295
+ #
14296
+ # @!attribute [rw] version_id
14297
+ # The new version identifier created by this update.
14298
+ # @return [String]
14299
+ #
14300
+ # @!attribute [rw] updated_at
14301
+ # The timestamp when the configuration bundle was updated.
14302
+ # @return [Time]
14303
+ #
14304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateConfigurationBundleResponse AWS API Documentation
14305
+ #
14306
+ class UpdateConfigurationBundleResponse < Struct.new(
14307
+ :bundle_arn,
14308
+ :bundle_id,
14309
+ :version_id,
14310
+ :updated_at)
14311
+ SENSITIVE = []
14312
+ include Aws::Structure
14313
+ end
14314
+
12710
14315
  # @!attribute [rw] client_token
12711
14316
  # A unique, case-sensitive identifier to ensure that the API request
12712
14317
  # completes no more than one time. If you don't specify this field, a
@@ -12743,6 +14348,21 @@ module Aws::BedrockAgentCoreControl
12743
14348
  # that determines the scope of evaluation.
12744
14349
  # @return [String]
12745
14350
  #
14351
+ # @!attribute [rw] kms_key_arn
14352
+ # The Amazon Resource Name (ARN) of a customer managed KMS key to use
14353
+ # for encrypting sensitive evaluator data. Specify a new key ARN to
14354
+ # rotate the encryption key, or specify a key ARN to add encryption to
14355
+ # an evaluator that was previously created without one. When you
14356
+ # rotate to a new key, the service decrypts the existing data with the
14357
+ # old key and re-encrypts it with the new key. Only symmetric
14358
+ # encryption KMS keys are supported. For more information, see
14359
+ # [Encryption at rest for AgentCore Evaluations][1].
14360
+ #
14361
+ #
14362
+ #
14363
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/evaluations-encryption.html
14364
+ # @return [String]
14365
+ #
12746
14366
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateEvaluatorRequest AWS API Documentation
12747
14367
  #
12748
14368
  class UpdateEvaluatorRequest < Struct.new(
@@ -12750,7 +14370,8 @@ module Aws::BedrockAgentCoreControl
12750
14370
  :evaluator_id,
12751
14371
  :description,
12752
14372
  :evaluator_config,
12753
- :level)
14373
+ :level,
14374
+ :kms_key_arn)
12754
14375
  SENSITIVE = [:description]
12755
14376
  include Aws::Structure
12756
14377
  end
@@ -12972,6 +14593,105 @@ module Aws::BedrockAgentCoreControl
12972
14593
  include Aws::Structure
12973
14594
  end
12974
14595
 
14596
+ # @!attribute [rw] gateway_identifier
14597
+ # The identifier of the gateway containing the rule.
14598
+ # @return [String]
14599
+ #
14600
+ # @!attribute [rw] rule_id
14601
+ # The unique identifier of the rule to update.
14602
+ # @return [String]
14603
+ #
14604
+ # @!attribute [rw] priority
14605
+ # The updated priority of the rule.
14606
+ # @return [Integer]
14607
+ #
14608
+ # @!attribute [rw] conditions
14609
+ # The updated conditions for the rule.
14610
+ # @return [Array<Types::Condition>]
14611
+ #
14612
+ # @!attribute [rw] actions
14613
+ # The updated actions for the rule.
14614
+ # @return [Array<Types::Action>]
14615
+ #
14616
+ # @!attribute [rw] description
14617
+ # The updated description of the rule.
14618
+ # @return [String]
14619
+ #
14620
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRuleRequest AWS API Documentation
14621
+ #
14622
+ class UpdateGatewayRuleRequest < Struct.new(
14623
+ :gateway_identifier,
14624
+ :rule_id,
14625
+ :priority,
14626
+ :conditions,
14627
+ :actions,
14628
+ :description)
14629
+ SENSITIVE = []
14630
+ include Aws::Structure
14631
+ end
14632
+
14633
+ # Create response excludes updatedAt (redundant on create). Get/Update
14634
+ # responses include it via their own output structures.
14635
+ #
14636
+ # @!attribute [rw] rule_id
14637
+ # The unique identifier of the gateway rule.
14638
+ # @return [String]
14639
+ #
14640
+ # @!attribute [rw] gateway_arn
14641
+ # The Amazon Resource Name (ARN) of the gateway that the rule belongs
14642
+ # to.
14643
+ # @return [String]
14644
+ #
14645
+ # @!attribute [rw] priority
14646
+ # The priority of the rule. Rules are evaluated in order of priority,
14647
+ # with lower numbers evaluated first.
14648
+ # @return [Integer]
14649
+ #
14650
+ # @!attribute [rw] conditions
14651
+ # The conditions that must be met for the rule to apply.
14652
+ # @return [Array<Types::Condition>]
14653
+ #
14654
+ # @!attribute [rw] actions
14655
+ # The actions to take when the rule conditions are met.
14656
+ # @return [Array<Types::Action>]
14657
+ #
14658
+ # @!attribute [rw] description
14659
+ # The description of the gateway rule.
14660
+ # @return [String]
14661
+ #
14662
+ # @!attribute [rw] created_at
14663
+ # The timestamp when the rule was created.
14664
+ # @return [Time]
14665
+ #
14666
+ # @!attribute [rw] status
14667
+ # The current status of the rule.
14668
+ # @return [String]
14669
+ #
14670
+ # @!attribute [rw] system
14671
+ # System-managed metadata for rules created by automated processes.
14672
+ # @return [Types::SystemManagedBlock]
14673
+ #
14674
+ # @!attribute [rw] updated_at
14675
+ # The timestamp when the rule was last updated.
14676
+ # @return [Time]
14677
+ #
14678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRuleResponse AWS API Documentation
14679
+ #
14680
+ class UpdateGatewayRuleResponse < Struct.new(
14681
+ :rule_id,
14682
+ :gateway_arn,
14683
+ :priority,
14684
+ :conditions,
14685
+ :actions,
14686
+ :description,
14687
+ :created_at,
14688
+ :status,
14689
+ :system,
14690
+ :updated_at)
14691
+ SENSITIVE = []
14692
+ include Aws::Structure
14693
+ end
14694
+
12975
14695
  # @!attribute [rw] gateway_identifier
12976
14696
  # The unique identifier of the gateway associated with the target.
12977
14697
  # @return [String]
@@ -13088,6 +14808,10 @@ module Aws::BedrockAgentCoreControl
13088
14808
  # with authorization code grant type and requires user federation.
13089
14809
  # @return [Types::AuthorizationData]
13090
14810
  #
14811
+ # @!attribute [rw] protocol_type
14812
+ # The protocol type of the updated gateway target.
14813
+ # @return [String]
14814
+ #
13091
14815
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTargetResponse AWS API Documentation
13092
14816
  #
13093
14817
  class UpdateGatewayTargetResponse < Struct.new(
@@ -13105,7 +14829,8 @@ module Aws::BedrockAgentCoreControl
13105
14829
  :metadata_configuration,
13106
14830
  :private_endpoint,
13107
14831
  :private_endpoint_managed_resources,
13108
- :authorization_data)
14832
+ :authorization_data,
14833
+ :protocol_type)
13109
14834
  SENSITIVE = [:name, :description]
13110
14835
  include Aws::Structure
13111
14836
  end
@@ -13195,8 +14920,9 @@ module Aws::BedrockAgentCoreControl
13195
14920
  # @return [Integer]
13196
14921
  #
13197
14922
  # @!attribute [rw] max_tokens
13198
- # The maximum number of tokens the agent can generate per iteration.
13199
- # If not specified, the existing value is retained.
14923
+ # The maximum total number of output tokens the agent can generate
14924
+ # across all model calls within a single invocation. If not specified,
14925
+ # the existing value is retained.
13200
14926
  # @return [Integer]
13201
14927
  #
13202
14928
  # @!attribute [rw] timeout_seconds
@@ -13271,6 +14997,11 @@ module Aws::BedrockAgentCoreControl
13271
14997
  # The memory strategies to add, modify, or delete.
13272
14998
  # @return [Types::ModifyMemoryStrategies]
13273
14999
  #
15000
+ # @!attribute [rw] add_indexed_keys
15001
+ # Additional metadata keys to index. Previously indexed keys cannot be
15002
+ # removed.
15003
+ # @return [Array<Types::IndexedKey>]
15004
+ #
13274
15005
  # @!attribute [rw] stream_delivery_resources
13275
15006
  # Configuration for streaming memory record data to external
13276
15007
  # resources.
@@ -13285,6 +15016,7 @@ module Aws::BedrockAgentCoreControl
13285
15016
  :event_expiry_duration,
13286
15017
  :memory_execution_role_arn,
13287
15018
  :memory_strategies,
15019
+ :add_indexed_keys,
13288
15020
  :stream_delivery_resources)
13289
15021
  SENSITIVE = [:description]
13290
15022
  include Aws::Structure
@@ -14439,13 +16171,18 @@ module Aws::BedrockAgentCoreControl
14439
16171
  # strategy.
14440
16172
  # @return [Array<String>]
14441
16173
  #
16174
+ # @!attribute [rw] memory_record_schema
16175
+ # Schema for metadata fields on records generated by this strategy.
16176
+ # @return [Types::MemoryRecordSchema]
16177
+ #
14442
16178
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UserPreferenceMemoryStrategyInput AWS API Documentation
14443
16179
  #
14444
16180
  class UserPreferenceMemoryStrategyInput < Struct.new(
14445
16181
  :name,
14446
16182
  :description,
14447
16183
  :namespaces,
14448
- :namespace_templates)
16184
+ :namespace_templates,
16185
+ :memory_record_schema)
14449
16186
  SENSITIVE = [:description]
14450
16187
  include Aws::Structure
14451
16188
  end
@@ -14509,6 +16246,42 @@ module Aws::BedrockAgentCoreControl
14509
16246
  include Aws::Structure
14510
16247
  end
14511
16248
 
16249
+ # Validation rules for extracted metadata values. Only one type can be
16250
+ # specified, matching the field's data type.
16251
+ #
16252
+ # @note Validation is a union - when making an API calls you must set exactly one of the members.
16253
+ #
16254
+ # @note Validation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Validation corresponding to the set member.
16255
+ #
16256
+ # @!attribute [rw] string_validation
16257
+ # Validation for STRING fields.
16258
+ # @return [Types::StringValidation]
16259
+ #
16260
+ # @!attribute [rw] string_list_validation
16261
+ # Validation for STRINGLIST fields.
16262
+ # @return [Types::StringListValidation]
16263
+ #
16264
+ # @!attribute [rw] number_validation
16265
+ # Validation for NUMBER fields.
16266
+ # @return [Types::NumberValidation]
16267
+ #
16268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Validation AWS API Documentation
16269
+ #
16270
+ class Validation < Struct.new(
16271
+ :string_validation,
16272
+ :string_list_validation,
16273
+ :number_validation,
16274
+ :unknown)
16275
+ SENSITIVE = []
16276
+ include Aws::Structure
16277
+ include Aws::Structure::Union
16278
+
16279
+ class StringValidation < Validation; end
16280
+ class StringListValidation < Validation; end
16281
+ class NumberValidation < Validation; end
16282
+ class Unknown < Validation; end
16283
+ end
16284
+
14512
16285
  # The input fails to satisfy the constraints specified by the service.
14513
16286
  #
14514
16287
  # @!attribute [rw] message
@@ -14550,6 +16323,87 @@ module Aws::BedrockAgentCoreControl
14550
16323
  include Aws::Structure
14551
16324
  end
14552
16325
 
16326
+ # The source that created a configuration bundle version.
16327
+ #
16328
+ # @!attribute [rw] name
16329
+ # The name of the source (for example, `user`, `optimization-job`, or
16330
+ # `system`).
16331
+ # @return [String]
16332
+ #
16333
+ # @!attribute [rw] arn
16334
+ # The Amazon Resource Name (ARN) of the source, if applicable (for
16335
+ # example, a user ARN or optimization job ARN).
16336
+ # @return [String]
16337
+ #
16338
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/VersionCreatedBySource AWS API Documentation
16339
+ #
16340
+ class VersionCreatedBySource < Struct.new(
16341
+ :name,
16342
+ :arn)
16343
+ SENSITIVE = []
16344
+ include Aws::Structure
16345
+ end
16346
+
16347
+ # A filter for listing configuration bundle versions.
16348
+ #
16349
+ # @!attribute [rw] branch_name
16350
+ # Filter by branch name.
16351
+ # @return [String]
16352
+ #
16353
+ # @!attribute [rw] created_by_name
16354
+ # Filter by creation source name.
16355
+ # @return [String]
16356
+ #
16357
+ # @!attribute [rw] latest_per_branch
16358
+ # When true, returns only the latest version for each branch. When
16359
+ # false or not specified, returns all versions. Can be combined with
16360
+ # `branchName` to get the latest version for a specific branch.
16361
+ # @return [Boolean]
16362
+ #
16363
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/VersionFilter AWS API Documentation
16364
+ #
16365
+ class VersionFilter < Struct.new(
16366
+ :branch_name,
16367
+ :created_by_name,
16368
+ :latest_per_branch)
16369
+ SENSITIVE = []
16370
+ include Aws::Structure
16371
+ end
16372
+
16373
+ # The version lineage metadata that tracks parent versions and creation
16374
+ # source. Supports git-like two-parent merges for branch management.
16375
+ #
16376
+ # @!attribute [rw] parent_version_ids
16377
+ # A list of parent version identifiers. Regular commits have 0-1
16378
+ # parents. Merge commits have 2 parents: the target branch parent and
16379
+ # the source branch parent. The first parent represents the primary
16380
+ # lineage.
16381
+ # @return [Array<String>]
16382
+ #
16383
+ # @!attribute [rw] branch_name
16384
+ # The branch name for this version. If not specified, inherits the
16385
+ # parent's branch or defaults to `mainline`.
16386
+ # @return [String]
16387
+ #
16388
+ # @!attribute [rw] created_by
16389
+ # The source that created this version.
16390
+ # @return [Types::VersionCreatedBySource]
16391
+ #
16392
+ # @!attribute [rw] commit_message
16393
+ # A commit message describing the changes in this version.
16394
+ # @return [String]
16395
+ #
16396
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/VersionLineageMetadata AWS API Documentation
16397
+ #
16398
+ class VersionLineageMetadata < Struct.new(
16399
+ :parent_version_ids,
16400
+ :branch_name,
16401
+ :created_by,
16402
+ :commit_message)
16403
+ SENSITIVE = []
16404
+ include Aws::Structure
16405
+ end
16406
+
14553
16407
  # VpcConfig for the Agent.
14554
16408
  #
14555
16409
  # @!attribute [rw] security_groups
@@ -14569,6 +16423,37 @@ module Aws::BedrockAgentCoreControl
14569
16423
  include Aws::Structure
14570
16424
  end
14571
16425
 
16426
+ # A weighted configuration bundle override that splits traffic between
16427
+ # multiple bundle versions.
16428
+ #
16429
+ # @!attribute [rw] traffic_split
16430
+ # The traffic split entries defining how traffic is distributed
16431
+ # between configuration bundle versions.
16432
+ # @return [Array<Types::TrafficSplitEntry>]
16433
+ #
16434
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/WeightedOverride AWS API Documentation
16435
+ #
16436
+ class WeightedOverride < Struct.new(
16437
+ :traffic_split)
16438
+ SENSITIVE = []
16439
+ include Aws::Structure
16440
+ end
16441
+
16442
+ # A weighted route that splits traffic between multiple gateway targets.
16443
+ #
16444
+ # @!attribute [rw] traffic_split
16445
+ # The traffic split entries defining how traffic is distributed
16446
+ # between targets.
16447
+ # @return [Array<Types::TargetTrafficSplitEntry>]
16448
+ #
16449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/WeightedRoute AWS API Documentation
16450
+ #
16451
+ class WeightedRoute < Struct.new(
16452
+ :traffic_split)
16453
+ SENSITIVE = []
16454
+ include Aws::Structure
16455
+ end
16456
+
14572
16457
  # The information about the workload identity.
14573
16458
  #
14574
16459
  # @!attribute [rw] workload_identity_arn