aws-sdk-bedrockagentcorecontrol 1.58.0 → 1.59.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: ca34ece586181095742d188c0704ddb3d31fdf96b3cbe0a9e7277d0f40a38fff
4
- data.tar.gz: f13064146028b92537e311e95bb7c660662538e923d433b1aa07c7360443297d
3
+ metadata.gz: 9a913aa5532331ed8794af0cf7d9154d34e6393e7f4b979e09a59c341a689b1a
4
+ data.tar.gz: af36f8bfdbbf44e8c02e848489ca6cf69f85e158af0a168327f330e9639d60bb
5
5
  SHA512:
6
- metadata.gz: 15989fe784ee131e3d8a2b7b194b8a0341eef5f9caa36015a3dc67b7f488428341fcef35914744e27254d61506907f2ab9f6e889ddaf095667109f6d04a1b400
7
- data.tar.gz: dd4f365318a363d4185f81e0bf8ba4c4fa383a9bd697263ecea9850cab75011b9658200dee9c7da756b9359470284c199dbac71dd337c5303e1cc6f9d52dc035
6
+ metadata.gz: 77cd9e1a7a9909d76e7b6fb7acba91ab41ae85e46494c260baf1a4817a45c9e74d0e6b338a91aad984e56c01a3ba41f6b21360ec7e2ce4b41f94e7f80a3f92b7
7
+ data.tar.gz: 7677c03a3ccd9712ca87342338ba43116ba7f3405e472d47935e743695e7f685bf9a1fd0f7fb2997258fe5b749b6f5bbe74f9968233aabffcab04bb1488dcb18
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.0 (2026-07-23)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.58.0 (2026-07-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.59.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",
@@ -6317,6 +6359,7 @@ module Aws::BedrockAgentCoreControl
6317
6359
  # * {Types::GetBrowserResponse#browser_signing #browser_signing} => Types::BrowserSigningConfigOutput
6318
6360
  # * {Types::GetBrowserResponse#enterprise_policies #enterprise_policies} => Array&lt;Types::BrowserEnterprisePolicy&gt;
6319
6361
  # * {Types::GetBrowserResponse#certificates #certificates} => Array&lt;Types::Certificate&gt;
6362
+ # * {Types::GetBrowserResponse#filesystem_configurations #filesystem_configurations} => Array&lt;Types::ToolsFileSystemConfiguration&gt;
6320
6363
  # * {Types::GetBrowserResponse#status #status} => String
6321
6364
  # * {Types::GetBrowserResponse#failure_reason #failure_reason} => String
6322
6365
  # * {Types::GetBrowserResponse#created_at #created_at} => Time
@@ -6353,6 +6396,13 @@ module Aws::BedrockAgentCoreControl
6353
6396
  # resp.enterprise_policies[0].type #=> String, one of "MANAGED", "RECOMMENDED"
6354
6397
  # resp.certificates #=> Array
6355
6398
  # resp.certificates[0].location.secrets_manager.secret_arn #=> String
6399
+ # resp.filesystem_configurations #=> Array
6400
+ # resp.filesystem_configurations[0].s3_files_configuration.access_point_arn #=> String
6401
+ # resp.filesystem_configurations[0].s3_files_configuration.mount_path #=> String
6402
+ # resp.filesystem_configurations[0].s3_files_configuration.file_system_arn #=> String
6403
+ # resp.filesystem_configurations[0].efs_configuration.access_point_arn #=> String
6404
+ # resp.filesystem_configurations[0].efs_configuration.mount_path #=> String
6405
+ # resp.filesystem_configurations[0].efs_configuration.file_system_arn #=> String
6356
6406
  # resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
6357
6407
  # resp.failure_reason #=> String
6358
6408
  # resp.created_at #=> Time
@@ -6428,6 +6478,7 @@ module Aws::BedrockAgentCoreControl
6428
6478
  # * {Types::GetCodeInterpreterResponse#network_configuration #network_configuration} => Types::CodeInterpreterNetworkConfiguration
6429
6479
  # * {Types::GetCodeInterpreterResponse#status #status} => String
6430
6480
  # * {Types::GetCodeInterpreterResponse#certificates #certificates} => Array&lt;Types::Certificate&gt;
6481
+ # * {Types::GetCodeInterpreterResponse#filesystem_configurations #filesystem_configurations} => Array&lt;Types::ToolsFileSystemConfiguration&gt;
6431
6482
  # * {Types::GetCodeInterpreterResponse#failure_reason #failure_reason} => String
6432
6483
  # * {Types::GetCodeInterpreterResponse#created_at #created_at} => Time
6433
6484
  # * {Types::GetCodeInterpreterResponse#last_updated_at #last_updated_at} => Time
@@ -6454,6 +6505,13 @@ module Aws::BedrockAgentCoreControl
6454
6505
  # resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
6455
6506
  # resp.certificates #=> Array
6456
6507
  # resp.certificates[0].location.secrets_manager.secret_arn #=> String
6508
+ # resp.filesystem_configurations #=> Array
6509
+ # resp.filesystem_configurations[0].s3_files_configuration.access_point_arn #=> String
6510
+ # resp.filesystem_configurations[0].s3_files_configuration.mount_path #=> String
6511
+ # resp.filesystem_configurations[0].s3_files_configuration.file_system_arn #=> String
6512
+ # resp.filesystem_configurations[0].efs_configuration.access_point_arn #=> String
6513
+ # resp.filesystem_configurations[0].efs_configuration.mount_path #=> String
6514
+ # resp.filesystem_configurations[0].efs_configuration.file_system_arn #=> String
6457
6515
  # resp.failure_reason #=> String
6458
6516
  # resp.created_at #=> Time
6459
6517
  # resp.last_updated_at #=> Time
@@ -15021,7 +15079,7 @@ module Aws::BedrockAgentCoreControl
15021
15079
  tracer: tracer
15022
15080
  )
