Class: Aws::BedrockAgentCoreControl::Types::EfsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::EfsConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
The configuration for mounting an Amazon Elastic File System (Amazon EFS) access point that you own into a session.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_point_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Elastic File System (Amazon EFS) access point to mount.
-
#file_system_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Elastic File System (Amazon EFS) file system that owns the access point.
-
#mount_path ⇒ String
The absolute path within the session at which the access point is mounted, for example
/mnt/efs.
Instance Attribute Details
#access_point_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Elastic File System (Amazon EFS) access point to mount.
7381 7382 7383 7384 7385 7386 7387 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 7381 class EfsConfiguration < Struct.new( :access_point_arn, :mount_path, :file_system_arn) SENSITIVE = [] include Aws::Structure end |
#file_system_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Elastic File System (Amazon EFS) file system that owns the access point.
7381 7382 7383 7384 7385 7386 7387 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 7381 class EfsConfiguration < Struct.new( :access_point_arn, :mount_path, :file_system_arn) SENSITIVE = [] include Aws::Structure end |
#mount_path ⇒ String
The absolute path within the session at which the access point is
mounted, for example /mnt/efs. Each mount path must be unique
across all file system configurations in the session.
7381 7382 7383 7384 7385 7386 7387 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 7381 class EfsConfiguration < Struct.new( :access_point_arn, :mount_path, :file_system_arn) SENSITIVE = [] include Aws::Structure end |