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.
@@ -1046,6 +1046,98 @@ module Aws::BedrockAgentCoreControl
1046
1046
  req.send_request(options)
1047
1047
  end
1048
1048
 
1049
+ # Creates a new configuration bundle resource. A configuration bundle
1050
+ # stores versioned component configurations for agent evaluation
1051
+ # workflows.
1052
+ #
1053
+ # @option params [String] :client_token
1054
+ # A unique, case-sensitive identifier to ensure that the API request
1055
+ # completes no more than one time. If you don't specify this field, a
1056
+ # value is randomly generated for you. If this token matches a previous
1057
+ # request, the service ignores the request, but doesn't return an
1058
+ # error. For more information, see [Ensuring idempotency][1].
1059
+ #
1060
+ # **A suitable default value is auto-generated.** You should normally
1061
+ # not need to pass this option.**
1062
+ #
1063
+ #
1064
+ #
1065
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
1066
+ #
1067
+ # @option params [required, String] :bundle_name
1068
+ # The name for the configuration bundle. Names must be unique within
1069
+ # your account.
1070
+ #
1071
+ # @option params [String] :description
1072
+ # The description for the configuration bundle.
1073
+ #
1074
+ # @option params [required, Hash<String,Types::ComponentConfiguration>] :components
1075
+ # A map of component identifiers to their configurations. Each component
1076
+ # represents a configurable element within the bundle.
1077
+ #
1078
+ # @option params [String] :branch_name
1079
+ # The branch name for version tracking. Defaults to `mainline` if not
1080
+ # specified.
1081
+ #
1082
+ # @option params [String] :commit_message
1083
+ # A commit message describing the initial version of the configuration
1084
+ # bundle.
1085
+ #
1086
+ # @option params [Types::VersionCreatedBySource] :created_by
1087
+ # The source that created this version, including the source name and
1088
+ # optional ARN.
1089
+ #
1090
+ # @option params [Hash<String,String>] :tags
1091
+ # A map of tag keys and values to assign to the configuration bundle.
1092
+ # Tags enable you to categorize your resources in different ways, for
1093
+ # example, by purpose, owner, or environment.
1094
+ #
1095
+ # @return [Types::CreateConfigurationBundleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1096
+ #
1097
+ # * {Types::CreateConfigurationBundleResponse#bundle_arn #bundle_arn} => String
1098
+ # * {Types::CreateConfigurationBundleResponse#bundle_id #bundle_id} => String
1099
+ # * {Types::CreateConfigurationBundleResponse#version_id #version_id} => String
1100
+ # * {Types::CreateConfigurationBundleResponse#created_at #created_at} => Time
1101
+ #
1102
+ # @example Request syntax with placeholder values
1103
+ #
1104
+ # resp = client.create_configuration_bundle({
1105
+ # client_token: "ClientToken",
1106
+ # bundle_name: "ConfigurationBundleName", # required
1107
+ # description: "ConfigurationBundleDescription",
1108
+ # components: { # required
1109
+ # "ComponentIdentifier" => {
1110
+ # configuration: { # required
1111
+ # },
1112
+ # },
1113
+ # },
1114
+ # branch_name: "BranchName",
1115
+ # commit_message: "CreateConfigurationBundleRequestCommitMessageString",
1116
+ # created_by: {
1117
+ # name: "String", # required
1118
+ # arn: "String",
1119
+ # },
1120
+ # tags: {
1121
+ # "TagKey" => "TagValue",
1122
+ # },
1123
+ # })
1124
+ #
1125
+ # @example Response structure
1126
+ #
1127
+ # resp.bundle_arn #=> String
1128
+ # resp.bundle_id #=> String
1129
+ # resp.version_id #=> String
1130
+ # resp.created_at #=> Time
1131
+ #
1132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateConfigurationBundle AWS API Documentation
1133
+ #
1134
+ # @overload create_configuration_bundle(params = {})
1135
+ # @param [Hash] params ({})
1136
+ def create_configuration_bundle(params = {}, options = {})
1137
+ req = build_request(:create_configuration_bundle, params)
1138
+ req.send_request(options)
1139
+ end
1140
+
1049
1141
  # Creates a custom evaluator for agent quality assessment. Custom
1050
1142
  # evaluators can use either LLM-as-a-Judge configurations with
1051
1143
  # user-defined prompts, rating scales, and model settings, or code-based
@@ -1084,6 +1176,18 @@ module Aws::BedrockAgentCoreControl
1084
1176
  # single request-response interactions, or `SESSION` for entire
1085
1177
  # conversation sessions.
1086
1178
  #
1179
+ # @option params [String] :kms_key_arn
1180
+ # The Amazon Resource Name (ARN) of a customer managed KMS key to use
1181
+ # for encrypting sensitive evaluator data, including instructions and
1182
+ # rating scale. If you don't specify a KMS key, the evaluator data is
1183
+ # encrypted with an Amazon Web Services owned key. Only symmetric
1184
+ # encryption KMS keys are supported. For more information, see
1185
+ # [Encryption at rest for AgentCore Evaluations][1].
1186
+ #
1187
+ #
1188
+ #
1189
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/evaluations-encryption.html
1190
+ #
1087
1191
  # @option params [Hash<String,String>] :tags
1088
1192
  # A map of tag keys and values to assign to an AgentCore Evaluator. Tags
1089
1193
  # enable you to categorize your resources in different ways, for
@@ -1142,6 +1246,7 @@ module Aws::BedrockAgentCoreControl
1142
1246
  # },
1143
1247
  # },
1144
1248
  # level: "TOOL_CALL", # required, accepts TOOL_CALL, TRACE, SESSION
1249
+ # kms_key_arn: "KmsKeyArn",
1145
1250
  # tags: {
1146
1251
  # "TagKey" => "TagValue",
1147
1252
  # },
@@ -1193,7 +1298,7 @@ module Aws::BedrockAgentCoreControl
1193
1298
  # The Amazon Resource Name (ARN) of the IAM role that provides
1194
1299
  # permissions for the gateway to access Amazon Web Services services.
1195
1300
  #
1196
- # @option params [required, String] :protocol_type
1301
+ # @option params [String] :protocol_type
1197
1302
  # The protocol type for the gateway.
1198
1303
  #
1199
1304
  # @option params [Types::GatewayProtocolConfiguration] :protocol_configuration
@@ -1272,7 +1377,7 @@ module Aws::BedrockAgentCoreControl
1272
1377
  # description: "GatewayDescription",
1273
1378
  # client_token: "ClientToken",
1274
1379
  # role_arn: "RoleArn", # required
1275
- # protocol_type: "MCP", # required, accepts MCP
1380
+ # protocol_type: "MCP", # accepts MCP
1276
1381
  # protocol_configuration: {
1277
1382
  # mcp: {
1278
1383
  # supported_versions: ["McpVersion"],
@@ -1280,7 +1385,7 @@ module Aws::BedrockAgentCoreControl
1280
1385
  # search_type: "SEMANTIC", # accepts SEMANTIC
1281
1386
  # },
1282
1387
  # },
1283
- # authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM, NONE
1388
+ # authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM, NONE, AUTHENTICATE_ONLY
1284
1389
  # authorizer_configuration: {
1285
1390
  # custom_jwt_authorizer: {
1286
1391
  # discovery_url: "DiscoveryUrl", # required
@@ -1379,7 +1484,7 @@ module Aws::BedrockAgentCoreControl
1379
1484
  # resp.protocol_configuration.mcp.supported_versions[0] #=> String
1380
1485
  # resp.protocol_configuration.mcp.instructions #=> String
1381
1486
  # resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
1382
- # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE"
1487
+ # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE", "AUTHENTICATE_ONLY"
1383
1488
  # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
1384
1489
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
1385
1490
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
@@ -1436,6 +1541,168 @@ module Aws::BedrockAgentCoreControl
1436
1541
  req.send_request(options)
1437
1542
  end
1438
1543
 
1544
+ # Creates a rule for a gateway. Rules define conditions and actions that
1545
+ # control how requests are routed and processed through the gateway,
1546
+ # including principal-based access control and path-based routing.
1547
+ #
1548
+ # @option params [required, String] :gateway_identifier
1549
+ # The identifier of the gateway to create a rule for.
1550
+ #
1551
+ # @option params [String] :client_token
1552
+ # A unique, case-sensitive identifier to ensure that the API request
1553
+ # completes no more than one time. If you don't specify this field, a
1554
+ # value is randomly generated for you. If this token matches a previous
1555
+ # request, the service ignores the request, but doesn't return an
1556
+ # error. For more information, see [Ensuring idempotency][1].
1557
+ #
1558
+ # **A suitable default value is auto-generated.** You should normally
1559
+ # not need to pass this option.**
1560
+ #
1561
+ #
1562
+ #
1563
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
1564
+ #
1565
+ # @option params [required, Integer] :priority
1566
+ # The priority of the rule. Rules are evaluated in order of priority,
1567
+ # with lower numbers evaluated first. Must be between 1 and 1,000,000.
1568
+ #
1569
+ # @option params [Array<Types::Condition>] :conditions
1570
+ # The conditions that must be met for the rule to apply. Conditions can
1571
+ # match on principals (IAM ARNs) or request paths.
1572
+ #
1573
+ # @option params [required, Array<Types::Action>] :actions
1574
+ # The actions to take when the rule conditions are met. Actions can
1575
+ # route to a specific target or apply a configuration bundle override.
1576
+ #
1577
+ # @option params [String] :description
1578
+ # The description of the gateway rule.
1579
+ #
1580
+ # @return [Types::CreateGatewayRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1581
+ #
1582
+ # * {Types::CreateGatewayRuleResponse#rule_id #rule_id} => String
1583
+ # * {Types::CreateGatewayRuleResponse#gateway_arn #gateway_arn} => String
1584
+ # * {Types::CreateGatewayRuleResponse#priority #priority} => Integer
1585
+ # * {Types::CreateGatewayRuleResponse#conditions #conditions} => Array&lt;Types::Condition&gt;
1586
+ # * {Types::CreateGatewayRuleResponse#actions #actions} => Array&lt;Types::Action&gt;
1587
+ # * {Types::CreateGatewayRuleResponse#description #description} => String
1588
+ # * {Types::CreateGatewayRuleResponse#created_at #created_at} => Time
1589
+ # * {Types::CreateGatewayRuleResponse#status #status} => String
1590
+ # * {Types::CreateGatewayRuleResponse#system #system} => Types::SystemManagedBlock
1591
+ #
1592
+ # @example Request syntax with placeholder values
1593
+ #
1594
+ # resp = client.create_gateway_rule({
1595
+ # gateway_identifier: "GatewayIdentifier", # required
1596
+ # client_token: "ClientToken",
1597
+ # priority: 1, # required
1598
+ # conditions: [
1599
+ # {
1600
+ # match_principals: {
1601
+ # any_of: [ # required
1602
+ # {
1603
+ # iam_principal: {
1604
+ # arn: "IamPrincipalArn", # required
1605
+ # operator: "StringEquals", # accepts StringEquals, StringLike
1606
+ # },
1607
+ # },
1608
+ # ],
1609
+ # },
1610
+ # match_paths: {
1611
+ # any_of: ["MatchPathPattern"], # required
1612
+ # },
1613
+ # },
1614
+ # ],
1615
+ # actions: [ # required
1616
+ # {
1617
+ # configuration_bundle: {
1618
+ # static_override: {
1619
+ # bundle_arn: "GatewayConfigurationBundleArn", # required
1620
+ # bundle_version: "StaticOverrideBundleVersionString", # required
1621
+ # },
1622
+ # weighted_override: {
1623
+ # traffic_split: [ # required
1624
+ # {
1625
+ # name: "TrafficSplitEntryNameString", # required
1626
+ # weight: 1, # required
1627
+ # configuration_bundle: { # required
1628
+ # bundle_arn: "GatewayConfigurationBundleArn", # required
1629
+ # bundle_version: "ConfigurationBundleReferenceBundleVersionString", # required
1630
+ # },
1631
+ # description: "TrafficSplitEntryDescriptionString",
1632
+ # metadata: {
1633
+ # "TrafficSplitMetadataKey" => "TrafficSplitMetadataValue",
1634
+ # },
1635
+ # },
1636
+ # ],
1637
+ # },
1638
+ # },
1639
+ # route_to_target: {
1640
+ # static_route: {
1641
+ # target_name: "TargetName", # required
1642
+ # },
1643
+ # weighted_route: {
1644
+ # traffic_split: [ # required
1645
+ # {
1646
+ # name: "TargetTrafficSplitEntryNameString", # required
1647
+ # weight: 1, # required
1648
+ # target_name: "TargetName", # required
1649
+ # description: "TargetTrafficSplitEntryDescriptionString",
1650
+ # metadata: {
1651
+ # "TrafficSplitMetadataKey" => "TrafficSplitMetadataValue",
1652
+ # },
1653
+ # },
1654
+ # ],
1655
+ # },
1656
+ # },
1657
+ # },
1658
+ # ],
1659
+ # description: "GatewayRuleDescription",
1660
+ # })
1661
+ #
1662
+ # @example Response structure
1663
+ #
1664
+ # resp.rule_id #=> String
1665
+ # resp.gateway_arn #=> String
1666
+ # resp.priority #=> Integer
1667
+ # resp.conditions #=> Array
1668
+ # resp.conditions[0].match_principals.any_of #=> Array
1669
+ # resp.conditions[0].match_principals.any_of[0].iam_principal.arn #=> String
1670
+ # resp.conditions[0].match_principals.any_of[0].iam_principal.operator #=> String, one of "StringEquals", "StringLike"
1671
+ # resp.conditions[0].match_paths.any_of #=> Array
1672
+ # resp.conditions[0].match_paths.any_of[0] #=> String
1673
+ # resp.actions #=> Array
1674
+ # resp.actions[0].configuration_bundle.static_override.bundle_arn #=> String
1675
+ # resp.actions[0].configuration_bundle.static_override.bundle_version #=> String
1676
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split #=> Array
1677
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].name #=> String
1678
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].weight #=> Integer
1679
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].configuration_bundle.bundle_arn #=> String
1680
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].configuration_bundle.bundle_version #=> String
1681
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].description #=> String
1682
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].metadata #=> Hash
1683
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].metadata["TrafficSplitMetadataKey"] #=> String
1684
+ # resp.actions[0].route_to_target.static_route.target_name #=> String
1685
+ # resp.actions[0].route_to_target.weighted_route.traffic_split #=> Array
1686
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].name #=> String
1687
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].weight #=> Integer
1688
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].target_name #=> String
1689
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].description #=> String
1690
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].metadata #=> Hash
1691
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].metadata["TrafficSplitMetadataKey"] #=> String
1692
+ # resp.description #=> String
1693
+ # resp.created_at #=> Time
1694
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING"
1695
+ # resp.system.managed_by #=> String
1696
+ #
1697
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayRule AWS API Documentation
1698
+ #
1699
+ # @overload create_gateway_rule(params = {})
1700
+ # @param [Hash] params ({})
1701
+ def create_gateway_rule(params = {}, options = {})
1702
+ req = build_request(:create_gateway_rule, params)
1703
+ req.send_request(options)
1704
+ end
1705
+
1439
1706
  # Creates a target for a gateway. A target defines an endpoint that the
