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/mq.ts?docs=full";

A user associated with the broker. For RabbitMQ brokers, one and only one administrative user is accepted and created when a broker is first provisioned. All subsequent broker users are created by making RabbitMQ API calls directly to brokers or via the RabbitMQ web console.

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

§Properties

§
ConsoleAccess?: boolean | null
[src]

Enables access to the ActiveMQ Web Console for the ActiveMQ user. Does not apply to RabbitMQ brokers.

§
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. Does not apply to RabbitMQ brokers.

§
Password: string
[src]

Required. 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]

TODO: Failed to render documentation: unhandled paragraph inner tag title