aws-sdk-bedrockagentcorecontrol 1.59.0 → 1.61.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a913aa5532331ed8794af0cf7d9154d34e6393e7f4b979e09a59c341a689b1a
4
- data.tar.gz: af36f8bfdbbf44e8c02e848489ca6cf69f85e158af0a168327f330e9639d60bb
3
+ metadata.gz: bf0e801cfbd24fc812132dcde56d422d8c7cc141fd77415edb2a7d02c254321b
4
+ data.tar.gz: bd183a30ede744852809647ee0f488cc135b516420bcbe3882d4edeb929173c9
5
5
  SHA512:
6
- metadata.gz: 77cd9e1a7a9909d76e7b6fb7acba91ab41ae85e46494c260baf1a4817a45c9e74d0e6b338a91aad984e56c01a3ba41f6b21360ec7e2ce4b41f94e7f80a3f92b7
7
- data.tar.gz: 7677c03a3ccd9712ca87342338ba43116ba7f3405e472d47935e743695e7f685bf9a1fd0f7fb2997258fe5b749b6f5bbe74f9968233aabffcab04bb1488dcb18
6
+ metadata.gz: 47eda6da6803ae97ef2adf41dae06b9130ae2aa74a21147e6f9b31a26c1ccb0a685d07174bbf843071f3ab4ce8edb082103cb39cbf57e96d31cb752f3a89351e
7
+ data.tar.gz: af058dc800eda272fddae849c987d1ab0dda6e776dc8d7be07226dd34f862d4a6f209f79444bbaad24088026b1a214832cd6dd4ade37528c4405b28bf09ce467
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2026-07-30)
5
+ ------------------
6
+
7
+ * Feature - Adds support for configuring models through the OpenResponses API for custom evaluators. CreateEvaluator and UpdateEvaluator now accept an OpenResponses model configuration for LLM-as-a-Judge evaluations.
8
+
9
+ 1.60.0 (2026-07-28)
10
+ ------------------
11
+
12
+ * Feature - AgentCore Identity now supports Private Key JWT client authentication for OAuth 2.0 credential providers. Agents can authenticate to identity provider token endpoints with a JWT client assertion signed by a customer-managed AWS KMS asymmetric key, eliminating the need for client secrets.
13
+
4
14
  1.59.0 (2026-07-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.61.0
@@ -1535,6 +1535,15 @@ module Aws::BedrockAgentCoreControl
1535
1535
  # additional_model_request_fields: {
1536
1536
  # },
1537
1537
  # },
1538
+ # responses_evaluator_model_config: {
1539
+ # model_id: "ModelId", # required
1540
+ # max_output_tokens: 1,
1541
+ # temperature: 1.0,
1542
+ # top_p: 1.0,
1543
+ # reasoning: {
1544
+ # effort: "ReasoningConfigurationEffortString",
1545
+ # },
1546
+ # },
1538
1547
  # },
1539
1548
  # },
1540
1549
  # code_based: {
@@ -3592,7 +3601,21 @@ module Aws::BedrockAgentCoreControl
3592
3601
  # actor_token_scopes: ["ScopeType"],
3593
3602
  # },
3594
3603
  # },
3595
- # client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
3604
+ # client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT, PRIVATE_KEY_JWT
3605
+ # private_key_jwt_config: {
3606
+ # private_key_source: {
3607
+ # kms_key_source: {
3608
+ # kms_key_arn: "KmsKeyArn", # required
3609
+ # },
3610
+ # },
3611
+ # signing_algorithm: "RS256", # accepts RS256, PS256, ES256
3612
+ # additional_header_claims: {
3613
+ # "AdditionalClaimName" => "AdditionalClaimValue",
3614
+ # },
3615
+ # additional_payload_claims: {
3616
+ # "AdditionalClaimName" => "AdditionalClaimValue",
3617
+ # },
3618
+ # },
3596
3619
  # private_endpoint: {
3597
3620
  # self_managed_lattice_resource: {
3598
3621
  # resource_configuration_identifier: "ResourceConfigurationIdentifier",
@@ -3728,6 +3751,11 @@ module Aws::BedrockAgentCoreControl
3728
3751
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
3729
3752
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
3730
3753
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_id #=> String
3754
+ # 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"
3755
+ # 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"
3756
+ # 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
3757
+ # 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
3758
+ # 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", "PRIVATE_KEY_JWT"
3731
3759
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
3732
3760
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
3733
3761
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
@@ -3750,11 +3778,12 @@ module Aws::BedrockAgentCoreControl
3750
3778
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
3751
3779
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
3752
3780
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
3753
- # 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"
3754
- # 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"
3755
- # 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
3756
- # 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
3757
- # 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"
3781
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.private_key_source.kms_key_source.kms_key_arn #=> String
3782
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.signing_algorithm #=> String, one of "RS256", "PS256", "ES256"
3783
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims #=> Hash
3784
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims["AdditionalClaimName"] #=> String
3785
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims #=> Hash
3786
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims["AdditionalClaimName"] #=> String
3758
3787
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
3759
3788
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
3760
3789
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
@@ -6764,6 +6793,11 @@ module Aws::BedrockAgentCoreControl
6764
6793
  # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.top_p #=> Float
6765
6794
  # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences #=> Array
6766
6795
  # resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences[0] #=> String
6796
+ # resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.model_id #=> String
6797
+ # resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.max_output_tokens #=> Integer
6798
+ # resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.temperature #=> Float
6799
+ # resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.top_p #=> Float
6800
+ # resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.reasoning.effort #=> String
6767
6801
  # resp.evaluator_config.code_based.lambda_config.lambda_arn #=> String
6768
6802
  # resp.evaluator_config.code_based.lambda_config.lambda_timeout_in_seconds #=> Integer
6769
6803
  # resp.level #=> String, one of "TOOL_CALL", "TRACE", "SESSION"
@@ -7549,6 +7583,11 @@ module Aws::BedrockAgentCoreControl
7549
7583
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
7550
7584
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
7551
7585
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_id #=> String
7586
+ # 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"
7587
+ # 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"
7588
+ # 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
7589
+ # 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
7590
+ # 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", "PRIVATE_KEY_JWT"
7552
7591
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
7553
7592
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
7554
7593
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
@@ -7571,11 +7610,12 @@ module Aws::BedrockAgentCoreControl
7571
7610
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
7572
7611
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
7573
7612
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
7574
- # 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"
7575
- # 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"
7576
- # 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
7577
- # 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
7578
- # 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"
7613
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.private_key_source.kms_key_source.kms_key_arn #=> String
7614
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.signing_algorithm #=> String, one of "RS256", "PS256", "ES256"
7615
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims #=> Hash
7616
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims["AdditionalClaimName"] #=> String
7617
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims #=> Hash
7618
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims["AdditionalClaimName"] #=> String
7579
7619
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
7580
7620
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
7581
7621
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
@@ -11556,6 +11596,15 @@ module Aws::BedrockAgentCoreControl
11556
11596
  # additional_model_request_fields: {
11557
11597
  # },
11558
11598
  # },
11599
+ # responses_evaluator_model_config: {
11600
+ # model_id: "ModelId", # required
11601
+ # max_output_tokens: 1,
11602
+ # temperature: 1.0,
11603
+ # top_p: 1.0,
11604
+ # reasoning: {
11605
+ # effort: "ReasoningConfigurationEffortString",
11606
+ # },
11607
+ # },
11559
11608
  # },
11560
11609
  # },
11561
11610
  # code_based: {
@@ -13722,7 +13771,21 @@ module Aws::BedrockAgentCoreControl
13722
13771
  # actor_token_scopes: ["ScopeType"],
13723
13772
  # },
13724
13773
  # },
13725
- # client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
13774
+ # client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT, PRIVATE_KEY_JWT
13775
+ # private_key_jwt_config: {
13776
+ # private_key_source: {
13777
+ # kms_key_source: {
13778
+ # kms_key_arn: "KmsKeyArn", # required
13779
+ # },
13780
+ # },
13781
+ # signing_algorithm: "RS256", # accepts RS256, PS256, ES256
13782
+ # additional_header_claims: {
13783
+ # "AdditionalClaimName" => "AdditionalClaimValue",
13784
+ # },
13785
+ # additional_payload_claims: {
13786
+ # "AdditionalClaimName" => "AdditionalClaimValue",
13787
+ # },
13788
+ # },
13726
13789
  # private_endpoint: {
13727
13790
  # self_managed_lattice_resource: {
13728
13791
  # resource_configuration_identifier: "ResourceConfigurationIdentifier",
@@ -13856,6 +13919,11 @@ module Aws::BedrockAgentCoreControl
13856
13919
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
13857
13920
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
13858
13921
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_id #=> String
13922
+ # 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"
13923
+ # 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"
13924
+ # 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
13925
+ # 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
13926
+ # 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", "PRIVATE_KEY_JWT"
13859
13927
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
13860
13928
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
13861
13929
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
@@ -13878,11 +13946,12 @@ module Aws::BedrockAgentCoreControl
13878
13946
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
13879
13947
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
13880
13948
  # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
13881
- # 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"
13882
- # 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"
13883
- # 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
13884
- # 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
13885
- # 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"
13949
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.private_key_source.kms_key_source.kms_key_arn #=> String
13950
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.signing_algorithm #=> String, one of "RS256", "PS256", "ES256"
13951
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims #=> Hash
13952
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims["AdditionalClaimName"] #=> String
13953
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims #=> Hash
13954
+ # resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims["AdditionalClaimName"] #=> String
13886
13955
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
13887
13956
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
13888
13957
  # resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
@@ -15079,7 +15148,7 @@ module Aws::BedrockAgentCoreControl
15079
15148
  tracer: tracer
15080
15149
  )
