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

LambdaContainerParams

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

Contains information about a container in which Lambda functions run on Greengrass core devices.

interface LambdaContainerParams {
devices?: LambdaDeviceMount[] | null;
memorySizeInKB?: number | null;
mountROSysfs?: boolean | null;
volumes?: LambdaVolumeMount[] | null;
}

§Properties

§
devices?: LambdaDeviceMount[] | null
[src]

The list of system devices that the container can access.

§
memorySizeInKB?: number | null
[src]

The memory size of the container, expressed in kilobytes.

Default: 16384 (16 MB)

§
mountROSysfs?: boolean | null
[src]

Whether or not the container can read information from the device's /sys folder.

Default: false

§
volumes?: LambdaVolumeMount[] | null
[src]

The list of volumes that the container can access.