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

Device

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

An object representing a container instance host device.

interface Device {
containerPath?: string | null;
hostPath: string;
permissions?: DeviceCgroupPermission[] | null;
}

§Properties

§
containerPath?: string | null
[src]

The path inside the container at which to expose the host device.

§
hostPath: string
[src]

The path for the device on the host container instance.

§
permissions?: DeviceCgroupPermission[] | null
[src]

The explicit permissions to provide to the container for the device. By default, the container has permissions for read, write, and mknod for the device.