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

CreateConfigurationRequest

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

Creates a new configuration for the specified configuration name. Amazon MQ uses the default configuration (the engine type and version).

interface CreateConfigurationRequest {
AuthenticationStrategy?: AuthenticationStrategy | null;
EngineType: EngineType;
EngineVersion: string;
Name: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
AuthenticationStrategy?: AuthenticationStrategy | null
[src]

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

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

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

Create tags when creating the configuration.