memdb

MemoryDB

DatabasesAWS
General

General information about the service.

Description

Amazon MemoryDB is a Redis-compatible, durable, in-memory database service.

Service Namespace

AWS::MemoryDB::Cluster

ARN Pattern

arn:aws:memorydb:{region}:{account}:cluster/{cluster-name}

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

memdb-

Length

1-40

Valid Characters

Letters, numbers, hyphens

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_memorydb_cluster" "main" {
2 name = "memdb-${var.environment}"
3 node_type = "db.t4g.small"
4 acl_name = "open-access"
5 subnet_group_name = aws_memorydb_subnet_group.main.name
6}
Utilities

Utilities to support app deployment or configuration.