Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SharedFileSystemConfiguration

import type { SharedFileSystemConfiguration } from "https://aws-api.deno.dev/v0.4/services/nimble.ts?docs=full";

The configuration for a shared file storage system that is associated with a studio resource.

interface SharedFileSystemConfiguration {
endpoint?: string | null;
fileSystemId?: string | null;
linuxMountPoint?: string | null;
shareName?: string | null;
windowsMountDrive?: string | null;
}

§Properties

§
endpoint?: string | null
[src]

The endpoint of the shared file system that is accessed by the studio component resource.

§
fileSystemId?: string | null
[src]

The unique identifier for a file system.

§
linuxMountPoint?: string | null
[src]

The mount location for a shared file system on a Linux virtual workstation.

§
shareName?: string | null
[src]

The name of the file share.

§
windowsMountDrive?: string | null
[src]

The mount location for a shared file system on a Windows virtual workstation.