aws-sdk-bedrockagentcorecontrol 1.42.0 → 1.44.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: bb3ef92ff9f8343bb7fea02ddd4160626293488c5a1ee162424bc522e591c396
4
+ data.tar.gz: 63818fdd5ba0a575baff1e905968d51b60e43b8757ae7a7eec763198b3b373ef
5
5
  SHA512:
6
- metadata.gz: fab95251cc3f45a270fb67b058d451a2da0d64be605bc656a86e8bf7c4a473c1ba0ba2ad002e0faee04caf50ac3556a6078dbb98857b90149280082e9d64c722
7
- data.tar.gz: 79c058027d62b8f92552e8692ae756c5e8b8544d0f952e8996a1bc34d9359f4c28c0d32544004c2663116f690e6e55cc903fe7e85a00b59dd9388b1f56e65018
6
+ metadata.gz: ef8dce8cdcd60e7a76d5b887d5904b048a235c745e9ffc0b3668cea586e160733a032e12e2b7d60fa99e461b6600ac4d7995ea39fcfe7d6d7684adada2cf9032
7
+ data.tar.gz: bbb020fccc72e705a44866ed66abdab127b5782538f70adcd14e770d7bd5bbfce1a03460500350fc8f756672ad531c4b824dff28beb971d0246a69527b851d7d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.0 (2026-05-06)
5
+ ------------------
6
+
7
+ * Feature - Adds support for bring-your-own file system in AgentCore Runtime. Developers can mount Amazon S3 Files and Amazon EFS access points directly into agent sessions using filesystemConfigurations.
8
+
9
+ 1.43.0 (2026-05-04)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.42.0 (2026-04-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.44.0
@@ -640,6 +640,14 @@ module Aws::BedrockAgentCoreControl
640
640
  # session_storage: {
641
641
  # mount_path: "MountPath", # required
642
642
  # },
643
+ # s3_files_access_point: {
644
+ # access_point_arn: "S3FilesAccessPointArn", # required
645
+ # mount_path: "MountPath", # required
646
+ # },
647
+ # efs_access_point: {
648
+ # access_point_arn: "EfsAccessPointArn", # required
649
+ # mount_path: "MountPath", # required
650
+ # },
643
651
  # },
644
652
  # ],
645
653
  # tags: {
@@ -1383,6 +1391,12 @@ module Aws::BedrockAgentCoreControl
1383
1391
  # supported_versions: ["McpVersion"],
1384
1392
  # instructions: "McpInstructions",
1385
1393
  # search_type: "SEMANTIC", # accepts SEMANTIC
1394
+ # session_configuration: {
1395
+ # session_timeout_in_seconds: 1,
1396
+ # },
1397
+ # streaming_configuration: {
1398
+ # enable_response_streaming: false,
1399
+ # },
1386
1400
  # },
1387
1401
  # },
1388
1402
  # authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM, NONE, AUTHENTICATE_ONLY
@@ -1484,6 +1498,8 @@ module Aws::BedrockAgentCoreControl
1484
1498
  # resp.protocol_configuration.mcp.supported_versions[0] #=> String
1485
1499
  # resp.protocol_configuration.mcp.instructions #=> String
1486
1500
  # resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
1501
+ # resp.protocol_configuration.mcp.session_configuration.session_timeout_in_seconds #=> Integer
1502
+ # resp.protocol_configuration.mcp.streaming_configuration.enable_response_streaming #=> Boolean
1487
1503
  # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE", "AUTHENTICATE_ONLY"
1488
1504
  # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
1489
1505
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
@@ -2128,6 +2144,14 @@ module Aws::BedrockAgentCoreControl
2128
2144
  # session_storage: {
2129
2145
  # mount_path: "MountPath", # required
2130
2146
  # },
2147
+ # s3_files_access_point: {
2148
+ # access_point_arn: "S3FilesAccessPointArn", # required
2149
+ # mount_path: "MountPath", # required
2150
+ # },
2151
+ # efs_access_point: {
2152
+ # access_point_arn: "EfsAccessPointArn", # required
2153
+ # mount_path: "MountPath", # required
2154
+ # },
2131
2155
  # },
2132
2156
  # ],
2133
2157
  # },
@@ -2372,6 +2396,10 @@ module Aws::BedrockAgentCoreControl
2372
2396
  # resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
2373
2397
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
2374
2398
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
2399
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
2400
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.mount_path #=> String
2401
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.access_point_arn #=> String
2402
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.mount_path #=> String
2375
2403
  # resp.harness.environment_artifact.container_configuration.container_uri #=> String
2376
2404
  # resp.harness.environment_variables #=> Hash
2377
2405
  # resp.harness.environment_variables["EnvironmentVariableKey"] #=> String
@@ -4345,6 +4373,10 @@ module Aws::BedrockAgentCoreControl
4345
4373
  # resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
4346
4374
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
4347
4375
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
4376
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
4377
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.mount_path #=> String
4378
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.access_point_arn #=> String
4379
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.mount_path #=> String
4348
4380
  # resp.harness.environment_artifact.container_configuration.container_uri #=> String
4349
4381
  # resp.harness.environment_variables #=> Hash
4350
4382
  # resp.harness.environment_variables["EnvironmentVariableKey"] #=> String
@@ -4830,6 +4862,10 @@ module Aws::BedrockAgentCoreControl
4830
4862
  # resp.metadata_configuration.require_mmdsv2 #=> Boolean
4831
4863
  # resp.filesystem_configurations #=> Array
4832
4864
  # resp.filesystem_configurations[0].session_storage.mount_path #=> String
4865
+ # resp.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
4866
+ # resp.filesystem_configurations[0].s3_files_access_point.mount_path #=> String
4867
+ # resp.filesystem_configurations[0].efs_access_point.access_point_arn #=> String
4868
+ # resp.filesystem_configurations[0].efs_access_point.mount_path #=> String
4833
4869
  #
4834
4870
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntime AWS API Documentation
4835
4871
  #
@@ -5332,6 +5368,8 @@ module Aws::BedrockAgentCoreControl
5332
5368
  # resp.protocol_configuration.mcp.supported_versions[0] #=> String
5333
5369
  # resp.protocol_configuration.mcp.instructions #=> String
5334
5370
  # resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
5371
+ # resp.protocol_configuration.mcp.session_configuration.session_timeout_in_seconds #=> Integer
5372
+ # resp.protocol_configuration.mcp.streaming_configuration.enable_response_streaming #=> Boolean
5335
5373
  # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE", "AUTHENTICATE_ONLY"
5336
5374
  # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
5337
5375
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
@@ -5680,6 +5718,10 @@ module Aws::BedrockAgentCoreControl
5680
5718
  # resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
5681
5719
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
5682
5720
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
5721
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
5722
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.mount_path #=> String
5723
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.access_point_arn #=> String
5724
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.mount_path #=> String
5683
5725
  # resp.harness.environment_artifact.container_configuration.container_uri #=> String
5684
5726
  # resp.harness.environment_variables #=> Hash
5685
5727
  # resp.harness.environment_variables["EnvironmentVariableKey"] #=> String
@@ -8452,6 +8494,14 @@ module Aws::BedrockAgentCoreControl
8452
8494
  # session_storage: {
8453
8495
  # mount_path: "MountPath", # required
8454
8496
  # },
8497
+ # s3_files_access_point: {
8498
+ # access_point_arn: "S3FilesAccessPointArn", # required
8499
+ # mount_path: "MountPath", # required
8500
+ # },
8501
+ # efs_access_point: {
8502
+ # access_point_arn: "EfsAccessPointArn", # required
8503
+ # mount_path: "MountPath", # required
8504
+ # },
8455
8505
  # },
8456
8506
  # ],
8457
8507
  # client_token: "ClientToken",
@@ -8878,6 +8928,12 @@ module Aws::BedrockAgentCoreControl
8878
8928
  # supported_versions: ["McpVersion"],
8879
8929
  # instructions: "McpInstructions",
8880
8930
  # search_type: "SEMANTIC", # accepts SEMANTIC
8931
+ # session_configuration: {
8932
+ # session_timeout_in_seconds: 1,
8933
+ # },
8934
+ # streaming_configuration: {
8935
+ # enable_response_streaming: false,
8936
+ # },
8881
8937
  # },
8882
8938
  # },
8883
8939
  # authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM, NONE, AUTHENTICATE_ONLY
@@ -8976,6 +9032,8 @@ module Aws::BedrockAgentCoreControl
8976
9032
  # resp.protocol_configuration.mcp.supported_versions[0] #=> String
8977
9033
  # resp.protocol_configuration.mcp.instructions #=> String
8978
9034
  # resp.protocol_configuration.mcp.search_type #=> String, one of "SEMANTIC"
9035
+ # resp.protocol_configuration.mcp.session_configuration.session_timeout_in_seconds #=> Integer
9036
+ # resp.protocol_configuration.mcp.streaming_configuration.enable_response_streaming #=> Boolean
8979
9037
  # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM", "NONE", "AUTHENTICATE_ONLY"
8980
9038
  # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
8981
9039
  # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
@@ -9600,6 +9658,14 @@ module Aws::BedrockAgentCoreControl
9600
9658
  # session_storage: {
9601
9659
  # mount_path: "MountPath", # required
9602
9660
  # },
9661
+ # s3_files_access_point: {
9662
+ # access_point_arn: "S3FilesAccessPointArn", # required
9663
+ # mount_path: "MountPath", # required
9664
+ # },
9665
+ # efs_access_point: {
9666
+ # access_point_arn: "EfsAccessPointArn", # required
9667
+ # mount_path: "MountPath", # required
9668
+ # },
9603
9669
  # },
9604
9670
  # ],
9605
9671
  # },
@@ -9847,6 +9913,10 @@ module Aws::BedrockAgentCoreControl
9847
9913
  # resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
9848
9914
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
9849
9915
  # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
9916
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
9917
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.mount_path #=> String
9918
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.access_point_arn #=> String
9919
+ # resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].efs_access_point.mount_path #=> String
9850
9920
  # resp.harness.environment_artifact.container_configuration.container_uri #=> String
9851
9921
  # resp.harness.environment_variables #=> Hash
9852
9922
  # resp.harness.environment_variables["EnvironmentVariableKey"] #=> String
@@ -11546,7 +11616,7 @@ module Aws::BedrockAgentCoreControl
11546
11616
  tracer: tracer
11547
11617
  )