15023
15081
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
15024
- context[:gem_version] = '1.58.0'
15082
+ context[:gem_version] = '1.59.0'
15025
15083
  Seahorse::Client::Request.new(handlers, context)
15026
15084
  end
15027
15085
 
@@ -350,6 +350,8 @@ module Aws::BedrockAgentCoreControl
350
350
  DraftStatus = Shapes::StringShape.new(name: 'DraftStatus')
351
351
  EfsAccessPointArn = Shapes::StringShape.new(name: 'EfsAccessPointArn')
352
352
  EfsAccessPointConfiguration = Shapes::StructureShape.new(name: 'EfsAccessPointConfiguration')
353
+ EfsConfiguration = Shapes::StructureShape.new(name: 'EfsConfiguration')
354
+ EfsFileSystemArn = Shapes::StringShape.new(name: 'EfsFileSystemArn')
353
355
  EnabledConnectors = Shapes::ListShape.new(name: 'EnabledConnectors')
354
356
  EncryptionFailure = Shapes::StructureShape.new(name: 'EncryptionFailure')
355
357
  EndpointIpAddressType = Shapes::StringShape.new(name: 'EndpointIpAddressType')
@@ -970,6 +972,8 @@ module Aws::BedrockAgentCoreControl
970
972
  S3Configuration = Shapes::StructureShape.new(name: 'S3Configuration')
971
973
  S3FilesAccessPointArn = Shapes::StringShape.new(name: 'S3FilesAccessPointArn')
972
974
  S3FilesAccessPointConfiguration = Shapes::StructureShape.new(name: 'S3FilesAccessPointConfiguration')
975
+ S3FilesConfiguration = Shapes::StructureShape.new(name: 'S3FilesConfiguration')
976
+ S3FilesFileSystemArn = Shapes::StringShape.new(name: 'S3FilesFileSystemArn')
973
977
  S3Location = Shapes::StructureShape.new(name: 'S3Location')
974
978
  S3LocationBucketString = Shapes::StringShape.new(name: 'S3LocationBucketString')
975
979
  S3LocationPrefixString = Shapes::StringShape.new(name: 'S3LocationPrefixString')
@@ -1113,6 +1117,8 @@ module Aws::BedrockAgentCoreControl
1113
1117
  ToolSchema = Shapes::UnionShape.new(name: 'ToolSchema')
1114
1118
  ToolSecretArn = Shapes::StringShape.new(name: 'ToolSecretArn')
1115
1119
  ToolsDefinition = Shapes::StructureShape.new(name: 'ToolsDefinition')
