aws-sdk-bedrockagentcorecontrol 1.59.0 → 1.60.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +64 -18
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +29 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +104 -10
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/params.rbs +13 -1
- data/sig/types.rbs +29 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 76c93b241282c73f955a3dd25c91269ebe615f0b96313d74cf53e4e271c4723b
|
|
4
|
+
data.tar.gz: 61c04223d203169715e243bdf91391220ef4f03f7eefbcf8d93364f7853b90ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e7f7a28f6ad18d1cf94dfd5611b918b6948ff35edb40b295040ede79aa8580947ce207b8312eb6005065de21d3677c31010c63b5931a3990162db60d8659aa2
|
|
7
|
+
data.tar.gz: 1d1a61a1a422ebae870d9b9f062a1f6a954250fbc55ad79ab1a844b0579aeefd8f179170b2763bf781c846ac7fcc293b44af7330b7f995912fab075dd667135d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.60.0 (2026-07-28)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* 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.
|
|
8
|
+
|
|
4
9
|
1.59.0 (2026-07-23)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.60.0
|
|
@@ -3592,7 +3592,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
3592
3592
|
# actor_token_scopes: ["ScopeType"],
|
|
3593
3593
|
# },
|
|
3594
3594
|
# },
|
|
3595
|
-
# client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
|
|
3595
|
+
# client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT, PRIVATE_KEY_JWT
|
|
3596
|
+
# private_key_jwt_config: {
|
|
3597
|
+
# private_key_source: {
|
|
3598
|
+
# kms_key_source: {
|
|
3599
|
+
# kms_key_arn: "KmsKeyArn", # required
|
|
3600
|
+
# },
|
|
3601
|
+
# },
|
|
3602
|
+
# signing_algorithm: "RS256", # accepts RS256, PS256, ES256
|
|
3603
|
+
# additional_header_claims: {
|
|
3604
|
+
# "AdditionalClaimName" => "AdditionalClaimValue",
|
|
3605
|
+
# },
|
|
3606
|
+
# additional_payload_claims: {
|
|
3607
|
+
# "AdditionalClaimName" => "AdditionalClaimValue",
|
|
3608
|
+
# },
|
|
3609
|
+
# },
|
|
3596
3610
|
# private_endpoint: {
|
|
3597
3611
|
# self_managed_lattice_resource: {
|
|
3598
3612
|
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
@@ -3728,6 +3742,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
3728
3742
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
3729
3743
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
3730
3744
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_id #=> String
|
|
3745
|
+
# 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"
|
|
3746
|
+
# 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"
|
|
3747
|
+
# 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
|
|
3748
|
+
# 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
|
|
3749
|
+
# 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
3750
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
3732
3751
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
3733
3752
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
@@ -3750,11 +3769,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3750
3769
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
3751
3770
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
3752
3771
|
# 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.
|
|
3754
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
3755
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
3756
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
3757
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
3772
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.private_key_source.kms_key_source.kms_key_arn #=> String
|
|
3773
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.signing_algorithm #=> String, one of "RS256", "PS256", "ES256"
|
|
3774
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims #=> Hash
|
|
3775
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims["AdditionalClaimName"] #=> String
|
|
3776
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims #=> Hash
|
|
3777
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims["AdditionalClaimName"] #=> String
|
|
3758
3778
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
3759
3779
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
3760
3780
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
@@ -7549,6 +7569,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7549
7569
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
7550
7570
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
7551
7571
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_id #=> String
|
|
7572
|
+
# 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"
|
|
7573
|
+
# 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"
|
|
7574
|
+
# 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
|
|
7575
|
+
# 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
|
|
7576
|
+
# 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
7577
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
7553
7578
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
7554
7579
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
@@ -7571,11 +7596,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
7571
7596
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
7572
7597
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
7573
7598
|
# 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.
|
|
7575
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
7576
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
7577
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
7578
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
7599
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.private_key_source.kms_key_source.kms_key_arn #=> String
|
|
7600
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.signing_algorithm #=> String, one of "RS256", "PS256", "ES256"
|
|
7601
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims #=> Hash
|
|
7602
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims["AdditionalClaimName"] #=> String
|
|
7603
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims #=> Hash
|
|
7604
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims["AdditionalClaimName"] #=> String
|
|
7579
7605
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
7580
7606
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
7581
7607
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
@@ -13722,7 +13748,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
13722
13748
|
# actor_token_scopes: ["ScopeType"],
|
|
13723
13749
|
# },
|
|
13724
13750
|
# },
|
|
13725
|
-
# client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
|
|
13751
|
+
# client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT, PRIVATE_KEY_JWT
|
|
13752
|
+
# private_key_jwt_config: {
|
|
13753
|
+
# private_key_source: {
|
|
13754
|
+
# kms_key_source: {
|
|
13755
|
+
# kms_key_arn: "KmsKeyArn", # required
|
|
13756
|
+
# },
|
|
13757
|
+
# },
|
|
13758
|
+
# signing_algorithm: "RS256", # accepts RS256, PS256, ES256
|
|
13759
|
+
# additional_header_claims: {
|
|
13760
|
+
# "AdditionalClaimName" => "AdditionalClaimValue",
|
|
13761
|
+
# },
|
|
13762
|
+
# additional_payload_claims: {
|
|
13763
|
+
# "AdditionalClaimName" => "AdditionalClaimValue",
|
|
13764
|
+
# },
|
|
13765
|
+
# },
|
|
13726
13766
|
# private_endpoint: {
|
|
13727
13767
|
# self_managed_lattice_resource: {
|
|
13728
13768
|
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
@@ -13856,6 +13896,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
13856
13896
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
13857
13897
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
13858
13898
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_id #=> String
|
|
13899
|
+
# 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"
|
|
13900
|
+
# 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"
|
|
13901
|
+
# 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
|
|
13902
|
+
# 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
|
|
13903
|
+
# 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
13904
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
13860
13905
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
13861
13906
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
@@ -13878,11 +13923,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
13878
13923
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
13879
13924
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
13880
13925
|
# 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.
|
|
13882
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
13883
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
13884
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
13885
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
13926
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.private_key_source.kms_key_source.kms_key_arn #=> String
|
|
13927
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.signing_algorithm #=> String, one of "RS256", "PS256", "ES256"
|
|
13928
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims #=> Hash
|
|
13929
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_header_claims["AdditionalClaimName"] #=> String
|
|
13930
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims #=> Hash
|
|
13931
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_key_jwt_config.additional_payload_claims["AdditionalClaimName"] #=> String
|
|
13886
13932
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
13887
13933
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
13888
13934
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
@@ -15079,7 +15125,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
15079
15125
|
tracer: tracer
|
|
15080
15126
|
)
|
|
15081
15127
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
15082
|
-
context[:gem_version] = '1.
|
|
15128
|
+
context[:gem_version] = '1.60.0'
|
|
15083
15129
|
Seahorse::Client::Request.new(handlers, context)
|
|
15084
15130
|
end
|
|
15085
15131
|
|
|
@@ -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')
|
|
@@ -908,6 +912,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
908
912
|
PrivateEndpointOverride = Shapes::StructureShape.new(name: 'PrivateEndpointOverride')
|
|
909
913
|
PrivateEndpointOverrideDomain = Shapes::StringShape.new(name: 'PrivateEndpointOverrideDomain')
|
|
910
914
|
PrivateEndpointOverrides = Shapes::ListShape.new(name: 'PrivateEndpointOverrides')
|
|
915
|
+
PrivateKeyJwtConfig = Shapes::StructureShape.new(name: 'PrivateKeyJwtConfig')
|
|
916
|
+
PrivateKeySource = Shapes::UnionShape.new(name: 'PrivateKeySource')
|
|
911
917
|
Prompt = Shapes::StringShape.new(name: 'Prompt')
|
|
912
918
|
ProtocolConfiguration = Shapes::StructureShape.new(name: 'ProtocolConfiguration')
|
|
913
919
|
ProviderPrefix = Shapes::StructureShape.new(name: 'ProviderPrefix')
|
|
@@ -1028,6 +1034,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1028
1034
|
SessionStorageConfiguration = Shapes::StructureShape.new(name: 'SessionStorageConfiguration')
|
|
1029
1035
|
SetTokenVaultCMKRequest = Shapes::StructureShape.new(name: 'SetTokenVaultCMKRequest')
|
|
1030
1036
|
SetTokenVaultCMKResponse = Shapes::StructureShape.new(name: 'SetTokenVaultCMKResponse')
|
|
1037
|
+
SigningAlgorithm = Shapes::StringShape.new(name: 'SigningAlgorithm')
|
|
1031
1038
|
SkillDefinition = Shapes::StructureShape.new(name: 'SkillDefinition')
|
|
1032
1039
|
SkillMdDefinition = Shapes::StructureShape.new(name: 'SkillMdDefinition')
|
|
1033
1040
|
SlackOauth2ProviderConfigInput = Shapes::StructureShape.new(name: 'SlackOauth2ProviderConfigInput')
|
|
@@ -1270,6 +1277,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1270
1277
|
AddDatasetExamplesResponse.add_member(:example_ids, Shapes::ShapeRef.new(shape: ExampleIdList, required: true, location_name: "exampleIds"))
|
|
1271
1278
|
AddDatasetExamplesResponse.struct_class = Types::AddDatasetExamplesResponse
|
|
1272
1279
|
|
|
1280
|
+
AdditionalClaims.key = Shapes::ShapeRef.new(shape: AdditionalClaimName)
|
|
1281
|
+
AdditionalClaims.value = Shapes::ShapeRef.new(shape: AdditionalClaimValue)
|
|
1282
|
+
|
|
1273
1283
|
AdvertisedScopeMappingType.key = Shapes::ShapeRef.new(shape: AllowedScopeType)
|
|
1274
1284
|
AdvertisedScopeMappingType.value = Shapes::ShapeRef.new(shape: AllowedScopeType)
|
|
1275
1285
|
|
|
@@ -2225,16 +2235,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
2225
2235
|
CustomOauth2ProviderConfigInput.add_member(:client_secret_source, Shapes::ShapeRef.new(shape: SecretSourceType, location_name: "clientSecretSource"))
|
|
2226
2236
|
CustomOauth2ProviderConfigInput.add_member(:on_behalf_of_token_exchange_config, Shapes::ShapeRef.new(shape: OnBehalfOfTokenExchangeConfigType, location_name: "onBehalfOfTokenExchangeConfig"))
|
|
2227
2237
|
CustomOauth2ProviderConfigInput.add_member(:client_authentication_method, Shapes::ShapeRef.new(shape: ClientAuthenticationMethodType, location_name: "clientAuthenticationMethod"))
|
|
2238
|
+
CustomOauth2ProviderConfigInput.add_member(:private_key_jwt_config, Shapes::ShapeRef.new(shape: PrivateKeyJwtConfig, location_name: "privateKeyJwtConfig"))
|
|
2228
2239
|
CustomOauth2ProviderConfigInput.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
|
|
2229
2240
|
CustomOauth2ProviderConfigInput.add_member(:private_endpoint_overrides, Shapes::ShapeRef.new(shape: PrivateEndpointOverrides, location_name: "privateEndpointOverrides"))
|
|
2230
2241
|
CustomOauth2ProviderConfigInput.struct_class = Types::CustomOauth2ProviderConfigInput
|
|
2231
2242
|
|
|
2232
2243
|
CustomOauth2ProviderConfigOutput.add_member(:oauth_discovery, Shapes::ShapeRef.new(shape: Oauth2Discovery, required: true, location_name: "oauthDiscovery"))
|
|
2233
2244
|
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
2245
|
CustomOauth2ProviderConfigOutput.add_member(:on_behalf_of_token_exchange_config, Shapes::ShapeRef.new(shape: OnBehalfOfTokenExchangeConfigType, location_name: "onBehalfOfTokenExchangeConfig"))
|
|
2237
2246
|
CustomOauth2ProviderConfigOutput.add_member(:client_authentication_method, Shapes::ShapeRef.new(shape: ClientAuthenticationMethodType, location_name: "clientAuthenticationMethod"))
|
|
2247
|
+
CustomOauth2ProviderConfigOutput.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
|
|
2248
|
+
CustomOauth2ProviderConfigOutput.add_member(:private_endpoint_overrides, Shapes::ShapeRef.new(shape: PrivateEndpointOverrides, location_name: "privateEndpointOverrides"))
|
|
2249
|
+
CustomOauth2ProviderConfigOutput.add_member(:private_key_jwt_config, Shapes::ShapeRef.new(shape: PrivateKeyJwtConfig, location_name: "privateKeyJwtConfig"))
|
|
2238
2250
|
CustomOauth2ProviderConfigOutput.struct_class = Types::CustomOauth2ProviderConfigOutput
|
|
2239
2251
|
|
|
2240
2252
|
CustomParameterMap.key = Shapes::ShapeRef.new(shape: String)
|
|
@@ -3691,6 +3703,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
3691
3703
|
KmsConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
3692
3704
|
KmsConfiguration.struct_class = Types::KmsConfiguration
|
|
3693
3705
|
|
|
3706
|
+
KmsKeySourceType.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, required: true, location_name: "kmsKeyArn"))
|
|
3707
|
+
KmsKeySourceType.struct_class = Types::KmsKeySourceType
|
|
3708
|
+
|
|
3694
3709
|
LambdaEvaluatorConfig.add_member(:lambda_arn, Shapes::ShapeRef.new(shape: LambdaArn, required: true, location_name: "lambdaArn"))
|
|
3695
3710
|
LambdaEvaluatorConfig.add_member(:lambda_timeout_in_seconds, Shapes::ShapeRef.new(shape: LambdaEvaluatorConfigLambdaTimeoutInSecondsInteger, location_name: "lambdaTimeoutInSeconds"))
|
|
3696
3711
|
LambdaEvaluatorConfig.struct_class = Types::LambdaEvaluatorConfig
|
|
@@ -4570,6 +4585,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
4570
4585
|
|
|
4571
4586
|
PrivateEndpointOverrides.member = Shapes::ShapeRef.new(shape: PrivateEndpointOverride)
|
|
4572
4587
|
|
|
4588
|
+
PrivateKeyJwtConfig.add_member(:private_key_source, Shapes::ShapeRef.new(shape: PrivateKeySource, location_name: "privateKeySource"))
|
|
4589
|
+
PrivateKeyJwtConfig.add_member(:signing_algorithm, Shapes::ShapeRef.new(shape: SigningAlgorithm, location_name: "signingAlgorithm"))
|
|
4590
|
+
PrivateKeyJwtConfig.add_member(:additional_header_claims, Shapes::ShapeRef.new(shape: AdditionalClaims, location_name: "additionalHeaderClaims"))
|
|
4591
|
+
PrivateKeyJwtConfig.add_member(:additional_payload_claims, Shapes::ShapeRef.new(shape: AdditionalClaims, location_name: "additionalPayloadClaims"))
|
|
4592
|
+
PrivateKeyJwtConfig.struct_class = Types::PrivateKeyJwtConfig
|
|
4593
|
+
|
|
4594
|
+
PrivateKeySource.add_member(:kms_key_source, Shapes::ShapeRef.new(shape: KmsKeySourceType, location_name: "kmsKeySource"))
|
|
4595
|
+
PrivateKeySource.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
4596
|
+
PrivateKeySource.add_member_subclass(:kms_key_source, Types::PrivateKeySource::KmsKeySource)
|
|
4597
|
+
PrivateKeySource.add_member_subclass(:unknown, Types::PrivateKeySource::Unknown)
|
|
4598
|
+
PrivateKeySource.struct_class = Types::PrivateKeySource
|
|
4599
|
+
|
|
4573
4600
|
ProtocolConfiguration.add_member(:server_protocol, Shapes::ShapeRef.new(shape: ServerProtocol, required: true, location_name: "serverProtocol"))
|
|
4574
4601
|
ProtocolConfiguration.struct_class = Types::ProtocolConfiguration
|
|
4575
4602
|
|
|
@@ -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]
|
|
4921
|
-
#
|
|
4922
|
-
#
|
|
4923
|
-
#
|
|
4924
|
-
#
|
|
4925
|
-
#
|
|
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
|
-
:
|
|
4937
|
-
:client_authentication_method)
|
|
4953
|
+
:private_key_jwt_config)
|
|
4938
4954
|
SENSITIVE = []
|
|
4939
4955
|
include Aws::Structure
|
|
4940
4956
|
end
|
|
@@ -11641,6 +11657,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
11641
11657
|
include Aws::Structure
|
|
11642
11658
|
end
|
|
11643
11659
|
|
|
11660
|
+
# Contains the KMS key configuration for a JWT client assertion.
|
|
11661
|
+
#
|
|
11662
|
+
# @!attribute [rw] kms_key_arn
|
|
11663
|
+
# The Amazon Resource Name (ARN) of the KMS key used to sign the JWT
|
|
11664
|
+
# client assertion. The key must be an asymmetric key with key usage
|
|
11665
|
+
# SIGN\_VERIFY and a key spec compatible with the configured signing
|
|
11666
|
+
# algorithm.
|
|
11667
|
+
# @return [String]
|
|
11668
|
+
#
|
|
11669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/KmsKeySourceType AWS API Documentation
|
|
11670
|
+
#
|
|
11671
|
+
class KmsKeySourceType < Struct.new(
|
|
11672
|
+
:kms_key_arn)
|
|
11673
|
+
SENSITIVE = []
|
|
11674
|
+
include Aws::Structure
|
|
11675
|
+
end
|
|
11676
|
+
|
|
11644
11677
|
# Configuration for a Lambda function used as a code-based evaluator.
|
|
11645
11678
|
#
|
|
11646
11679
|
# @!attribute [rw] lambda_arn
|
|
@@ -15760,6 +15793,67 @@ module Aws::BedrockAgentCoreControl
|
|
|
15760
15793
|
include Aws::Structure
|
|
15761
15794
|
end
|
|
15762
15795
|
|
|
15796
|
+
# Configuration for private\_key\_jwt client authentication (RFC 7523).
|
|
15797
|
+
# On Create: privateKeySource and signingAlgorithm are required
|
|
15798
|
+
# (enforced server-side). On Update: all fields are optional — only
|
|
15799
|
+
# provided fields are updated.
|
|
15800
|
+
#
|
|
15801
|
+
# @!attribute [rw] private_key_source
|
|
15802
|
+
# The private key source for the JWT client assertion.
|
|
15803
|
+
# @return [Types::PrivateKeySource]
|
|
15804
|
+
#
|
|
15805
|
+
# @!attribute [rw] signing_algorithm
|
|
15806
|
+
# The algorithm used to sign the JWT client assertion. Valid values
|
|
15807
|
+
# are `RS256`, `PS256`, and `ES256`.
|
|
15808
|
+
# @return [String]
|
|
15809
|
+
#
|
|
15810
|
+
# @!attribute [rw] additional_header_claims
|
|
15811
|
+
# A map of additional claims to include in the JWT client assertion
|
|
15812
|
+
# header. Standard header claims such as `alg` and `typ` cannot be
|
|
15813
|
+
# added.
|
|
15814
|
+
# @return [Hash<String,String>]
|
|
15815
|
+
#
|
|
15816
|
+
# @!attribute [rw] additional_payload_claims
|
|
15817
|
+
# A map of additional claims to include in the JWT client assertion
|
|
15818
|
+
# payload. Payload claims generated by the service, such as `iss`,
|
|
15819
|
+
# `sub`, `jti`, and `exp`, cannot be added.
|
|
15820
|
+
# @return [Hash<String,String>]
|
|
15821
|
+
#
|
|
15822
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PrivateKeyJwtConfig AWS API Documentation
|
|
15823
|
+
#
|
|
15824
|
+
class PrivateKeyJwtConfig < Struct.new(
|
|
15825
|
+
:private_key_source,
|
|
15826
|
+
:signing_algorithm,
|
|
15827
|
+
:additional_header_claims,
|
|
15828
|
+
:additional_payload_claims)
|
|
15829
|
+
SENSITIVE = [:additional_header_claims, :additional_payload_claims]
|
|
15830
|
+
include Aws::Structure
|
|
15831
|
+
end
|
|
15832
|
+
|
|
15833
|
+
# Contains the private key source configuration for a JWT client
|
|
15834
|
+
# assertion.
|
|
15835
|
+
#
|
|
15836
|
+
# @note PrivateKeySource is a union - when making an API calls you must set exactly one of the members.
|
|
15837
|
+
#
|
|
15838
|
+
# @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.
|
|
15839
|
+
#
|
|
15840
|
+
# @!attribute [rw] kms_key_source
|
|
15841
|
+
# The KMS key source for the JWT client assertion.
|
|
15842
|
+
# @return [Types::KmsKeySourceType]
|
|
15843
|
+
#
|
|
15844
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PrivateKeySource AWS API Documentation
|
|
15845
|
+
#
|
|
15846
|
+
class PrivateKeySource < Struct.new(
|
|
15847
|
+
:kms_key_source,
|
|
15848
|
+
:unknown)
|
|
15849
|
+
SENSITIVE = []
|
|
15850
|
+
include Aws::Structure
|
|
15851
|
+
include Aws::Structure::Union
|
|
15852
|
+
|
|
15853
|
+
class KmsKeySource < PrivateKeySource; end
|
|
15854
|
+
class Unknown < PrivateKeySource; end
|
|
15855
|
+
end
|
|
15856
|
+
|
|
15763
15857
|
# The protocol configuration for an agent runtime. This structure
|
|
15764
15858
|
# defines how the agent runtime communicates with clients.
|
|
15765
15859
|
#
|
data/sig/params.rbs
CHANGED
|
@@ -871,6 +871,17 @@ module Aws
|
|
|
871
871
|
}?
|
|
872
872
|
}
|
|
873
873
|
|
|
874
|
+
type private_key_jwt_config = {
|
|
875
|
+
private_key_source: {
|
|
876
|
+
kms_key_source: {
|
|
877
|
+
kms_key_arn: ::String
|
|
878
|
+
}?
|
|
879
|
+
}?,
|
|
880
|
+
signing_algorithm: ("RS256" | "PS256" | "ES256")?,
|
|
881
|
+
additional_header_claims: Hash[::String, ::String]?,
|
|
882
|
+
additional_payload_claims: Hash[::String, ::String]?
|
|
883
|
+
}
|
|
884
|
+
|
|
874
885
|
type custom_oauth_2_provider_config_input = {
|
|
875
886
|
oauth_discovery: Params::oauth_2_discovery,
|
|
876
887
|
client_id: ::String?,
|
|
@@ -887,7 +898,8 @@ module Aws
|
|
|
887
898
|
actor_token_scopes: Array[::String]?
|
|
888
899
|
}?
|
|
889
900
|
}?,
|
|
890
|
-
client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")?,
|
|
901
|
+
client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT" | "PRIVATE_KEY_JWT")?,
|
|
902
|
+
private_key_jwt_config: Params::private_key_jwt_config?,
|
|
891
903
|
private_endpoint: Params::private_endpoint?,
|
|
892
904
|
private_endpoint_overrides: Array[
|
|
893
905
|
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
|
|
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
|
|
|
@@ -3187,6 +3189,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
3187
3189
|
SENSITIVE: []
|
|
3188
3190
|
end
|
|
3189
3191
|
|
|
3192
|
+
class KmsKeySourceType
|
|
3193
|
+
attr_accessor kms_key_arn: ::String
|
|
3194
|
+
SENSITIVE: []
|
|
3195
|
+
end
|
|
3196
|
+
|
|
3190
3197
|
class LambdaEvaluatorConfig
|
|
3191
3198
|
attr_accessor lambda_arn: ::String
|
|
3192
3199
|
attr_accessor lambda_timeout_in_seconds: ::Integer
|
|
@@ -4370,6 +4377,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
4370
4377
|
SENSITIVE: []
|
|
4371
4378
|
end
|
|
4372
4379
|
|
|
4380
|
+
class PrivateKeyJwtConfig
|
|
4381
|
+
attr_accessor private_key_source: Types::PrivateKeySource
|
|
4382
|
+
attr_accessor signing_algorithm: ("RS256" | "PS256" | "ES256")
|
|
4383
|
+
attr_accessor additional_header_claims: ::Hash[::String, ::String]
|
|
4384
|
+
attr_accessor additional_payload_claims: ::Hash[::String, ::String]
|
|
4385
|
+
SENSITIVE: []
|
|
4386
|
+
end
|
|
4387
|
+
|
|
4388
|
+
class PrivateKeySource
|
|
4389
|
+
attr_accessor kms_key_source: Types::KmsKeySourceType
|
|
4390
|
+
attr_accessor unknown: untyped
|
|
4391
|
+
SENSITIVE: []
|
|
4392
|
+
|
|
4393
|
+
class KmsKeySource < PrivateKeySource
|
|
4394
|
+
end
|
|
4395
|
+
class Unknown < PrivateKeySource
|
|
4396
|
+
end
|
|
4397
|
+
end
|
|
4398
|
+
|
|
4373
4399
|
class ProtocolConfiguration
|
|
4374
4400
|
attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A" | "AGUI")
|
|
4375
4401
|
SENSITIVE: []
|