11548
11618
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
11549
- context[:gem_version] = '1.42.0'
11619
+ context[:gem_version] = '1.44.0'
11550
11620
  Seahorse::Client::Request.new(handlers, context)
11551
11621
  end
11552
11622
 
@@ -282,6 +282,8 @@ module Aws::BedrockAgentCoreControl
282
282
  Document = Shapes::DocumentShape.new(name: 'Document', document: true)
283
283
  DomainName = Shapes::StringShape.new(name: 'DomainName')
284
284
  Double = Shapes::FloatShape.new(name: 'Double')
285
+ EfsAccessPointArn = Shapes::StringShape.new(name: 'EfsAccessPointArn')
286
+ EfsAccessPointConfiguration = Shapes::StructureShape.new(name: 'EfsAccessPointConfiguration')
285
287
  EncryptionFailure = Shapes::StructureShape.new(name: 'EncryptionFailure')
286
288
  EndpointIpAddressType = Shapes::StringShape.new(name: 'EndpointIpAddressType')
287
289
  EndpointName = Shapes::StringShape.new(name: 'EndpointName')
@@ -763,6 +765,8 @@ module Aws::BedrockAgentCoreControl
763
765
  RuntimeTargetConfiguration = Shapes::StructureShape.new(name: 'RuntimeTargetConfiguration')
