Get all data for an ElastiCache node family. Includes the list of node types in the family. Results are served from LRU cache.
The node family (e.g., "M5")
Promise resolving to family data including category and node type list
import { getElastiCacheFamily } from 'aws-instance-info/async'const family = await 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/async'const family = await 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 served from LRU cache.