mq

Amazon MQ

IntegrationAWS
General

General information about the service.

Description

Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ.

Service Namespace

AWS::AmazonMQ::Broker

ARN Pattern

arn:aws:mq:{region}:{account}:broker:{broker-name}:{broker-id}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

mq-

Length

1-50

Valid Characters

Letters, numbers, hyphens, underscores

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_mq_broker" "main" {
2 broker_name = "mq-${var.environment}"
3 engine_type = "RabbitMQ"
4 engine_version = "3.10.20"
5 host_instance_type = "mq.t3.micro"
6 user {
7 username = var.username
8 password = var.password
9 }
10}
Utilities

Utilities to support app deployment or configuration.