764
766
  S3BucketUri = Shapes::StringShape.new(name: 'S3BucketUri')
765
767
  S3Configuration = Shapes::StructureShape.new(name: 'S3Configuration')
768
+ S3FilesAccessPointArn = Shapes::StringShape.new(name: 'S3FilesAccessPointArn')
769
+ S3FilesAccessPointConfiguration = Shapes::StructureShape.new(name: 'S3FilesAccessPointConfiguration')
766
770
  S3Location = Shapes::StructureShape.new(name: 'S3Location')
767
771
  S3LocationBucketString = Shapes::StringShape.new(name: 'S3LocationBucketString')
768
772
  S3LocationPrefixString = Shapes::StringShape.new(name: 'S3LocationPrefixString')
@@ -806,6 +810,8 @@ module Aws::BedrockAgentCoreControl
806
810
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
807
811
  SessionConfig = Shapes::StructureShape.new(name: 'SessionConfig')
808
812
  SessionConfigSessionTimeoutMinutesInteger = Shapes::IntegerShape.new(name: 'SessionConfigSessionTimeoutMinutesInteger')
813
+ SessionConfiguration = Shapes::StructureShape.new(name: 'SessionConfiguration')
814
+ SessionConfigurationSessionTimeoutInSecondsInteger = Shapes::IntegerShape.new(name: 'SessionConfigurationSessionTimeoutInSecondsInteger')
809
815
  SessionStorageConfiguration = Shapes::StructureShape.new(name: 'SessionStorageConfiguration')
810
816
  SetTokenVaultCMKRequest = Shapes::StructureShape.new(name: 'SetTokenVaultCMKRequest')
811
817
  SetTokenVaultCMKResponse = Shapes::StructureShape.new(name: 'SetTokenVaultCMKResponse')
@@ -826,6 +832,7 @@ module Aws::BedrockAgentCoreControl
826
832
  StreamDeliveryResource = Shapes::UnionShape.new(name: 'StreamDeliveryResource')
827
833
  StreamDeliveryResources = Shapes::StructureShape.new(name: 'StreamDeliveryResources')
828
834
  StreamDeliveryResourcesList = Shapes::ListShape.new(name: 'StreamDeliveryResourcesList')