1120
+ ToolsFileSystemConfiguration = Shapes::UnionShape.new(name: 'ToolsFileSystemConfiguration')
1121
+ ToolsFileSystemConfigurations = Shapes::ListShape.new(name: 'ToolsFileSystemConfigurations')
1116
1122
  TopK = Shapes::IntegerShape.new(name: 'TopK')
1117
1123
  TopP = Shapes::FloatShape.new(name: 'TopP')
1118
1124
  TrafficSplitEntries = Shapes::ListShape.new(name: 'TrafficSplitEntries')
@@ -1715,6 +1721,7 @@ module Aws::BedrockAgentCoreControl
1715
1721
  CreateBrowserRequest.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigInput, location_name: "browserSigning"))
1716
1722
  CreateBrowserRequest.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
1717
1723
  CreateBrowserRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
1724
+ CreateBrowserRequest.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
1718
1725
  CreateBrowserRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1719
1726
  CreateBrowserRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
1720
1727
  CreateBrowserRequest.struct_class = Types::CreateBrowserRequest
@@ -1730,6 +1737,7 @@ module Aws::BedrockAgentCoreControl
1730
1737
  CreateCodeInterpreterRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
1731
1738
  CreateCodeInterpreterRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkConfiguration, required: true, location_name: "networkConfiguration"))
1732
1739
  CreateCodeInterpreterRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
1740
+ CreateCodeInterpreterRequest.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
1733
1741
  CreateCodeInterpreterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1734
1742
  CreateCodeInterpreterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
1735
1743
  CreateCodeInterpreterRequest.struct_class = Types::CreateCodeInterpreterRequest
@@ -2532,6 +2540,11 @@ module Aws::BedrockAgentCoreControl
2532
2540
  EfsAccessPointConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
2533
2541
  EfsAccessPointConfiguration.struct_class = Types::EfsAccessPointConfiguration
2534
2542
 
2543
+ EfsConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: EfsAccessPointArn, required: true, location_name: "accessPointArn"))
2544
+ EfsConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
2545
+ EfsConfiguration.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: EfsFileSystemArn, required: true, location_name: "fileSystemArn"))
2546
+ EfsConfiguration.struct_class = Types::EfsConfiguration
2547
+
2535
2548
  EnabledConnectors.member = Shapes::ShapeRef.new(shape: String)
2536
2549
 
2537
2550
  EncryptionFailure.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
@@ -2831,6 +2844,7 @@ module Aws::BedrockAgentCoreControl
2831
2844
  GetBrowserResponse.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigOutput, location_name: "browserSigning"))
2832
2845
  GetBrowserResponse.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
2833
2846
  GetBrowserResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
2847
+ GetBrowserResponse.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
2834
2848
  GetBrowserResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserStatus, required: true, location_name: "status"))
2835
2849
  GetBrowserResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
2836
2850
  GetBrowserResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
@@ -2848,6 +2862,7 @@ module Aws::BedrockAgentCoreControl
2848
2862
  GetCodeInterpreterResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkConfiguration, required: true, location_name: "networkConfiguration"))
2849
2863
  GetCodeInterpreterResponse.add_member(:status, Shapes::ShapeRef.new(shape: CodeInterpreterStatus, required: true, location_name: "status"))
2850
2864
  GetCodeInterpreterResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
2865
+ GetCodeInterpreterResponse.add_member(:filesystem_configurations, Shapes::ShapeRef.new(shape: ToolsFileSystemConfigurations, location_name: "filesystemConfigurations"))
2851
2866
  GetCodeInterpreterResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
2852
2867
  GetCodeInterpreterResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
2853
2868
  GetCodeInterpreterResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
@@ -4704,6 +4719,11 @@ module Aws::BedrockAgentCoreControl
4704
4719
  S3FilesAccessPointConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
4705
4720
  S3FilesAccessPointConfiguration.struct_class = Types::S3FilesAccessPointConfiguration
4706
4721
 