15081
15150
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
15082
- context[:gem_version] = '1.59.0'
15151
+ context[:gem_version] = '1.61.0'
15083
15152
  Seahorse::Client::Request.new(handlers, context)
15084
15153
  end
15085
15154
 
@@ -21,6 +21,9 @@ module Aws::BedrockAgentCoreControl
21
21
  ActorTokenContentType = Shapes::StringShape.new(name: 'ActorTokenContentType')
22
22
  AddDatasetExamplesRequest = Shapes::StructureShape.new(name: 'AddDatasetExamplesRequest')
23
23
  AddDatasetExamplesResponse = Shapes::StructureShape.new(name: 'AddDatasetExamplesResponse')
24
+ AdditionalClaimName = Shapes::StringShape.new(name: 'AdditionalClaimName')
25
+ AdditionalClaimValue = Shapes::StringShape.new(name: 'AdditionalClaimValue')
26
+ AdditionalClaims = Shapes::MapShape.new(name: 'AdditionalClaims')
24
27
  AdditionalModelRequestFields = Shapes::DocumentShape.new(name: 'AdditionalModelRequestFields', document: true)
25
28
  AdvertisedScopeMappingType = Shapes::MapShape.new(name: 'AdvertisedScopeMappingType')
26
29
  AgentCardDefinition = Shapes::StructureShape.new(name: 'AgentCardDefinition')
@@ -639,6 +642,7 @@ module Aws::BedrockAgentCoreControl
639
642
  KinesisResourceContentConfigurationsList = Shapes::ListShape.new(name: 'KinesisResourceContentConfigurationsList')
640
643
  KmsConfiguration = Shapes::StructureShape.new(name: 'KmsConfiguration')
641
644
  KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
645
+ KmsKeySourceType = Shapes::StructureShape.new(name: 'KmsKeySourceType')
642
646
  LambdaArn = Shapes::StringShape.new(name: 'LambdaArn')
