Get all data for an Elasticache node family. Includes the list of node types in the family. Results are cached using LRU.
The node family (e.g., "M5")
Family data including category and node type list
import { getElastiCacheFamily } from 'aws-instance-info'const family = getElastiCacheFamily('M5')console.log(family.category) // 'general_purpose'console.log(family.nodeTypes) // ['cache.m5.large', 'cache.m5.xlarge', ...] Copy
import { getElastiCacheFamily } from 'aws-instance-info'const family = getElastiCacheFamily('M5')console.log(family.category) // 'general_purpose'console.log(family.nodeTypes) // ['cache.m5.large', 'cache.m5.xlarge', ...]
Get all data for an Elasticache node family. Includes the list of node types in the family. Results are cached using LRU.