835
+ StreamingConfiguration = Shapes::StructureShape.new(name: 'StreamingConfiguration')
829
836
  String = Shapes::StringShape.new(name: 'String')
830
837
  StringListValidation = Shapes::StructureShape.new(name: 'StringListValidation')
831
838
  StringListValidationMaxItemsInteger = Shapes::IntegerShape.new(name: 'StringListValidationMaxItemsInteger')
@@ -2010,6 +2017,10 @@ module Aws::BedrockAgentCoreControl
2010
2017
  Descriptors.add_member(:agent_skills, Shapes::ShapeRef.new(shape: AgentSkillsDescriptor, location_name: "agentSkills"))
2011
2018
  Descriptors.struct_class = Types::Descriptors
2012
2019
 
2020
+ EfsAccessPointConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: EfsAccessPointArn, required: true, location_name: "accessPointArn"))
2021
+ EfsAccessPointConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
2022
+ EfsAccessPointConfiguration.struct_class = Types::EfsAccessPointConfiguration
2023
+
2013
2024
  EncryptionFailure.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
2014
2025
  EncryptionFailure.struct_class = Types::EncryptionFailure
2015
2026
 
@@ -2119,8 +2130,12 @@ module Aws::BedrockAgentCoreControl
2119
2130
  ExtractionConfiguration.struct_class = Types::ExtractionConfiguration
2120
2131
 
2121
2132
  FilesystemConfiguration.add_member(:session_storage, Shapes::ShapeRef.new(shape: SessionStorageConfiguration, location_name: "sessionStorage"))
2133
+ FilesystemConfiguration.add_member(:s3_files_access_point, Shapes::ShapeRef.new(shape: S3FilesAccessPointConfiguration, location_name: "s3FilesAccessPoint"))
2134
+ FilesystemConfiguration.add_member(:efs_access_point, Shapes::ShapeRef.new(shape: EfsAccessPointConfiguration, location_name: "efsAccessPoint"))
2122
2135
  FilesystemConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2123
2136
  FilesystemConfiguration.add_member_subclass(:session_storage, Types::FilesystemConfiguration::SessionStorage)
2137
+ FilesystemConfiguration.add_member_subclass(:s3_files_access_point, Types::FilesystemConfiguration::S3FilesAccessPoint)
2138
+ FilesystemConfiguration.add_member_subclass(:efs_access_point, Types::FilesystemConfiguration::EfsAccessPoint)
2124
2139
  FilesystemConfiguration.add_member_subclass(:unknown, Types::FilesystemConfiguration::Unknown)
2125
2140
  FilesystemConfiguration.struct_class = Types::FilesystemConfiguration
2126
2141
 
@@ -3123,6 +3138,8 @@ module Aws::BedrockAgentCoreControl
3123
3138
  MCPGatewayConfiguration.add_member(:supported_versions, Shapes::ShapeRef.new(shape: McpSupportedVersions, location_name: "supportedVersions"))
3124
3139
  MCPGatewayConfiguration.add_member(:instructions, Shapes::ShapeRef.new(shape: McpInstructions, location_name: "instructions"))
3125
3140
  MCPGatewayConfiguration.add_member(:search_type, Shapes::ShapeRef.new(shape: SearchType, location_name: "searchType"))
3141
+ MCPGatewayConfiguration.add_member(:session_configuration, Shapes::ShapeRef.new(shape: SessionConfiguration, location_name: "sessionConfiguration"))
3142
+ MCPGatewayConfiguration.add_member(:streaming_configuration, Shapes::ShapeRef.new(shape: StreamingConfiguration, location_name: "streamingConfiguration"))
3126
3143
  MCPGatewayConfiguration.struct_class = Types::MCPGatewayConfiguration
3127
3144
 
3128
3145
  ManagedResourceDetails.add_member(:domain, Shapes::ShapeRef.new(shape: DomainName, location_name: "domain"))
@@ -3670,6 +3687,10 @@ module Aws::BedrockAgentCoreControl
3670
3687
  S3Configuration.add_member(:bucket_owner_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "bucketOwnerAccountId"))
3671
3688
  S3Configuration.struct_class = Types::S3Configuration
3672
3689
 
3690
+ S3FilesAccessPointConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3FilesAccessPointArn, required: true, location_name: "accessPointArn"))
3691
+ S3FilesAccessPointConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
3692
+ S3FilesAccessPointConfiguration.struct_class = Types::S3FilesAccessPointConfiguration
3693
+
3673
3694
  S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: S3LocationBucketString, required: true, location_name: "bucket"))
3674
3695
  S3Location.add_member(:prefix, Shapes::ShapeRef.new(shape: S3LocationPrefixString, required: true, location_name: "prefix"))