643
647
  LambdaEvaluatorConfig = Shapes::StructureShape.new(name: 'LambdaEvaluatorConfig')
644
648
  LambdaEvaluatorConfigLambdaTimeoutInSecondsInteger = Shapes::IntegerShape.new(name: 'LambdaEvaluatorConfigLambdaTimeoutInSecondsInteger')
@@ -847,6 +851,10 @@ module Aws::BedrockAgentCoreControl
847
851
  OnlineEvaluationConfigSummary = Shapes::StructureShape.new(name: 'OnlineEvaluationConfigSummary')
848
852
  OnlineEvaluationConfigSummaryList = Shapes::ListShape.new(name: 'OnlineEvaluationConfigSummaryList')
849
853
  OnlineEvaluationExecutionStatus = Shapes::StringShape.new(name: 'OnlineEvaluationExecutionStatus')
854
+ OpenResponsesEvaluatorModelConfig = Shapes::StructureShape.new(name: 'OpenResponsesEvaluatorModelConfig')
855
+ OpenResponsesEvaluatorModelConfigMaxOutputTokensInteger = Shapes::IntegerShape.new(name: 'OpenResponsesEvaluatorModelConfigMaxOutputTokensInteger')
856
+ OpenResponsesEvaluatorModelConfigTemperatureFloat = Shapes::FloatShape.new(name: 'OpenResponsesEvaluatorModelConfigTemperatureFloat')
857
+ OpenResponsesEvaluatorModelConfigTopPFloat = Shapes::FloatShape.new(name: 'OpenResponsesEvaluatorModelConfigTopPFloat')
850
858
  OutputConfig = Shapes::StructureShape.new(name: 'OutputConfig')
851
859
  OverrideType = Shapes::StringShape.new(name: 'OverrideType')
852
860
  PassthroughEndpoint = Shapes::StringShape.new(name: 'PassthroughEndpoint')
@@ -908,6 +916,8 @@ module Aws::BedrockAgentCoreControl
908
916
  PrivateEndpointOverride = Shapes::StructureShape.new(name: 'PrivateEndpointOverride')
909
917
  PrivateEndpointOverrideDomain = Shapes::StringShape.new(name: 'PrivateEndpointOverrideDomain')
910
918
  PrivateEndpointOverrides = Shapes::ListShape.new(name: 'PrivateEndpointOverrides')
919
+ PrivateKeyJwtConfig = Shapes::StructureShape.new(name: 'PrivateKeyJwtConfig')
920
+ PrivateKeySource = Shapes::UnionShape.new(name: 'PrivateKeySource')
911
921
  Prompt = Shapes::StringShape.new(name: 'Prompt')
912
922
  ProtocolConfiguration = Shapes::StructureShape.new(name: 'ProtocolConfiguration')
913
923
  ProviderPrefix = Shapes::StructureShape.new(name: 'ProviderPrefix')
@@ -915,6 +925,8 @@ module Aws::BedrockAgentCoreControl
915
925
  PutResourcePolicyRequest = Shapes::StructureShape.new(name: 'PutResourcePolicyRequest')
916
926
  PutResourcePolicyResponse = Shapes::StructureShape.new(name: 'PutResourcePolicyResponse')
917
927
  RatingScale = Shapes::UnionShape.new(name: 'RatingScale')
928
+ ReasoningConfiguration = Shapes::StructureShape.new(name: 'ReasoningConfiguration')
929
+ ReasoningConfigurationEffortString = Shapes::StringShape.new(name: 'ReasoningConfigurationEffortString')
918
930
  RecordIdentifier = Shapes::StringShape.new(name: 'RecordIdentifier')
919
931
  RecordingConfig = Shapes::StructureShape.new(name: 'RecordingConfig')
920
932
  ReflectionConfiguration = Shapes::UnionShape.new(name: 'ReflectionConfiguration')
@@ -1028,6 +1040,7 @@ module Aws::BedrockAgentCoreControl
1028
1040
  SessionStorageConfiguration = Shapes::StructureShape.new(name: 'SessionStorageConfiguration')
1029
1041
  SetTokenVaultCMKRequest = Shapes::StructureShape.new(name: 'SetTokenVaultCMKRequest')
1030
1042
  SetTokenVaultCMKResponse = Shapes::StructureShape.new(name: 'SetTokenVaultCMKResponse')
1043
+ SigningAlgorithm = Shapes::StringShape.new(name: 'SigningAlgorithm')
1031
1044
  SkillDefinition = Shapes::StructureShape.new(name: 'SkillDefinition')
1032
1045
  SkillMdDefinition = Shapes::StructureShape.new(name: 'SkillMdDefinition')
1033
1046
  SlackOauth2ProviderConfigInput = Shapes::StructureShape.new(name: 'SlackOauth2ProviderConfigInput')
@@ -1270,6 +1283,9 @@ module Aws::BedrockAgentCoreControl
1270
1283
  AddDatasetExamplesResponse.add_member(:example_ids, Shapes::ShapeRef.new(shape: ExampleIdList, required: true, location_name: "exampleIds"))
1271
1284
  AddDatasetExamplesResponse.struct_class = Types::AddDatasetExamplesResponse
1272
1285
 
1286
+ AdditionalClaims.key = Shapes::ShapeRef.new(shape: AdditionalClaimName)
1287
+ AdditionalClaims.value = Shapes::ShapeRef.new(shape: AdditionalClaimValue)
1288
+
1273
1289
  AdvertisedScopeMappingType.key = Shapes::ShapeRef.new(shape: AllowedScopeType)
1274
1290
  AdvertisedScopeMappingType.value = Shapes::ShapeRef.new(shape: AllowedScopeType)
1275
1291
 
@@ -2225,16 +2241,18 @@ module Aws::BedrockAgentCoreControl
2225
2241
  CustomOauth2ProviderConfigInput.add_member(:client_secret_source, Shapes::ShapeRef.new(shape: SecretSourceType, location_name: "clientSecretSource"))
