interface SharedFileSystemConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.NimbleStudio.CfnStudioComponent.SharedFileSystemConfigurationProperty |
Java | software.amazon.awscdk.services.nimblestudio.CfnStudioComponent.SharedFileSystemConfigurationProperty |
Python | aws_cdk.aws_nimblestudio.CfnStudioComponent.SharedFileSystemConfigurationProperty |
TypeScript | @aws-cdk/aws-nimblestudio » CfnStudioComponent » SharedFileSystemConfigurationProperty |
The configuration for a shared file storage system that is associated with a studio resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as nimblestudio from '@aws-cdk/aws-nimblestudio';
const sharedFileSystemConfigurationProperty: nimblestudio.CfnStudioComponent.SharedFileSystemConfigurationProperty = {
endpoint: 'endpoint',
fileSystemId: 'fileSystemId',
linuxMountPoint: 'linuxMountPoint',
shareName: 'shareName',
windowsMountDrive: 'windowsMountDrive',
};
Properties
Name | Type | Description |
---|---|---|
endpoint? | string | The endpoint of the shared file system that is accessed by the studio component resource. |
file | string | The unique identifier for a file system. |
linux | string | The mount location for a shared file system on a Linux virtual workstation. |
share | string | The name of the file share. |
windows | string | The mount location for a shared file system on a Windows virtual workstation. |
endpoint?
Type:
string
(optional)
The endpoint of the shared file system that is accessed by the studio component resource.
fileSystemId?
Type:
string
(optional)
The unique identifier for a file system.
linuxMountPoint?
Type:
string
(optional)
The mount location for a shared file system on a Linux virtual workstation.
shareName?
Type:
string
(optional)
The name of the file share.
windowsMountDrive?
Type:
string
(optional)
The mount location for a shared file system on a Windows virtual workstation.