1440
1707
  # gateway can connect to.
1441
1708
  #
@@ -1497,6 +1764,7 @@ module Aws::BedrockAgentCoreControl
1497
1764
  # * {Types::CreateGatewayTargetResponse#private_endpoint #private_endpoint} => Types::PrivateEndpoint
1498
1765
  # * {Types::CreateGatewayTargetResponse#private_endpoint_managed_resources #private_endpoint_managed_resources} => Array&lt;Types::ManagedResourceDetails&gt;
1499
1766
  # * {Types::CreateGatewayTargetResponse#authorization_data #authorization_data} => Types::AuthorizationData
1767
+ # * {Types::CreateGatewayTargetResponse#protocol_type #protocol_type} => String
1500
1768
  #
1501
1769
  # @example Request syntax with placeholder values
1502
1770
  #
@@ -1571,8 +1839,8 @@ module Aws::BedrockAgentCoreControl
1571
1839
  # },
1572
1840
  # inline_payload: "InlinePayload",
1573
1841
  # },
1574
- # resource_priority: 1,
1575
1842
  # listing_mode: "DEFAULT", # accepts DEFAULT, DYNAMIC
1843
+ # resource_priority: 1,
1576
1844
  # },
1577
1845
  # api_gateway: {
1578
1846
  # rest_api_id: "String", # required
@@ -1595,10 +1863,16 @@ module Aws::BedrockAgentCoreControl
1595
1863
  # },
1596
1864
  # },
1597
1865
  # },
1866
+ # http: {
1867
+ # agentcore_runtime: {
1868
+ # arn: "RuntimeArn", # required
1869
+ # qualifier: "RuntimeQualifier",
1870
+ # },
1871
+ # },
1598
1872
  # },
1599
1873
  # credential_provider_configurations: [
1600
1874
  # {
1601
- # credential_provider_type: "GATEWAY_IAM_ROLE", # required, accepts GATEWAY_IAM_ROLE, OAUTH, API_KEY
1875
+ # credential_provider_type: "GATEWAY_IAM_ROLE", # required, accepts GATEWAY_IAM_ROLE, OAUTH, API_KEY, CALLER_IAM_CREDENTIALS, JWT_PASSTHROUGH
1602
1876
  # credential_provider: {
1603
1877
  # oauth_credential_provider: {
1604
1878
  # provider_arn: "OAuthCredentialProviderArn", # required
@@ -1606,7 +1880,7 @@ module Aws::BedrockAgentCoreControl
1606
1880
  # custom_parameters: {
1607
1881
  # "OAuthCustomParametersKey" => "OAuthCustomParametersValue",
1608
1882
  # },
1609
- # grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
1883
+ # grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE, TOKEN_EXCHANGE
1610
1884
  # default_return_url: "OAuthDefaultReturnUrl",
1611
1885
  # },
1612
1886
  # api_key_credential_provider: {
@@ -1685,8 +1959,8 @@ module Aws::BedrockAgentCoreControl
1685
1959
  # resp.target_configuration.mcp.mcp_server.mcp_tool_schema.s3.uri #=> String
1686
1960
  # resp.target_configuration.mcp.mcp_server.mcp_tool_schema.s3.bucket_owner_account_id #=> String
1687
1961
  # resp.target_configuration.mcp.mcp_server.mcp_tool_schema.inline_payload #=> String
1688
- # resp.target_configuration.mcp.mcp_server.resource_priority #=> Integer
1689
1962
  # resp.target_configuration.mcp.mcp_server.listing_mode #=> String, one of "DEFAULT", "DYNAMIC"
1963
+ # resp.target_configuration.mcp.mcp_server.resource_priority #=> Integer
1690
1964
  # resp.target_configuration.mcp.api_gateway.rest_api_id #=> String
1691
1965
  # resp.target_configuration.mcp.api_gateway.stage #=> String
1692
1966
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_overrides #=> Array
@@ -1698,14 +1972,16 @@ module Aws::BedrockAgentCoreControl
1698
1972
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
1699
1973
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
1700
1974
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
1975
+ # resp.target_configuration.http.agentcore_runtime.arn #=> String
1976
+ # resp.target_configuration.http.agentcore_runtime.qualifier #=> String
1701
1977
  # resp.credential_provider_configurations #=> Array
1702
- # resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY"
1978
+ # resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
1703
1979
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
1704
1980
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes #=> Array
1705
1981
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes[0] #=> String
1706
1982
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters #=> Hash
1707
1983
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters["OAuthCustomParametersKey"] #=> String
1708
- # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
1984
+ # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE", "TOKEN_EXCHANGE"
1709
1985
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.default_return_url #=> String
1710
1986
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.provider_arn #=> String
1711
1987
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
@@ -1736,6 +2012,7 @@ module Aws::BedrockAgentCoreControl
1736
2012
  # resp.private_endpoint_managed_resources[0].resource_association_arn #=> String
1737
2013
  # resp.authorization_data.oauth2.authorization_url #=> String
1738
2014
  # resp.authorization_data.oauth2.user_id #=> String
2015
+ # resp.protocol_type #=> String, one of "MCP", "HTTP"
1739
2016
  #
1740
2017
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayTarget AWS API Documentation
1741
2018
  #
@@ -1813,7 +2090,8 @@ module Aws::BedrockAgentCoreControl
1813
2090
  # invocation.
1814
2091
  #
1815
2092
  # @option params [Integer] :max_tokens
1816
- # The maximum number of tokens the agent can generate per iteration.
2093
+ # The maximum total number of output tokens the agent can generate
2094
+ # across all model calls within a single invocation.
1817
2095
  #
1818
2096
  # @option params [Integer] :timeout_seconds
1819
2097
  # The maximum duration in seconds for the agent loop execution per
@@ -1973,7 +2251,7 @@ module Aws::BedrockAgentCoreControl
1973
2251
  # custom_parameters: {
1974
2252
  # "OAuthCustomParametersKey" => "OAuthCustomParametersValue",
1975
2253
  # },
1976
- # grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
2254
+ # grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE, TOKEN_EXCHANGE
1977
2255
  # default_return_url: "OAuthDefaultReturnUrl",
1978
2256
  # },
1979
2257
  # },
@@ -2069,7 +2347,7 @@ module Aws::BedrockAgentCoreControl
2069
2347
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.scopes[0] #=> String
2070
2348
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.custom_parameters #=> Hash
2071
2349
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.custom_parameters["OAuthCustomParametersKey"] #=> String
2072
- # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
2350
+ # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE", "TOKEN_EXCHANGE"
2073
2351
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.default_return_url #=> String
2074
2352
  # resp.harness.tools[0].config.inline_function.description #=> String
2075
2353
  # resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
@@ -2187,6 +2465,10 @@ module Aws::BedrockAgentCoreControl
2187
2465
  # The memory strategies to use for this memory. Strategies define how
2188
2466
  # information is extracted, processed, and consolidated.
2189
2467
  #
2468
+ # @option params [Array<Types::IndexedKey>] :indexed_keys
2469
+ # Metadata keys to index for filtering. Once declared, indexed keys
2470
+ # cannot be removed.
2471
+ #
2190
2472
  # @option params [Types::StreamDeliveryResources] :stream_delivery_resources
2191
2473
  # Configuration for streaming memory record data to external resources.
2192
2474
  #
@@ -2215,18 +2497,99 @@ module Aws::BedrockAgentCoreControl
2215
2497
  # description: "Description",
2216
2498
  # namespaces: ["Namespace"],
2217
2499
  # namespace_templates: ["Namespace"],
2500
+ # memory_record_schema: {
2501
+ # metadata_schema: [
2502
+ # {
2503
+ # key: "MetadataKey", # required
2504
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2505
+ # extraction_config: {
2506
+ # llm_extraction_config: {
2507
+ # llm_extraction_instruction: "LlmExtractionInstruction",
2508
+ # definition: "Definition", # required
2509
+ # validation: {
2510
+ # string_validation: {
2511
+ # allowed_values: ["AllowedStringValue"], # required
2512
+ # },
2513
+ # string_list_validation: {
2514
+ # allowed_values: ["AllowedStringListValue"],
2515
+ # max_items: 1,
2516
+ # },
2517
+ # number_validation: {
2518
+ # min_value: 1.0,
2519
+ # max_value: 1.0,
2520
+ # },
2521
+ # },
2522
+ # },
2523
+ # },
2524
+ # },
2525
+ # ],
2526
+ # },
2218
2527
  # },
2219
2528
  # summary_memory_strategy: {
2220
2529
  # name: "Name", # required
2221
2530
  # description: "Description",
2222
2531
  # namespaces: ["Namespace"],
2223
2532
  # namespace_templates: ["Namespace"],
2533
+ # memory_record_schema: {
2534
+ # metadata_schema: [
2535
+ # {
2536
+ # key: "MetadataKey", # required
2537
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2538
+ # extraction_config: {
2539
+ # llm_extraction_config: {
2540
+ # llm_extraction_instruction: "LlmExtractionInstruction",
2541
+ # definition: "Definition", # required
2542
+ # validation: {
2543
+ # string_validation: {
2544
+ # allowed_values: ["AllowedStringValue"], # required
2545
+ # },
2546
+ # string_list_validation: {
2547
+ # allowed_values: ["AllowedStringListValue"],
2548
+ # max_items: 1,
2549
+ # },
2550
+ # number_validation: {
2551
+ # min_value: 1.0,
2552
+ # max_value: 1.0,
2553
+ # },
2554
+ # },
2555
+ # },
2556
+ # },
2557
+ # },
2558
+ # ],
2559
+ # },
2224
2560
  # },
2225
2561
  # user_preference_memory_strategy: {
2226
2562
  # name: "Name", # required
2227
2563
  # description: "Description",
2228
2564
  # namespaces: ["Namespace"],
2229
2565
  # namespace_templates: ["Namespace"],
2566
+ # memory_record_schema: {
2567
+ # metadata_schema: [
2568
+ # {
2569
+ # key: "MetadataKey", # required
2570
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2571
+ # extraction_config: {
2572
+ # llm_extraction_config: {
2573
+ # llm_extraction_instruction: "LlmExtractionInstruction",
2574
+ # definition: "Definition", # required
2575
+ # validation: {
2576
+ # string_validation: {
2577
+ # allowed_values: ["AllowedStringValue"], # required
2578
+ # },
2579
+ # string_list_validation: {
2580
+ # allowed_values: ["AllowedStringListValue"],
2581
+ # max_items: 1,
2582
+ # },
2583
+ # number_validation: {
2584
+ # min_value: 1.0,
2585
+ # max_value: 1.0,
2586
+ # },
2587
+ # },
2588
+ # },
2589
+ # },
2590
+ # },
2591
+ # ],
2592
+ # },
2230
2593
  # },
2231
2594
  # custom_memory_strategy: {
2232
2595
  # name: "Name", # required
@@ -2274,6 +2637,33 @@ module Aws::BedrockAgentCoreControl
2274
2637
  # model_id: "String", # required
2275
2638
  # namespaces: ["Namespace"],
2276
2639
  # namespace_templates: ["Namespace"],
2640
+ # memory_record_schema: {
2641
+ # metadata_schema: [
2642
+ # {
2643
+ # key: "MetadataKey", # required
2644
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2645
+ # extraction_config: {
2646
+ # llm_extraction_config: {
2647
+ # llm_extraction_instruction: "LlmExtractionInstruction",
2648
+ # definition: "Definition", # required
2649
+ # validation: {
2650
+ # string_validation: {
2651
+ # allowed_values: ["AllowedStringValue"], # required
2652
+ # },
2653
+ # string_list_validation: {
2654
+ # allowed_values: ["AllowedStringListValue"],
2655
+ # max_items: 1,
2656
+ # },
2657
+ # number_validation: {
2658
+ # min_value: 1.0,
2659
+ # max_value: 1.0,
2660
+ # },
2661
+ # },
2662
+ # },
2663
+ # },
2664
+ # },
2665
+ # ],
2666
+ # },
2277
2667
  # },
2278
2668
  # },
2279
2669
  # self_managed_configuration: {
@@ -2297,6 +2687,33 @@ module Aws::BedrockAgentCoreControl
2297
2687
  # historical_context_window_size: 1,
2298
2688
  # },
2299
2689
  # },
2690
+ # memory_record_schema: {
2691
+ # metadata_schema: [
2692
+ # {
2693
+ # key: "MetadataKey", # required
2694
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2695
+ # extraction_config: {
2696
+ # llm_extraction_config: {
2697
+ # llm_extraction_instruction: "LlmExtractionInstruction",
2698
+ # definition: "Definition", # required
2699
+ # validation: {
2700
+ # string_validation: {
2701
+ # allowed_values: ["AllowedStringValue"], # required
2702
+ # },
2703
+ # string_list_validation: {
2704
+ # allowed_values: ["AllowedStringListValue"],
2705
+ # max_items: 1,
2706
+ # },
2707
+ # number_validation: {
2708
+ # min_value: 1.0,
2709
+ # max_value: 1.0,
2710
+ # },
2711
+ # },
2712
+ # },
2713
+ # },
2714
+ # },
2715
+ # ],
2716
+ # },
2300
2717
  # },
2301
2718
  # episodic_memory_strategy: {
2302
2719
  # name: "Name", # required
@@ -2306,10 +2723,70 @@ module Aws::BedrockAgentCoreControl
2306
2723
  # reflection_configuration: {
2307
2724
  # namespaces: ["Namespace"],
2308
2725
  # namespace_templates: ["Namespace"],