2226
2242
  CustomOauth2ProviderConfigInput.add_member(:on_behalf_of_token_exchange_config, Shapes::ShapeRef.new(shape: OnBehalfOfTokenExchangeConfigType, location_name: "onBehalfOfTokenExchangeConfig"))
2227
2243
  CustomOauth2ProviderConfigInput.add_member(:client_authentication_method, Shapes::ShapeRef.new(shape: ClientAuthenticationMethodType, location_name: "clientAuthenticationMethod"))
2244
+ CustomOauth2ProviderConfigInput.add_member(:private_key_jwt_config, Shapes::ShapeRef.new(shape: PrivateKeyJwtConfig, location_name: "privateKeyJwtConfig"))
2228
2245
  CustomOauth2ProviderConfigInput.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
2229
2246
  CustomOauth2ProviderConfigInput.add_member(:private_endpoint_overrides, Shapes::ShapeRef.new(shape: PrivateEndpointOverrides, location_name: "privateEndpointOverrides"))
2230
2247
  CustomOauth2ProviderConfigInput.struct_class = Types::CustomOauth2ProviderConfigInput
2231
2248
 
2232
2249
  CustomOauth2ProviderConfigOutput.add_member(:oauth_discovery, Shapes::ShapeRef.new(shape: Oauth2Discovery, required: true, location_name: "oauthDiscovery"))
2233
2250
  CustomOauth2ProviderConfigOutput.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientIdType, location_name: "clientId"))
2234
- CustomOauth2ProviderConfigOutput.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
2235
- CustomOauth2ProviderConfigOutput.add_member(:private_endpoint_overrides, Shapes::ShapeRef.new(shape: PrivateEndpointOverrides, location_name: "privateEndpointOverrides"))
2236
2251
  CustomOauth2ProviderConfigOutput.add_member(:on_behalf_of_token_exchange_config, Shapes::ShapeRef.new(shape: OnBehalfOfTokenExchangeConfigType, location_name: "onBehalfOfTokenExchangeConfig"))
2237
2252
  CustomOauth2ProviderConfigOutput.add_member(:client_authentication_method, Shapes::ShapeRef.new(shape: ClientAuthenticationMethodType, location_name: "clientAuthenticationMethod"))
2253
+ CustomOauth2ProviderConfigOutput.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
2254
+ CustomOauth2ProviderConfigOutput.add_member(:private_endpoint_overrides, Shapes::ShapeRef.new(shape: PrivateEndpointOverrides, location_name: "privateEndpointOverrides"))
2255
+ CustomOauth2ProviderConfigOutput.add_member(:private_key_jwt_config, Shapes::ShapeRef.new(shape: PrivateKeyJwtConfig, location_name: "privateKeyJwtConfig"))
2238
2256
  CustomOauth2ProviderConfigOutput.struct_class = Types::CustomOauth2ProviderConfigOutput
2239
2257
 
2240
2258
  CustomParameterMap.key = Shapes::ShapeRef.new(shape: String)
@@ -2617,8 +2635,10 @@ module Aws::BedrockAgentCoreControl
2617
2635
  EvaluatorList.member = Shapes::ShapeRef.new(shape: EvaluatorReference)
2618
2636
 
2619
2637
  EvaluatorModelConfig.add_member(:bedrock_evaluator_model_config, Shapes::ShapeRef.new(shape: BedrockEvaluatorModelConfig, location_name: "bedrockEvaluatorModelConfig"))
2638
+ EvaluatorModelConfig.add_member(:responses_evaluator_model_config, Shapes::ShapeRef.new(shape: OpenResponsesEvaluatorModelConfig, location_name: "responsesEvaluatorModelConfig"))
2620
2639
  EvaluatorModelConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2621
2640
  EvaluatorModelConfig.add_member_subclass(:bedrock_evaluator_model_config, Types::EvaluatorModelConfig::BedrockEvaluatorModelConfig)
2641
+ EvaluatorModelConfig.add_member_subclass(:responses_evaluator_model_config, Types::EvaluatorModelConfig::ResponsesEvaluatorModelConfig)
2622
2642
  EvaluatorModelConfig.add_member_subclass(:unknown, Types::EvaluatorModelConfig::Unknown)
2623
2643
  EvaluatorModelConfig.struct_class = Types::EvaluatorModelConfig
2624
2644
 
@@ -3691,6 +3711,9 @@ module Aws::BedrockAgentCoreControl
3691
3711
  KmsConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
3692
3712
  KmsConfiguration.struct_class = Types::KmsConfiguration
3693
3713
 
3714
+ KmsKeySourceType.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, required: true, location_name: "kmsKeyArn"))
3715
+ KmsKeySourceType.struct_class = Types::KmsKeySourceType
3716
+
3694
3717
  LambdaEvaluatorConfig.add_member(:lambda_arn, Shapes::ShapeRef.new(shape: LambdaArn, required: true, location_name: "lambdaArn"))
3695
3718
  LambdaEvaluatorConfig.add_member(:lambda_timeout_in_seconds, Shapes::ShapeRef.new(shape: LambdaEvaluatorConfigLambdaTimeoutInSecondsInteger, location_name: "lambdaTimeoutInSeconds"))
3696
3719
  LambdaEvaluatorConfig.struct_class = Types::LambdaEvaluatorConfig
@@ -4390,6 +4413,13 @@ module Aws::BedrockAgentCoreControl
4390
4413
 
4391
4414
  OnlineEvaluationConfigSummaryList.member = Shapes::ShapeRef.new(shape: OnlineEvaluationConfigSummary)
4392
4415
 
