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

LambdaDeviceMount

import type { LambdaDeviceMount } from "https://aws-api.deno.dev/v0.3/services/greengrassv2.ts?docs=full";

Contains information about a device that Linux processes in a container can access.

interface LambdaDeviceMount {
addGroupOwner?: boolean | null;
path: string;
permission?: LambdaFilesystemPermission | null;
}

§Properties

§
addGroupOwner?: boolean | null
[src]

Whether or not to add the component's system user as an owner of the device.

Default: false

§
path: string
[src]

The mount path for the device in the file system.

§

The permission to access the device: read/only (ro) or read/write (rw).

Default: ro