4722
+ S3FilesConfiguration.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3FilesAccessPointArn, required: true, location_name: "accessPointArn"))
4723
+ S3FilesConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
4724
+ S3FilesConfiguration.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: S3FilesFileSystemArn, required: true, location_name: "fileSystemArn"))
4725
+ S3FilesConfiguration.struct_class = Types::S3FilesConfiguration
4726
+
4707
4727
  S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: S3LocationBucketString, required: true, location_name: "bucket"))
4708
4728
  S3Location.add_member(:prefix, Shapes::ShapeRef.new(shape: S3LocationPrefixString, required: true, location_name: "prefix"))
4709
4729
  S3Location.add_member(:version_id, Shapes::ShapeRef.new(shape: S3LocationVersionIdString, location_name: "versionId"))
@@ -5058,6 +5078,16 @@ module Aws::BedrockAgentCoreControl
5058
5078
  ToolsDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
5059
5079
  ToolsDefinition.struct_class = Types::ToolsDefinition
5060
5080
 
5081
+ ToolsFileSystemConfiguration.add_member(:s3_files_configuration, Shapes::ShapeRef.new(shape: S3FilesConfiguration, location_name: "s3FilesConfiguration"))
5082
+ ToolsFileSystemConfiguration.add_member(:efs_configuration, Shapes::ShapeRef.new(shape: EfsConfiguration, location_name: "efsConfiguration"))
5083
+ ToolsFileSystemConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
5084
+ ToolsFileSystemConfiguration.add_member_subclass(:s3_files_configuration, Types::ToolsFileSystemConfiguration::S3FilesConfiguration)
5085
+ ToolsFileSystemConfiguration.add_member_subclass(:efs_configuration, Types::ToolsFileSystemConfiguration::EfsConfiguration)
5086
+ ToolsFileSystemConfiguration.add_member_subclass(:unknown, Types::ToolsFileSystemConfiguration::Unknown)
5087
+ ToolsFileSystemConfiguration.struct_class = Types::ToolsFileSystemConfiguration
5088
+
5089
+ ToolsFileSystemConfigurations.member = Shapes::ShapeRef.new(shape: ToolsFileSystemConfiguration)
5090
+
5061
5091
  TrafficSplitEntries.member = Shapes::ShapeRef.new(shape: TrafficSplitEntry)
5062
5092
 
5063
5093
  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]
@@ -6285,6 +6303,35 @@ module Aws::BedrockAgentCoreControl
6285
6303
  include Aws::Structure
6286
6304
  end
6287
6305
 
6306
+ # The configuration for mounting an Amazon Elastic File System (Amazon
6307
+ # EFS) access point that you own into a session.
6308
+ #
6309
+ # @!attribute [rw] access_point_arn
6310
+ # The Amazon Resource Name (ARN) of the Amazon Elastic File System
6311
+ # (Amazon EFS) access point to mount.
6312
+ # @return [String]
6313
+ #
6314
+ # @!attribute [rw] mount_path
6315
+ # The absolute path within the session at which the access point is
6316
+ # mounted, for example `/mnt/efs`. Each mount path must be unique
6317
+ # across all file system configurations in the session.
6318
+ # @return [String]
6319
+ #
6320
+ # @!attribute [rw] file_system_arn
6321
+ # The Amazon Resource Name (ARN) of the Amazon Elastic File System
6322
+ # (Amazon EFS) file system that owns the access point.
6323
+ # @return [String]
6324
+ #
6325
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EfsConfiguration AWS API Documentation
6326
+ #
6327
+ class EfsConfiguration < Struct.new(
6328
+ :access_point_arn,
6329
+ :mount_path,
6330
+ :file_system_arn)
6331
+ SENSITIVE = []
6332
+ include Aws::Structure
6333
+ end
6334
+
6288
6335
  # Exception thrown when encryption of a secret fails.
6289
6336
  #
6290
6337
  # @!attribute [rw] message
@@ -7637,6 +7684,11 @@ module Aws::BedrockAgentCoreControl
7637
7684
  # The list of certificates configured for the browser.
7638
7685
  # @return [Array<Types::Certificate>]
7639
7686
  #
7687
+ # @!attribute [rw] filesystem_configurations
7688
+ # The file system configurations mounted into the browser. Each entry
7689
+ # describes an access point and its mount path.
7690
+ # @return [Array<Types::ToolsFileSystemConfiguration>]
7691
+ #
7640
7692
  # @!attribute [rw] status
