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

PosixUser

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

The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point.

interface PosixUser {
Gid: number;
SecondaryGids?: number[] | null;
Uid: number;
}

§Properties

§
Gid: number
[src]

The POSIX group ID used for all file system operations using this access point.

§
SecondaryGids?: number[] | null
[src]

Secondary POSIX group IDs used for all file system operations using this access point.

§
Uid: number
[src]

The POSIX user ID used for all file system operations using this access point.