4416
+ OpenResponsesEvaluatorModelConfig.add_member(:model_id, Shapes::ShapeRef.new(shape: ModelId, required: true, location_name: "modelId"))
4417
+ OpenResponsesEvaluatorModelConfig.add_member(:max_output_tokens, Shapes::ShapeRef.new(shape: OpenResponsesEvaluatorModelConfigMaxOutputTokensInteger, location_name: "maxOutputTokens"))
4418
+ OpenResponsesEvaluatorModelConfig.add_member(:temperature, Shapes::ShapeRef.new(shape: OpenResponsesEvaluatorModelConfigTemperatureFloat, location_name: "temperature"))
4419
+ OpenResponsesEvaluatorModelConfig.add_member(:top_p, Shapes::ShapeRef.new(shape: OpenResponsesEvaluatorModelConfigTopPFloat, location_name: "topP"))
4420
+ OpenResponsesEvaluatorModelConfig.add_member(:reasoning, Shapes::ShapeRef.new(shape: ReasoningConfiguration, location_name: "reasoning"))
4421
+ OpenResponsesEvaluatorModelConfig.struct_class = Types::OpenResponsesEvaluatorModelConfig
4422
+
4393
4423
  OutputConfig.add_member(:cloud_watch_config, Shapes::ShapeRef.new(shape: CloudWatchOutputConfig, required: true, location_name: "cloudWatchConfig"))
4394
4424
  OutputConfig.struct_class = Types::OutputConfig
4395
4425
 
@@ -4570,6 +4600,18 @@ module Aws::BedrockAgentCoreControl
4570
4600
 
4571
4601
  PrivateEndpointOverrides.member = Shapes::ShapeRef.new(shape: PrivateEndpointOverride)
4572
4602
 
4603
+ PrivateKeyJwtConfig.add_member(:private_key_source, Shapes::ShapeRef.new(shape: PrivateKeySource, location_name: "privateKeySource"))
4604
+ PrivateKeyJwtConfig.add_member(:signing_algorithm, Shapes::ShapeRef.new(shape: SigningAlgorithm, location_name: "signingAlgorithm"))
4605
+ PrivateKeyJwtConfig.add_member(:additional_header_claims, Shapes::ShapeRef.new(shape: AdditionalClaims, location_name: "additionalHeaderClaims"))
4606
+ PrivateKeyJwtConfig.add_member(:additional_payload_claims, Shapes::ShapeRef.new(shape: AdditionalClaims, location_name: "additionalPayloadClaims"))
4607
+ PrivateKeyJwtConfig.struct_class = Types::PrivateKeyJwtConfig
4608
+
4609
+ PrivateKeySource.add_member(:kms_key_source, Shapes::ShapeRef.new(shape: KmsKeySourceType, location_name: "kmsKeySource"))
4610
+ PrivateKeySource.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
4611
+ PrivateKeySource.add_member_subclass(:kms_key_source, Types::PrivateKeySource::KmsKeySource)
4612
+ PrivateKeySource.add_member_subclass(:unknown, Types::PrivateKeySource::Unknown)
4613
+ PrivateKeySource.struct_class = Types::PrivateKeySource
4614
+
4573
4615
  ProtocolConfiguration.add_member(:server_protocol, Shapes::ShapeRef.new(shape: ServerProtocol, required: true, location_name: "serverProtocol"))
4574
4616
  ProtocolConfiguration.struct_class = Types::ProtocolConfiguration
4575
4617
 
@@ -4592,6 +4634,9 @@ module Aws::BedrockAgentCoreControl
4592
4634
  RatingScale.add_member_subclass(:unknown, Types::RatingScale::Unknown)
4593
4635
  RatingScale.struct_class = Types::RatingScale
4594
4636
 
4637
+ ReasoningConfiguration.add_member(:effort, Shapes::ShapeRef.new(shape: ReasoningConfigurationEffortString, location_name: "effort"))
4638
+ ReasoningConfiguration.struct_class = Types::ReasoningConfiguration
4639
+
4595
4640
  RecordingConfig.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
4596
4641
  RecordingConfig.add_member(:s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3Location"))
4597
4642
  RecordingConfig.struct_class = Types::RecordingConfig
@@ -4869,6 +4869,13 @@ module Aws::BedrockAgentCoreControl
4869
4869
  # token endpoint.
4870
4870
  # @return [String]
4871
4871
  #
4872
+ # @!attribute [rw] private_key_jwt_config
4873
+ # Configuration for private\_key\_jwt client authentication (RFC
4874
+ # 7523). On Create: privateKeySource and signingAlgorithm are required
4875
+ # (enforced server-side). On Update: all fields are optional — only
4876
+ # provided fields are updated.
4877
+ # @return [Types::PrivateKeyJwtConfig]
4878
+ #
4872
4879
  # @!attribute [rw] private_endpoint
4873
4880
  # The default private endpoint for the custom OAuth2 provider,
4874
4881
  # enabling secure connectivity through a VPC Lattice resource
@@ -4890,6 +4897,7 @@ module Aws::BedrockAgentCoreControl
4890
4897
  :client_secret_source,
4891
4898
  :on_behalf_of_token_exchange_config,
4892
4899
  :client_authentication_method,
4900
+ :private_key_jwt_config,
4893
4901
  :private_endpoint,
4894
4902
  :private_endpoint_overrides)
4895
4903
  SENSITIVE = [:client_secret]
@@ -4906,6 +4914,15 @@ module Aws::BedrockAgentCoreControl
4906
4914
  # The client ID for the custom OAuth2 provider.
4907
4915
  # @return [String]
4908
4916
  #
4917
+ # @!attribute [rw] on_behalf_of_token_exchange_config
4918
+ # The configuration for on-behalf-of token exchange.
4919
+ # @return [Types::OnBehalfOfTokenExchangeConfigType]
4920
+ #
4921
+ # @!attribute [rw] client_authentication_method
4922
+ # The client authentication method used when authenticating with the
4923
+ # token endpoint.
4924
+ # @return [String]
4925
+ #
4909
4926
  # @!attribute [rw] private_endpoint
4910
4927
  # The default private endpoint for the custom OAuth2 provider,
