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/elasticache.ts?docs=full";
interface User {
AccessString?: string | null;
ARN?: string | null;
Authentication?: Authentication | null;
Engine?: string | null;
MinimumEngineVersion?: string | null;
Status?: string | null;
UserGroupIds: string[];
UserId?: string | null;
UserName?: string | null;
}

§Properties

§
AccessString?: string | null
[src]

Access permissions string used for this user.

§
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.

§
Engine?: string | null
[src]

The current supported value is Redis.

§
MinimumEngineVersion?: string | null
[src]

The minimum engine version required, which is Redis 6.0

§
Status?: string | null
[src]

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

§
UserGroupIds: string[]
[src]

Returns a list of the user group IDs the user belongs to.

§
UserId?: string | null
[src]

The ID of the user.

§
UserName?: string | null
[src]

The username of the user.