aws-sdk-bedrockagentcorecontrol 1.42.0 → 1.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c439011b76ef336930345b999f24d87423c1def278eb6d81a9de0f133a3aac52
4
- data.tar.gz: ed9b6d5ad9fba1f36f4953fd2d524837e51ba7cacb9e49cdd786ff16314c2a30
3
+ metadata.gz: 4e36ac8c51465f405bbae277a054db98f8ab1d5cd4f7d615f36eb23cb4269f78
4
+ data.tar.gz: fd57a4b679e9c3353aa0acad260c3eed2adeada1bcb18c4b2614d8b09f4332a4
5
5
  SHA512:
6
- metadata.gz: fab95251cc3f45a270fb67b058d451a2da0d64be605bc656a86e8bf7c4a473c1ba0ba2ad002e0faee04caf50ac3556a6078dbb98857b90149280082e9d64c722
7
- data.tar.gz: 79c058027d62b8f92552e8692ae756c5e8b8544d0f952e8996a1bc34d9359f4c28c0d32544004c2663116f690e6e55cc903fe7e85a00b59dd9388b1f56e65018
6
+ metadata.gz: 564b3934cb86c02a7f09b86da61a5a1f2cd6798620071fdd4cd8cd840f4cfaf7d1f0a3430786ff0d59d2b89e3e28147a9c8c803a1286bab327614755f5ad9e82
7
+ data.tar.gz: 0ddfafec7b98d9637125c966ca94447bf34f4cd356a91461933907fe808f37509dd659762f49352d9be9d9f181bad3a83ba29b493d6739687064869aabe00876
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2026-05-04)
5
+ ------------------
6
+
7
+ * Feature - Amazon Bedrock AgentCore gateways now support MCP Sessions and response streaming from MCP targets. Session timeouts can be set between 15 minutes and 8 hours, and response streaming enables forwarding stream events sent by MCP targets to gateway users.
8
+
4
9
  1.42.0 (2026-04-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.43.0
@@ -1383,6 +1383,12 @@ module Aws::BedrockAgentCoreControl
1383
1383
  # supported_versions: ["McpVersion"],
1384
1384
  # instructions: "McpInstructions",
1385
1385
  # search_type: "SEMANTIC", # accepts SEMANTIC
1386
+ # session_configuration: {
1387
+ # session_timeout_in_seconds: 1,
1388
+ # },
1389
+ # streaming_configuration: {
1390
+ # enable_response_streaming: false,
1391
+ # },
1386
1392
  # },
1387
1393
  # },
1388
1394
  # authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM, NONE, AUTHENTICATE_ONLY
@@ -1484,6 +1490,8 @@ module Aws::BedrockAgentCoreControl
1484
1490
  # resp.protocol_configuration.mcp.supported_versions[0] #=> String
1485
1491
  # resp.protocol_configuration.mcp.instructions #=> String
1486
1492
  # resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
1493
+ # resp.protocol_configuration.mcp.session_configuration.session_timeout_in_seconds #=> Integer
1494
+ # resp.protocol_configuration.mcp.streaming_configuration.enable_response_streaming #=> Boolean
1487
1495
  # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE", "AUTHENTICATE_ONLY"
1488
1496
  # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
1489
1497
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
@@ -5332,6 +5340,8 @@ module Aws::BedrockAgentCoreControl
5332
5340
  # resp.protocol_configuration.mcp.supported_versions[0] #=> String
5333
5341
  # resp.protocol_configuration.mcp.instructions #=> String
5334
5342
  # resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
5343
+ # resp.protocol_configuration.mcp.session_configuration.session_timeout_in_seconds #=> Integer
5344
+ # resp.protocol_configuration.mcp.streaming_configuration.enable_response_streaming #=> Boolean
5335
5345
  # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE", "AUTHENTICATE_ONLY"
5336
5346
  # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
5337
5347
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
@@ -8878,6 +8888,12 @@ module Aws::BedrockAgentCoreControl
8878
8888
  # supported_versions: ["McpVersion"],
8879
8889
  # instructions: "McpInstructions",
8880
8890
  # search_type: "SEMANTIC", # accepts SEMANTIC
8891
+ # session_configuration: {
8892
+ # session_timeout_in_seconds: 1,
8893
+ # },
8894
+ # streaming_configuration: {
8895
+ # enable_response_streaming: false,
8896
+ # },
8881
8897
  # },
8882
8898
  # },
8883
8899
  # authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM, NONE, AUTHENTICATE_ONLY
@@ -8976,6 +8992,8 @@ module Aws::BedrockAgentCoreControl
8976
8992
  # resp.protocol_configuration.mcp.supported_versions[0] #=> String
8977
8993
  # resp.protocol_configuration.mcp.instructions #=> String
8978
8994
  # resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
8995
+ # resp.protocol_configuration.mcp.session_configuration.session_timeout_in_seconds #=> Integer
8996
+ # resp.protocol_configuration.mcp.streaming_configuration.enable_response_streaming #=> Boolean
8979
8997
  # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE", "AUTHENTICATE_ONLY"
8980
8998
  # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
8981
8999
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
@@ -11546,7 +11564,7 @@ module Aws::BedrockAgentCoreControl
11546
11564
  tracer: tracer
11547
11565
  )