7641
7693
  # The current status of the browser.
7642
7694
  # @return [String]
@@ -7666,6 +7718,7 @@ module Aws::BedrockAgentCoreControl
7666
7718
  :browser_signing,
7667
7719
  :enterprise_policies,
7668
7720
  :certificates,
7721
+ :filesystem_configurations,
7669
7722
  :status,
7670
7723
  :failure_reason,
7671
7724
  :created_at,
@@ -7719,6 +7772,11 @@ module Aws::BedrockAgentCoreControl
7719
7772
  # The list of certificates configured for the code interpreter.
7720
7773
  # @return [Array<Types::Certificate>]
7721
7774
  #
7775
+ # @!attribute [rw] filesystem_configurations
7776
+ # The file system configurations mounted into the code interpreter.
7777
+ # Each entry describes an access point and its mount path.
7778
+ # @return [Array<Types::ToolsFileSystemConfiguration>]
7779
+ #
7722
7780
  # @!attribute [rw] failure_reason
7723
7781
  # The reason for failure if the code interpreter is in a failed state.
7724
7782
  # @return [String]
@@ -7742,6 +7800,7 @@ module Aws::BedrockAgentCoreControl
7742
7800
  :network_configuration,
7743
7801
  :status,
7744
7802
  :certificates,
7803
+ :filesystem_configurations,
7745
7804
  :failure_reason,
7746
7805
  :created_at,
7747
7806
  :last_updated_at)
@@ -16349,6 +16408,35 @@ module Aws::BedrockAgentCoreControl
16349
16408
  include Aws::Structure
16350
16409
  end
16351
16410
 
16411
+ # The configuration for mounting an Amazon Simple Storage Service
16412
+ # (Amazon S3) Files access point that you own into a session.
16413
+ #
16414
+ # @!attribute [rw] access_point_arn
16415
+ # The Amazon Resource Name (ARN) of the Amazon Simple Storage Service
16416
+ # (Amazon S3) Files access point to mount.
16417
+ # @return [String]
16418
+ #
16419
+ # @!attribute [rw] mount_path
16420
+ # The absolute path within the session at which the access point is
16421
+ # mounted, for example `/mnt/s3data`. Each mount path must be unique
16422
+ # across all file system configurations in the session.
16423
+ # @return [String]
16424
+ #
16425
+ # @!attribute [rw] file_system_arn
16426
+ # The Amazon Resource Name (ARN) of the Amazon Simple Storage Service
16427
+ # (Amazon S3) Files file system that owns the access point.
16428
+ # @return [String]
16429
+ #
16430
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/S3FilesConfiguration AWS API Documentation
16431
+ #
16432
+ class S3FilesConfiguration < Struct.new(
16433
+ :access_point_arn,
16434
+ :mount_path,
16435
+ :file_system_arn)
16436
+ SENSITIVE = []
16437
+ include Aws::Structure
16438
+ end
16439
+
16352
16440
  # The Amazon S3 location for storing data. This structure defines where
16353
16441
  # in Amazon S3 data is stored.
16354
16442
  #
@@ -17950,6 +18038,44 @@ module Aws::BedrockAgentCoreControl
17950
18038
  include Aws::Structure
17951
18039
  end
17952
18040
 
18041
+ # Specifies a file system to mount into the session by providing exactly
18042
+ # one of the following:
18043
+ #
18044
+ # * `s3FilesConfiguration` - Mounts an Amazon Simple Storage Service
18045
+ # (Amazon S3) Files access point.
18046
+ #
18047
+ # * `efsConfiguration` - Mounts an Amazon Elastic File System (Amazon
18048
+ # EFS) access point.
18049
+ #
18050
+ # @note ToolsFileSystemConfiguration is a union - when making an API calls you must set exactly one of the members.
18051
+ #
18052
+ # @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.
18053
+ #
18054
+ # @!attribute [rw] s3_files_configuration
18055
+ # The configuration for mounting your own Amazon Simple Storage
18056
+ # Service (Amazon S3) Files access point into the session.
18057
+ # @return [Types::S3FilesConfiguration]
18058
+ #
18059
+ # @!attribute [rw] efs_configuration
18060
+ # The configuration for mounting your own Amazon Elastic File System
18061
+ # (Amazon EFS) access point into the session.
18062
+ # @return [Types::EfsConfiguration]
18063
+ #
18064
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ToolsFileSystemConfiguration AWS API Documentation
18065
+ #
18066
+ class ToolsFileSystemConfiguration < Struct.new(
18067
+ :s3_files_configuration,
18068
+ :efs_configuration,
18069
+ :unknown)
18070
+ SENSITIVE = []
18071
+ include Aws::Structure
18072
+ include Aws::Structure::Union
18073
+
18074
+ class S3FilesConfiguration < ToolsFileSystemConfiguration; end
18075
+ class EfsConfiguration < ToolsFileSystemConfiguration; end
18076
+ class Unknown < ToolsFileSystemConfiguration; end
18077
+ end
18078
+
17953
18079
  # An entry in a traffic split configuration, defining a named variant
