aws-sdk-bedrockagentcorecontrol 1.58.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +122 -18
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +59 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +230 -10
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +8 -0
- data/sig/params.rbs +26 -1
- data/sig/types.rbs +61 -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,16 @@
|
|
|
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
|
+
|
|
9
|
+
1.59.0 (2026-07-23)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for the Bring Your Own Storage(BYOS) feature in AgentCore Browser and Code Interpreter. Enables mounting S3Files and EFS File Systems via Access points.
|
|
13
|
+
|
|
4
14
|
1.58.0 (2026-07-20)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.60.0
|
|
@@ -921,6 +921,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
921
921
|
# @option params [Array<Types::Certificate>] :certificates
|
|
922
922
|
# A list of certificates to install in the browser.
|
|
923
923
|
#
|
|
924
|
+
# @option params [Array<Types::ToolsFileSystemConfiguration>] :filesystem_configurations
|
|
925
|
+
# The file system configurations to mount into the browser. Use these
|
|
926
|
+
# configurations to mount your own Amazon Simple Storage Service (Amazon
|
|
927
|
+
# S3) Files or Amazon Elastic File System (Amazon EFS) access points.
|
|
928
|
+
# Your sessions can then access your data. If you don't specify this
|
|
929
|
+
# field, no file systems are mounted.
|
|
930
|
+
#
|
|
924
931
|
# @option params [String] :client_token
|
|
925
932
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
926
933
|
# completes no more than one time. If this token matches a previous
|
|
@@ -988,6 +995,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
988
995
|
# },
|
|
989
996
|
# },
|
|
990
997
|
# ],
|
|
998
|
+
# filesystem_configurations: [
|
|
999
|
+
# {
|
|
1000
|
+
# s3_files_configuration: {
|
|
1001
|
+
# access_point_arn: "S3FilesAccessPointArn", # required
|
|
1002
|
+
# mount_path: "MountPath", # required
|
|
1003
|
+
# file_system_arn: "S3FilesFileSystemArn", # required
|
|
1004
|
+
# },
|
|
1005
|
+
# efs_configuration: {
|
|
1006
|
+
# access_point_arn: "EfsAccessPointArn", # required
|
|
1007
|
+
# mount_path: "MountPath", # required
|
|
1008
|
+
# file_system_arn: "EfsFileSystemArn", # required
|
|
1009
|
+
# },
|
|
1010
|
+
# },
|
|
1011
|
+
# ],
|
|
991
1012
|
# client_token: "ClientToken",
|
|
992
1013
|
# tags: {
|
|
993
1014
|
# "TagKey" => "TagValue",
|
|
@@ -1092,6 +1113,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1092
1113
|
# @option params [Array<Types::Certificate>] :certificates
|
|
1093
1114
|
# A list of certificates to install in the code interpreter.
|
|
1094
1115
|
#
|
|
1116
|
+
# @option params [Array<Types::ToolsFileSystemConfiguration>] :filesystem_configurations
|
|
1117
|
+
# The file system configurations to mount into the code interpreter. Use
|
|
1118
|
+
# these configurations to mount your own Amazon Simple Storage Service
|
|
1119
|
+
# (Amazon S3) Files or Amazon Elastic File System (Amazon EFS) access
|
|
1120
|
+
# points. Your sessions can then access your data. If you don't specify
|
|
1121
|
+
# this field, no file systems are mounted.
|
|
1122
|
+
#
|
|
1095
1123
|
# @option params [String] :client_token
|
|
1096
1124
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
1097
1125
|
# completes no more than one time. If this token matches a previous
|
|
@@ -1136,6 +1164,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
1136
1164
|
# },
|
|
1137
1165
|
# },
|
|
1138
1166
|
# ],
|
|
1167
|
+
# filesystem_configurations: [
|
|
1168
|
+
# {
|
|
1169
|
+
# s3_files_configuration: {
|
|
1170
|
+
# access_point_arn: "S3FilesAccessPointArn", # required
|
|
1171
|
+
# mount_path: "MountPath", # required
|
|
1172
|
+
# file_system_arn: "S3FilesFileSystemArn", # required
|
|
1173
|
+
# },
|
|
1174
|
+
# efs_configuration: {
|
|
1175
|
+
# access_point_arn: "EfsAccessPointArn", # required
|
|
1176
|
+
# mount_path: "MountPath", # required
|
|
1177
|
+
# file_system_arn: "EfsFileSystemArn", # required
|
|
1178
|
+
# },
|
|
1179
|
+
# },
|
|
1180
|
+
# ],
|
|
1139
1181
|
# client_token: "ClientToken",
|
|
1140
1182
|
# tags: {
|
|
1141
1183
|
# "TagKey" => "TagValue",
|
|
@@ -3550,7 +3592,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
3550
3592
|
# actor_token_scopes: ["ScopeType"],
|
|
3551
3593
|
# },
|
|
3552
3594
|
# },
|
|
3553
|
-
# 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
|
+
# },
|
|
3554
3610
|
# private_endpoint: {
|
|
3555
3611
|
# self_managed_lattice_resource: {
|
|
3556
3612
|
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
@@ -3686,6 +3742,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
3686
3742
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
3687
3743
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
3688
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"
|
|
3689
3750
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
3690
3751
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
3691
3752
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
@@ -3708,11 +3769,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3708
3769
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
3709
3770
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
3710
3771
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
3711
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
3712
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
3713
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
3714
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
3715
|
-
# 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
|
|
3716
3778
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
3717
3779
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
3718
3780
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
@@ -6317,6 +6379,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6317
6379
|
# * {Types::GetBrowserResponse#browser_signing #browser_signing} => Types::BrowserSigningConfigOutput
|
|
6318
6380
|
# * {Types::GetBrowserResponse#enterprise_policies #enterprise_policies} => Array<Types::BrowserEnterprisePolicy>
|
|
6319
6381
|
# * {Types::GetBrowserResponse#certificates #certificates} => Array<Types::Certificate>
|
|
6382
|
+
# * {Types::GetBrowserResponse#filesystem_configurations #filesystem_configurations} => Array<Types::ToolsFileSystemConfiguration>
|
|
6320
6383
|
# * {Types::GetBrowserResponse#status #status} => String
|
|
6321
6384
|
# * {Types::GetBrowserResponse#failure_reason #failure_reason} => String
|
|
6322
6385
|
# * {Types::GetBrowserResponse#created_at #created_at} => Time
|
|
@@ -6353,6 +6416,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
6353
6416
|
# resp.enterprise_policies[0].type #=> String, one of "MANAGED", "RECOMMENDED"
|
|
6354
6417
|
# resp.certificates #=> Array
|
|
6355
6418
|
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
6419
|
+
# resp.filesystem_configurations #=> Array
|
|
6420
|
+
# resp.filesystem_configurations[0].s3_files_configuration.access_point_arn #=> String
|
|
6421
|
+
# resp.filesystem_configurations[0].s3_files_configuration.mount_path #=> String
|
|
6422
|
+
# resp.filesystem_configurations[0].s3_files_configuration.file_system_arn #=> String
|
|
6423
|
+
# resp.filesystem_configurations[0].efs_configuration.access_point_arn #=> String
|
|
6424
|
+
# resp.filesystem_configurations[0].efs_configuration.mount_path #=> String
|
|
6425
|
+
# resp.filesystem_configurations[0].efs_configuration.file_system_arn #=> String
|
|
6356
6426
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
6357
6427
|
# resp.failure_reason #=> String
|
|
6358
6428
|
# resp.created_at #=> Time
|
|
@@ -6428,6 +6498,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6428
6498
|
# * {Types::GetCodeInterpreterResponse#network_configuration #network_configuration} => Types::CodeInterpreterNetworkConfiguration
|
|
6429
6499
|
# * {Types::GetCodeInterpreterResponse#status #status} => String
|
|
6430
6500
|
# * {Types::GetCodeInterpreterResponse#certificates #certificates} => Array<Types::Certificate>
|
|
6501
|
+
# * {Types::GetCodeInterpreterResponse#filesystem_configurations #filesystem_configurations} => Array<Types::ToolsFileSystemConfiguration>
|
|
6431
6502
|
# * {Types::GetCodeInterpreterResponse#failure_reason #failure_reason} => String
|
|
6432
6503
|
# * {Types::GetCodeInterpreterResponse#created_at #created_at} => Time
|
|
6433
6504
|
# * {Types::GetCodeInterpreterResponse#last_updated_at #last_updated_at} => Time
|
|
@@ -6454,6 +6525,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
6454
6525
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
6455
6526
|
# resp.certificates #=> Array
|
|
6456
6527
|
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
6528
|
+
# resp.filesystem_configurations #=> Array
|
|
6529
|
+
# resp.filesystem_configurations[0].s3_files_configuration.access_point_arn #=> String
|
|
6530
|
+
# resp.filesystem_configurations[0].s3_files_configuration.mount_path #=> String
|
|
6531
|
+
# resp.filesystem_configurations[0].s3_files_configuration.file_system_arn #=> String
|
|
6532
|
+
# resp.filesystem_configurations[0].efs_configuration.access_point_arn #=> String
|
|
6533
|
+
# resp.filesystem_configurations[0].efs_configuration.mount_path #=> String
|
|
6534
|
+
# resp.filesystem_configurations[0].efs_configuration.file_system_arn #=> String
|
|
6457
6535
|
# resp.failure_reason #=> String
|
|
6458
6536
|
# resp.created_at #=> Time
|
|
6459
6537
|
# resp.last_updated_at #=> Time
|
|
@@ -7491,6 +7569,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7491
7569
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
7492
7570
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
7493
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"
|
|
7494
7577
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
7495
7578
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
7496
7579
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
@@ -7513,11 +7596,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
7513
7596
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
7514
7597
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
7515
7598
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
7516
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
7517
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
7518
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
7519
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
7520
|
-
# 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
|
|
7521
7605
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
7522
7606
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
7523
7607
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
@@ -13664,7 +13748,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
13664
13748
|
# actor_token_scopes: ["ScopeType"],
|
|
13665
13749
|
# },
|
|
13666
13750
|
# },
|
|
13667
|
-
# 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
|
+
# },
|
|
13668
13766
|
# private_endpoint: {
|
|
13669
13767
|
# self_managed_lattice_resource: {
|
|
13670
13768
|
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
@@ -13798,6 +13896,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
13798
13896
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
13799
13897
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
13800
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"
|
|
13801
13904
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
13802
13905
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
13803
13906
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
@@ -13820,11 +13923,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
13820
13923
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
13821
13924
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
13822
13925
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
13823
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
13824
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
13825
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
13826
|
-
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.
|
|
13827
|
-
# 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
|
|
13828
13932
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
13829
13933
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
13830
13934
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
@@ -15021,7 +15125,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
15021
15125
|
tracer: tracer
|
|
15022
15126
|
)
|
|
15023
15127
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
15024
|
-
context[:gem_version] = '1.
|
|
15128
|
+
context[:gem_version] = '1.60.0'
|
|
15025
15129
|
Seahorse::Client::Request.new(handlers, context)
|
|
15026
15130
|
end
|
|
15027
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')
|
|
@@ -350,6 +353,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
350
353
|
DraftStatus = Shapes::StringShape.new(name: 'DraftStatus')
|
|
351
354
|
EfsAccessPointArn = Shapes::StringShape.new(name: 'EfsAccessPointArn')
|
|
352
355
|
EfsAccessPointConfiguration = Shapes::StructureShape.new(name: 'EfsAccessPointConfiguration')
|
|
356
|
+
EfsConfiguration = Shapes::StructureShape.new(name: 'EfsConfiguration')
|
|
357
|
+
EfsFileSystemArn = Shapes::StringShape.new(name: 'EfsFileSystemArn')
|
|
353
358
|
EnabledConnectors = Shapes::ListShape.new(name: 'EnabledConnectors')
|
|
354
359
|
EncryptionFailure = Shapes::StructureShape.new(name: 'EncryptionFailure')
|
|
355
360
|
EndpointIpAddressType = Shapes::StringShape.new(name: 'EndpointIpAddressType')
|
|
@@ -637,6 +642,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
637
642
|
KinesisResourceContentConfigurationsList = Shapes::ListShape.new(name: 'KinesisResourceContentConfigurationsList')
|
|
638
643
|
KmsConfiguration = Shapes::StructureShape.new(name: 'KmsConfiguration')
|
|
639
644
|
KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
|
|
645
|
+
KmsKeySourceType = Shapes::StructureShape.new(name: 'KmsKeySourceType')
|
|
640
646
|
LambdaArn = Shapes::StringShape.new(name: 'LambdaArn')
|
|
641
647
|
LambdaEvaluatorConfig = Shapes::StructureShape.new(name: 'LambdaEvaluatorConfig')
|
|
642
648
|
LambdaEvaluatorConfigLambdaTimeoutInSecondsInteger = Shapes::IntegerShape.new(name: 'LambdaEvaluatorConfigLambdaTimeoutInSecondsInteger')
|
|
@@ -906,6 +912,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
906
912
|
PrivateEndpointOverride = Shapes::StructureShape.new(name: 'PrivateEndpointOverride')
|
|
907
913
|
PrivateEndpointOverrideDomain = Shapes::StringShape.new(name: 'PrivateEndpointOverrideDomain')
|
|
908
914
|
PrivateEndpointOverrides = Shapes::ListShape.new(name: 'PrivateEndpointOverrides')
|
|
915
|
+
PrivateKeyJwtConfig = Shapes::StructureShape.new(name: 'PrivateKeyJwtConfig')
|
|
916
|
+
PrivateKeySource = Shapes::UnionShape.new(name: 'PrivateKeySource')
|
|
909
917
|
Prompt = Shapes::StringShape.new(name: 'Prompt')
|
|
910
918
|
ProtocolConfiguration = Shapes::StructureShape.new(name: 'ProtocolConfiguration')
|
|
911
919
|
ProviderPrefix = Shapes::StructureShape.new(name: 'ProviderPrefix')
|
|
@@ -970,6 +978,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
970
978
|
S3Configuration = Shapes::StructureShape.new(name: 'S3Configuration')
|
|
971
979
|
S3FilesAccessPointArn = Shapes::StringShape.new(name: 'S3FilesAccessPointArn')
|
|
972
980
|
S3FilesAccessPointConfiguration = Shapes::StructureShape.new(name: 'S3FilesAccessPointConfiguration')
|
|
981
|
+
S3FilesConfiguration = Shapes::StructureShape.new(name: 'S3FilesConfiguration')
|
|
982
|
+
S3FilesFileSystemArn = Shapes::StringShape.new(name: 'S3FilesFileSystemArn')
|
|
973
983
|
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
|
974
984
|
S3LocationBucketString = Shapes::StringShape.new(name: 'S3LocationBucketString')
|
|
975
985
|
S3LocationPrefixString = Shapes::StringShape.new(name: 'S3LocationPrefixString')
|
|
@@ -1024,6 +1034,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1024
1034
|
SessionStorageConfiguration = Shapes::StructureShape.new(name: 'SessionStorageConfiguration')
|
|
1025
1035
|
SetTokenVaultCMKRequest = Shapes::StructureShape.new(name: 'SetTokenVaultCMKRequest')
|
|
1026
1036
|
SetTokenVaultCMKResponse = Shapes::StructureShape.new(name: 'SetTokenVaultCMKResponse')
|
|
1037
|
+
SigningAlgorithm = Shapes::StringShape.new(name: 'SigningAlgorithm')
|
|
1027
1038
|
SkillDefinition = Shapes::StructureShape.new(name: 'SkillDefinition')
|
|
1028
1039
|
SkillMdDefinition = Shapes::StructureShape.new(name: 'SkillMdDefinition')
|
|
1029
1040
|
SlackOauth2ProviderConfigInput = Shapes::StructureShape.new(name: 'SlackOauth2ProviderConfigInput')
|
|
@@ -1113,6 +1124,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1113
1124
|
ToolSchema = Shapes::UnionShape.new(name: 'ToolSchema')
|
|
1114
1125
|
ToolSecretArn = Shapes::StringShape.new(name: 'ToolSecretArn')
|
|
1115
1126
|
ToolsDefinition = Shapes::StructureShape.new(name: 'ToolsDefinition')
|
|
1127
|
+
ToolsFileSystemConfiguration = Shapes::UnionShape.new(name: 'ToolsFileSystemConfiguration')
|
|
1128
|
+
ToolsFileSystemConfigurations = Shapes::ListShape.new(name: 'ToolsFileSystemConfigurations')
|
|
1116
1129
|
TopK = Shapes::IntegerShape.new(name: 'TopK')
|
|
1117
1130
|
TopP = Shapes::FloatShape.new(name: 'TopP')
|
|
1118
1131
|
TrafficSplitEntries = Shapes::ListShape.new(name: 'TrafficSplitEntries')
|
|
@@ -1264,6 +1277,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1264
1277
|
AddDatasetExamplesResponse.add_member(:example_ids, Shapes::ShapeRef.new(shape: ExampleIdList, required: true, location_name: "exampleIds"))
|
|
1265
1278
|
AddDatasetExamplesResponse.struct_class = Types::AddDatasetExamplesResponse
|
|
1266
1279
|
|
|
1280
|
+
AdditionalClaims.key = Shapes::ShapeRef.new(shape: AdditionalClaimName)
|
|
1281
|
+
AdditionalClaims.value = Shapes::ShapeRef.new(shape: AdditionalClaimValue)
|
|
1282
|
+
|
|
1267
1283
|
AdvertisedScopeMappingType.key = Shapes::ShapeRef.new(shape: AllowedScopeType)
|
|
1268
1284
|
AdvertisedScopeMappingType.value = Shapes::ShapeRef.new(shape: AllowedScopeType)
|
|
1269
1285
|
|
|
@@ -1715,6 +1731,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1715
1731
|
CreateBrowserRequest.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigInput, location_name: "browserSigning"))
|
|
1716
1732
|
CreateBrowserRequest.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
|
|
1717
1733
|
CreateBrowserRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
1734
|
+
CreateBrowserRequest.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
1718
1735
|
CreateBrowserRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1719
1736
|
CreateBrowserRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
1720
1737
|
CreateBrowserRequest.struct_class = Types::CreateBrowserRequest
|
|
@@ -1730,6 +1747,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1730
1747
|
CreateCodeInterpreterRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
|
|
1731
1748
|
CreateCodeInterpreterRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
1732
1749
|
CreateCodeInterpreterRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
1750
|
+
CreateCodeInterpreterRequest.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
1733
1751
|
CreateCodeInterpreterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1734
1752
|
CreateCodeInterpreterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
1735
1753
|
CreateCodeInterpreterRequest.struct_class = Types::CreateCodeInterpreterRequest
|
|
@@ -2217,16 +2235,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
2217
2235
|
CustomOauth2ProviderConfigInput.add_member(:client_secret_source, Shapes::ShapeRef.new(shape: SecretSourceType, location_name: "clientSecretSource"))
|
|
2218
2236
|
CustomOauth2ProviderConfigInput.add_member(:on_behalf_of_token_exchange_config, Shapes::ShapeRef.new(shape: OnBehalfOfTokenExchangeConfigType, location_name: "onBehalfOfTokenExchangeConfig"))
|
|
2219
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"))
|
|
2220
2239
|
CustomOauth2ProviderConfigInput.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
|
|
2221
2240
|
CustomOauth2ProviderConfigInput.add_member(:private_endpoint_overrides, Shapes::ShapeRef.new(shape: PrivateEndpointOverrides, location_name: "privateEndpointOverrides"))
|
|
2222
2241
|
CustomOauth2ProviderConfigInput.struct_class = Types::CustomOauth2ProviderConfigInput
|
|
2223
2242
|
|
|
2224
2243
|
CustomOauth2ProviderConfigOutput.add_member(:oauth_discovery, Shapes::ShapeRef.new(shape: Oauth2Discovery, required: true, location_name: "oauthDiscovery"))
|
|
2225
2244
|
CustomOauth2ProviderConfigOutput.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientIdType, location_name: "clientId"))
|
|
2226
|
-
CustomOauth2ProviderConfigOutput.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
|
|
2227
|
-
CustomOauth2ProviderConfigOutput.add_member(:private_endpoint_overrides, Shapes::ShapeRef.new(shape: PrivateEndpointOverrides, location_name: "privateEndpointOverrides"))
|
|
2228
2245
|
CustomOauth2ProviderConfigOutput.add_member(:on_behalf_of_token_exchange_config, Shapes::ShapeRef.new(shape: OnBehalfOfTokenExchangeConfigType, location_name: "onBehalfOfTokenExchangeConfig"))
|
|
2229
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"))
|
|
2230
2250
|
CustomOauth2ProviderConfigOutput.struct_class = Types::CustomOauth2ProviderConfigOutput
|
|
2231
2251
|
|
|
2232
2252
|
CustomParameterMap.key = Shapes::ShapeRef.new(shape: String)
|
|
@@ -2532,6 +2552,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2532
2552
|
EfsAccessPointConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
2533
2553
|
EfsAccessPointConfiguration.struct_class = Types::EfsAccessPointConfiguration
|
|
2534
2554
|
|
|
2555
|
+
EfsConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: EfsAccessPointArn, required: true, location_name: "accessPointArn"))
|
|
2556
|
+
EfsConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
2557
|
+
EfsConfiguration.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: EfsFileSystemArn, required: true, location_name: "fileSystemArn"))
|
|
2558
|
+
EfsConfiguration.struct_class = Types::EfsConfiguration
|
|
2559
|
+
|
|
2535
2560
|
EnabledConnectors.member = Shapes::ShapeRef.new(shape: String)
|
|
2536
2561
|
|
|
2537
2562
|
EncryptionFailure.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
@@ -2831,6 +2856,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2831
2856
|
GetBrowserResponse.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigOutput, location_name: "browserSigning"))
|
|
2832
2857
|
GetBrowserResponse.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
|
|
2833
2858
|
GetBrowserResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
2859
|
+
GetBrowserResponse.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
2834
2860
|
GetBrowserResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserStatus, required: true, location_name: "status"))
|
|
2835
2861
|
GetBrowserResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
|
|
2836
2862
|
GetBrowserResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
@@ -2848,6 +2874,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2848
2874
|
GetCodeInterpreterResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
2849
2875
|
GetCodeInterpreterResponse.add_member(:status, Shapes::ShapeRef.new(shape: CodeInterpreterStatus, required: true, location_name: "status"))
|
|
2850
2876
|
GetCodeInterpreterResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
2877
|
+
GetCodeInterpreterResponse.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
|
|
2851
2878
|
GetCodeInterpreterResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
|
|
2852
2879
|
GetCodeInterpreterResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
2853
2880
|
GetCodeInterpreterResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
|
|
@@ -3676,6 +3703,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
3676
3703
|
KmsConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
3677
3704
|
KmsConfiguration.struct_class = Types::KmsConfiguration
|
|
3678
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
|
+
|
|
3679
3709
|
LambdaEvaluatorConfig.add_member(:lambda_arn, Shapes::ShapeRef.new(shape: LambdaArn, required: true, location_name: "lambdaArn"))
|
|
3680
3710
|
LambdaEvaluatorConfig.add_member(:lambda_timeout_in_seconds, Shapes::ShapeRef.new(shape: LambdaEvaluatorConfigLambdaTimeoutInSecondsInteger, location_name: "lambdaTimeoutInSeconds"))
|
|
3681
3711
|
LambdaEvaluatorConfig.struct_class = Types::LambdaEvaluatorConfig
|
|
@@ -4555,6 +4585,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
4555
4585
|
|
|
4556
4586
|
PrivateEndpointOverrides.member = Shapes::ShapeRef.new(shape: PrivateEndpointOverride)
|
|
4557
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
|
+
|
|
4558
4600
|
ProtocolConfiguration.add_member(:server_protocol, Shapes::ShapeRef.new(shape: ServerProtocol, required: true, location_name: "serverProtocol"))
|
|
4559
4601
|
ProtocolConfiguration.struct_class = Types::ProtocolConfiguration
|
|
4560
4602
|
|
|
@@ -4704,6 +4746,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4704
4746
|
S3FilesAccessPointConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
4705
4747
|
S3FilesAccessPointConfiguration.struct_class = Types::S3FilesAccessPointConfiguration
|
|
4706
4748
|
|
|
4749
|
+
S3FilesConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3FilesAccessPointArn, required: true, location_name: "accessPointArn"))
|
|
4750
|
+
S3FilesConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
4751
|
+
S3FilesConfiguration.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: S3FilesFileSystemArn, required: true, location_name: "fileSystemArn"))
|
|
4752
|
+
S3FilesConfiguration.struct_class = Types::S3FilesConfiguration
|
|
4753
|
+
|
|
4707
4754
|
S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: S3LocationBucketString, required: true, location_name: "bucket"))
|
|
4708
4755
|
S3Location.add_member(:prefix, Shapes::ShapeRef.new(shape: S3LocationPrefixString, required: true, location_name: "prefix"))
|
|
4709
4756
|
S3Location.add_member(:version_id, Shapes::ShapeRef.new(shape: S3LocationVersionIdString, location_name: "versionId"))
|
|
@@ -5058,6 +5105,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
5058
5105
|
ToolsDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
|
|
5059
5106
|
ToolsDefinition.struct_class = Types::ToolsDefinition
|
|
5060
5107
|
|
|
5108
|
+
ToolsFileSystemConfiguration.add_member(:s3_files_configuration, Shapes::ShapeRef.new(shape: S3FilesConfiguration, location_name: "s3FilesConfiguration"))
|
|
5109
|
+
ToolsFileSystemConfiguration.add_member(:efs_configuration, Shapes::ShapeRef.new(shape: EfsConfiguration, location_name: "efsConfiguration"))
|
|
5110
|
+
ToolsFileSystemConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
5111
|
+
ToolsFileSystemConfiguration.add_member_subclass(:s3_files_configuration, Types::ToolsFileSystemConfiguration::S3FilesConfiguration)
|
|
5112
|
+
ToolsFileSystemConfiguration.add_member_subclass(:efs_configuration, Types::ToolsFileSystemConfiguration::EfsConfiguration)
|
|
5113
|
+
ToolsFileSystemConfiguration.add_member_subclass(:unknown, Types::ToolsFileSystemConfiguration::Unknown)
|
|
5114
|
+
ToolsFileSystemConfiguration.struct_class = Types::ToolsFileSystemConfiguration
|
|
5115
|
+
|
|
5116
|
+
ToolsFileSystemConfigurations.member = Shapes::ShapeRef.new(shape: ToolsFileSystemConfiguration)
|
|
5117
|
+
|
|
5061
5118
|
TrafficSplitEntries.member = Shapes::ShapeRef.new(shape: TrafficSplitEntry)
|
|
5062
5119
|
|
|
5063
5120
|
TrafficSplitEntry.add_member(:name, Shapes::ShapeRef.new(shape: TrafficSplitEntryNameString, required: true, location_name: "name"))
|
|
@@ -2106,6 +2106,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2106
2106
|
# A list of certificates to install in the browser.
|
|
2107
2107
|
# @return [Array<Types::Certificate>]
|
|
2108
2108
|
#
|
|
2109
|
+
# @!attribute [rw] filesystem_configurations
|
|
2110
|
+
# The file system configurations to mount into the browser. Use these
|
|
2111
|
+
# configurations to mount your own Amazon Simple Storage Service
|
|
2112
|
+
# (Amazon S3) Files or Amazon Elastic File System (Amazon EFS) access
|
|
2113
|
+
# points. Your sessions can then access your data. If you don't
|
|
2114
|
+
# specify this field, no file systems are mounted.
|
|
2115
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
2116
|
+
#
|
|
2109
2117
|
# @!attribute [rw] client_token
|
|
2110
2118
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
2111
2119
|
# completes no more than one time. If this token matches a previous
|
|
@@ -2133,6 +2141,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2133
2141
|
:browser_signing,
|
|
2134
2142
|
:enterprise_policies,
|
|
2135
2143
|
:certificates,
|
|
2144
|
+
:filesystem_configurations,
|
|
2136
2145
|
:client_token,
|
|
2137
2146
|
:tags)
|
|
2138
2147
|
SENSITIVE = [:description]
|
|
@@ -2190,6 +2199,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2190
2199
|
# A list of certificates to install in the code interpreter.
|
|
2191
2200
|
# @return [Array<Types::Certificate>]
|
|
2192
2201
|
#
|
|
2202
|
+
# @!attribute [rw] filesystem_configurations
|
|
2203
|
+
# The file system configurations to mount into the code interpreter.
|
|
2204
|
+
# Use these configurations to mount your own Amazon Simple Storage
|
|
2205
|
+
# Service (Amazon S3) Files or Amazon Elastic File System (Amazon EFS)
|
|
2206
|
+
# access points. Your sessions can then access your data. If you
|
|
2207
|
+
# don't specify this field, no file systems are mounted.
|
|
2208
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
2209
|
+
#
|
|
2193
2210
|
# @!attribute [rw] client_token
|
|
2194
2211
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
2195
2212
|
# completes no more than one time. If this token matches a previous
|
|
@@ -2214,6 +2231,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2214
2231
|
:execution_role_arn,
|
|
2215
2232
|
:network_configuration,
|
|
2216
2233
|
:certificates,
|
|
2234
|
+
:filesystem_configurations,
|
|
2217
2235
|
:client_token,
|
|
2218
2236
|
:tags)
|
|
2219
2237
|
SENSITIVE = [:description]
|
|
@@ -4851,6 +4869,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
4851
4869
|
# token endpoint.
|
|
4852
4870
|
# @return [String]
|
|
4853
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
|
+
#
|
|
4854
4879
|
# @!attribute [rw] private_endpoint
|
|
4855
4880
|
# The default private endpoint for the custom OAuth2 provider,
|
|
4856
4881
|
# enabling secure connectivity through a VPC Lattice resource
|
|
@@ -4872,6 +4897,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4872
4897
|
:client_secret_source,
|
|
4873
4898
|
:on_behalf_of_token_exchange_config,
|
|
4874
4899
|
:client_authentication_method,
|
|
4900
|
+
:private_key_jwt_config,
|
|
4875
4901
|
:private_endpoint,
|
|
4876
4902
|
:private_endpoint_overrides)
|
|
4877
4903
|
SENSITIVE = [:client_secret]
|
|
@@ -4888,6 +4914,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
4888
4914
|
# The client ID for the custom OAuth2 provider.
|
|
4889
4915
|
# @return [String]
|
|
4890
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
|
+
#
|
|
4891
4926
|
# @!attribute [rw] private_endpoint
|
|
4892
4927
|
# The default private endpoint for the custom OAuth2 provider,
|
|
4893
4928
|
# enabling secure connectivity through a VPC Lattice resource
|
|
@@ -4899,24 +4934,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
4899
4934
|
# configuration.
|
|
4900
4935
|
# @return [Array<Types::PrivateEndpointOverride>]
|
|
4901
4936
|
#
|
|
4902
|
-
# @!attribute [rw]
|
|
4903
|
-
#
|
|
4904
|
-
#
|
|
4905
|
-
#
|
|
4906
|
-
#
|
|
4907
|
-
#
|
|
4908
|
-
# token endpoint.
|
|
4909
|
-
# @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]
|
|
4910
4943
|
#
|
|
4911
4944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomOauth2ProviderConfigOutput AWS API Documentation
|
|
4912
4945
|
#
|
|
4913
4946
|
class CustomOauth2ProviderConfigOutput < Struct.new(
|
|
4914
4947
|
:oauth_discovery,
|
|
4915
4948
|
:client_id,
|
|
4949
|
+
:on_behalf_of_token_exchange_config,
|
|
4950
|
+
:client_authentication_method,
|
|
4916
4951
|
:private_endpoint,
|
|
4917
4952
|
:private_endpoint_overrides,
|
|
4918
|
-
:
|
|
4919
|
-
:client_authentication_method)
|
|
4953
|
+
:private_key_jwt_config)
|
|
4920
4954
|
SENSITIVE = []
|
|
4921
4955
|
include Aws::Structure
|
|
4922
4956
|
end
|
|
@@ -6285,6 +6319,35 @@ module Aws::BedrockAgentCoreControl
|
|
|
6285
6319
|
include Aws::Structure
|
|
6286
6320
|
end
|
|
6287
6321
|
|
|
6322
|
+
# The configuration for mounting an Amazon Elastic File System (Amazon
|
|
6323
|
+
# EFS) access point that you own into a session.
|
|
6324
|
+
#
|
|
6325
|
+
# @!attribute [rw] access_point_arn
|
|
6326
|
+
# The Amazon Resource Name (ARN) of the Amazon Elastic File System
|
|
6327
|
+
# (Amazon EFS) access point to mount.
|
|
6328
|
+
# @return [String]
|
|
6329
|
+
#
|
|
6330
|
+
# @!attribute [rw] mount_path
|
|
6331
|
+
# The absolute path within the session at which the access point is
|
|
6332
|
+
# mounted, for example `/mnt/efs`. Each mount path must be unique
|
|
6333
|
+
# across all file system configurations in the session.
|
|
6334
|
+
# @return [String]
|
|
6335
|
+
#
|
|
6336
|
+
# @!attribute [rw] file_system_arn
|
|
6337
|
+
# The Amazon Resource Name (ARN) of the Amazon Elastic File System
|
|
6338
|
+
# (Amazon EFS) file system that owns the access point.
|
|
6339
|
+
# @return [String]
|
|
6340
|
+
#
|
|
6341
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EfsConfiguration AWS API Documentation
|
|
6342
|
+
#
|
|
6343
|
+
class EfsConfiguration < Struct.new(
|
|
6344
|
+
:access_point_arn,
|
|
6345
|
+
:mount_path,
|
|
6346
|
+
:file_system_arn)
|
|
6347
|
+
SENSITIVE = []
|
|
6348
|
+
include Aws::Structure
|
|
6349
|
+
end
|
|
6350
|
+
|
|
6288
6351
|
# Exception thrown when encryption of a secret fails.
|
|
6289
6352
|
#
|
|
6290
6353
|
# @!attribute [rw] message
|
|
@@ -7637,6 +7700,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7637
7700
|
# The list of certificates configured for the browser.
|
|
7638
7701
|
# @return [Array<Types::Certificate>]
|
|
7639
7702
|
#
|
|
7703
|
+
# @!attribute [rw] filesystem_configurations
|
|
7704
|
+
# The file system configurations mounted into the browser. Each entry
|
|
7705
|
+
# describes an access point and its mount path.
|
|
7706
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
7707
|
+
#
|
|
7640
7708
|
# @!attribute [rw] status
|
|
7641
7709
|
# The current status of the browser.
|
|
7642
7710
|
# @return [String]
|
|
@@ -7666,6 +7734,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7666
7734
|
:browser_signing,
|
|
7667
7735
|
:enterprise_policies,
|
|
7668
7736
|
:certificates,
|
|
7737
|
+
:filesystem_configurations,
|
|
7669
7738
|
:status,
|
|
7670
7739
|
:failure_reason,
|
|
7671
7740
|
:created_at,
|
|
@@ -7719,6 +7788,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7719
7788
|
# The list of certificates configured for the code interpreter.
|
|
7720
7789
|
# @return [Array<Types::Certificate>]
|
|
7721
7790
|
#
|
|
7791
|
+
# @!attribute [rw] filesystem_configurations
|
|
7792
|
+
# The file system configurations mounted into the code interpreter.
|
|
7793
|
+
# Each entry describes an access point and its mount path.
|
|
7794
|
+
# @return [Array<Types::ToolsFileSystemConfiguration>]
|
|
7795
|
+
#
|
|
7722
7796
|
# @!attribute [rw] failure_reason
|
|
7723
7797
|
# The reason for failure if the code interpreter is in a failed state.
|
|
7724
7798
|
# @return [String]
|
|
@@ -7742,6 +7816,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7742
7816
|
:network_configuration,
|
|
7743
7817
|
:status,
|
|
7744
7818
|
:certificates,
|
|
7819
|
+
:filesystem_configurations,
|
|
7745
7820
|
:failure_reason,
|
|
7746
7821
|
:created_at,
|
|
7747
7822
|
:last_updated_at)
|
|
@@ -11582,6 +11657,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
11582
11657
|
include Aws::Structure
|
|
11583
11658
|
end
|
|
11584
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
|
+
|
|
11585
11677
|
# Configuration for a Lambda function used as a code-based evaluator.
|
|
11586
11678
|
#
|
|
11587
11679
|
# @!attribute [rw] lambda_arn
|
|
@@ -15701,6 +15793,67 @@ module Aws::BedrockAgentCoreControl
|
|
|
15701
15793
|
include Aws::Structure
|
|
15702
15794
|
end
|
|
15703
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
|
+
|
|
15704
15857
|
# The protocol configuration for an agent runtime. This structure
|
|
15705
15858
|
# defines how the agent runtime communicates with clients.
|
|
15706
15859
|
#
|
|
@@ -16349,6 +16502,35 @@ module Aws::BedrockAgentCoreControl
|
|
|
16349
16502
|
include Aws::Structure
|
|
16350
16503
|
end
|
|
16351
16504
|
|
|
16505
|
+
# The configuration for mounting an Amazon Simple Storage Service
|
|
16506
|
+
# (Amazon S3) Files access point that you own into a session.
|
|
16507
|
+
#
|
|
16508
|
+
# @!attribute [rw] access_point_arn
|
|
16509
|
+
# The Amazon Resource Name (ARN) of the Amazon Simple Storage Service
|
|
16510
|
+
# (Amazon S3) Files access point to mount.
|
|
16511
|
+
# @return [String]
|
|
16512
|
+
#
|
|
16513
|
+
# @!attribute [rw] mount_path
|
|
16514
|
+
# The absolute path within the session at which the access point is
|
|
16515
|
+
# mounted, for example `/mnt/s3data`. Each mount path must be unique
|
|
16516
|
+
# across all file system configurations in the session.
|
|
16517
|
+
# @return [String]
|
|
16518
|
+
#
|
|
16519
|
+
# @!attribute [rw] file_system_arn
|
|
16520
|
+
# The Amazon Resource Name (ARN) of the Amazon Simple Storage Service
|
|
16521
|
+
# (Amazon S3) Files file system that owns the access point.
|
|
16522
|
+
# @return [String]
|
|
16523
|
+
#
|
|
16524
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/S3FilesConfiguration AWS API Documentation
|
|
16525
|
+
#
|
|
16526
|
+
class S3FilesConfiguration < Struct.new(
|
|
16527
|
+
:access_point_arn,
|
|
16528
|
+
:mount_path,
|
|
16529
|
+
:file_system_arn)
|
|
16530
|
+
SENSITIVE = []
|
|
16531
|
+
include Aws::Structure
|
|
16532
|
+
end
|
|
16533
|
+
|
|
16352
16534
|
# The Amazon S3 location for storing data. This structure defines where
|
|
16353
16535
|
# in Amazon S3 data is stored.
|
|
16354
16536
|
#
|
|
@@ -17950,6 +18132,44 @@ module Aws::BedrockAgentCoreControl
|
|
|
17950
18132
|
include Aws::Structure
|
|
17951
18133
|
end
|
|
17952
18134
|
|
|
18135
|
+
# Specifies a file system to mount into the session by providing exactly
|
|
18136
|
+
# one of the following:
|
|
18137
|
+
#
|
|
18138
|
+
# * `s3FilesConfiguration` - Mounts an Amazon Simple Storage Service
|
|
18139
|
+
# (Amazon S3) Files access point.
|
|
18140
|
+
#
|
|
18141
|
+
# * `efsConfiguration` - Mounts an Amazon Elastic File System (Amazon
|
|
18142
|
+
# EFS) access point.
|
|
18143
|
+
#
|
|
18144
|
+
# @note ToolsFileSystemConfiguration is a union - when making an API calls you must set exactly one of the members.
|
|
18145
|
+
#
|
|
18146
|
+
# @note ToolsFileSystemConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ToolsFileSystemConfiguration corresponding to the set member.
|
|
18147
|
+
#
|
|
18148
|
+
# @!attribute [rw] s3_files_configuration
|
|
18149
|
+
# The configuration for mounting your own Amazon Simple Storage
|
|
18150
|
+
# Service (Amazon S3) Files access point into the session.
|
|
18151
|
+
# @return [Types::S3FilesConfiguration]
|
|
18152
|
+
#
|
|
18153
|
+
# @!attribute [rw] efs_configuration
|
|
18154
|
+
# The configuration for mounting your own Amazon Elastic File System
|
|
18155
|
+
# (Amazon EFS) access point into the session.
|
|
18156
|
+
# @return [Types::EfsConfiguration]
|
|
18157
|
+
#
|
|
18158
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ToolsFileSystemConfiguration AWS API Documentation
|
|
18159
|
+
#
|
|
18160
|
+
class ToolsFileSystemConfiguration < Struct.new(
|
|
18161
|
+
:s3_files_configuration,
|
|
18162
|
+
:efs_configuration,
|
|
18163
|
+
:unknown)
|
|
18164
|
+
SENSITIVE = []
|
|
18165
|
+
include Aws::Structure
|
|
18166
|
+
include Aws::Structure::Union
|
|
18167
|
+
|
|
18168
|
+
class S3FilesConfiguration < ToolsFileSystemConfiguration; end
|
|
18169
|
+
class EfsConfiguration < ToolsFileSystemConfiguration; end
|
|
18170
|
+
class Unknown < ToolsFileSystemConfiguration; end
|
|
18171
|
+
end
|
|
18172
|
+
|
|
17953
18173
|
# An entry in a traffic split configuration, defining a named variant
|
|
17954
18174
|
# with a weight and configuration bundle reference.
|
|
17955
18175
|
#
|
data/sig/client.rbs
CHANGED
|
@@ -225,6 +225,9 @@ module Aws
|
|
|
225
225
|
}
|
|
226
226
|
}
|
|
227
227
|
],
|
|
228
|
+
?filesystem_configurations: Array[
|
|
229
|
+
Params::tools_file_system_configuration
|
|
230
|
+
],
|
|
228
231
|
?client_token: ::String,
|
|
229
232
|
?tags: Hash[::String, ::String]
|
|
230
233
|
) -> _CreateBrowserResponseSuccess
|
|
@@ -275,6 +278,9 @@ module Aws
|
|
|
275
278
|
}
|
|
276
279
|
}
|
|
277
280
|
],
|
|
281
|
+
?filesystem_configurations: Array[
|
|
282
|
+
Params::tools_file_system_configuration
|
|
283
|
+
],
|
|
278
284
|
?client_token: ::String,
|
|
279
285
|
?tags: Hash[::String, ::String]
|
|
280
286
|
) -> _CreateCodeInterpreterResponseSuccess
|
|
@@ -1220,6 +1226,7 @@ module Aws
|
|
|
1220
1226
|
def browser_signing: () -> Types::BrowserSigningConfigOutput
|
|
1221
1227
|
def enterprise_policies: () -> ::Array[Types::BrowserEnterprisePolicy]
|
|
1222
1228
|
def certificates: () -> ::Array[Types::Certificate]
|
|
1229
|
+
def filesystem_configurations: () -> ::Array[Types::ToolsFileSystemConfiguration]
|
|
1223
1230
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1224
1231
|
def failure_reason: () -> ::String
|
|
1225
1232
|
def created_at: () -> ::Time
|
|
@@ -1260,6 +1267,7 @@ module Aws
|
|
|
1260
1267
|
def network_configuration: () -> Types::CodeInterpreterNetworkConfiguration
|
|
1261
1268
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1262
1269
|
def certificates: () -> ::Array[Types::Certificate]
|
|
1270
|
+
def filesystem_configurations: () -> ::Array[Types::ToolsFileSystemConfiguration]
|
|
1263
1271
|
def failure_reason: () -> ::String
|
|
1264
1272
|
def created_at: () -> ::Time
|
|
1265
1273
|
def last_updated_at: () -> ::Time
|
data/sig/params.rbs
CHANGED
|
@@ -122,6 +122,19 @@ module Aws
|
|
|
122
122
|
}?
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
+
type tools_file_system_configuration = {
|
|
126
|
+
s3_files_configuration: {
|
|
127
|
+
access_point_arn: ::String,
|
|
128
|
+
mount_path: ::String,
|
|
129
|
+
file_system_arn: ::String
|
|
130
|
+
}?,
|
|
131
|
+
efs_configuration: {
|
|
132
|
+
access_point_arn: ::String,
|
|
133
|
+
mount_path: ::String,
|
|
134
|
+
file_system_arn: ::String
|
|
135
|
+
}?
|
|
136
|
+
}
|
|
137
|
+
|
|
125
138
|
type rating_scale = {
|
|
126
139
|
numerical: Array[
|
|
127
140
|
{
|
|
@@ -858,6 +871,17 @@ module Aws
|
|
|
858
871
|
}?
|
|
859
872
|
}
|
|
860
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
|
+
|
|
861
885
|
type custom_oauth_2_provider_config_input = {
|
|
862
886
|
oauth_discovery: Params::oauth_2_discovery,
|
|
863
887
|
client_id: ::String?,
|
|
@@ -874,7 +898,8 @@ module Aws
|
|
|
874
898
|
actor_token_scopes: Array[::String]?
|
|
875
899
|
}?
|
|
876
900
|
}?,
|
|
877
|
-
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?,
|
|
878
903
|
private_endpoint: Params::private_endpoint?,
|
|
879
904
|
private_endpoint_overrides: Array[
|
|
880
905
|
Params::private_endpoint_override
|
data/sig/types.rbs
CHANGED
|
@@ -608,6 +608,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
608
608
|
attr_accessor browser_signing: Types::BrowserSigningConfigInput
|
|
609
609
|
attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
|
|
610
610
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
611
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
611
612
|
attr_accessor client_token: ::String
|
|
612
613
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
613
614
|
SENSITIVE: [:description]
|
|
@@ -627,6 +628,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
627
628
|
attr_accessor execution_role_arn: ::String
|
|
628
629
|
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
|
629
630
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
631
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
630
632
|
attr_accessor client_token: ::String
|
|
631
633
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
632
634
|
SENSITIVE: [:description]
|
|
@@ -1253,7 +1255,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1253
1255
|
attr_accessor client_secret_config: Types::SecretReference
|
|
1254
1256
|
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
1255
1257
|
attr_accessor on_behalf_of_token_exchange_config: Types::OnBehalfOfTokenExchangeConfigType
|
|
1256
|
-
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
|
|
1257
1260
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1258
1261
|
attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
|
|
1259
1262
|
SENSITIVE: [:client_secret]
|
|
@@ -1262,10 +1265,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1262
1265
|
class CustomOauth2ProviderConfigOutput
|
|
1263
1266
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
|
1264
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")
|
|
1265
1270
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1266
1271
|
attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
|
|
1267
|
-
attr_accessor
|
|
1268
|
-
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
|
|
1269
1273
|
SENSITIVE: []
|
|
1270
1274
|
end
|
|
1271
1275
|
|
|
@@ -1696,6 +1700,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1696
1700
|
SENSITIVE: []
|
|
1697
1701
|
end
|
|
1698
1702
|
|
|
1703
|
+
class EfsConfiguration
|
|
1704
|
+
attr_accessor access_point_arn: ::String
|
|
1705
|
+
attr_accessor mount_path: ::String
|
|
1706
|
+
attr_accessor file_system_arn: ::String
|
|
1707
|
+
SENSITIVE: []
|
|
1708
|
+
end
|
|
1709
|
+
|
|
1699
1710
|
class EncryptionFailure
|
|
1700
1711
|
attr_accessor message: ::String
|
|
1701
1712
|
SENSITIVE: []
|
|
@@ -2072,6 +2083,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2072
2083
|
attr_accessor browser_signing: Types::BrowserSigningConfigOutput
|
|
2073
2084
|
attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
|
|
2074
2085
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
2086
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
2075
2087
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
2076
2088
|
attr_accessor failure_reason: ::String
|
|
2077
2089
|
attr_accessor created_at: ::Time
|
|
@@ -2093,6 +2105,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2093
2105
|
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
|
2094
2106
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
2095
2107
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
2108
|
+
attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
|
|
2096
2109
|
attr_accessor failure_reason: ::String
|
|
2097
2110
|
attr_accessor created_at: ::Time
|
|
2098
2111
|
attr_accessor last_updated_at: ::Time
|
|
@@ -3176,6 +3189,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
3176
3189
|
SENSITIVE: []
|
|
3177
3190
|
end
|
|
3178
3191
|
|
|
3192
|
+
class KmsKeySourceType
|
|
3193
|
+
attr_accessor kms_key_arn: ::String
|
|
3194
|
+
SENSITIVE: []
|
|
3195
|
+
end
|
|
3196
|
+
|
|
3179
3197
|
class LambdaEvaluatorConfig
|
|
3180
3198
|
attr_accessor lambda_arn: ::String
|
|
3181
3199
|
attr_accessor lambda_timeout_in_seconds: ::Integer
|
|
@@ -4359,6 +4377,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
4359
4377
|
SENSITIVE: []
|
|
4360
4378
|
end
|
|
4361
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
|
+
|
|
4362
4399
|
class ProtocolConfiguration
|
|
4363
4400
|
attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A" | "AGUI")
|
|
4364
4401
|
SENSITIVE: []
|
|
@@ -4565,6 +4602,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
4565
4602
|
SENSITIVE: []
|
|
4566
4603
|
end
|
|
4567
4604
|
|
|
4605
|
+
class S3FilesConfiguration
|
|
4606
|
+
attr_accessor access_point_arn: ::String
|
|
4607
|
+
attr_accessor mount_path: ::String
|
|
4608
|
+
attr_accessor file_system_arn: ::String
|
|
4609
|
+
SENSITIVE: []
|
|
4610
|
+
end
|
|
4611
|
+
|
|
4568
4612
|
class S3Location
|
|
4569
4613
|
attr_accessor bucket: ::String
|
|
4570
4614
|
attr_accessor prefix: ::String
|
|
@@ -5035,6 +5079,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
5035
5079
|
SENSITIVE: []
|
|
5036
5080
|
end
|
|
5037
5081
|
|
|
5082
|
+
class ToolsFileSystemConfiguration
|
|
5083
|
+
attr_accessor s3_files_configuration: Types::S3FilesConfiguration
|
|
5084
|
+
attr_accessor efs_configuration: Types::EfsConfiguration
|
|
5085
|
+
attr_accessor unknown: untyped
|
|
5086
|
+
SENSITIVE: []
|
|
5087
|
+
|
|
5088
|
+
class S3FilesConfiguration < ToolsFileSystemConfiguration
|
|
5089
|
+
end
|
|
5090
|
+
class EfsConfiguration < ToolsFileSystemConfiguration
|
|
5091
|
+
end
|
|
5092
|
+
class Unknown < ToolsFileSystemConfiguration
|
|
5093
|
+
end
|
|
5094
|
+
end
|
|
5095
|
+
|
|
5038
5096
|
class TrafficSplitEntry
|
|
5039
5097
|
attr_accessor name: ::String
|
|
5040
5098
|
attr_accessor weight: ::Integer
|