Interface CfnStudioComponent.SharedFileSystemConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStudioComponent.SharedFileSystemConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnStudioComponent
@Stability(Stable)
public static interface CfnStudioComponent.SharedFileSystemConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.nimblestudio.*;
SharedFileSystemConfigurationProperty sharedFileSystemConfigurationProperty = SharedFileSystemConfigurationProperty.builder()
.endpoint("endpoint")
.fileSystemId("fileSystemId")
.linuxMountPoint("linuxMountPoint")
.shareName("shareName")
.windowsMountDrive("windowsMountDrive")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStudioComponent.SharedFileSystemConfigurationPropertystatic final classAn implementation forCfnStudioComponent.SharedFileSystemConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe endpoint of the shared file system that is accessed by the studio component resource.default StringThe unique identifier for a file system.default StringThe mount location for a shared file system on a Linux virtual workstation.default StringThe name of the file share.default StringThe mount location for a shared file system on a Windows virtual workstation.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpoint
The endpoint of the shared file system that is accessed by the studio component resource. -
getFileSystemId
The unique identifier for a file system. -
getLinuxMountPoint
The mount location for a shared file system on a Linux virtual workstation. -
getWindowsMountDrive
The mount location for a shared file system on a Windows virtual workstation. -
builder
@Stability(Stable) static CfnStudioComponent.SharedFileSystemConfigurationProperty.Builder builder()
-