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

User

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

You create users and assign them specific permissions by using an access string. You assign the users to Access Control Lists aligned with a specific role (administrators, human resources) that are then deployed to one or more MemoryDB clusters.

interface User {
AccessString?: string | null;
ACLNames?: string[] | null;
ARN?: string | null;
Authentication?: Authentication | null;
MinimumEngineVersion?: string | null;
Name?: string | null;
Status?: string | null;
}

§Properties

§
AccessString?: string | null
[src]

Access permissions string used for this user.

§
ACLNames?: string[] | null
[src]

The names of the Access Control Lists to which the user belongs

§
ARN?: string | null
[src]

The Amazon Resource Name (ARN) of the user.

§
Authentication?: Authentication | null
[src]

Denotes whether the user requires a password to authenticate.

§
MinimumEngineVersion?: string | null
[src]

The minimum engine version supported for the user

§
Name?: string | null
[src]

The name of the user

§
Status?: string | null
[src]

Indicates the user status. Can be "active", "modifying" or "deleting".