Class: Aws::NimbleStudio::Types::SharedFileSystemConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::NimbleStudio::Types::SharedFileSystemConfiguration
- Defined in:
- gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/types.rb
Overview
When making an API call, you may pass SharedFileSystemConfiguration data as a hash:
{
endpoint: "SyntheticSharedFileSystemConfigurationString",
file_system_id: "String",
linux_mount_point: "LinuxMountPoint",
share_name: "SyntheticSharedFileSystemConfigurationString",
windows_mount_drive: "WindowsMountDrive",
}
The configuration for a shared file storage system that is associated with a studio resource.
Constant Summary collapse
- SENSITIVE =
[:endpoint, :linux_mount_point, :share_name]
Instance Attribute Summary collapse
-
#endpoint ⇒ String
The endpoint of the shared file system that is accessed by the studio component resource.
-
#file_system_id ⇒ String
The unique identifier for a file system.
-
#linux_mount_point ⇒ String
The mount location for a shared file system on a Linux virtual workstation.
-
#share_name ⇒ String
The name of the file share.
-
#windows_mount_drive ⇒ String
The mount location for a shared file system on a Windows virtual workstation.
Instance Attribute Details
#endpoint ⇒ String
The endpoint of the shared file system that is accessed by the studio component resource.
2691 2692 2693 2694 2695 2696 2697 2698 2699 |
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/types.rb', line 2691 class SharedFileSystemConfiguration < Struct.new( :endpoint, :file_system_id, :linux_mount_point, :share_name, :windows_mount_drive) SENSITIVE = [:endpoint, :linux_mount_point, :share_name] include Aws::Structure end |
#file_system_id ⇒ String
The unique identifier for a file system.
2691 2692 2693 2694 2695 2696 2697 2698 2699 |
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/types.rb', line 2691 class SharedFileSystemConfiguration < Struct.new( :endpoint, :file_system_id, :linux_mount_point, :share_name, :windows_mount_drive) SENSITIVE = [:endpoint, :linux_mount_point, :share_name] include Aws::Structure end |
#linux_mount_point ⇒ String
The mount location for a shared file system on a Linux virtual workstation.
2691 2692 2693 2694 2695 2696 2697 2698 2699 |
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/types.rb', line 2691 class SharedFileSystemConfiguration < Struct.new( :endpoint, :file_system_id, :linux_mount_point, :share_name, :windows_mount_drive) SENSITIVE = [:endpoint, :linux_mount_point, :share_name] include Aws::Structure end |
#share_name ⇒ String
The name of the file share.
2691 2692 2693 2694 2695 2696 2697 2698 2699 |
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/types.rb', line 2691 class SharedFileSystemConfiguration < Struct.new( :endpoint, :file_system_id, :linux_mount_point, :share_name, :windows_mount_drive) SENSITIVE = [:endpoint, :linux_mount_point, :share_name] include Aws::Structure end |
#windows_mount_drive ⇒ String
The mount location for a shared file system on a Windows virtual workstation.
2691 2692 2693 2694 2695 2696 2697 2698 2699 |
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/types.rb', line 2691 class SharedFileSystemConfiguration < Struct.new( :endpoint, :file_system_id, :linux_mount_point, :share_name, :windows_mount_drive) SENSITIVE = [:endpoint, :linux_mount_point, :share_name] include Aws::Structure end |