4911
4928
  # enabling secure connectivity through a VPC Lattice resource
@@ -4917,24 +4934,23 @@ module Aws::BedrockAgentCoreControl
4917
4934
  # configuration.
4918
4935
  # @return [Array<Types::PrivateEndpointOverride>]
4919
4936
  #
4920
- # @!attribute [rw] on_behalf_of_token_exchange_config
4921
- # The configuration for on-behalf-of token exchange.
4922
- # @return [Types::OnBehalfOfTokenExchangeConfigType]
4923
- #
4924
- # @!attribute [rw] client_authentication_method
4925
- # The client authentication method used when authenticating with the
4926
- # token endpoint.
4927
- # @return [String]
4937
+ # @!attribute [rw] private_key_jwt_config
4938
+ # Configuration for private\_key\_jwt client authentication (RFC
4939
+ # 7523). On Create: privateKeySource and signingAlgorithm are required
4940
+ # (enforced server-side). On Update: all fields are optional — only
4941
+ # provided fields are updated.
4942
+ # @return [Types::PrivateKeyJwtConfig]
4928
4943
  #
4929
4944
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomOauth2ProviderConfigOutput AWS API Documentation
4930
4945
  #
4931
4946
  class CustomOauth2ProviderConfigOutput < Struct.new(
4932
4947
  :oauth_discovery,
4933
4948
  :client_id,
4949
+ :on_behalf_of_token_exchange_config,
4950
+ :client_authentication_method,
4934
4951
  :private_endpoint,
4935
4952
  :private_endpoint_overrides,
4936
- :on_behalf_of_token_exchange_config,
4937
- :client_authentication_method)
4953
+ :private_key_jwt_config)
4938
4954
  SENSITIVE = []
4939
4955
  include Aws::Structure
4940
4956
  end
@@ -6682,16 +6698,22 @@ module Aws::BedrockAgentCoreControl
6682
6698
  # The Amazon Bedrock model configuration for evaluation.
6683
6699
  # @return [Types::BedrockEvaluatorModelConfig]
6684
6700
  #
6701
+ # @!attribute [rw] responses_evaluator_model_config
6702
+ # The OpenResponses model configuration for evaluation.
6703
+ # @return [Types::OpenResponsesEvaluatorModelConfig]
6704
+ #
6685
6705
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EvaluatorModelConfig AWS API Documentation
6686
6706
  #
6687
6707
  class EvaluatorModelConfig < Struct.new(
6688
6708
  :bedrock_evaluator_model_config,
6709
+ :responses_evaluator_model_config,
6689
6710
  :unknown)
6690
6711
  SENSITIVE = []
6691
6712
  include Aws::Structure
6692
6713
  include Aws::Structure::Union
6693
6714
 
6694
6715
  class BedrockEvaluatorModelConfig < EvaluatorModelConfig; end
6716
+ class ResponsesEvaluatorModelConfig < EvaluatorModelConfig; end
6695
6717
  class Unknown < EvaluatorModelConfig; end
6696
6718
  end
6697
6719
 
@@ -11641,6 +11663,23 @@ module Aws::BedrockAgentCoreControl
11641
11663
  include Aws::Structure
11642
11664
  end
11643
11665
 
11666
+ # Contains the KMS key configuration for a JWT client assertion.
11667
+ #
11668
+ # @!attribute [rw] kms_key_arn
11669
+ # The Amazon Resource Name (ARN) of the KMS key used to sign the JWT
11670
+ # client assertion. The key must be an asymmetric key with key usage
11671
+ # SIGN\_VERIFY and a key spec compatible with the configured signing
11672
+ # algorithm.
11673
+ # @return [String]
11674
+ #
11675
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/KmsKeySourceType AWS API Documentation
11676
+ #
11677
+ class KmsKeySourceType < Struct.new(
11678
+ :kms_key_arn)
11679
+ SENSITIVE = []
11680
+ include Aws::Structure
11681
+ end
11682
+
11644
11683
  # Configuration for a Lambda function used as a code-based evaluator.
11645
11684
  #
11646
11685
  # @!attribute [rw] lambda_arn
@@ -14890,6 +14929,47 @@ module Aws::BedrockAgentCoreControl
14890
14929
  include Aws::Structure
14891
14930
  end
14892
14931
 
14932
+ # The configuration for using models served through the OpenResponses
14933
+ # API in evaluator assessments, including model selection and inference
14934
+ # parameters.
14935
+ #
14936
+ # @!attribute [rw] model_id
14937
+ # The identifier of the model to use for evaluation.
14938
+ # @return [String]
14939
+ #
14940
+ # @!attribute [rw] max_output_tokens
14941
+ # The maximum number of tokens to generate in the model response,
14942
+ # including visible output and reasoning tokens.
14943
+ # @return [Integer]
14944
+ #
14945
+ # @!attribute [rw] temperature
14946
+ # The temperature value that controls randomness in the model's
14947
+ # responses. Lower values produce more deterministic outputs.
14948
+ # @return [Float]
14949
+ #
14950
+ # @!attribute [rw] top_p
14951
+ # The top-p sampling parameter that controls the diversity of the
14952
+ # model's responses by limiting the cumulative probability of token
14953
+ # choices.
14954
+ # @return [Float]
14955
+ #
14956
+ # @!attribute [rw] reasoning
14957
+ # The reasoning configuration for reasoning models. Non-reasoning
14958
+ # models ignore this configuration.
14959
+ # @return [Types::ReasoningConfiguration]
14960
+ #
14961
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OpenResponsesEvaluatorModelConfig AWS API Documentation
14962
+ #
14963
+ class OpenResponsesEvaluatorModelConfig < Struct.new(
14964
+ :model_id,
14965
+ :max_output_tokens,
14966
+ :temperature,
14967
+ :top_p,
14968
+ :reasoning)
14969
+ SENSITIVE = []
14970
+ include Aws::Structure
14971
+ end
14972
+
14893
14973
  # The configuration that specifies where evaluation results should be