11548
11566
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
11549
- context[:gem_version] = '1.42.0'
11567
+ context[:gem_version] = '1.43.0'
11550
11568
  Seahorse::Client::Request.new(handlers, context)
11551
11569
  end
11552
11570
 
@@ -806,6 +806,8 @@ module Aws::BedrockAgentCoreControl
806
806
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
807
807
  SessionConfig = Shapes::StructureShape.new(name: 'SessionConfig')
808
808
  SessionConfigSessionTimeoutMinutesInteger = Shapes::IntegerShape.new(name: 'SessionConfigSessionTimeoutMinutesInteger')
809
+ SessionConfiguration = Shapes::StructureShape.new(name: 'SessionConfiguration')
810
+ SessionConfigurationSessionTimeoutInSecondsInteger = Shapes::IntegerShape.new(name: 'SessionConfigurationSessionTimeoutInSecondsInteger')
809
811
  SessionStorageConfiguration = Shapes::StructureShape.new(name: 'SessionStorageConfiguration')
810
812
  SetTokenVaultCMKRequest = Shapes::StructureShape.new(name: 'SetTokenVaultCMKRequest')
811
813
  SetTokenVaultCMKResponse = Shapes::StructureShape.new(name: 'SetTokenVaultCMKResponse')
@@ -826,6 +828,7 @@ module Aws::BedrockAgentCoreControl
826
828
  StreamDeliveryResource = Shapes::UnionShape.new(name: 'StreamDeliveryResource')
827
829
  StreamDeliveryResources = Shapes::StructureShape.new(name: 'StreamDeliveryResources')
828
830
  StreamDeliveryResourcesList = Shapes::ListShape.new(name: 'StreamDeliveryResourcesList')
831
+ StreamingConfiguration = Shapes::StructureShape.new(name: 'StreamingConfiguration')
829
832
  String = Shapes::StringShape.new(name: 'String')
830
833
  StringListValidation = Shapes::StructureShape.new(name: 'StringListValidation')
831
834
  StringListValidationMaxItemsInteger = Shapes::IntegerShape.new(name: 'StringListValidationMaxItemsInteger')
@@ -3123,6 +3126,8 @@ module Aws::BedrockAgentCoreControl
3123
3126
  MCPGatewayConfiguration.add_member(:supported_versions, Shapes::ShapeRef.new(shape: McpSupportedVersions, location_name: "supportedVersions"))
3124
3127
  MCPGatewayConfiguration.add_member(:instructions, Shapes::ShapeRef.new(shape: McpInstructions, location_name: "instructions"))
