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

Configuration

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

Returns information about all configurations.

interface Configuration {
Arn: string;
AuthenticationStrategy: AuthenticationStrategy;
Created: Date | number;
Description: string;
EngineType: EngineType;
EngineVersion: string;
Id: string;
LatestRevision: ConfigurationRevision;
Name: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
Arn: string
[src]

Required. The ARN of the configuration.

§
AuthenticationStrategy: AuthenticationStrategy
[src]

Optional. The authentication strategy associated with the configuration. The default is SIMPLE.

§
Created: Date | number
[src]

Required. The date and time of the configuration revision.

§
Description: string
[src]

Required. The description of the configuration.

§
EngineType: EngineType
[src]

Required. The type of broker engine. Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ.

§
EngineVersion: string
[src]

Required. The broker engine's version. For a list of supported engine versions, see, Supported engines.

§
Id: string
[src]

Required. The unique ID that Amazon MQ generates for the configuration.

§

Required. The latest revision of the configuration.

§
Name: string
[src]

Required. The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The list of all tags associated with this configuration.