2726
+ # memory_record_schema: {
2727
+ # metadata_schema: [
2728
+ # {
2729
+ # key: "MetadataKey", # required
2730
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2731
+ # extraction_config: {
2732
+ # llm_extraction_config: {
2733
+ # llm_extraction_instruction: "LlmExtractionInstruction",
2734
+ # definition: "Definition", # required
2735
+ # validation: {
2736
+ # string_validation: {
2737
+ # allowed_values: ["AllowedStringValue"], # required
2738
+ # },
2739
+ # string_list_validation: {
2740
+ # allowed_values: ["AllowedStringListValue"],
2741
+ # max_items: 1,
2742
+ # },
2743
+ # number_validation: {
2744
+ # min_value: 1.0,
2745
+ # max_value: 1.0,
2746
+ # },
2747
+ # },
2748
+ # },
2749
+ # },
2750
+ # },
2751
+ # ],
2752
+ # },
2753
+ # },
2754
+ # memory_record_schema: {
2755
+ # metadata_schema: [
2756
+ # {
2757
+ # key: "MetadataKey", # required
2758
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
2759
+ # extraction_config: {
2760
+ # llm_extraction_config: {
2761
+ # llm_extraction_instruction: "LlmExtractionInstruction",
2762
+ # definition: "Definition", # required
2763
+ # validation: {
2764
+ # string_validation: {
2765
+ # allowed_values: ["AllowedStringValue"], # required
2766
+ # },
2767
+ # string_list_validation: {
2768
+ # allowed_values: ["AllowedStringListValue"],
2769
+ # max_items: 1,
2770
+ # },
2771
+ # number_validation: {
2772
+ # min_value: 1.0,
2773
+ # max_value: 1.0,
2774
+ # },
2775
+ # },
2776
+ # },
2777
+ # },
2778
+ # },
2779
+ # ],
2309
2780
  # },
2310
2781
  # },
2311
2782
  # },
2312
2783
  # ],
2784
+ # indexed_keys: [
2785
+ # {
2786
+ # key: "MetadataKey", # required
2787
+ # type: "STRING", # required, accepts STRING, STRINGLIST, NUMBER
2788
+ # },
2789
+ # ],
2313
2790
  # stream_delivery_resources: {
2314
2791
  # resources: [ # required
2315
2792
  # {
@@ -2368,10 +2845,34 @@ module Aws::BedrockAgentCoreControl
2368
2845
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespaces[0] #=> String
2369
2846
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates #=> Array
2370
2847
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates[0] #=> String
2848
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
2849
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
2850
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
2851
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
2852
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
2853
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
2854
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values[0] #=> String
2855
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values #=> Array
2856
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values[0] #=> String
2857
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.max_items #=> Integer
2858
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.min_value #=> Float
2859
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.max_value #=> Float
2371
2860
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces #=> Array
2372
2861
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces[0] #=> String
2373
2862
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates #=> Array
2374
2863
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates[0] #=> String
2864
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
2865
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
2866
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
2867
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
2868
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
2869
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
2870
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values[0] #=> String
2871
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values #=> Array
2872
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values[0] #=> String
2873
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.max_items #=> Integer
2874
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.min_value #=> Float
2875
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.max_value #=> Float
2375
2876
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions #=> Array
2376
2877
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].message_based_trigger.message_count #=> Integer
2377
2878
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].token_based_trigger.token_count #=> Integer
@@ -2387,6 +2888,21 @@ module Aws::BedrockAgentCoreControl
2387
2888
  # resp.memory.strategies[0].created_at #=> Time
2388
2889
  # resp.memory.strategies[0].updated_at #=> Time
2389
2890
  # resp.memory.strategies[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
2891
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
2892
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
2893
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
2894
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
2895
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
2896
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
2897
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values[0] #=> String
2898
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values #=> Array
2899
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values[0] #=> String
2900
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.max_items #=> Integer
2901
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.min_value #=> Float
2902
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.max_value #=> Float
2903
+ # resp.memory.indexed_keys #=> Array
2904
+ # resp.memory.indexed_keys[0].key #=> String
2905
+ # resp.memory.indexed_keys[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
2390
2906
  # resp.memory.stream_delivery_resources.resources #=> Array
2391
2907
  # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
2392
2908
  # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
@@ -2447,8 +2963,8 @@ module Aws::BedrockAgentCoreControl
2447
2963
  # token_endpoint_auth_methods: ["TokenAuthMethod"],
2448
2964
  # },
2449
2965
  # },
2450
- # client_id: "ClientIdType", # required
2451
- # client_secret: "ClientSecretType", # required
2966
+ # client_id: "DefaultClientIdType",
2967
+ # client_secret: "DefaultClientSecretType",
2452
2968
  # private_endpoint: {
2453
2969
  # self_managed_lattice_resource: {
2454
2970
  # resource_configuration_identifier: "ResourceConfigurationIdentifier",
@@ -2484,6 +3000,14 @@ module Aws::BedrockAgentCoreControl
2484
3000
  # },
2485
3001
  # },
2486
3002
  # ],
3003
+ # on_behalf_of_token_exchange_config: {
3004
+ # grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
3005
+ # token_exchange_grant_type_config: {
3006
+ # actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
3007
+ # actor_token_scopes: ["ScopeType"],
3008
+ # },
3009
+ # },
3010
+ # client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
2487
3011
  # },
2488
3012
  # google_oauth_2_provider_config: {
2489
3013
  # client_id: "ClientIdType", # required
@@ -2564,6 +3088,11 @@ module Aws::BedrockAgentCoreControl
2564
3088
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
2565
3089
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
2566
3090
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
3091
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.grant_type #=> String, one of "TOKEN_EXCHANGE", "JWT_AUTHORIZATION_GRANT"
3092
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.token_exchange_grant_type_config.actor_token_content #=> String, one of "NONE", "M2M", "AWS_IAM_ID_TOKEN_JWT"
3093
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.token_exchange_grant_type_config.actor_token_scopes #=> Array
3094
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.token_exchange_grant_type_config.actor_token_scopes[0] #=> String
3095
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_authentication_method #=> String, one of "CLIENT_SECRET_BASIC", "CLIENT_SECRET_POST", "AWS_IAM_ID_TOKEN_JWT"
2567
3096
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
2568
3097
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
2569
3098
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
@@ -2690,7 +3219,15 @@ module Aws::BedrockAgentCoreControl
2690
3219
  # @option params [required, String] :evaluation_execution_role_arn
2691
3220
  # The Amazon Resource Name (ARN) of the IAM role that grants permissions
2692
3221
  # to read from CloudWatch logs, write evaluation results, and invoke
2693
- # Amazon Bedrock models for evaluation.
3222
+ # Amazon Bedrock models for evaluation. If the configuration references
3223
+ # evaluators encrypted with a customer managed KMS key, this role must
3224
+ # also have `kms:Decrypt` permission on the KMS key. The service
3225
+ # validates this permission at configuration creation time. For more
3226
+ # information, see [Encryption at rest for AgentCore Evaluations][1].
3227
+ #
3228
+ #
3229
+ #
3230
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/evaluations-encryption.html
2694
3231
  #
2695
3232
  # @option params [required, Boolean] :enable_on_create
2696
3233
  # Whether to enable the online evaluation configuration immediately upon
@@ -3546,6 +4083,36 @@ module Aws::BedrockAgentCoreControl
3546
4083
  req.send_request(options)
3547
4084
  end
3548
4085
 
4086
+ # Deletes a configuration bundle and all of its versions.
4087
+ #
4088
+ # @option params [required, String] :bundle_id
4089
+ # The unique identifier of the configuration bundle to delete.
4090
+ #
4091
+ # @return [Types::DeleteConfigurationBundleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4092
+ #
4093
+ # * {Types::DeleteConfigurationBundleResponse#bundle_id #bundle_id} => String
4094
+ # * {Types::DeleteConfigurationBundleResponse#status #status} => String
4095
+ #
4096
+ # @example Request syntax with placeholder values
4097
+ #
4098
+ # resp = client.delete_configuration_bundle({
4099
+ # bundle_id: "ConfigurationBundleId", # required
4100
+ # })
4101
+ #
4102
+ # @example Response structure
4103
+ #
4104
+ # resp.bundle_id #=> String
4105
+ # resp.status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
4106
+ #
4107
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteConfigurationBundle AWS API Documentation
4108
+ #
4109
+ # @overload delete_configuration_bundle(params = {})
4110
+ # @param [Hash] params ({})
4111
+ def delete_configuration_bundle(params = {}, options = {})
4112
+ req = build_request(:delete_configuration_bundle, params)
4113
+ req.send_request(options)
4114
+ end
4115
+
3549
4116
  # Deletes a custom evaluator. Builtin evaluators cannot be deleted. The
3550
4117
  # evaluator must not be referenced by any active online evaluation
3551
4118
  # configurations.
@@ -3613,6 +4180,40 @@ module Aws::BedrockAgentCoreControl
3613
4180
  req.send_request(options)
3614
4181
  end
3615
4182
 
4183
+ # Deletes a gateway rule.
4184
+ #
4185
+ # @option params [required, String] :gateway_identifier
4186
+ # The identifier of the gateway containing the rule.
4187
+ #
4188
+ # @option params [required, String] :rule_id
4189
+ # The unique identifier of the rule to delete.
4190
+ #
4191
+ # @return [Types::DeleteGatewayRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4192
+ #
4193
+ # * {Types::DeleteGatewayRuleResponse#rule_id #rule_id} => String
4194
+ # * {Types::DeleteGatewayRuleResponse#status #status} => String
4195
+ #
4196
+ # @example Request syntax with placeholder values
4197
+ #
4198
+ # resp = client.delete_gateway_rule({
4199
+ # gateway_identifier: "GatewayIdentifier", # required
4200
+ # rule_id: "GatewayRuleId", # required
4201
+ # })
4202
+ #
4203
+ # @example Response structure
4204
+ #
4205
+ # resp.rule_id #=> String
4206
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING"
4207
+ #
4208
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayRule AWS API Documentation
4209
+ #
4210
+ # @overload delete_gateway_rule(params = {})
4211
+ # @param [Hash] params ({})
4212
+ def delete_gateway_rule(params = {}, options = {})
4213
+ req = build_request(:delete_gateway_rule, params)
4214
+ req.send_request(options)
4215
+ end
4216
+
3616
4217
  # Deletes a gateway target.
3617
4218
  #
3618
4219
  # You cannot delete a target that is in a pending authorization state
@@ -3719,7 +4320,7 @@ module Aws::BedrockAgentCoreControl
3719
4320
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.scopes[0] #=> String
3720
4321
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.custom_parameters #=> Hash
3721
4322
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.custom_parameters["OAuthCustomParametersKey"] #=> String
3722
- # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
4323
+ # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE", "TOKEN_EXCHANGE"
3723
4324
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.default_return_url #=> String
3724
4325
  # resp.harness.tools[0].config.inline_function.description #=> String
3725
4326
  # resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
@@ -4493,50 +5094,172 @@ module Aws::BedrockAgentCoreControl
4493
5094
  req.send_request(options)
4494
5095
  end
4495
5096
 
4496
- # Retrieves detailed information about an evaluator, including its
4497
- # configuration, status, and metadata. Works with both built-in and
4498
- # custom evaluators.
4499
- #
4500
- # @option params [required, String] :evaluator_id
4501
- # The unique identifier of the evaluator to retrieve. Can be a built-in
4502
- # evaluator ID (e.g., Builtin.Helpfulness) or a custom evaluator ID.
4503
- #
4504
- # @return [Types::GetEvaluatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4505
- #
4506
- # * {Types::GetEvaluatorResponse#evaluator_arn #evaluator_arn} => String
4507
- # * {Types::GetEvaluatorResponse#evaluator_id #evaluator_id} => String
4508
- # * {Types::GetEvaluatorResponse#evaluator_name #evaluator_name} => String
4509
- # * {Types::GetEvaluatorResponse#description #description} => String
4510
- # * {Types::GetEvaluatorResponse#evaluator_config #evaluator_config} => Types::EvaluatorConfig
4511
- # * {Types::GetEvaluatorResponse#level #level} => String
4512
- # * {Types::GetEvaluatorResponse#status #status} => String
4513
- # * {Types::GetEvaluatorResponse#created_at #created_at} => Time
4514
- # * {Types::GetEvaluatorResponse#updated_at #updated_at} => Time
4515
- # * {Types::GetEvaluatorResponse#locked_for_modification #locked_for_modification} => Boolean
5097
+ # Gets the latest version of a configuration bundle. By default, returns
5098
+ # the latest version on the mainline branch. Use
5099
+ # `GetConfigurationBundleVersion` to retrieve a specific historical
5100
+ # version.
5101
+ #
5102
+ # @option params [required, String] :bundle_id
5103
+ # The unique identifier of the configuration bundle to retrieve.
5104
+ #
5105
+ # @option params [String] :branch_name
5106
+ # The branch name to get the latest version from. If not specified,
5107
+ # returns the latest version on the mainline branch.
5108
+ #
5109
+ # @return [Types::GetConfigurationBundleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5110
+ #
5111
+ # * {Types::GetConfigurationBundleResponse#bundle_arn #bundle_arn} => String
5112
+ # * {Types::GetConfigurationBundleResponse#bundle_id #bundle_id} => String
5113
+ # * {Types::GetConfigurationBundleResponse#bundle_name #bundle_name} => String
5114
+ # * {Types::GetConfigurationBundleResponse#description #description} => String
5115
+ # * {Types::GetConfigurationBundleResponse#version_id #version_id} => String
5116
+ # * {Types::GetConfigurationBundleResponse#components #components} => Hash&lt;String,Types::ComponentConfiguration&gt;
5117
+ # * {Types::GetConfigurationBundleResponse#lineage_metadata #lineage_metadata} => Types::VersionLineageMetadata
5118
+ # * {Types::GetConfigurationBundleResponse#created_at #created_at} => Time
5119
+ # * {Types::GetConfigurationBundleResponse#updated_at #updated_at} => Time
4516
5120
  #
4517
5121
  # @example Request syntax with placeholder values
4518
5122
  #
4519
- # resp = client.get_evaluator({
4520
- # evaluator_id: "EvaluatorId", # required
5123
+ # resp = client.get_configuration_bundle({
5124
+ # bundle_id: "ConfigurationBundleId", # required
5125
+ # branch_name: "BranchName",
4521
5126
  # })
4522
5127
  #
4523
5128
  # @example Response structure
4524
5129
  #
4525
- # resp.evaluator_arn #=> String
4526
- # resp.evaluator_id #=> String
4527
- # resp.evaluator_name #=> String
5130
+ # resp.bundle_arn #=> String
5131
+ # resp.bundle_id #=> String
5132
+ # resp.bundle_name #=> String
4528
5133
  # resp.description #=> String
