Skip to content

Create Configuration

mq_create_configuration R Documentation

Creates a new configuration for the specified configuration name

Description

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

Usage

mq_create_configuration(AuthenticationStrategy, EngineType,
  EngineVersion, Name, Tags)

Arguments

AuthenticationStrategy

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

EngineType

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

EngineVersion

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

Name

[required] 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

Create tags when creating the configuration.

Value

A list with the following syntax:

list(
  Arn = "string",
  AuthenticationStrategy = "SIMPLE"|"LDAP",
  Created = as.POSIXct(
    "2015-01-01"
  ),
  Id = "string",
  LatestRevision = list(
    Created = as.POSIXct(
      "2015-01-01"
    ),
    Description = "string",
    Revision = 123
  ),
  Name = "string"
)

Request syntax

svc$create_configuration(
  AuthenticationStrategy = "SIMPLE"|"LDAP",
  EngineType = "ACTIVEMQ"|"RABBITMQ",
  EngineVersion = "string",
  Name = "string",
  Tags = list(
    "string"
  )
)