3675
3696
  S3Location.add_member(:version_id, Shapes::ShapeRef.new(shape: S3LocationVersionIdString, location_name: "versionId"))
@@ -3766,6 +3787,9 @@ module Aws::BedrockAgentCoreControl
3766
3787
  SessionConfig.add_member(:session_timeout_minutes, Shapes::ShapeRef.new(shape: SessionConfigSessionTimeoutMinutesInteger, required: true, location_name: "sessionTimeoutMinutes"))
3767
3788
  SessionConfig.struct_class = Types::SessionConfig
3768
3789
 
3790
+ SessionConfiguration.add_member(:session_timeout_in_seconds, Shapes::ShapeRef.new(shape: SessionConfigurationSessionTimeoutInSecondsInteger, location_name: "sessionTimeoutInSeconds"))
3791
+ SessionConfiguration.struct_class = Types::SessionConfiguration
3792
+
3769
3793
  SessionStorageConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
3770
3794
  SessionStorageConfiguration.struct_class = Types::SessionStorageConfiguration
3771
3795
 
@@ -3839,6 +3863,9 @@ module Aws::BedrockAgentCoreControl
3839
3863
 
3840
3864
  StreamDeliveryResourcesList.member = Shapes::ShapeRef.new(shape: StreamDeliveryResource)
3841
3865
 
3866
+ StreamingConfiguration.add_member(:enable_response_streaming, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableResponseStreaming"))
3867
+ StreamingConfiguration.struct_class = Types::StreamingConfiguration
3868
+
3842
3869
  StringListValidation.add_member(:allowed_values, Shapes::ShapeRef.new(shape: AllowedStringListValuesList, location_name: "allowedValues"))
3843
3870
  StringListValidation.add_member(:max_items, Shapes::ShapeRef.new(shape: StringListValidationMaxItemsInteger, location_name: "maxItems"))
3844
3871
  StringListValidation.struct_class = Types::StringListValidation
@@ -4862,6 +4862,29 @@ module Aws::BedrockAgentCoreControl
4862
4862
  include Aws::Structure
4863
4863
  end
4864
4864
 
4865
+ # Configuration for an Amazon EFS access point filesystem mounted into
4866
+ # the AgentCore Runtime. EFS access points provide shared file storage
4867
+ # accessible from your AgentCore Runtime sessions.
4868
+ #
4869
+ # @!attribute [rw] access_point_arn
4870
+ # The ARN of the EFS access point to mount into the AgentCore Runtime.
4871
+ # @return [String]
4872
+ #
4873
+ # @!attribute [rw] mount_path
4874
+ # The mount path for the EFS access point inside the AgentCore
4875
+ # Runtime. The path must be under `/mnt` with exactly one subdirectory
4876
+ # level (for example, `/mnt/data`).
4877
+ # @return [String]
4878
+ #
4879
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EfsAccessPointConfiguration AWS API Documentation
4880
+ #
4881
+ class EfsAccessPointConfiguration < Struct.new(
4882
+ :access_point_arn,
4883
+ :mount_path)
4884
+ SENSITIVE = []
4885
+ include Aws::Structure
4886
+ end
4887
+
4865
4888
  # Exception thrown when encryption of a secret fails.
4866
4889
  #
4867
4890
  # @!attribute [rw] message
@@ -5373,16 +5396,30 @@ module Aws::BedrockAgentCoreControl
5373
5396
  # session invocations.
5374
5397
  # @return [Types::SessionStorageConfiguration]
5375
5398
  #
5399
+ # @!attribute [rw] s3_files_access_point
5400
+ # Configuration for an Amazon S3 Files access point to mount into the
5401
+ # AgentCore Runtime.
5402
+ # @return [Types::S3FilesAccessPointConfiguration]
5403
+ #
5404
+ # @!attribute [rw] efs_access_point
5405
+ # Configuration for an Amazon EFS access point to mount into the
5406
+ # AgentCore Runtime.
5407
+ # @return [Types::EfsAccessPointConfiguration]
5408
+ #
5376
5409
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/FilesystemConfiguration AWS API Documentation
5377
5410
  #
5378
5411
  class FilesystemConfiguration < Struct.new(
5379
5412
  :session_storage,
5413
+ :s3_files_access_point,
5414
+ :efs_access_point,
5380
5415
  :unknown)
5381
5416
  SENSITIVE = []
5382
5417
  include Aws::Structure
5383
5418
  include Aws::Structure::Union
5384
5419
 
5385
5420
  class SessionStorage < FilesystemConfiguration; end
5421
+ class S3FilesAccessPoint < FilesystemConfiguration; end
5422
+ class EfsAccessPoint < FilesystemConfiguration; end
5386
5423
  class Unknown < FilesystemConfiguration; end
5387
5424
  end
5388
5425
 
@@ -10141,12 +10178,24 @@ module Aws::BedrockAgentCoreControl
10141
10178
  # specifies how the gateway handles search operations.
10142
10179
  # @return [String]
10143
10180
  #
10181
+ # @!attribute [rw] session_configuration
10182
+ # The session configuration for the MCP gateway. This configuration
10183
+ # controls session behavior, including session timeout settings.
10184
+ # @return [Types::SessionConfiguration]
10185
+ #
10186
+ # @!attribute [rw] streaming_configuration
10187
+ # The streaming configuration for the MCP gateway. This configuration
10188
+ # controls whether response streaming is enabled for the gateway.
10189
+ # @return [Types::StreamingConfiguration]
10190
+ #
10144
10191
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MCPGatewayConfiguration AWS API Documentation
10145
10192
  #
10146
10193
  class MCPGatewayConfiguration < Struct.new(
10147
10194
  :supported_versions,
10148
10195
  :instructions,
10149
- :search_type)
10196
+ :search_type,
10197
+ :session_configuration,
10198
+ :streaming_configuration)
10150
10199
  SENSITIVE = []