4529
- # resp.evaluator_config.llm_as_a_judge.instructions #=> String
4530
- # resp.evaluator_config.llm_as_a_judge.rating_scale.numerical #=> Array
4531
- # resp.evaluator_config.llm_as_a_judge.rating_scale.numerical[0].definition #=> String
4532
- # resp.evaluator_config.llm_as_a_judge.rating_scale.numerical[0].value #=> Float
4533
- # resp.evaluator_config.llm_as_a_judge.rating_scale.numerical[0].label #=> String
4534
- # resp.evaluator_config.llm_as_a_judge.rating_scale.categorical #=> Array
4535
- # resp.evaluator_config.llm_as_a_judge.rating_scale.categorical[0].definition #=> String
4536
- # resp.evaluator_config.llm_as_a_judge.rating_scale.categorical[0].label #=> String
4537
- # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.model_id #=> String
4538
- # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.max_tokens #=> Integer
4539
- # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.temperature #=> Float
5134
+ # resp.version_id #=> String
5135
+ # resp.components #=> Hash
5136
+ # resp.lineage_metadata.parent_version_ids #=> Array
5137
+ # resp.lineage_metadata.parent_version_ids[0] #=> String
5138
+ # resp.lineage_metadata.branch_name #=> String
5139
+ # resp.lineage_metadata.created_by.name #=> String
5140
+ # resp.lineage_metadata.created_by.arn #=> String
5141
+ # resp.lineage_metadata.commit_message #=> String
5142
+ # resp.created_at #=> Time
5143
+ # resp.updated_at #=> Time
5144
+ #
5145
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundle AWS API Documentation
5146
+ #
5147
+ # @overload get_configuration_bundle(params = {})
5148
+ # @param [Hash] params ({})
5149
+ def get_configuration_bundle(params = {}, options = {})
5150
+ req = build_request(:get_configuration_bundle, params)
5151
+ req.send_request(options)
5152
+ end
5153
+
5154
+ # Gets a specific version of a configuration bundle by its version
5155
+ # identifier.
5156
+ #
5157
+ # @option params [required, String] :bundle_id
5158
+ # The unique identifier of the configuration bundle.
5159
+ #
5160
+ # @option params [required, String] :version_id
5161
+ # The version identifier of the configuration bundle version to
5162
+ # retrieve.
5163
+ #
5164
+ # @return [Types::GetConfigurationBundleVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5165
+ #
5166
+ # * {Types::GetConfigurationBundleVersionResponse#bundle_arn #bundle_arn} => String
5167
+ # * {Types::GetConfigurationBundleVersionResponse#bundle_id #bundle_id} => String
5168
+ # * {Types::GetConfigurationBundleVersionResponse#bundle_name #bundle_name} => String
5169
+ # * {Types::GetConfigurationBundleVersionResponse#description #description} => String
5170
+ # * {Types::GetConfigurationBundleVersionResponse#version_id #version_id} => String
5171
+ # * {Types::GetConfigurationBundleVersionResponse#components #components} => Hash&lt;String,Types::ComponentConfiguration&gt;
5172
+ # * {Types::GetConfigurationBundleVersionResponse#lineage_metadata #lineage_metadata} => Types::VersionLineageMetadata
5173
+ # * {Types::GetConfigurationBundleVersionResponse#created_at #created_at} => Time
5174
+ # * {Types::GetConfigurationBundleVersionResponse#version_created_at #version_created_at} => Time
5175
+ #
5176
+ # @example Request syntax with placeholder values
5177
+ #
5178
+ # resp = client.get_configuration_bundle_version({
5179
+ # bundle_id: "ConfigurationBundleId", # required
5180
+ # version_id: "ConfigurationBundleVersion", # required
5181
+ # })
5182
+ #
5183
+ # @example Response structure
5184
+ #
5185
+ # resp.bundle_arn #=> String
5186
+ # resp.bundle_id #=> String
5187
+ # resp.bundle_name #=> String
5188
+ # resp.description #=> String
5189
+ # resp.version_id #=> String
5190
+ # resp.components #=> Hash
5191
+ # resp.lineage_metadata.parent_version_ids #=> Array
5192
+ # resp.lineage_metadata.parent_version_ids[0] #=> String
5193
+ # resp.lineage_metadata.branch_name #=> String
5194
+ # resp.lineage_metadata.created_by.name #=> String
5195
+ # resp.lineage_metadata.created_by.arn #=> String
5196
+ # resp.lineage_metadata.commit_message #=> String
5197
+ # resp.created_at #=> Time
5198
+ # resp.version_created_at #=> Time
5199
+ #
5200
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersion AWS API Documentation
5201
+ #
5202
+ # @overload get_configuration_bundle_version(params = {})
5203
+ # @param [Hash] params ({})
5204
+ def get_configuration_bundle_version(params = {}, options = {})
5205
+ req = build_request(:get_configuration_bundle_version, params)
5206
+ req.send_request(options)
5207
+ end
5208
+
5209
+ # Retrieves detailed information about an evaluator, including its
5210
+ # configuration, status, and metadata. Works with both built-in and
5211
+ # custom evaluators.
5212
+ #
5213
+ # @option params [required, String] :evaluator_id
5214
+ # The unique identifier of the evaluator to retrieve. Can be a built-in
5215
+ # evaluator ID (e.g., Builtin.Helpfulness) or a custom evaluator ID.
5216
+ #
5217
+ # @option params [String] :included_data
5218
+ # Controls which data is returned in the response. `ALL_DATA` (default)
5219
+ # returns the full evaluator including decrypted instructions and rating
5220
+ # scale. For evaluators encrypted with a customer managed KMS key, this
5221
+ # requires `kms:Decrypt` permission on the key. `METADATA_ONLY` returns
5222
+ # evaluator metadata and model configuration without instructions or
5223
+ # rating scale, and does not require any KMS permissions.
5224
+ #
5225
+ # @return [Types::GetEvaluatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5226
+ #
5227
+ # * {Types::GetEvaluatorResponse#evaluator_arn #evaluator_arn} => String
5228
+ # * {Types::GetEvaluatorResponse#evaluator_id #evaluator_id} => String
5229
+ # * {Types::GetEvaluatorResponse#evaluator_name #evaluator_name} => String
5230
+ # * {Types::GetEvaluatorResponse#description #description} => String
5231
+ # * {Types::GetEvaluatorResponse#evaluator_config #evaluator_config} => Types::EvaluatorConfig
5232
+ # * {Types::GetEvaluatorResponse#level #level} => String
5233
+ # * {Types::GetEvaluatorResponse#status #status} => String
5234
+ # * {Types::GetEvaluatorResponse#created_at #created_at} => Time
5235
+ # * {Types::GetEvaluatorResponse#updated_at #updated_at} => Time
5236
+ # * {Types::GetEvaluatorResponse#locked_for_modification #locked_for_modification} => Boolean
5237
+ # * {Types::GetEvaluatorResponse#kms_key_arn #kms_key_arn} => String
5238
+ #
5239
+ # @example Request syntax with placeholder values
5240
+ #
5241
+ # resp = client.get_evaluator({
5242
+ # evaluator_id: "EvaluatorId", # required
5243
+ # included_data: "ALL_DATA", # accepts ALL_DATA, METADATA_ONLY
5244
+ # })
5245
+ #
5246
+ # @example Response structure
5247
+ #
5248
+ # resp.evaluator_arn #=> String
5249
+ # resp.evaluator_id #=> String
5250
+ # resp.evaluator_name #=> String
5251
+ # resp.description #=> String
5252
+ # resp.evaluator_config.llm_as_a_judge.instructions #=> String
5253
+ # resp.evaluator_config.llm_as_a_judge.rating_scale.numerical #=> Array
5254
+ # resp.evaluator_config.llm_as_a_judge.rating_scale.numerical[0].definition #=> String
5255
+ # resp.evaluator_config.llm_as_a_judge.rating_scale.numerical[0].value #=> Float
5256
+ # resp.evaluator_config.llm_as_a_judge.rating_scale.numerical[0].label #=> String
5257
+ # resp.evaluator_config.llm_as_a_judge.rating_scale.categorical #=> Array
5258
+ # resp.evaluator_config.llm_as_a_judge.rating_scale.categorical[0].definition #=> String
5259
+ # resp.evaluator_config.llm_as_a_judge.rating_scale.categorical[0].label #=> String
5260
+ # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.model_id #=> String
5261
+ # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.max_tokens #=> Integer
5262
+ # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.temperature #=> Float
4540
5263
  # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.top_p #=> Float
4541
5264
  # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences #=> Array
4542
5265
  # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences[0] #=> String
@@ -4547,6 +5270,7 @@ module Aws::BedrockAgentCoreControl
4547
5270
  # resp.created_at #=> Time
4548
5271
  # resp.updated_at #=> Time
4549
5272
  # resp.locked_for_modification #=> Boolean
5273
+ # resp.kms_key_arn #=> String
4550
5274
  #
4551
5275
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetEvaluator AWS API Documentation
4552
5276
  #
@@ -4608,7 +5332,7 @@ module Aws::BedrockAgentCoreControl
4608
5332
  # resp.protocol_configuration.mcp.supported_versions[0] #=> String
4609
5333
  # resp.protocol_configuration.mcp.instructions #=> String
4610
5334
  # resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
4611
- # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE"
5335
+ # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE", "AUTHENTICATE_ONLY"
4612
5336
  # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
4613
5337
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
4614
5338
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
@@ -4665,6 +5389,79 @@ module Aws::BedrockAgentCoreControl
4665
5389
  req.send_request(options)
4666
5390
  end
4667
5391
 
5392
+ # Retrieves detailed information about a specific gateway rule.
5393
+ #
5394
+ # @option params [required, String] :gateway_identifier
5395
+ # The identifier of the gateway containing the rule.
5396
+ #
5397
+ # @option params [required, String] :rule_id
5398
+ # The unique identifier of the rule to retrieve.
5399
+ #
5400
+ # @return [Types::GetGatewayRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5401
+ #
5402
+ # * {Types::GetGatewayRuleResponse#rule_id #rule_id} => String
5403
+ # * {Types::GetGatewayRuleResponse#gateway_arn #gateway_arn} => String
5404
+ # * {Types::GetGatewayRuleResponse#priority #priority} => Integer
5405
+ # * {Types::GetGatewayRuleResponse#conditions #conditions} => Array&lt;Types::Condition&gt;
5406
+ # * {Types::GetGatewayRuleResponse#actions #actions} => Array&lt;Types::Action&gt;
5407
+ # * {Types::GetGatewayRuleResponse#description #description} => String
5408
+ # * {Types::GetGatewayRuleResponse#created_at #created_at} => Time
5409
+ # * {Types::GetGatewayRuleResponse#status #status} => String
5410
+ # * {Types::GetGatewayRuleResponse#system #system} => Types::SystemManagedBlock
5411
+ # * {Types::GetGatewayRuleResponse#updated_at #updated_at} => Time
5412
+ #
5413
+ # @example Request syntax with placeholder values
5414
+ #
5415
+ # resp = client.get_gateway_rule({
5416
+ # gateway_identifier: "GatewayIdentifier", # required
5417
+ # rule_id: "GatewayRuleId", # required
5418
+ # })
5419
+ #
5420
+ # @example Response structure
5421
+ #
5422
+ # resp.rule_id #=> String
5423
+ # resp.gateway_arn #=> String
5424
+ # resp.priority #=> Integer
5425
+ # resp.conditions #=> Array
5426
+ # resp.conditions[0].match_principals.any_of #=> Array
5427
+ # resp.conditions[0].match_principals.any_of[0].iam_principal.arn #=> String
5428
+ # resp.conditions[0].match_principals.any_of[0].iam_principal.operator #=> String, one of "StringEquals", "StringLike"
5429
+ # resp.conditions[0].match_paths.any_of #=> Array
5430
+ # resp.conditions[0].match_paths.any_of[0] #=> String
5431
+ # resp.actions #=> Array
5432
+ # resp.actions[0].configuration_bundle.static_override.bundle_arn #=> String
5433
+ # resp.actions[0].configuration_bundle.static_override.bundle_version #=> String
5434
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split #=> Array
5435
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].name #=> String
5436
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].weight #=> Integer
5437
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].configuration_bundle.bundle_arn #=> String
5438
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].configuration_bundle.bundle_version #=> String
5439
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].description #=> String
5440
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].metadata #=> Hash
5441
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].metadata["TrafficSplitMetadataKey"] #=> String
5442
+ # resp.actions[0].route_to_target.static_route.target_name #=> String
5443
+ # resp.actions[0].route_to_target.weighted_route.traffic_split #=> Array
5444
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].name #=> String
5445
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].weight #=> Integer
5446
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].target_name #=> String
5447
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].description #=> String
5448
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].metadata #=> Hash
5449
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].metadata["TrafficSplitMetadataKey"] #=> String
5450
+ # resp.description #=> String
5451
+ # resp.created_at #=> Time
5452
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING"
5453
+ # resp.system.managed_by #=> String
5454
+ # resp.updated_at #=> Time
5455
+ #
5456
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayRule AWS API Documentation
5457
+ #
5458
+ # @overload get_gateway_rule(params = {})
5459
+ # @param [Hash] params ({})
5460
+ def get_gateway_rule(params = {}, options = {})
5461
+ req = build_request(:get_gateway_rule, params)
5462
+ req.send_request(options)
5463
+ end
5464
+
4668
5465
  # Retrieves information about a specific gateway target.
4669
5466
  #
4670
5467
  # @option params [required, String] :gateway_identifier
@@ -4690,6 +5487,7 @@ module Aws::BedrockAgentCoreControl
4690
5487
  # * {Types::GetGatewayTargetResponse#private_endpoint #private_endpoint} => Types::PrivateEndpoint
4691
5488
  # * {Types::GetGatewayTargetResponse#private_endpoint_managed_resources #private_endpoint_managed_resources} => Array&lt;Types::ManagedResourceDetails&gt;
4692
5489
  # * {Types::GetGatewayTargetResponse#authorization_data #authorization_data} => Types::AuthorizationData
5490
+ # * {Types::GetGatewayTargetResponse#protocol_type #protocol_type} => String
4693
5491
  #
4694
5492
  # @example Request syntax with placeholder values
4695
5493
  #
@@ -4739,8 +5537,8 @@ module Aws::BedrockAgentCoreControl
4739
5537
  # resp.target_configuration.mcp.mcp_server.mcp_tool_schema.s3.uri #=> String
4740
5538
  # resp.target_configuration.mcp.mcp_server.mcp_tool_schema.s3.bucket_owner_account_id #=> String
4741
5539
  # resp.target_configuration.mcp.mcp_server.mcp_tool_schema.inline_payload #=> String
4742
- # resp.target_configuration.mcp.mcp_server.resource_priority #=> Integer
4743
5540
  # resp.target_configuration.mcp.mcp_server.listing_mode #=> String, one of "DEFAULT", "DYNAMIC"
5541
+ # resp.target_configuration.mcp.mcp_server.resource_priority #=> Integer
4744
5542
  # resp.target_configuration.mcp.api_gateway.rest_api_id #=> String
4745
5543
  # resp.target_configuration.mcp.api_gateway.stage #=> String
