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

AccessPointDescription

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

Provides a description of an EFS file system access point.

interface AccessPointDescription {
AccessPointArn?: string | null;
AccessPointId?: string | null;
ClientToken?: string | null;
FileSystemId?: string | null;
LifeCycleState?: LifeCycleState | null;
Name?: string | null;
OwnerId?: string | null;
PosixUser?: PosixUser | null;
RootDirectory?: RootDirectory | null;
Tags?: Tag[] | null;
}

§Properties

§
AccessPointArn?: string | null
[src]

The unique Amazon Resource Name (ARN) associated with the access point.

§
AccessPointId?: string | null
[src]

The ID of the access point, assigned by Amazon EFS.

§
ClientToken?: string | null
[src]

The opaque string specified in the request to ensure idempotent creation.

§
FileSystemId?: string | null
[src]

The ID of the EFS file system that the access point applies to.

§
LifeCycleState?: LifeCycleState | null
[src]

Identifies the lifecycle phase of the access point.

§
Name?: string | null
[src]

The name of the access point. This is the value of the Name tag.

§
OwnerId?: string | null
[src]

Identifies the Amazon Web Services account that owns the access point resource.

§
PosixUser?: PosixUser | null
[src]

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

§
RootDirectory?: RootDirectory | null
[src]

The directory on the Amazon EFS file system that the access point exposes as the root directory to NFS clients using the access point.

§
Tags?: Tag[] | null
[src]

The tags associated with the access point, presented as an array of Tag objects.