10151
10200
  include Aws::Structure
10152
10201
  end
@@ -10204,9 +10253,12 @@ module Aws::BedrockAgentCoreControl
10204
10253
  # @return [Hash<String,String>]
10205
10254
  #
10206
10255
  # @!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.
10256
+ # An intermediate domain to use as the resource configuration endpoint
10257
+ # instead of the actual target domain. Use this when you want to route
10258
+ # traffic through an intermediate component such as a VPC endpoint or
10259
+ # internal load balancer. For more information, see
10260
+ # xref:lattice-vpc-egress-routing-domain\[Route traffic through an
10261
+ # intermediate domain\].
10210
10262
  # @return [String]
10211
10263
  #
10212
10264
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ManagedVpcResource AWS API Documentation
@@ -11391,14 +11443,14 @@ module Aws::BedrockAgentCoreControl
11391
11443
  class Unknown < Oauth2ProviderConfigOutput; end
11392
11444
  end
11393
11445
 
11394
- # Configuration for on-behalf-of token exchange
11446
+ # Configuration for on-behalf-of token exchange.
11395
11447
  #
11396
11448
  # @!attribute [rw] grant_type
11397
11449
  # The grant type for the on-behalf-of token exchange.
11398
11450
  # @return [String]
11399
11451
  #
11400
11452
  # @!attribute [rw] token_exchange_grant_type_config
11401
- # Configuration specific to TOKEN\_EXCHANGE grant type (RFC 8693)
11453
+ # Configuration specific to the TOKEN\_EXCHANGE grant type (RFC 8693).
11402
11454
  # @return [Types::TokenExchangeGrantTypeConfigType]
11403
11455
  #
11404
11456
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OnBehalfOfTokenExchangeConfigType AWS API Documentation
@@ -12495,6 +12547,30 @@ module Aws::BedrockAgentCoreControl
12495
12547
  include Aws::Structure
12496
12548
  end
12497
12549
 
12550
+ # Configuration for an Amazon S3 Files access point filesystem mounted
12551
+ # into the AgentCore Runtime. S3 Files access points provide shared file
12552
+ # storage accessible from your AgentCore Runtime sessions.
12553
+ #
12554
+ # @!attribute [rw] access_point_arn
12555
+ # The ARN of the S3 Files access point to mount into the AgentCore
12556
+ # Runtime.
12557
+ # @return [String]
12558
+ #
12559
+ # @!attribute [rw] mount_path
12560
+ # The mount path for the S3 Files access point inside the AgentCore
12561
+ # Runtime. The path must be under `/mnt` with exactly one subdirectory
12562
+ # level (for example, `/mnt/data`).
12563
+ # @return [String]
12564
+ #
12565
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/S3FilesAccessPointConfiguration AWS API Documentation
12566
+ #
12567
+ class S3FilesAccessPointConfiguration < Struct.new(
12568
+ :access_point_arn,
12569
+ :mount_path)
12570
+ SENSITIVE = []
12571
+ include Aws::Structure
12572
+ end
12573
+
12498
12574
  # The Amazon S3 location for storing data. This structure defines where
12499
12575
  # in Amazon S3 data is stored.
12500
12576
  #
@@ -12917,6 +12993,25 @@ module Aws::BedrockAgentCoreControl
12917
12993
  include Aws::Structure
12918
12994
  end
12919
12995
 