4746
5544
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_overrides #=> Array
@@ -4752,14 +5550,16 @@ module Aws::BedrockAgentCoreControl
4752
5550
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
4753
5551
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
4754
5552
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
5553
+ # resp.target_configuration.http.agentcore_runtime.arn #=> String
5554
+ # resp.target_configuration.http.agentcore_runtime.qualifier #=> String
4755
5555
  # resp.credential_provider_configurations #=> Array
4756
- # resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY"
5556
+ # resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
4757
5557
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
4758
5558
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes #=> Array
4759
5559
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes[0] #=> String
4760
5560
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters #=> Hash
4761
5561
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters["OAuthCustomParametersKey"] #=> String
4762
- # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
5562
+ # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE", "TOKEN_EXCHANGE"
4763
5563
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.default_return_url #=> String
4764
5564
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.provider_arn #=> String
4765
5565
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
@@ -4790,6 +5590,7 @@ module Aws::BedrockAgentCoreControl
4790
5590
  # resp.private_endpoint_managed_resources[0].resource_association_arn #=> String
4791
5591
  # resp.authorization_data.oauth2.authorization_url #=> String
4792
5592
  # resp.authorization_data.oauth2.user_id #=> String
5593
+ # resp.protocol_type #=> String, one of "MCP", "HTTP"
4793
5594
  #
4794
5595
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTarget AWS API Documentation
4795
5596
  #
@@ -4854,7 +5655,7 @@ module Aws::BedrockAgentCoreControl
4854
5655
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.scopes[0] #=> String
4855
5656
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.custom_parameters #=> Hash
4856
5657
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.custom_parameters["OAuthCustomParametersKey"] #=> String
4857
- # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
5658
+ # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE", "TOKEN_EXCHANGE"
4858
5659
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.default_return_url #=> String
4859
5660
  # resp.harness.tools[0].config.inline_function.description #=> String
4860
5661
  # resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
@@ -4996,10 +5797,34 @@ module Aws::BedrockAgentCoreControl
4996
5797
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespaces[0] #=> String
4997
5798
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates #=> Array
4998
5799
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates[0] #=> String
5800
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
5801
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
5802
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
5803
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
5804
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
5805
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
5806
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values[0] #=> String
5807
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values #=> Array
5808
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values[0] #=> String
5809
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.max_items #=> Integer
5810
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.min_value #=> Float
5811
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.max_value #=> Float
4999
5812
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces #=> Array
5000
5813
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces[0] #=> String
5001
5814
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates #=> Array
5002
5815
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates[0] #=> String
5816
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
5817
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
5818
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
5819
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
5820
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
5821
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
5822
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values[0] #=> String
5823
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values #=> Array
5824
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values[0] #=> String
5825
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.max_items #=> Integer
5826
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.min_value #=> Float
5827
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.max_value #=> Float
5003
5828
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions #=> Array
5004
5829
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].message_based_trigger.message_count #=> Integer
5005
5830
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].token_based_trigger.token_count #=> Integer
@@ -5015,6 +5840,21 @@ module Aws::BedrockAgentCoreControl
5015
5840
  # resp.memory.strategies[0].created_at #=> Time
5016
5841
  # resp.memory.strategies[0].updated_at #=> Time
5017
5842
  # resp.memory.strategies[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
5843
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
5844
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
5845
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
5846
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
5847
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
5848
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
5849
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values[0] #=> String
5850
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values #=> Array
5851
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values[0] #=> String
5852
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.max_items #=> Integer
5853
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.min_value #=> Float
5854
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.max_value #=> Float
5855
+ # resp.memory.indexed_keys #=> Array
5856
+ # resp.memory.indexed_keys[0].key #=> String
5857
+ # resp.memory.indexed_keys[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
5018
5858
  # resp.memory.stream_delivery_resources.resources #=> Array
5019
5859
  # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
5020
5860
  # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
@@ -5097,6 +5937,11 @@ module Aws::BedrockAgentCoreControl
5097
5937
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
5098
5938
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
5099
5939
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
5940
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.grant_type #=> String, one of "TOKEN_EXCHANGE", "JWT_AUTHORIZATION_GRANT"
5941
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.token_exchange_grant_type_config.actor_token_content #=> String, one of "NONE", "M2M", "AWS_IAM_ID_TOKEN_JWT"
5942
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.token_exchange_grant_type_config.actor_token_scopes #=> Array
5943
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.token_exchange_grant_type_config.actor_token_scopes[0] #=> String
5944
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_authentication_method #=> String, one of "CLIENT_SECRET_BASIC", "CLIENT_SECRET_POST", "AWS_IAM_ID_TOKEN_JWT"
5100
5945
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
5101
5946
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
5102
5947
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
@@ -6033,6 +6878,120 @@ module Aws::BedrockAgentCoreControl
6033
6878
  req.send_request(options)
6034
6879
  end
6035
6880
 
6881
+ # Lists all versions of a configuration bundle, with optional filtering
6882
+ # by branch name or creation source.
6883
+ #
6884
+ # @option params [required, String] :bundle_id
6885
+ # The unique identifier of the configuration bundle to list versions
6886
+ # for.
6887
+ #
6888
+ # @option params [String] :next_token
6889
+ # If the total number of results is greater than the `maxResults` value
6890
+ # provided in the request, enter the token returned in the `nextToken`
6891
+ # field in the response in this field to return the next batch of
6892
+ # results.
6893
+ #
6894
+ # @option params [Integer] :max_results
6895
+ # The maximum number of results to return in the response. If the total
6896
+ # number of results is greater than this value, use the token returned
6897
+ # in the response in the `nextToken` field when making another request
6898
+ # to return the next batch of results.
6899
+ #
6900
+ # @option params [Types::VersionFilter] :filter
6901
+ # An optional filter for listing versions, including branch name,
6902
+ # creation source, and whether to return only the latest version per
6903
+ # branch.
6904
+ #
6905
+ # @return [Types::ListConfigurationBundleVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6906
+ #
6907
+ # * {Types::ListConfigurationBundleVersionsResponse#versions #versions} => Array&lt;Types::ConfigurationBundleVersionSummary&gt;
6908
+ # * {Types::ListConfigurationBundleVersionsResponse#next_token #next_token} => String
6909
+ #
6910
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6911
+ #
6912
+ # @example Request syntax with placeholder values
6913
+ #
6914
+ # resp = client.list_configuration_bundle_versions({
6915
+ # bundle_id: "ConfigurationBundleId", # required
6916
+ # next_token: "String",
6917
+ # max_results: 1,
6918
+ # filter: {
6919
+ # branch_name: "BranchName",
6920
+ # created_by_name: "String",
6921
+ # latest_per_branch: false,
6922
+ # },
6923
+ # })
6924
+ #
6925
+ # @example Response structure
6926
+ #
6927
+ # resp.versions #=> Array
6928
+ # resp.versions[0].bundle_arn #=> String
6929
+ # resp.versions[0].bundle_id #=> String
6930
+ # resp.versions[0].version_id #=> String
6931
+ # resp.versions[0].lineage_metadata.parent_version_ids #=> Array
6932
+ # resp.versions[0].lineage_metadata.parent_version_ids[0] #=> String
6933
+ # resp.versions[0].lineage_metadata.branch_name #=> String
6934
+ # resp.versions[0].lineage_metadata.created_by.name #=> String
6935
+ # resp.versions[0].lineage_metadata.created_by.arn #=> String
6936
+ # resp.versions[0].lineage_metadata.commit_message #=> String
6937
+ # resp.versions[0].version_created_at #=> Time
6938
+ # resp.next_token #=> String
6939
+ #
6940
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundleVersions AWS API Documentation
6941
+ #
6942
+ # @overload list_configuration_bundle_versions(params = {})
6943
+ # @param [Hash] params ({})
6944
+ def list_configuration_bundle_versions(params = {}, options = {})
6945
+ req = build_request(:list_configuration_bundle_versions, params)
6946
+ req.send_request(options)
6947
+ end
6948
+
6949
+ # Lists all configuration bundles in the account.
6950
+ #
6951
+ # @option params [String] :next_token
6952
+ # If the total number of results is greater than the `maxResults` value
6953
+ # provided in the request, enter the token returned in the `nextToken`
6954
+ # field in the response in this field to return the next batch of
6955
+ # results.
6956
+ #
6957
+ # @option params [Integer] :max_results
6958
+ # The maximum number of results to return in the response. If the total
6959
+ # number of results is greater than this value, use the token returned
6960
+ # in the response in the `nextToken` field when making another request
6961
+ # to return the next batch of results.
6962
+ #
6963
+ # @return [Types::ListConfigurationBundlesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6964
+ #
6965
+ # * {Types::ListConfigurationBundlesResponse#bundles #bundles} => Array&lt;Types::ConfigurationBundleSummary&gt;
6966
+ # * {Types::ListConfigurationBundlesResponse#next_token #next_token} => String
6967
+ #
6968
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6969
+ #
6970
+ # @example Request syntax with placeholder values
6971
+ #
6972
+ # resp = client.list_configuration_bundles({
6973
+ # next_token: "String",
6974
+ # max_results: 1,
6975
+ # })
6976
+ #
6977
+ # @example Response structure
6978
+ #
6979
+ # resp.bundles #=> Array
6980
+ # resp.bundles[0].bundle_arn #=> String
6981
+ # resp.bundles[0].bundle_id #=> String
6982
+ # resp.bundles[0].bundle_name #=> String
6983
+ # resp.bundles[0].description #=> String
6984
+ # resp.next_token #=> String
6985
+ #
6986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundles AWS API Documentation
6987
+ #
6988
+ # @overload list_configuration_bundles(params = {})
6989
+ # @param [Hash] params ({})
6990
+ def list_configuration_bundles(params = {}, options = {})
6991
+ req = build_request(:list_configuration_bundles, params)
6992
+ req.send_request(options)
6993
+ end
6994
+
6036
6995
  # Lists all available evaluators, including both builtin evaluators
6037
6996
  # provided by the service and custom evaluators created by the user.
6038
6997
  #
@@ -6070,6 +7029,7 @@ module Aws::BedrockAgentCoreControl
6070
7029
  # resp.evaluators[0].created_at #=> Time
6071
7030
  # resp.evaluators[0].updated_at #=> Time
6072
7031
  # resp.evaluators[0].locked_for_modification #=> Boolean
7032
+ # resp.evaluators[0].kms_key_arn #=> String
6073
7033
  # resp.next_token #=> String
6074
7034
  #
6075
7035
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListEvaluators AWS API Documentation
@@ -6081,6 +7041,82 @@ module Aws::BedrockAgentCoreControl
6081
7041
  req.send_request(options)
6082
7042
  end
6083
7043
 
7044
+ # Lists all rules for a gateway.
7045
+ #
7046
+ # @option params [required, String] :gateway_identifier
7047
+ # The identifier of the gateway to list rules for.
7048
+ #
7049
+ # @option params [Integer] :max_results
7050
+ # The maximum number of results to return in the response. If the total
7051
+ # number of results is greater than this value, use the token returned
7052
+ # in the response in the `nextToken` field when making another request
7053
+ # to return the next batch of results.
7054
+ #
7055
+ # @option params [String] :next_token
7056
+ # The pagination token from a previous request.
7057
+ #
7058
+ # @return [Types::ListGatewayRulesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7059
+ #
7060
+ # * {Types::ListGatewayRulesResponse#gateway_rules #gateway_rules} => Array&lt;Types::GatewayRuleDetail&gt;
7061
+ # * {Types::ListGatewayRulesResponse#next_token #next_token} => String
7062
+ #
7063
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
7064
+ #
7065
+ # @example Request syntax with placeholder values
7066
+ #
7067
+ # resp = client.list_gateway_rules({
7068
+ # gateway_identifier: "GatewayIdentifier", # required
7069
+ # max_results: 1,
7070
+ # next_token: "GatewayRuleNextToken",
7071
+ # })
7072
+ #
7073
+ # @example Response structure
7074
+ #
7075
+ # resp.gateway_rules #=> Array
7076
+ # resp.gateway_rules[0].rule_id #=> String
7077
+ # resp.gateway_rules[0].gateway_arn #=> String
7078
+ # resp.gateway_rules[0].priority #=> Integer
7079
+ # resp.gateway_rules[0].conditions #=> Array
7080
+ # resp.gateway_rules[0].conditions[0].match_principals.any_of #=> Array
7081
+ # resp.gateway_rules[0].conditions[0].match_principals.any_of[0].iam_principal.arn #=> String
7082
+ # resp.gateway_rules[0].conditions[0].match_principals.any_of[0].iam_principal.operator #=> String, one of "StringEquals", "StringLike"
7083
+ # resp.gateway_rules[0].conditions[0].match_paths.any_of #=> Array
7084
+ # resp.gateway_rules[0].conditions[0].match_paths.any_of[0] #=> String
7085
+ # resp.gateway_rules[0].actions #=> Array
7086
+ # resp.gateway_rules[0].actions[0].configuration_bundle.static_override.bundle_arn #=> String
7087
+ # resp.gateway_rules[0].actions[0].configuration_bundle.static_override.bundle_version #=> String
7088
+ # resp.gateway_rules[0].actions[0].configuration_bundle.weighted_override.traffic_split #=> Array
7089
+ # resp.gateway_rules[0].actions[0].configuration_bundle.weighted_override.traffic_split[0].name #=> String
7090
+ # resp.gateway_rules[0].actions[0].configuration_bundle.weighted_override.traffic_split[0].weight #=> Integer
7091
+ # resp.gateway_rules[0].actions[0].configuration_bundle.weighted_override.traffic_split[0].configuration_bundle.bundle_arn #=> String
7092
+ # resp.gateway_rules[0].actions[0].configuration_bundle.weighted_override.traffic_split[0].configuration_bundle.bundle_version #=> String
7093
+ # resp.gateway_rules[0].actions[0].configuration_bundle.weighted_override.traffic_split[0].description #=> String
7094
+ # resp.gateway_rules[0].actions[0].configuration_bundle.weighted_override.traffic_split[0].metadata #=> Hash
7095
+ # resp.gateway_rules[0].actions[0].configuration_bundle.weighted_override.traffic_split[0].metadata["TrafficSplitMetadataKey"] #=> String
7096
+ # resp.gateway_rules[0].actions[0].route_to_target.static_route.target_name #=> String
7097
+ # resp.gateway_rules[0].actions[0].route_to_target.weighted_route.traffic_split #=> Array
7098
+ # resp.gateway_rules[0].actions[0].route_to_target.weighted_route.traffic_split[0].name #=> String
7099
+ # resp.gateway_rules[0].actions[0].route_to_target.weighted_route.traffic_split[0].weight #=> Integer
7100
+ # resp.gateway_rules[0].actions[0].route_to_target.weighted_route.traffic_split[0].target_name #=> String
7101
+ # resp.gateway_rules[0].actions[0].route_to_target.weighted_route.traffic_split[0].description #=> String
7102
+ # resp.gateway_rules[0].actions[0].route_to_target.weighted_route.traffic_split[0].metadata #=> Hash
7103
+ # resp.gateway_rules[0].actions[0].route_to_target.weighted_route.traffic_split[0].metadata["TrafficSplitMetadataKey"] #=> String
7104
+ # resp.gateway_rules[0].description #=> String
7105
+ # resp.gateway_rules[0].created_at #=> Time
7106
+ # resp.gateway_rules[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING"
7107
+ # resp.gateway_rules[0].system.managed_by #=> String
7108
+ # resp.gateway_rules[0].updated_at #=> Time
7109
+ # resp.next_token #=> String
7110
+ #
7111
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayRules AWS API Documentation
7112
+ #
7113
+ # @overload list_gateway_rules(params = {})
7114
+ # @param [Hash] params ({})
7115
+ def list_gateway_rules(params = {}, options = {})
7116
+ req = build_request(:list_gateway_rules, params)
7117
+ req.send_request(options)
7118
+ end
7119
+
6084
7120
  # Lists all targets for a specific gateway.