17954
18080
  # with a weight and configuration bundle reference.
17955
18081
  #
@@ -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.58.0'
58
+ GEM_VERSION = '1.59.0'
59
59
 
60
60
  end
61
61
 
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
  {
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]
@@ -1696,6 +1698,13 @@ module Aws::BedrockAgentCoreControl
1696
1698
  SENSITIVE: []
1697
1699
  end
1698
1700
 
1701
+ class EfsConfiguration
1702
+ attr_accessor access_point_arn: ::String
1703
+ attr_accessor mount_path: ::String
1704
+ attr_accessor file_system_arn: ::String
1705
+ SENSITIVE: []
1706
+ end
1707
+
1699
1708
  class EncryptionFailure
1700
1709
  attr_accessor message: ::String
1701
1710
  SENSITIVE: []
@@ -2072,6 +2081,7 @@ module Aws::BedrockAgentCoreControl
2072
2081
  attr_accessor browser_signing: Types::BrowserSigningConfigOutput
2073
2082
  attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
2074
2083
  attr_accessor certificates: ::Array[Types::Certificate]
2084
+ attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
2075
2085
  attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
2076
2086
  attr_accessor failure_reason: ::String
2077
2087
  attr_accessor created_at: ::Time
@@ -2093,6 +2103,7 @@ module Aws::BedrockAgentCoreControl
2093
2103
  attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
2094
2104
  attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
2095
2105
  attr_accessor certificates: ::Array[Types::Certificate]
2106
+ attr_accessor filesystem_configurations: ::Array[Types::ToolsFileSystemConfiguration]
2096
2107
  attr_accessor failure_reason: ::String
2097
2108
  attr_accessor created_at: ::Time
2098
2109
  attr_accessor last_updated_at: ::Time
@@ -4565,6 +4576,13 @@ module Aws::BedrockAgentCoreControl
4565
4576
  SENSITIVE: []
4566
4577
  end
4567
4578
 
4579
+ class S3FilesConfiguration
4580
+ attr_accessor access_point_arn: ::String
4581
+ attr_accessor mount_path: ::String
4582
+ attr_accessor file_system_arn: ::String
4583
+ SENSITIVE: []
4584
+ end
4585
+
4568
4586
  class S3Location
4569
4587
  attr_accessor bucket: ::String
4570
4588
  attr_accessor prefix: ::String
@@ -5035,6 +5053,20 @@ module Aws::BedrockAgentCoreControl
5035
5053
  SENSITIVE: []
5036
5054
  end
5037
5055
 
5056
+ class ToolsFileSystemConfiguration
5057
+ attr_accessor s3_files_configuration: Types::S3FilesConfiguration
5058
+ attr_accessor efs_configuration: Types::EfsConfiguration
5059
+ attr_accessor unknown: untyped
5060
+ SENSITIVE: []
5061
+
5062
+ class S3FilesConfiguration < ToolsFileSystemConfiguration
5063
+ end
5064
+ class EfsConfiguration < ToolsFileSystemConfiguration
5065
+ end
5066
+ class Unknown < ToolsFileSystemConfiguration
5067
+ end
5068
+ end
5069
+
5038
5070
  class TrafficSplitEntry
5039
5071
  attr_accessor name: ::String
5040
5072
  attr_accessor weight: ::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.58.0
4
+ version: 1.59.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services