12996
+ # The session configuration for an MCP gateway. This structure defines
12997
+ # settings that control session behavior.
12998
+ #
12999
+ # @!attribute [rw] session_timeout_in_seconds
13000
+ # The session timeout in seconds. After this timeout, the session
13001
+ # expires and subsequent requests to this session will receive an
13002
+ # error. The minimum value is 900 seconds (15 minutes), the maximum
13003
+ # value is 28800 seconds (8 hours), and the default value is 3600
13004
+ # seconds (1 hour).
13005
+ # @return [Integer]
13006
+ #
13007
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SessionConfiguration AWS API Documentation
13008
+ #
13009
+ class SessionConfiguration < Struct.new(
13010
+ :session_timeout_in_seconds)
13011
+ SENSITIVE = []
13012
+ include Aws::Structure
13013
+ end
13014
+
12920
13015
  # Configuration for a session storage filesystem mounted into the
12921
13016
  # AgentCore Runtime. Session storage provides persistent storage that is
12922
13017
  # preserved across AgentCore Runtime session invocations.
@@ -13258,6 +13353,23 @@ module Aws::BedrockAgentCoreControl
13258
13353
  include Aws::Structure
13259
13354
  end
13260
13355
 
13356
+ # The streaming configuration for an MCP gateway. This structure defines
13357
+ # settings that control response streaming behavior.
13358
+ #
13359
+ # @!attribute [rw] enable_response_streaming
13360
+ # Indicates whether response streaming is enabled for the gateway.
13361
+ # When set to `true`, the gateway streams responses from targets back
13362
+ # to the client.
13363
+ # @return [Boolean]
13364
+ #
13365
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StreamingConfiguration AWS API Documentation
13366
+ #
13367
+ class StreamingConfiguration < Struct.new(
13368
+ :enable_response_streaming)
13369
+ SENSITIVE = []
13370
+ include Aws::Structure
13371
+ end
13372
+
13261
13373
  # Validation for STRINGLIST fields.
13262
13374
  #
13263
13375
  # @!attribute [rw] allowed_values
@@ -13707,14 +13819,15 @@ module Aws::BedrockAgentCoreControl
13707
13819
  include Aws::Structure
13708
13820
  end
13709
13821
 
13710
- # Configuration for RFC 8693 Token Exchange
13822
+ # Configuration for RFC 8693 token exchange.
13711
13823
  #
13712
13824
  # @!attribute [rw] actor_token_content
13713
13825
  # The content type for the actor token in the token exchange.
13714
13826
  # @return [String]
13715
13827
  #
13716
13828
  # @!attribute [rw] actor_token_scopes
13717
- # Only valid when actorTokenContent is M2M
13829
+ # The scopes for the actor token. Only valid when actorTokenContent is
13830
+ # M2M.
13718
13831
  # @return [Array<String>]
13719
13832
  #
13720
13833
  # @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.44.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -183,6 +183,14 @@ module Aws
183
183
  {
184
184
  session_storage: {
185
185
  mount_path: ::String
186
+ }?,
187
+ s3_files_access_point: {
188
+ access_point_arn: ::String,
189
+ mount_path: ::String
190
+ }?,
191
+ efs_access_point: {
192
+ access_point_arn: ::String,
193
+ mount_path: ::String
186
194
  }?
187
195
  },
188
196
  ],
@@ -446,7 +454,13 @@ module Aws
446
454
  mcp: {
447
455
  supported_versions: Array[::String]?,
448
456
  instructions: ::String?,
449
- search_type: ("SEMANTIC")?
457
+ search_type: ("SEMANTIC")?,
458
+ session_configuration: {
459
+ session_timeout_in_seconds: ::Integer?
460
+ }?,
461
+ streaming_configuration: {
462
+ enable_response_streaming: bool?
463
+ }?
450
464
  }?
451
465
  },
452
466
  authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
@@ -784,6 +798,14 @@ module Aws
784
798
  {
785
799
  session_storage: {
786
800
  mount_path: ::String
801
+ }?,
802
+ s3_files_access_point: {
803
+ access_point_arn: ::String,
804
+ mount_path: ::String
805
+ }?,
806
+ efs_access_point: {
807
+ access_point_arn: ::String,
808
+ mount_path: ::String
787
809
  }?
788
810
  },
789
811
  ]?
@@ -2892,6 +2914,14 @@ module Aws
2892
2914
  {
2893
2915
  session_storage: {
2894
2916
  mount_path: ::String
2917
+ }?,
2918
+ s3_files_access_point: {
2919
+ access_point_arn: ::String,
2920
+ mount_path: ::String
2921
+ }?,
2922
+ efs_access_point: {
2923
+ access_point_arn: ::String,
2924
+ mount_path: ::String
2895
2925
  }?
2896
2926
  },