14894
14974
  # written for monitoring and analysis.
14895
14975
  #
@@ -15760,6 +15840,67 @@ module Aws::BedrockAgentCoreControl
15760
15840
  include Aws::Structure
15761
15841
  end
15762
15842
 
15843
+ # Configuration for private\_key\_jwt client authentication (RFC 7523).
15844
+ # On Create: privateKeySource and signingAlgorithm are required
15845
+ # (enforced server-side). On Update: all fields are optional — only
15846
+ # provided fields are updated.
15847
+ #
15848
+ # @!attribute [rw] private_key_source
15849
+ # The private key source for the JWT client assertion.
15850
+ # @return [Types::PrivateKeySource]
15851
+ #
15852
+ # @!attribute [rw] signing_algorithm
15853
+ # The algorithm used to sign the JWT client assertion. Valid values
15854
+ # are `RS256`, `PS256`, and `ES256`.
15855
+ # @return [String]
15856
+ #
15857
+ # @!attribute [rw] additional_header_claims
15858
+ # A map of additional claims to include in the JWT client assertion
15859
+ # header. Standard header claims such as `alg` and `typ` cannot be
15860
+ # added.
15861
+ # @return [Hash<String,String>]
15862
+ #
15863
+ # @!attribute [rw] additional_payload_claims
15864
+ # A map of additional claims to include in the JWT client assertion
15865
+ # payload. Payload claims generated by the service, such as `iss`,
15866
+ # `sub`, `jti`, and `exp`, cannot be added.
15867
+ # @return [Hash<String,String>]
15868
+ #
15869
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PrivateKeyJwtConfig AWS API Documentation
15870
+ #
15871
+ class PrivateKeyJwtConfig < Struct.new(
15872
+ :private_key_source,
15873
+ :signing_algorithm,
15874
+ :additional_header_claims,
15875
+ :additional_payload_claims)
15876
+ SENSITIVE = [:additional_header_claims, :additional_payload_claims]
15877
+ include Aws::Structure
15878
+ end
15879
+
15880
+ # Contains the private key source configuration for a JWT client
15881
+ # assertion.
15882
+ #
15883
+ # @note PrivateKeySource is a union - when making an API calls you must set exactly one of the members.
15884
+ #
15885
+ # @note PrivateKeySource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PrivateKeySource corresponding to the set member.
15886
+ #
15887
+ # @!attribute [rw] kms_key_source
15888
+ # The KMS key source for the JWT client assertion.
15889
+ # @return [Types::KmsKeySourceType]
15890
+ #
15891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PrivateKeySource AWS API Documentation
15892
+ #
15893
+ class PrivateKeySource < Struct.new(
15894
+ :kms_key_source,
15895
+ :unknown)
15896
+ SENSITIVE = []
15897
+ include Aws::Structure
15898
+ include Aws::Structure::Union
15899
+
15900
+ class KmsKeySource < PrivateKeySource; end
15901
+ class Unknown < PrivateKeySource; end
15902
+ end
15903
+
15763
15904
  # The protocol configuration for an agent runtime. This structure
15764
15905
  # defines how the agent runtime communicates with clients.
15765
15906
  #
@@ -15862,6 +16003,23 @@ module Aws::BedrockAgentCoreControl
15862
16003
  class Unknown < RatingScale; end
15863
16004
  end
15864
16005
 
16006
+ # The reasoning configuration that controls how a reasoning model
16007
+ # allocates effort during evaluation.
16008
+ #
16009
+ # @!attribute [rw] effort
16010
+ # The level of reasoning effort the model applies when generating a
16011
+ # response. For supported values, see the model provider's
16012
+ # documentation.
16013
+ # @return [String]
16014
+ #
16015
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ReasoningConfiguration AWS API Documentation
16016
+ #
16017
+ class ReasoningConfiguration < Struct.new(
16018
+ :effort)
16019
+ SENSITIVE = []
16020
+ include Aws::Structure
16021
+ end
16022
+
15865
16023
  # The recording configuration for a browser. This structure defines how
15866
16024
  # browser sessions are recorded.
15867
16025
  #
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.59.0'
58
+ GEM_VERSION = '1.61.0'
59
59
 
60
60
  end
61
61
 
data/sig/params.rbs CHANGED
@@ -163,8 +163,19 @@ module Aws
163
163
  }?
164
164
  }
165
165
 
166
+ type open_responses_evaluator_model_config = {
167
+ model_id: ::String,
168
+ max_output_tokens: ::Integer?,
169
+ temperature: ::Float?,
170
+ top_p: ::Float?,
171
+ reasoning: {
172
+ effort: ::String?
173
+ }?
174
+ }
175
+
166
176
  type evaluator_model_config = {
167
- bedrock_evaluator_model_config: Params::bedrock_evaluator_model_config?
177
+ bedrock_evaluator_model_config: Params::bedrock_evaluator_model_config?,
178
+ responses_evaluator_model_config: Params::open_responses_evaluator_model_config?
168
179
  }
169
180
 
170
181
  type llm_as_a_judge_evaluator_config = {
@@ -871,6 +882,17 @@ module Aws
871
882
  }?
872
883
  }
873
884
 
885
+ type private_key_jwt_config = {
886
+ private_key_source: {
887
+ kms_key_source: {
888
+ kms_key_arn: ::String
889
+ }?
890
+ }?,
891
+ signing_algorithm: ("RS256" | "PS256" | "ES256")?,
892
+ additional_header_claims: Hash[::String, ::String]?,
893
+ additional_payload_claims: Hash[::String, ::String]?
894
+ }
895
+
874
896
  type custom_oauth_2_provider_config_input = {
875
897
  oauth_discovery: Params::oauth_2_discovery,
876
898
  client_id: ::String?,
@@ -887,7 +909,8 @@ module Aws
887
909
  actor_token_scopes: Array[::String]?
888
910
  }?
