ec

ElastiCache

DatabasesAWS
General

General information about the service.

Description

Amazon ElastiCache is a fully managed in-memory caching service supporting Redis and Memcached.

Service Namespace

AWS::ElastiCache::CacheCluster

ARN Pattern

arn:aws:elasticache:{region}:{account}:cluster:{cluster-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

ec-

Length

1-50

Valid Characters

Letters, numbers, hyphens

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_elasticache_cluster" "main" {
2 cluster_id = "ec-${var.environment}"
3 engine = "redis"
4 node_type = "cache.t3.micro"
5 num_cache_nodes = 1
6 parameter_group_name = "default.redis7"
7}
Utilities

Utilities to support app deployment or configuration.