2897
2927
  ],
@@ -3050,7 +3080,13 @@ module Aws
3050
3080
  mcp: {
3051
3081
  supported_versions: Array[::String]?,
3052
3082
  instructions: ::String?,
3053
- search_type: ("SEMANTIC")?
3083
+ search_type: ("SEMANTIC")?,
3084
+ session_configuration: {
3085
+ session_timeout_in_seconds: ::Integer?
3086
+ }?,
3087
+ streaming_configuration: {
3088
+ enable_response_streaming: bool?
3089
+ }?
3054
3090
  }?
3055
3091
  },
3056
3092
  authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
@@ -3388,6 +3424,14 @@ module Aws
3388
3424
  {
3389
3425
  session_storage: {
3390
3426
  mount_path: ::String
3427
+ }?,
3428
+ s3_files_access_point: {
3429
+ access_point_arn: ::String,
3430
+ mount_path: ::String
3431
+ }?,
3432
+ efs_access_point: {
3433
+ access_point_arn: ::String,
3434
+ mount_path: ::String
3391
3435
  }?
3392
3436
  },
3393
3437
  ]?
data/sig/types.rbs CHANGED
@@ -1348,6 +1348,12 @@ module Aws::BedrockAgentCoreControl
1348
1348
  SENSITIVE: []
1349
1349
  end
1350
1350
 
1351
+ class EfsAccessPointConfiguration
1352
+ attr_accessor access_point_arn: ::String
1353
+ attr_accessor mount_path: ::String
1354
+ SENSITIVE: []
1355
+ end
1356
+
1351
1357
  class EncryptionFailure
1352
1358
  attr_accessor message: ::String
1353
1359
  SENSITIVE: []
@@ -1501,11 +1507,17 @@ module Aws::BedrockAgentCoreControl
1501
1507
 
1502
1508
  class FilesystemConfiguration
1503
1509
  attr_accessor session_storage: Types::SessionStorageConfiguration
1510
+ attr_accessor s3_files_access_point: Types::S3FilesAccessPointConfiguration
1511
+ attr_accessor efs_access_point: Types::EfsAccessPointConfiguration
1504
1512
  attr_accessor unknown: untyped
1505
1513
  SENSITIVE: []
1506
1514
 
1507
1515
  class SessionStorage < FilesystemConfiguration
1508
1516
  end
1517
+ class S3FilesAccessPoint < FilesystemConfiguration
1518
+ end
1519
+ class EfsAccessPoint < FilesystemConfiguration
1520
+ end
1509
1521
  class Unknown < FilesystemConfiguration
1510
1522
  end
1511
1523
  end
@@ -2847,6 +2859,8 @@ module Aws::BedrockAgentCoreControl
2847
2859
  attr_accessor supported_versions: ::Array[::String]
2848
2860
  attr_accessor instructions: ::String
2849
2861
  attr_accessor search_type: ("SEMANTIC")
2862
+ attr_accessor session_configuration: Types::SessionConfiguration
2863
+ attr_accessor streaming_configuration: Types::StreamingConfiguration
2850
2864
  SENSITIVE: []
2851
2865
  end
2852
2866
 
@@ -3568,6 +3582,12 @@ module Aws::BedrockAgentCoreControl
3568
3582
  SENSITIVE: []
3569
3583
  end
3570
3584
 
3585
+ class S3FilesAccessPointConfiguration
3586
+ attr_accessor access_point_arn: ::String
3587
+ attr_accessor mount_path: ::String
3588
+ SENSITIVE: []
3589
+ end
3590
+
3571
3591
  class S3Location
3572
3592
  attr_accessor bucket: ::String
3573
3593
  attr_accessor prefix: ::String
@@ -3696,6 +3716,11 @@ module Aws::BedrockAgentCoreControl
3696
3716
  SENSITIVE: []
3697
3717
  end
3698
3718
 
3719
+ class SessionConfiguration
3720
+ attr_accessor session_timeout_in_seconds: ::Integer
3721
+ SENSITIVE: []
3722
+ end
3723
+
3699
3724
  class SessionStorageConfiguration
3700
3725
  attr_accessor mount_path: ::String
3701
3726
  SENSITIVE: []
@@ -3796,6 +3821,11 @@ module Aws::BedrockAgentCoreControl
3796
3821
  SENSITIVE: []
3797
3822
  end
3798
3823
 
3824
+ class StreamingConfiguration
3825
+ attr_accessor enable_response_streaming: bool
3826
+ SENSITIVE: []
3827
+ end
3828
+
3799
3829
  class StringListValidation
3800
3830
  attr_accessor allowed_values: ::Array[::String]
3801
3831
  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.44.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services