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

CreateUserRequest

import type { CreateUserRequest } from "https://aws-api.deno.dev/v0.3/services/memorydb.ts?docs=full";
interface CreateUserRequest {
AccessString: string;
AuthenticationMode: AuthenticationMode;
Tags?: Tag[] | null;
UserName: string;
}

§Properties

§
AccessString: string
[src]

Access permissions string used for this user.

§
AuthenticationMode: AuthenticationMode
[src]

Denotes the user's authentication properties, such as whether it requires a password to authenticate.

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

§
UserName: string
[src]

The name of the user. This value must be unique as it also serves as the user identifier.