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

LambdaVolumeMount

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

Contains information about a volume that Linux processes in a container can access. When you define a volume, the IoT Greengrass Core software mounts the source files to the destination inside the container.

interface LambdaVolumeMount {
addGroupOwner?: boolean | null;
destinationPath: string;
permission?: LambdaFilesystemPermission | null;
sourcePath: string;
}

§Properties

§
addGroupOwner?: boolean | null
[src]

Whether or not to add the IoT Greengrass user group as an owner of the volume.

Default: false

§
destinationPath: string
[src]

The path to the logical volume in the file system.

§

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

Default: ro

§
sourcePath: string
[src]

The path to the physical volume in the file system.