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

UpdateUserRequest

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

Updates the information for an ActiveMQ user.

interface UpdateUserRequest {
BrokerId: string;
ConsoleAccess?: boolean | null;
Groups?: string[] | null;
Password?: string | null;
Username: string;
}

§Properties

§
BrokerId: string
[src]

The unique ID that Amazon MQ generates for the broker.

§
ConsoleAccess?: boolean | null
[src]

Enables access to the the ActiveMQ Web Console for the ActiveMQ user.

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

The list of groups (20 maximum) to which the ActiveMQ user belongs. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.

§
Password?: string | null
[src]

The password of the user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas, colons, or equal signs (,:=).

§
Username: string
[src]

The username of the ActiveMQ user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.