3125
3128
  MCPGatewayConfiguration.add_member(:search_type, Shapes::ShapeRef.new(shape: SearchType, location_name: "searchType"))
3129
+ MCPGatewayConfiguration.add_member(:session_configuration, Shapes::ShapeRef.new(shape: SessionConfiguration, location_name: "sessionConfiguration"))
3130
+ MCPGatewayConfiguration.add_member(:streaming_configuration, Shapes::ShapeRef.new(shape: StreamingConfiguration, location_name: "streamingConfiguration"))
3126
3131
  MCPGatewayConfiguration.struct_class = Types::MCPGatewayConfiguration
3127
3132
 
3128
3133
  ManagedResourceDetails.add_member(:domain, Shapes::ShapeRef.new(shape: DomainName, location_name: "domain"))
@@ -3766,6 +3771,9 @@ module Aws::BedrockAgentCoreControl
3766
3771
  SessionConfig.add_member(:session_timeout_minutes, Shapes::ShapeRef.new(shape: SessionConfigSessionTimeoutMinutesInteger, required: true, location_name: "sessionTimeoutMinutes"))
3767
3772
  SessionConfig.struct_class = Types::SessionConfig
3768
3773
 
3774
+ SessionConfiguration.add_member(:session_timeout_in_seconds, Shapes::ShapeRef.new(shape: SessionConfigurationSessionTimeoutInSecondsInteger, location_name: "sessionTimeoutInSeconds"))
3775
+ SessionConfiguration.struct_class = Types::SessionConfiguration
3776
+
3769
3777
  SessionStorageConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
3770
3778
  SessionStorageConfiguration.struct_class = Types::SessionStorageConfiguration
3771
3779
 
@@ -3839,6 +3847,9 @@ module Aws::BedrockAgentCoreControl
3839
3847
 
3840
3848
  StreamDeliveryResourcesList.member = Shapes::ShapeRef.new(shape: StreamDeliveryResource)
3841
3849
 
3850
+ StreamingConfiguration.add_member(:enable_response_streaming, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableResponseStreaming"))
3851
+ StreamingConfiguration.struct_class = Types::StreamingConfiguration
3852
+
3842
3853
  StringListValidation.add_member(:allowed_values, Shapes::ShapeRef.new(shape: AllowedStringListValuesList, location_name: "allowedValues"))
3843
3854
  StringListValidation.add_member(:max_items, Shapes::ShapeRef.new(shape: StringListValidationMaxItemsInteger, location_name: "maxItems"))
3844
3855
  StringListValidation.struct_class = Types::StringListValidation
@@ -10141,12 +10141,24 @@ module Aws::BedrockAgentCoreControl
10141
10141
  # specifies how the gateway handles search operations.
10142
10142
  # @return [String]
10143
10143
  #
10144
+ # @!attribute [rw] session_configuration
10145
+ # The session configuration for the MCP gateway. This configuration
10146
+ # controls session behavior, including session timeout settings.
10147
+ # @return [Types::SessionConfiguration]
10148
+ #
10149
+ # @!attribute [rw] streaming_configuration
10150
+ # The streaming configuration for the MCP gateway. This configuration
10151
+ # controls whether response streaming is enabled for the gateway.
10152
+ # @return [Types::StreamingConfiguration]
10153
+ #
10144
10154
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MCPGatewayConfiguration AWS API Documentation
10145
10155
  #
10146
10156
  class MCPGatewayConfiguration < Struct.new(
10147
10157
  :supported_versions,
10148
10158
  :instructions,
10149
- :search_type)
10159
+ :search_type,
10160
+ :session_configuration,
10161
+ :streaming_configuration)
10150
10162
  SENSITIVE = []
10151
10163
  include Aws::Structure
10152
10164
  end