6085
7121
  #
6086
7122
  # @option params [required, String] :gateway_identifier
@@ -6171,7 +7207,7 @@ module Aws::BedrockAgentCoreControl
6171
7207
  # resp.items[0].description #=> String
6172
7208
  # resp.items[0].created_at #=> Time
6173
7209
  # resp.items[0].updated_at #=> Time
6174
- # resp.items[0].authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE"
7210
+ # resp.items[0].authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE", "AUTHENTICATE_ONLY"
6175
7211
  # resp.items[0].protocol_type #=> String, one of "MCP"
6176
7212
  # resp.next_token #=> String
6177
7213
  #
@@ -7118,8 +8154,8 @@ module Aws::BedrockAgentCoreControl
7118
8154
  # resp.targets[0].target_configuration.mcp.mcp_server.mcp_tool_schema.s3.uri #=> String
7119
8155
  # resp.targets[0].target_configuration.mcp.mcp_server.mcp_tool_schema.s3.bucket_owner_account_id #=> String
7120
8156
  # resp.targets[0].target_configuration.mcp.mcp_server.mcp_tool_schema.inline_payload #=> String
7121
- # resp.targets[0].target_configuration.mcp.mcp_server.resource_priority #=> Integer
7122
8157
  # resp.targets[0].target_configuration.mcp.mcp_server.listing_mode #=> String, one of "DEFAULT", "DYNAMIC"
8158
+ # resp.targets[0].target_configuration.mcp.mcp_server.resource_priority #=> Integer
7123
8159
  # resp.targets[0].target_configuration.mcp.api_gateway.rest_api_id #=> String
7124
8160
  # resp.targets[0].target_configuration.mcp.api_gateway.stage #=> String
7125
8161
  # resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_overrides #=> Array
@@ -7131,14 +8167,16 @@ module Aws::BedrockAgentCoreControl
7131
8167
  # resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
7132
8168
  # resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
7133
8169
  # resp.targets[0].target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
8170
+ # resp.targets[0].target_configuration.http.agentcore_runtime.arn #=> String
8171
+ # resp.targets[0].target_configuration.http.agentcore_runtime.qualifier #=> String
7134
8172
  # resp.targets[0].credential_provider_configurations #=> Array
7135
- # resp.targets[0].credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY"
8173
+ # resp.targets[0].credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
7136
8174
  # resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
7137
8175
  # resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes #=> Array
7138
8176
  # resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes[0] #=> String
7139
8177
  # resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters #=> Hash
7140
8178
  # resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters["OAuthCustomParametersKey"] #=> String
7141
- # resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
8179
+ # resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE", "TOKEN_EXCHANGE"
7142
8180
  # resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.default_return_url #=> String
7143
8181
  # resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.provider_arn #=> String
7144
8182
  # resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
@@ -7169,6 +8207,7 @@ module Aws::BedrockAgentCoreControl
7169
8207
  # resp.targets[0].private_endpoint_managed_resources[0].resource_association_arn #=> String
7170
8208
  # resp.targets[0].authorization_data.oauth2.authorization_url #=> String
7171
8209
  # resp.targets[0].authorization_data.oauth2.user_id #=> String
8210
+ # resp.targets[0].protocol_type #=> String, one of "MCP", "HTTP"
7172
8211
  #
7173
8212
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SynchronizeGatewayTargets AWS API Documentation
7174
8213
  #
@@ -7539,6 +8578,100 @@ module Aws::BedrockAgentCoreControl
7539
8578
  req.send_request(options)
7540
8579
  end
7541
8580
 
8581
+ # Updates a configuration bundle by creating a new version with the
8582
+ # specified changes. Each update creates a new version in the version
8583
+ # history.
8584
+ #
8585
+ # @option params [String] :client_token
8586
+ # A unique, case-sensitive identifier to ensure that the API request
8587
+ # completes no more than one time. If you don't specify this field, a
8588
+ # value is randomly generated for you. If this token matches a previous
8589
+ # request, the service ignores the request, but doesn't return an
8590
+ # error. For more information, see [Ensuring idempotency][1].
8591
+ #
8592
+ # **A suitable default value is auto-generated.** You should normally
8593
+ # not need to pass this option.**
8594
+ #
8595
+ #
8596
+ #
8597
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
8598
+ #
8599
+ # @option params [required, String] :bundle_id
8600
+ # The unique identifier of the configuration bundle to update.
8601
+ #
8602
+ # @option params [String] :bundle_name
8603
+ # The updated name for the configuration bundle.
8604
+ #
8605
+ # @option params [String] :description
8606
+ # The updated description for the configuration bundle.
8607
+ #
8608
+ # @option params [Hash<String,Types::ComponentConfiguration>] :components
8609
+ # The updated component configurations. Creates a new version of the
8610
+ # bundle.
8611
+ #
8612
+ # @option params [Array<String>] :parent_version_ids
8613
+ # A list of parent version identifiers for lineage tracking. Regular
8614
+ # commits have a single parent. Merge commits have two parents: the
8615
+ # target branch parent and the source branch parent. If the branch
8616
+ # already exists, the first parent must be the latest version on that
8617
+ # branch.
8618
+ #
8619
+ # @option params [String] :branch_name
8620
+ # The branch name for this version. If not specified, inherits the
8621
+ # parent's branch or defaults to `mainline`.
8622
+ #
8623
+ # @option params [String] :commit_message
8624
+ # A commit message describing the changes in this version.
8625
+ #
8626
+ # @option params [Types::VersionCreatedBySource] :created_by
8627
+ # The source that created this version, including the source name and
8628
+ # optional ARN.
8629
+ #
8630
+ # @return [Types::UpdateConfigurationBundleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8631
+ #
8632
+ # * {Types::UpdateConfigurationBundleResponse#bundle_arn #bundle_arn} => String
8633
+ # * {Types::UpdateConfigurationBundleResponse#bundle_id #bundle_id} => String
8634
+ # * {Types::UpdateConfigurationBundleResponse#version_id #version_id} => String
8635
+ # * {Types::UpdateConfigurationBundleResponse#updated_at #updated_at} => Time
8636
+ #
8637
+ # @example Request syntax with placeholder values
8638
+ #
8639
+ # resp = client.update_configuration_bundle({
8640
+ # client_token: "ClientToken",
8641
+ # bundle_id: "ConfigurationBundleId", # required
8642
+ # bundle_name: "ConfigurationBundleName",
8643
+ # description: "ConfigurationBundleDescription",
8644
+ # components: {
8645
+ # "ComponentIdentifier" => {
8646
+ # configuration: { # required
8647
+ # },
8648
+ # },
8649
+ # },
8650
+ # parent_version_ids: ["ConfigurationBundleVersion"],
8651
+ # branch_name: "BranchName",
8652
+ # commit_message: "UpdateConfigurationBundleRequestCommitMessageString",
8653
+ # created_by: {
8654
+ # name: "String", # required
8655
+ # arn: "String",
8656
+ # },
8657
+ # })
8658
+ #
8659
+ # @example Response structure
8660
+ #
8661
+ # resp.bundle_arn #=> String
8662
+ # resp.bundle_id #=> String
8663
+ # resp.version_id #=> String
8664
+ # resp.updated_at #=> Time
8665
+ #
8666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateConfigurationBundle AWS API Documentation
8667
+ #
8668
+ # @overload update_configuration_bundle(params = {})
8669
+ # @param [Hash] params ({})
8670
+ def update_configuration_bundle(params = {}, options = {})
8671
+ req = build_request(:update_configuration_bundle, params)
8672
+ req.send_request(options)
8673
+ end
8674
+
7542
8675
  # Updates a custom evaluator's configuration, description, or
7543
8676
  # evaluation level. Built-in evaluators cannot be updated. The evaluator
7544
8677
  # must not be locked for modification.
@@ -7573,6 +8706,20 @@ module Aws::BedrockAgentCoreControl
7573
8706
  # The updated evaluation level (`TOOL_CALL`, `TRACE`, or `SESSION`) that
7574
8707
  # determines the scope of evaluation.
7575
8708
  #
8709
+ # @option params [String] :kms_key_arn
8710
+ # The Amazon Resource Name (ARN) of a customer managed KMS key to use
8711
+ # for encrypting sensitive evaluator data. Specify a new key ARN to
8712
+ # rotate the encryption key, or specify a key ARN to add encryption to
8713
+ # an evaluator that was previously created without one. When you rotate
8714
+ # to a new key, the service decrypts the existing data with the old key
8715
+ # and re-encrypts it with the new key. Only symmetric encryption KMS
8716
+ # keys are supported. For more information, see [Encryption at rest for
8717
+ # AgentCore Evaluations][1].
8718
+ #
8719
+ #
8720
+ #
8721
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/evaluations-encryption.html
8722
+ #
7576
8723
  # @return [Types::UpdateEvaluatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7577
8724
  #
7578
8725
  # * {Types::UpdateEvaluatorResponse#evaluator_arn #evaluator_arn} => String
@@ -7626,6 +8773,7 @@ module Aws::BedrockAgentCoreControl
7626
8773
  # },
7627
8774
  # },
7628
8775
  # level: "TOOL_CALL", # accepts TOOL_CALL, TRACE, SESSION
8776
+ # kms_key_arn: "KmsKeyArn",
7629
8777
  # })
7630
8778
  #
7631
8779
  # @example Response structure
@@ -7659,7 +8807,7 @@ module Aws::BedrockAgentCoreControl
7659
8807
  # @option params [required, String] :role_arn
7660
8808
  # The updated IAM role ARN that provides permissions for the gateway.
7661
8809
  #
7662
- # @option params [required, String] :protocol_type
8810
+ # @option params [String] :protocol_type
7663
8811
  # The updated protocol type for the gateway.
7664
8812
  #
7665
8813
  # @option params [Types::GatewayProtocolConfiguration] :protocol_configuration
@@ -7724,7 +8872,7 @@ module Aws::BedrockAgentCoreControl
7724
8872
  # name: "GatewayName", # required
7725
8873
  # description: "GatewayDescription",
7726
8874
  # role_arn: "RoleArn", # required
7727
- # protocol_type: "MCP", # required, accepts MCP
8875
+ # protocol_type: "MCP", # accepts MCP
7728
8876
  # protocol_configuration: {
7729
8877
  # mcp: {
7730
8878
  # supported_versions: ["McpVersion"],
@@ -7732,7 +8880,7 @@ module Aws::BedrockAgentCoreControl
7732
8880
  # search_type: "SEMANTIC", # accepts SEMANTIC
7733
8881
  # },
7734
8882
  # },
7735
- # authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM, NONE
8883
+ # authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM, NONE, AUTHENTICATE_ONLY
7736
8884
  # authorizer_configuration: {
7737
8885
  # custom_jwt_authorizer: {
7738
8886
  # discovery_url: "DiscoveryUrl", # required
@@ -7828,7 +8976,7 @@ module Aws::BedrockAgentCoreControl
7828
8976
  # resp.protocol_configuration.mcp.supported_versions[0] #=> String
7829
8977
  # resp.protocol_configuration.mcp.instructions #=> String
7830
8978
  # resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
7831
- # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE"
8979
+ # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE", "AUTHENTICATE_ONLY"
7832
8980
  # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
7833
8981
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
7834
8982
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
@@ -7885,6 +9033,155 @@ module Aws::BedrockAgentCoreControl
7885
9033
  req.send_request(options)
7886
9034
  end
7887
9035
 
