Table: memory_db_cluster
Table to manage Memory DB clusters. Amazon MemoryDB for Redis is a Redis-compatible, durable, in-memory database service that delivers ultra-fast performance. It is purpose-built for modern applications with microservices architectures.
Example
INSERT INTO memory_db_cluster (cluster_name, subnet_group_id) VALUES ('cluster_name', (select id from subnet_group where subnet_group_name = 'subnet_name'));
SELECT * FROM memory_db_cluster WHERE cluster_name = 'cluster_name';
DELETE FROM memory_db_cluster WHERE cluster_name = 'cluster_name';
See
- https://github.com/iasql/iasql/blob/b2c2383b73d73f5cdf75c867d334e80cdf40caa1/test/modules/aws-memory-db-integration.ts#L185
- https://docs.aws.amazon.com/memorydb/latest/devguide/clusters.html
Columns
• Optional
address: string
Address for the memory db cluster
See
https://docs.aws.amazon.com/memorydb/latest/devguide/nodes-connecting.html
• Optional
arn: string
AWS ARN to identify the cluster
• cluster_name: string
Name for the cluster
• Optional
description: string
Description for the cluster
• node_type: node_type
Node type used for the nodes of the cluster
• port: number
Port for the memory db cluster
See
https://docs.aws.amazon.com/memorydb/latest/devguide/nodes-connecting.html
• region: string
Region for the cluster
• Optional
security_groups: security_group
[]
Reference to the security groups associated with the cluster
See
https://docs.aws.amazon.com/memorydb/latest/devguide/memorydb-vpc-accessing.html
• Optional
status: string
Current status of the cluster todo: enum?
• subnet_group: subnet_group
Reference to the subnet groups associated with the cluster
See
https://docs.aws.amazon.com/memorydb/latest/devguide/subnetgroups.html
• Optional
tags: Object
Complex type to provide identifier tags for the cluster
See
https://docs.aws.amazon.com/memorydb/latest/devguide/tagging-resources.html
Type definition
▪ [key: string
]: string