@@ -10204,9 +10216,12 @@ module Aws::BedrockAgentCoreControl
10204
10216
  # @return [Hash<String,String>]
10205
10217
  #
10206
10218
  # @!attribute [rw] routing_domain
10207
- # An intermediate publicly resolvable domain used as the VPC Lattice
10208
- # resource configuration endpoint. Required when your private endpoint
10209
- # uses a domain that is not publicly resolvable.
10219
+ # An intermediate domain to use as the resource configuration endpoint
10220
+ # instead of the actual target domain. Use this when you want to route
10221
+ # traffic through an intermediate component such as a VPC endpoint or
10222
+ # internal load balancer. For more information, see
10223
+ # xref:lattice-vpc-egress-routing-domain\[Route traffic through an
10224
+ # intermediate domain\].
10210
10225
  # @return [String]
10211
10226
  #
10212
10227
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ManagedVpcResource AWS API Documentation
@@ -11391,14 +11406,14 @@ module Aws::BedrockAgentCoreControl
11391
11406
  class Unknown < Oauth2ProviderConfigOutput; end
11392
11407
  end
11393
11408
 
11394
- # Configuration for on-behalf-of token exchange
11409
+ # Configuration for on-behalf-of token exchange.
11395
11410
  #
11396
11411
  # @!attribute [rw] grant_type
11397
11412
  # The grant type for the on-behalf-of token exchange.
11398
11413
  # @return [String]
11399
11414
  #
11400
11415
  # @!attribute [rw] token_exchange_grant_type_config
11401
- # Configuration specific to TOKEN\_EXCHANGE grant type (RFC 8693)
11416
+ # Configuration specific to the TOKEN\_EXCHANGE grant type (RFC 8693).
11402
11417
  # @return [Types::TokenExchangeGrantTypeConfigType]
11403
11418
  #
11404
11419
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OnBehalfOfTokenExchangeConfigType AWS API Documentation
@@ -12917,6 +12932,25 @@ module Aws::BedrockAgentCoreControl
12917
12932
  include Aws::Structure
12918
12933
  end
12919
12934
 
12935
+ # The session configuration for an MCP gateway. This structure defines
12936
+ # settings that control session behavior.
12937
+ #
12938
+ # @!attribute [rw] session_timeout_in_seconds
12939
+ # The session timeout in seconds. After this timeout, the session
12940
+ # expires and subsequent requests to this session will receive an
12941
+ # error. The minimum value is 900 seconds (15 minutes), the maximum
12942
+ # value is 28800 seconds (8 hours), and the default value is 3600
12943
+ # seconds (1 hour).
12944
+ # @return [Integer]
12945
+ #
12946
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SessionConfiguration AWS API Documentation
12947
+ #
12948
+ class SessionConfiguration < Struct.new(
12949
+ :session_timeout_in_seconds)
12950
+ SENSITIVE = []
12951
+ include Aws::Structure
12952
+ end
12953
+
12920
12954
  # Configuration for a session storage filesystem mounted into the
12921
12955
  # AgentCore Runtime. Session storage provides persistent storage that is
12922
12956
  # preserved across AgentCore Runtime session invocations.
@@ -13258,6 +13292,23 @@ module Aws::BedrockAgentCoreControl
13258
13292
  include Aws::Structure
13259
13293
  end
13260
13294
 
13295
+ # The streaming configuration for an MCP gateway. This structure defines
13296
+ # settings that control response streaming behavior.
13297
+ #
13298
+ # @!attribute [rw] enable_response_streaming
13299
+ # Indicates whether response streaming is enabled for the gateway.
13300
+ # When set to `true`, the gateway streams responses from targets back
13301
+ # to the client.
13302
+ # @return [Boolean]
13303
+ #
13304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StreamingConfiguration AWS API Documentation
13305
+ #
13306
+ class StreamingConfiguration < Struct.new(
13307
+ :enable_response_streaming)
13308
+ SENSITIVE = []
13309
+ include Aws::Structure
13310
+ end
13311
+
13261
13312
  # Validation for STRINGLIST fields.