9036
+ # Updates a gateway rule's priority, conditions, actions, or
9037
+ # description.
9038
+ #
9039
+ # @option params [required, String] :gateway_identifier
9040
+ # The identifier of the gateway containing the rule.
9041
+ #
9042
+ # @option params [required, String] :rule_id
9043
+ # The unique identifier of the rule to update.
9044
+ #
9045
+ # @option params [Integer] :priority
9046
+ # The updated priority of the rule.
9047
+ #
9048
+ # @option params [Array<Types::Condition>] :conditions
9049
+ # The updated conditions for the rule.
9050
+ #
9051
+ # @option params [Array<Types::Action>] :actions
9052
+ # The updated actions for the rule.
9053
+ #
9054
+ # @option params [String] :description
9055
+ # The updated description of the rule.
9056
+ #
9057
+ # @return [Types::UpdateGatewayRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9058
+ #
9059
+ # * {Types::UpdateGatewayRuleResponse#rule_id #rule_id} => String
9060
+ # * {Types::UpdateGatewayRuleResponse#gateway_arn #gateway_arn} => String
9061
+ # * {Types::UpdateGatewayRuleResponse#priority #priority} => Integer
9062
+ # * {Types::UpdateGatewayRuleResponse#conditions #conditions} => Array&lt;Types::Condition&gt;
9063
+ # * {Types::UpdateGatewayRuleResponse#actions #actions} => Array&lt;Types::Action&gt;
9064
+ # * {Types::UpdateGatewayRuleResponse#description #description} => String
9065
+ # * {Types::UpdateGatewayRuleResponse#created_at #created_at} => Time
9066
+ # * {Types::UpdateGatewayRuleResponse#status #status} => String
9067
+ # * {Types::UpdateGatewayRuleResponse#system #system} => Types::SystemManagedBlock
9068
+ # * {Types::UpdateGatewayRuleResponse#updated_at #updated_at} => Time
9069
+ #
9070
+ # @example Request syntax with placeholder values
9071
+ #
9072
+ # resp = client.update_gateway_rule({
9073
+ # gateway_identifier: "GatewayIdentifier", # required
9074
+ # rule_id: "GatewayRuleId", # required
9075
+ # priority: 1,
9076
+ # conditions: [
9077
+ # {
9078
+ # match_principals: {
9079
+ # any_of: [ # required
9080
+ # {
9081
+ # iam_principal: {
9082
+ # arn: "IamPrincipalArn", # required
9083
+ # operator: "StringEquals", # accepts StringEquals, StringLike
9084
+ # },
9085
+ # },
9086
+ # ],
9087
+ # },
9088
+ # match_paths: {
9089
+ # any_of: ["MatchPathPattern"], # required
9090
+ # },
9091
+ # },
9092
+ # ],
9093
+ # actions: [
9094
+ # {
9095
+ # configuration_bundle: {
9096
+ # static_override: {
9097
+ # bundle_arn: "GatewayConfigurationBundleArn", # required
9098
+ # bundle_version: "StaticOverrideBundleVersionString", # required
9099
+ # },
9100
+ # weighted_override: {
9101
+ # traffic_split: [ # required
9102
+ # {
9103
+ # name: "TrafficSplitEntryNameString", # required
9104
+ # weight: 1, # required
9105
+ # configuration_bundle: { # required
9106
+ # bundle_arn: "GatewayConfigurationBundleArn", # required
9107
+ # bundle_version: "ConfigurationBundleReferenceBundleVersionString", # required
9108
+ # },
9109
+ # description: "TrafficSplitEntryDescriptionString",
9110
+ # metadata: {
9111
+ # "TrafficSplitMetadataKey" => "TrafficSplitMetadataValue",
9112
+ # },
9113
+ # },
9114
+ # ],
9115
+ # },
9116
+ # },
9117
+ # route_to_target: {
9118
+ # static_route: {
9119
+ # target_name: "TargetName", # required
9120
+ # },
9121
+ # weighted_route: {
9122
+ # traffic_split: [ # required
9123
+ # {
9124
+ # name: "TargetTrafficSplitEntryNameString", # required
9125
+ # weight: 1, # required
9126
+ # target_name: "TargetName", # required
9127
+ # description: "TargetTrafficSplitEntryDescriptionString",
9128
+ # metadata: {
9129
+ # "TrafficSplitMetadataKey" => "TrafficSplitMetadataValue",
9130
+ # },
9131
+ # },
9132
+ # ],
9133
+ # },
9134
+ # },
9135
+ # },
9136
+ # ],
9137
+ # description: "GatewayRuleDescription",
9138
+ # })
9139
+ #
9140
+ # @example Response structure
9141
+ #
9142
+ # resp.rule_id #=> String
9143
+ # resp.gateway_arn #=> String
9144
+ # resp.priority #=> Integer
9145
+ # resp.conditions #=> Array
9146
+ # resp.conditions[0].match_principals.any_of #=> Array
9147
+ # resp.conditions[0].match_principals.any_of[0].iam_principal.arn #=> String
9148
+ # resp.conditions[0].match_principals.any_of[0].iam_principal.operator #=> String, one of "StringEquals", "StringLike"
9149
+ # resp.conditions[0].match_paths.any_of #=> Array
9150
+ # resp.conditions[0].match_paths.any_of[0] #=> String
9151
+ # resp.actions #=> Array
9152
+ # resp.actions[0].configuration_bundle.static_override.bundle_arn #=> String
9153
+ # resp.actions[0].configuration_bundle.static_override.bundle_version #=> String
9154
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split #=> Array
9155
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].name #=> String
9156
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].weight #=> Integer
9157
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].configuration_bundle.bundle_arn #=> String
9158
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].configuration_bundle.bundle_version #=> String
9159
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].description #=> String
9160
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].metadata #=> Hash
9161
+ # resp.actions[0].configuration_bundle.weighted_override.traffic_split[0].metadata["TrafficSplitMetadataKey"] #=> String
9162
+ # resp.actions[0].route_to_target.static_route.target_name #=> String
9163
+ # resp.actions[0].route_to_target.weighted_route.traffic_split #=> Array
9164
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].name #=> String
9165
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].weight #=> Integer
9166
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].target_name #=> String
9167
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].description #=> String
9168
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].metadata #=> Hash
9169
+ # resp.actions[0].route_to_target.weighted_route.traffic_split[0].metadata["TrafficSplitMetadataKey"] #=> String
9170
+ # resp.description #=> String
9171
+ # resp.created_at #=> Time
9172
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING"
9173
+ # resp.system.managed_by #=> String
9174
+ # resp.updated_at #=> Time
9175
+ #
9176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRule AWS API Documentation
9177
+ #
9178
+ # @overload update_gateway_rule(params = {})
9179
+ # @param [Hash] params ({})
9180
+ def update_gateway_rule(params = {}, options = {})
9181
+ req = build_request(:update_gateway_rule, params)
9182
+ req.send_request(options)
9183
+ end
9184
+
7888
9185
  # Updates an existing gateway target.
7889
9186
  #
7890
9187
  # You cannot update a target that is in a pending authorization state
@@ -7936,6 +9233,7 @@ module Aws::BedrockAgentCoreControl
7936
9233
  # * {Types::UpdateGatewayTargetResponse#private_endpoint #private_endpoint} => Types::PrivateEndpoint
7937
9234
  # * {Types::UpdateGatewayTargetResponse#private_endpoint_managed_resources #private_endpoint_managed_resources} => Array&lt;Types::ManagedResourceDetails&gt;
7938
9235
  # * {Types::UpdateGatewayTargetResponse#authorization_data #authorization_data} => Types::AuthorizationData
9236
+ # * {Types::UpdateGatewayTargetResponse#protocol_type #protocol_type} => String
7939
9237
  #
7940
9238
  # @example Request syntax with placeholder values
7941
9239
  #
@@ -8010,8 +9308,8 @@ module Aws::BedrockAgentCoreControl
8010
9308
  # },
8011
9309
  # inline_payload: "InlinePayload",
8012
9310
  # },
8013
- # resource_priority: 1,
8014
9311
  # listing_mode: "DEFAULT", # accepts DEFAULT, DYNAMIC
9312
+ # resource_priority: 1,
8015
9313
  # },
8016
9314
  # api_gateway: {
8017
9315
  # rest_api_id: "String", # required
@@ -8034,10 +9332,16 @@ module Aws::BedrockAgentCoreControl
8034
9332
  # },
8035
9333
  # },
8036
9334
  # },
9335
+ # http: {
9336
+ # agentcore_runtime: {
9337
+ # arn: "RuntimeArn", # required
9338
+ # qualifier: "RuntimeQualifier",
9339
+ # },
9340
+ # },
8037
9341
  # },
8038
9342
  # credential_provider_configurations: [
8039
9343
  # {
8040
- # credential_provider_type: "GATEWAY_IAM_ROLE", # required, accepts GATEWAY_IAM_ROLE, OAUTH, API_KEY
9344
+ # credential_provider_type: "GATEWAY_IAM_ROLE", # required, accepts GATEWAY_IAM_ROLE, OAUTH, API_KEY, CALLER_IAM_CREDENTIALS, JWT_PASSTHROUGH
8041
9345
  # credential_provider: {
8042
9346
  # oauth_credential_provider: {
8043
9347
  # provider_arn: "OAuthCredentialProviderArn", # required
@@ -8045,7 +9349,7 @@ module Aws::BedrockAgentCoreControl
8045
9349
  # custom_parameters: {
8046
9350
  # "OAuthCustomParametersKey" => "OAuthCustomParametersValue",
8047
9351
  # },
8048
- # grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
9352
+ # grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE, TOKEN_EXCHANGE
8049
9353
  # default_return_url: "OAuthDefaultReturnUrl",
8050
9354
  # },
8051
9355
  # api_key_credential_provider: {
@@ -8124,8 +9428,8 @@ module Aws::BedrockAgentCoreControl
8124
9428
  # resp.target_configuration.mcp.mcp_server.mcp_tool_schema.s3.uri #=> String
8125
9429
  # resp.target_configuration.mcp.mcp_server.mcp_tool_schema.s3.bucket_owner_account_id #=> String
8126
9430
  # resp.target_configuration.mcp.mcp_server.mcp_tool_schema.inline_payload #=> String
8127
- # resp.target_configuration.mcp.mcp_server.resource_priority #=> Integer
8128
9431
  # resp.target_configuration.mcp.mcp_server.listing_mode #=> String, one of "DEFAULT", "DYNAMIC"
9432
+ # resp.target_configuration.mcp.mcp_server.resource_priority #=> Integer
8129
9433
  # resp.target_configuration.mcp.api_gateway.rest_api_id #=> String
8130
9434
  # resp.target_configuration.mcp.api_gateway.stage #=> String
8131
9435
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_overrides #=> Array
@@ -8137,14 +9441,16 @@ module Aws::BedrockAgentCoreControl
8137
9441
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].filter_path #=> String
8138
9442
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods #=> Array
8139
9443
  # resp.target_configuration.mcp.api_gateway.api_gateway_tool_configuration.tool_filters[0].methods[0] #=> String, one of "GET", "DELETE", "HEAD", "OPTIONS", "PATCH", "PUT", "POST"
9444
+ # resp.target_configuration.http.agentcore_runtime.arn #=> String
9445
+ # resp.target_configuration.http.agentcore_runtime.qualifier #=> String
8140
9446
  # resp.credential_provider_configurations #=> Array
8141
- # resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY"
9447
+ # resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY", "CALLER_IAM_CREDENTIALS", "JWT_PASSTHROUGH"
8142
9448
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
8143
9449
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes #=> Array
8144
9450
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes[0] #=> String
8145
9451
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters #=> Hash
8146
9452
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters["OAuthCustomParametersKey"] #=> String
8147
- # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
9453
+ # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE", "TOKEN_EXCHANGE"
8148
9454
  # resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.default_return_url #=> String
8149
9455
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.provider_arn #=> String
8150
9456
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
@@ -8175,6 +9481,7 @@ module Aws::BedrockAgentCoreControl
8175
9481
  # resp.private_endpoint_managed_resources[0].resource_association_arn #=> String
8176
9482
  # resp.authorization_data.oauth2.authorization_url #=> String
8177
9483
  # resp.authorization_data.oauth2.user_id #=> String
9484
+ # resp.protocol_type #=> String, one of "MCP", "HTTP"
8178
9485
  #
8179
9486
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTarget AWS API Documentation
8180
9487
  #
@@ -8257,8 +9564,9 @@ module Aws::BedrockAgentCoreControl
8257
9564
  # invocation. If not specified, the existing value is retained.
8258
9565
  #
8259
9566
  # @option params [Integer] :max_tokens
8260
- # The maximum number of tokens the agent can generate per iteration. If
8261
- # not specified, the existing value is retained.
9567
+ # The maximum total number of output tokens the agent can generate
9568
+ # across all model calls within a single invocation. If not specified,
9569
+ # the existing value is retained.
8262
9570
  #
8263
9571
  # @option params [Integer] :timeout_seconds
8264
9572
  # The maximum duration in seconds for the agent loop execution per
@@ -8419,7 +9727,7 @@ module Aws::BedrockAgentCoreControl
8419
9727
  # custom_parameters: {
8420
9728
  # "OAuthCustomParametersKey" => "OAuthCustomParametersValue",
8421
9729
  # },
8422
- # grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
9730
+ # grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE, TOKEN_EXCHANGE
8423
9731
  # default_return_url: "OAuthDefaultReturnUrl",
8424
9732
  # },
8425
9733
  # },
@@ -8514,7 +9822,7 @@ module Aws::BedrockAgentCoreControl
8514
9822
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.scopes[0] #=> String
8515
9823
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.custom_parameters #=> Hash
8516
9824
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.custom_parameters["OAuthCustomParametersKey"] #=> String
8517
- # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
9825
+ # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE", "TOKEN_EXCHANGE"
8518
9826
  # resp.harness.tools[0].config.agent_core_gateway.outbound_auth.oauth.default_return_url #=> String
8519
9827
  # resp.harness.tools[0].config.inline_function.description #=> String
8520
9828
  # resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
@@ -8626,6 +9934,10 @@ module Aws::BedrockAgentCoreControl
8626
9934
  # @option params [Types::ModifyMemoryStrategies] :memory_strategies
8627
9935
  # The memory strategies to add, modify, or delete.
8628
9936
  #
9937
+ # @option params [Array<Types::IndexedKey>] :add_indexed_keys
9938
+ # Additional metadata keys to index. Previously indexed keys cannot be
9939
+ # removed.
9940
+ #
8629
9941
  # @option params [Types::StreamDeliveryResources] :stream_delivery_resources
8630
9942
  # Configuration for streaming memory record data to external resources.
8631
9943
  #
@@ -8649,18 +9961,99 @@ module Aws::BedrockAgentCoreControl
8649
9961
  # description: "Description",
8650
9962
  # namespaces: ["Namespace"],
8651
9963
  # namespace_templates: ["Namespace"],
9964
+ # memory_record_schema: {
9965
+ # metadata_schema: [
9966
+ # {
9967
+ # key: "MetadataKey", # required
9968
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
9969
+ # extraction_config: {
9970
+ # llm_extraction_config: {
9971
+ # llm_extraction_instruction: "LlmExtractionInstruction",
9972
+ # definition: "Definition", # required
9973
+ # validation: {
9974
+ # string_validation: {
9975
+ # allowed_values: ["AllowedStringValue"], # required
9976
+ # },
9977
+ # string_list_validation: {
9978
+ # allowed_values: ["AllowedStringListValue"],
9979
+ # max_items: 1,
9980
+ # },
9981
+ # number_validation: {
9982
+ # min_value: 1.0,
9983
+ # max_value: 1.0,
9984
+ # },
9985
+ # },
9986
+ # },
9987
+ # },
9988
+ # },
9989
+ # ],
9990
+ # },
8652
9991
  # },
8653
9992
  # summary_memory_strategy: {
8654
9993
  # name: "Name", # required
8655
9994
  # description: "Description",
8656
9995
  # namespaces: ["Namespace"],
8657
9996
  # namespace_templates: ["Namespace"],
9997
+ # memory_record_schema: {
9998
+ # metadata_schema: [
9999
+ # {
10000
+ # key: "MetadataKey", # required
10001
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
10002
+ # extraction_config: {
10003
+ # llm_extraction_config: {
10004
+ # llm_extraction_instruction: "LlmExtractionInstruction",
10005
+ # definition: "Definition", # required
10006
+ # validation: {
10007
+ # string_validation: {
10008
+ # allowed_values: ["AllowedStringValue"], # required
10009
+ # },
10010
+ # string_list_validation: {
10011
+ # allowed_values: ["AllowedStringListValue"],
10012
+ # max_items: 1,
10013
+ # },
10014
+ # number_validation: {
10015
+ # min_value: 1.0,
10016
+ # max_value: 1.0,
10017
+ # },
10018
+ # },
10019
+ # },
10020
+ # },
10021
+ # },
10022
+ # ],
10023
+ # },
8658
10024
  # },