889
911
  }?,
890
- client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")?,
912
+ client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT" | "PRIVATE_KEY_JWT")?,
913
+ private_key_jwt_config: Params::private_key_jwt_config?,
891
914
  private_endpoint: Params::private_endpoint?,
892
915
  private_endpoint_overrides: Array[
893
916
  Params::private_endpoint_override
data/sig/types.rbs CHANGED
@@ -1255,7 +1255,8 @@ module Aws::BedrockAgentCoreControl
1255
1255
  attr_accessor client_secret_config: Types::SecretReference
1256
1256
  attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
1257
1257
  attr_accessor on_behalf_of_token_exchange_config: Types::OnBehalfOfTokenExchangeConfigType
1258
- attr_accessor client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")
1258
+ attr_accessor client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT" | "PRIVATE_KEY_JWT")
1259
+ attr_accessor private_key_jwt_config: Types::PrivateKeyJwtConfig
1259
1260
  attr_accessor private_endpoint: Types::PrivateEndpoint
1260
1261
  attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
1261
1262
  SENSITIVE: [:client_secret]
@@ -1264,10 +1265,11 @@ module Aws::BedrockAgentCoreControl
1264
1265
  class CustomOauth2ProviderConfigOutput
1265
1266
  attr_accessor oauth_discovery: Types::Oauth2Discovery
1266
1267
  attr_accessor client_id: ::String
1268
+ attr_accessor on_behalf_of_token_exchange_config: Types::OnBehalfOfTokenExchangeConfigType
1269
+ attr_accessor client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT" | "PRIVATE_KEY_JWT")
1267
1270
  attr_accessor private_endpoint: Types::PrivateEndpoint
1268
1271
  attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
1269
- attr_accessor on_behalf_of_token_exchange_config: Types::OnBehalfOfTokenExchangeConfigType
1270
- attr_accessor client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")
1272
+ attr_accessor private_key_jwt_config: Types::PrivateKeyJwtConfig
1271
1273
  SENSITIVE: []
1272
1274
  end
1273
1275
 
@@ -1799,11 +1801,14 @@ module Aws::BedrockAgentCoreControl
1799
1801
 
1800
1802
  class EvaluatorModelConfig
1801
1803
  attr_accessor bedrock_evaluator_model_config: Types::BedrockEvaluatorModelConfig
1804
+ attr_accessor responses_evaluator_model_config: Types::OpenResponsesEvaluatorModelConfig
1802
1805
  attr_accessor unknown: untyped
1803
1806
  SENSITIVE: []
1804
1807
 
1805
1808
  class BedrockEvaluatorModelConfig < EvaluatorModelConfig
1806
1809
  end
1810
+ class ResponsesEvaluatorModelConfig < EvaluatorModelConfig
1811
+ end
1807
1812
  class Unknown < EvaluatorModelConfig
1808
1813
  end
1809
1814
  end
@@ -3187,6 +3192,11 @@ module Aws::BedrockAgentCoreControl
3187
3192
  SENSITIVE: []
3188
3193
  end
3189
3194
 
3195
+ class KmsKeySourceType
3196
+ attr_accessor kms_key_arn: ::String
3197
+ SENSITIVE: []
3198
+ end
3199
+
3190
3200
  class LambdaEvaluatorConfig
3191
3201
  attr_accessor lambda_arn: ::String
3192
3202
  attr_accessor lambda_timeout_in_seconds: ::Integer
@@ -4159,6 +4169,15 @@ module Aws::BedrockAgentCoreControl
4159
4169
  SENSITIVE: [:description]
4160
4170
  end
4161
4171
 
4172
+ class OpenResponsesEvaluatorModelConfig
4173
+ attr_accessor model_id: ::String
4174
+ attr_accessor max_output_tokens: ::Integer
4175
+ attr_accessor temperature: ::Float
4176
+ attr_accessor top_p: ::Float
4177
+ attr_accessor reasoning: Types::ReasoningConfiguration
4178
+ SENSITIVE: []
4179
+ end
4180
+
4162
4181
  class OutputConfig
4163
4182
  attr_accessor cloud_watch_config: Types::CloudWatchOutputConfig
4164
4183
  SENSITIVE: []
@@ -4370,6 +4389,25 @@ module Aws::BedrockAgentCoreControl
4370
4389
  SENSITIVE: []
4371
4390
  end
4372
4391
 
4392
+ class PrivateKeyJwtConfig
4393
+ attr_accessor private_key_source: Types::PrivateKeySource
4394
+ attr_accessor signing_algorithm: ("RS256" | "PS256" | "ES256")
4395
+ attr_accessor additional_header_claims: ::Hash[::String, ::String]
4396
+ attr_accessor additional_payload_claims: ::Hash[::String, ::String]
4397
+ SENSITIVE: []
4398
+ end
4399
+
4400
+ class PrivateKeySource
4401
+ attr_accessor kms_key_source: Types::KmsKeySourceType
4402
+ attr_accessor unknown: untyped
4403
+ SENSITIVE: []
4404
+
4405
+ class KmsKeySource < PrivateKeySource
4406
+ end
4407
+ class Unknown < PrivateKeySource
4408
+ end
4409
+ end
4410
+
4373
4411
  class ProtocolConfiguration
4374
4412
  attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A" | "AGUI")
4375
4413
  SENSITIVE: []
@@ -4406,6 +4444,11 @@ module Aws::BedrockAgentCoreControl
4406
4444
  end
4407
4445
  end
4408
4446
 
4447
+ class ReasoningConfiguration
4448
+ attr_accessor effort: ::String
4449
+ SENSITIVE: []
4450
+ end
4451
+
4409
4452
  class RecordingConfig
4410
4453
  attr_accessor enabled: bool
4411
4454
  attr_accessor s3_location: Types::S3Location
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.59.0
4
+ version: 1.61.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services