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

CreateUserMessage

import type { CreateUserMessage } from "https://aws-api.deno.dev/v0.3/services/elasticache.ts?docs=full";
interface CreateUserMessage {
AccessString: string;
Engine: string;
NoPasswordRequired?: boolean | null;
Passwords?: string[] | null;
Tags?: Tag[] | null;
UserId: string;
UserName: string;
}

§Properties

§
AccessString: string
[src]

Access permissions string used for this user.

§
Engine: string
[src]

The current supported value is Redis.

§
NoPasswordRequired?: boolean | null
[src]

Indicates a password is not required for this user.

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

Passwords used for this user. You can create up to two passwords for each user.

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

A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

§
UserId: string
[src]

The ID of the user.

§
UserName: string
[src]

The username of the user.