8659
10025
  # user_preference_memory_strategy: {
8660
10026
  # name: "Name", # required
8661
10027
  # description: "Description",
8662
10028
  # namespaces: ["Namespace"],
8663
10029
  # namespace_templates: ["Namespace"],
10030
+ # memory_record_schema: {
10031
+ # metadata_schema: [
10032
+ # {
10033
+ # key: "MetadataKey", # required
10034
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
10035
+ # extraction_config: {
10036
+ # llm_extraction_config: {
10037
+ # llm_extraction_instruction: "LlmExtractionInstruction",
10038
+ # definition: "Definition", # required
10039
+ # validation: {
10040
+ # string_validation: {
10041
+ # allowed_values: ["AllowedStringValue"], # required
10042
+ # },
10043
+ # string_list_validation: {
10044
+ # allowed_values: ["AllowedStringListValue"],
10045
+ # max_items: 1,
10046
+ # },
10047
+ # number_validation: {
10048
+ # min_value: 1.0,
10049
+ # max_value: 1.0,
10050
+ # },
10051
+ # },
10052
+ # },
10053
+ # },
10054
+ # },
10055
+ # ],
10056
+ # },
8664
10057
  # },
8665
10058
  # custom_memory_strategy: {
8666
10059
  # name: "Name", # required
@@ -8708,6 +10101,33 @@ module Aws::BedrockAgentCoreControl
8708
10101
  # model_id: "String", # required
8709
10102
  # namespaces: ["Namespace"],
8710
10103
  # namespace_templates: ["Namespace"],
10104
+ # memory_record_schema: {
10105
+ # metadata_schema: [
10106
+ # {
10107
+ # key: "MetadataKey", # required
10108
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
10109
+ # extraction_config: {
10110
+ # llm_extraction_config: {
10111
+ # llm_extraction_instruction: "LlmExtractionInstruction",
10112
+ # definition: "Definition", # required
10113
+ # validation: {
10114
+ # string_validation: {
10115
+ # allowed_values: ["AllowedStringValue"], # required
10116
+ # },
10117
+ # string_list_validation: {
10118
+ # allowed_values: ["AllowedStringListValue"],
10119
+ # max_items: 1,
10120
+ # },
10121
+ # number_validation: {
10122
+ # min_value: 1.0,
10123
+ # max_value: 1.0,
10124
+ # },
10125
+ # },
10126
+ # },
10127
+ # },
10128
+ # },
10129
+ # ],
10130
+ # },
8711
10131
  # },
8712
10132
  # },
8713
10133
  # self_managed_configuration: {
@@ -8731,6 +10151,33 @@ module Aws::BedrockAgentCoreControl
8731
10151
  # historical_context_window_size: 1,
8732
10152
  # },
8733
10153
  # },
10154
+ # memory_record_schema: {
10155
+ # metadata_schema: [
10156
+ # {
10157
+ # key: "MetadataKey", # required
10158
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
10159
+ # extraction_config: {
10160
+ # llm_extraction_config: {
10161
+ # llm_extraction_instruction: "LlmExtractionInstruction",
10162
+ # definition: "Definition", # required
10163
+ # validation: {
10164
+ # string_validation: {
10165
+ # allowed_values: ["AllowedStringValue"], # required
10166
+ # },
10167
+ # string_list_validation: {
10168
+ # allowed_values: ["AllowedStringListValue"],
10169
+ # max_items: 1,
10170
+ # },
10171
+ # number_validation: {
10172
+ # min_value: 1.0,
10173
+ # max_value: 1.0,
10174
+ # },
10175
+ # },
10176
+ # },
10177
+ # },
10178
+ # },
10179
+ # ],
10180
+ # },
8734
10181
  # },
8735
10182
  # episodic_memory_strategy: {
8736
10183
  # name: "Name", # required
@@ -8740,6 +10187,60 @@ module Aws::BedrockAgentCoreControl
8740
10187
  # reflection_configuration: {
8741
10188
  # namespaces: ["Namespace"],
8742
10189
  # namespace_templates: ["Namespace"],
10190
+ # memory_record_schema: {
10191
+ # metadata_schema: [
10192
+ # {
10193
+ # key: "MetadataKey", # required
10194
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
10195
+ # extraction_config: {
10196
+ # llm_extraction_config: {
10197
+ # llm_extraction_instruction: "LlmExtractionInstruction",
10198
+ # definition: "Definition", # required
10199
+ # validation: {
10200
+ # string_validation: {
10201
+ # allowed_values: ["AllowedStringValue"], # required
10202
+ # },
10203
+ # string_list_validation: {
10204
+ # allowed_values: ["AllowedStringListValue"],
10205
+ # max_items: 1,
10206
+ # },
10207
+ # number_validation: {
10208
+ # min_value: 1.0,
10209
+ # max_value: 1.0,
10210
+ # },
10211
+ # },
10212
+ # },
10213
+ # },
10214
+ # },
10215
+ # ],
10216
+ # },
10217
+ # },
10218
+ # memory_record_schema: {
10219
+ # metadata_schema: [
10220
+ # {
10221
+ # key: "MetadataKey", # required
10222
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
10223
+ # extraction_config: {
10224
+ # llm_extraction_config: {
10225
+ # llm_extraction_instruction: "LlmExtractionInstruction",
10226
+ # definition: "Definition", # required
10227
+ # validation: {
10228
+ # string_validation: {
10229
+ # allowed_values: ["AllowedStringValue"], # required
10230
+ # },
10231
+ # string_list_validation: {
10232
+ # allowed_values: ["AllowedStringListValue"],
10233
+ # max_items: 1,
10234
+ # },
10235
+ # number_validation: {
10236
+ # min_value: 1.0,
10237
+ # max_value: 1.0,
10238
+ # },
10239
+ # },
10240
+ # },
10241
+ # },
10242
+ # },
10243
+ # ],
8743
10244
  # },
8744
10245
  # },
8745
10246
  # },
@@ -8791,6 +10292,33 @@ module Aws::BedrockAgentCoreControl
8791
10292
  # episodic_reflection_configuration: {
8792
10293
  # namespaces: ["Namespace"],
8793
10294
  # namespace_templates: ["Namespace"],
10295
+ # memory_record_schema: {
10296
+ # metadata_schema: [
10297
+ # {
10298
+ # key: "MetadataKey", # required
10299
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
10300
+ # extraction_config: {
10301
+ # llm_extraction_config: {
10302
+ # llm_extraction_instruction: "LlmExtractionInstruction",
10303
+ # definition: "Definition", # required
10304
+ # validation: {
10305
+ # string_validation: {
10306
+ # allowed_values: ["AllowedStringValue"], # required
10307
+ # },
10308
+ # string_list_validation: {
10309
+ # allowed_values: ["AllowedStringListValue"],
10310
+ # max_items: 1,
10311
+ # },
10312
+ # number_validation: {
10313
+ # min_value: 1.0,
10314
+ # max_value: 1.0,
10315
+ # },
10316
+ # },
10317
+ # },
10318
+ # },
10319
+ # },
10320
+ # ],
10321
+ # },
8794
10322
  # },
8795
10323
  # custom_reflection_configuration: {
8796
10324
  # episodic_reflection_override: {
@@ -8798,6 +10326,33 @@ module Aws::BedrockAgentCoreControl
8798
10326
  # model_id: "String", # required
8799
10327
  # namespaces: ["Namespace"],
8800
10328
  # namespace_templates: ["Namespace"],
10329
+ # memory_record_schema: {
10330
+ # metadata_schema: [
10331
+ # {
10332
+ # key: "MetadataKey", # required
10333
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
10334
+ # extraction_config: {
10335
+ # llm_extraction_config: {
10336
+ # llm_extraction_instruction: "LlmExtractionInstruction",
10337
+ # definition: "Definition", # required
10338
+ # validation: {
10339
+ # string_validation: {
10340
+ # allowed_values: ["AllowedStringValue"], # required
10341
+ # },
10342
+ # string_list_validation: {
10343
+ # allowed_values: ["AllowedStringListValue"],
10344
+ # max_items: 1,
10345
+ # },
10346
+ # number_validation: {
10347
+ # min_value: 1.0,
10348
+ # max_value: 1.0,
10349
+ # },
10350
+ # },
10351
+ # },
10352
+ # },
10353
+ # },
10354
+ # ],
10355
+ # },
8801
10356
  # },
8802
10357
  # },
8803
10358
  # },
@@ -8822,6 +10377,33 @@ module Aws::BedrockAgentCoreControl
8822
10377
  # historical_context_window_size: 1,
8823
10378
  # },
8824
10379
  # },
10380
+ # memory_record_schema: {
10381
+ # metadata_schema: [
10382
+ # {
10383
+ # key: "MetadataKey", # required
10384
+ # type: "STRING", # accepts STRING, STRINGLIST, NUMBER
10385
+ # extraction_config: {
10386
+ # llm_extraction_config: {
10387
+ # llm_extraction_instruction: "LlmExtractionInstruction",
10388
+ # definition: "Definition", # required
10389
+ # validation: {
10390
+ # string_validation: {
10391
+ # allowed_values: ["AllowedStringValue"], # required
10392
+ # },
10393
+ # string_list_validation: {
10394
+ # allowed_values: ["AllowedStringListValue"],
10395
+ # max_items: 1,
10396
+ # },
10397
+ # number_validation: {
10398
+ # min_value: 1.0,
10399
+ # max_value: 1.0,
10400
+ # },
10401
+ # },
10402
+ # },
10403
+ # },
10404
+ # },
10405
+ # ],
10406
+ # },
8825
10407
  # },
8826
10408
  # ],
8827
10409
  # delete_memory_strategies: [
@@ -8830,6 +10412,12 @@ module Aws::BedrockAgentCoreControl
8830
10412
  # },
8831
10413
  # ],
8832
10414
  # },
10415
+ # add_indexed_keys: [
10416
+ # {
10417
+ # key: "MetadataKey", # required
10418
+ # type: "STRING", # required, accepts STRING, STRINGLIST, NUMBER
10419
+ # },
10420
+ # ],
8833
10421
  # stream_delivery_resources: {
8834
10422
  # resources: [ # required
8835
10423
  # {
@@ -8885,10 +10473,34 @@ module Aws::BedrockAgentCoreControl
8885
10473
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespaces[0] #=> String
8886
10474
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates #=> Array
8887
10475
  # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.namespace_templates[0] #=> String
10476
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
10477
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
10478
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
10479
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
10480
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
10481
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
10482
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values[0] #=> String
10483
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values #=> Array
10484
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values[0] #=> String
10485
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.max_items #=> Integer
10486
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.min_value #=> Float
10487
+ # resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.max_value #=> Float
8888
10488
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces #=> Array
8889
10489
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespaces[0] #=> String
8890
10490
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates #=> Array
8891
10491
  # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.namespace_templates[0] #=> String
10492
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
10493
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
10494
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
10495
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
10496
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
10497
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
10498
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values[0] #=> String
10499
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values #=> Array
10500
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values[0] #=> String
10501
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.max_items #=> Integer
10502
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.min_value #=> Float
10503
+ # resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.max_value #=> Float
8892
10504
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions #=> Array
8893
10505
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].message_based_trigger.message_count #=> Integer
8894
10506
  # resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].token_based_trigger.token_count #=> Integer
@@ -8904,6 +10516,21 @@ module Aws::BedrockAgentCoreControl
8904
10516
  # resp.memory.strategies[0].created_at #=> Time
8905
10517
  # resp.memory.strategies[0].updated_at #=> Time
8906
10518
  # resp.memory.strategies[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
10519
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
10520
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
10521
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
10522
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
10523
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
10524
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
10525
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values[0] #=> String
10526
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values #=> Array
10527
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.allowed_values[0] #=> String
10528
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_list_validation.max_items #=> Integer
10529
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.min_value #=> Float
10530
+ # resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.number_validation.max_value #=> Float
10531
+ # resp.memory.indexed_keys #=> Array
10532
+ # resp.memory.indexed_keys[0].key #=> String
10533
+ # resp.memory.indexed_keys[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
8907
10534
  # resp.memory.stream_delivery_resources.resources #=> Array
8908
10535
  # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
8909
10536
  # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
@@ -8959,8 +10586,8 @@ module Aws::BedrockAgentCoreControl
8959
10586
  # token_endpoint_auth_methods: ["TokenAuthMethod"],
8960
10587
  # },
8961
10588
  # },
8962
- # client_id: "ClientIdType", # required
8963
- # client_secret: "ClientSecretType", # required
10589
+ # client_id: "DefaultClientIdType",
10590
+ # client_secret: "DefaultClientSecretType",
8964
10591
  # private_endpoint: {
8965
10592
  # self_managed_lattice_resource: {
8966
10593
  # resource_configuration_identifier: "ResourceConfigurationIdentifier",
@@ -8996,6 +10623,14 @@ module Aws::BedrockAgentCoreControl
8996
10623
  # },
8997
10624
  # },
8998
10625
  # ],
10626
+ # on_behalf_of_token_exchange_config: {
10627
+ # grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
10628
+ # token_exchange_grant_type_config: {
10629
+ # actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
10630
+ # actor_token_scopes: ["ScopeType"],
10631
+ # },
10632
+ # },
10633
+ # client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
8999
10634
  # },
9000
10635
  # google_oauth_2_provider_config: {
9001
10636
  # client_id: "ClientIdType", # required
@@ -9074,6 +10709,11 @@ module Aws::BedrockAgentCoreControl
9074
10709
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
9075
10710
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
9076
10711
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
10712
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.grant_type #=> String, one of "TOKEN_EXCHANGE", "JWT_AUTHORIZATION_GRANT"
10713
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.token_exchange_grant_type_config.actor_token_content #=> String, one of "NONE", "M2M", "AWS_IAM_ID_TOKEN_JWT"
10714
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.token_exchange_grant_type_config.actor_token_scopes #=> Array
10715
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.on_behalf_of_token_exchange_config.token_exchange_grant_type_config.actor_token_scopes[0] #=> String
10716
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_authentication_method #=> String, one of "CLIENT_SECRET_BASIC", "CLIENT_SECRET_POST", "AWS_IAM_ID_TOKEN_JWT"
9077
10717
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
9078
10718
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
9079
10719
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
@@ -9906,7 +11546,7 @@ module Aws::BedrockAgentCoreControl
9906
11546
  tracer: tracer
9907
11547
  )
9908
11548
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
9909
- context[:gem_version] = '1.40.0'
11549
+ context[:gem_version] = '1.42.0'
9910
11550
  Seahorse::Client::Request.new(handlers, context)
9911
11551
  end
9912
11552