13262
13313
  #
13263
13314
  # @!attribute [rw] allowed_values
@@ -13707,14 +13758,15 @@ module Aws::BedrockAgentCoreControl
13707
13758
  include Aws::Structure
13708
13759
  end
13709
13760
 
13710
- # Configuration for RFC 8693 Token Exchange
13761
+ # Configuration for RFC 8693 token exchange.
13711
13762
  #
13712
13763
  # @!attribute [rw] actor_token_content
13713
13764
  # The content type for the actor token in the token exchange.
13714
13765
  # @return [String]
13715
13766
  #
13716
13767
  # @!attribute [rw] actor_token_scopes
13717
- # Only valid when actorTokenContent is M2M
13768
+ # The scopes for the actor token. Only valid when actorTokenContent is
13769
+ # M2M.
13718
13770
  # @return [Array<String>]
13719
13771
  #
13720
13772
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TokenExchangeGrantTypeConfigType AWS API Documentation
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.42.0'
58
+ GEM_VERSION = '1.43.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -446,7 +446,13 @@ module Aws
446
446
  mcp: {
447
447
  supported_versions: Array[::String]?,
448
448
  instructions: ::String?,
449
- search_type: ("SEMANTIC")?
449
+ search_type: ("SEMANTIC")?,
450
+ session_configuration: {
451
+ session_timeout_in_seconds: ::Integer?
452
+ }?,
453
+ streaming_configuration: {
454
+ enable_response_streaming: bool?
455
+ }?
450
456
  }?
451
457
  },
452
458
  authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
@@ -3050,7 +3056,13 @@ module Aws
3050
3056
  mcp: {
3051
3057
  supported_versions: Array[::String]?,
3052
3058
  instructions: ::String?,
3053
- search_type: ("SEMANTIC")?
3059
+ search_type: ("SEMANTIC")?,
3060
+ session_configuration: {
3061
+ session_timeout_in_seconds: ::Integer?
3062
+ }?,
3063
+ streaming_configuration: {
3064
+ enable_response_streaming: bool?
3065
+ }?
3054
3066
  }?
3055
3067
  },
3056
3068
  authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
data/sig/types.rbs CHANGED
@@ -2847,6 +2847,8 @@ module Aws::BedrockAgentCoreControl
2847
2847
  attr_accessor supported_versions: ::Array[::String]
2848
2848
  attr_accessor instructions: ::String
2849
2849
  attr_accessor search_type: ("SEMANTIC")
2850
+ attr_accessor session_configuration: Types::SessionConfiguration
2851
+ attr_accessor streaming_configuration: Types::StreamingConfiguration
2850
2852
  SENSITIVE: []
2851
2853
  end
2852
2854
 
@@ -3696,6 +3698,11 @@ module Aws::BedrockAgentCoreControl
3696
3698
  SENSITIVE: []
3697
3699
  end
3698
3700
 
3701
+ class SessionConfiguration
3702
+ attr_accessor session_timeout_in_seconds: ::Integer
3703
+ SENSITIVE: []
3704
+ end
3705
+
3699
3706
  class SessionStorageConfiguration
3700
3707
  attr_accessor mount_path: ::String
3701
3708
  SENSITIVE: []
@@ -3796,6 +3803,11 @@ module Aws::BedrockAgentCoreControl
3796
3803
  SENSITIVE: []
3797
3804
  end
3798
3805
 
3806
+ class StreamingConfiguration
3807
+ attr_accessor enable_response_streaming: bool
3808
+ SENSITIVE: []
3809
+ end
3810
+
3799
3811
  class StringListValidation
3800
3812
  attr_accessor allowed_values: ::Array[::String]
3801
3813
  attr_accessor max_items: ::Integer
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.42.0
4
+ version: 1.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services