Get the Elasticache info manifest containing lists of all families and node types. This is a lightweight file that can be used to enumerate available data.
ElastiCacheInfo object with families, nodeTypes, and categories arrays
import { getElastiCacheInfo } from 'aws-instance-info'const info = getElastiCacheInfo()console.log(info.families) // ['M5', 'R6g', 'T3', ...]console.log(info.nodeTypes) // ['cache.m5.large', 'cache.r6g.xlarge', ...]console.log(info.categories) // ['general_purpose', 'memory_optimized', ...] Copy
import { getElastiCacheInfo } from 'aws-instance-info'const info = getElastiCacheInfo()console.log(info.families) // ['M5', 'R6g', 'T3', ...]console.log(info.nodeTypes) // ['cache.m5.large', 'cache.r6g.xlarge', ...]console.log(info.categories) // ['general_purpose', 'memory_optimized', ...]
Get the Elasticache info manifest containing lists of all families and node types. This is a lightweight file that can be used to enumerate available data.