Get detailed information for a specific Elasticache node type. Loads only the JSON file for the requested node type. Results are cached using LRU.
The node type (e.g., "cache.m5.large")
Node type details including vCPUs, memory, and network specs
import { getElastiCacheNodeInfo } from 'aws-instance-info'const node = getElastiCacheNodeInfo('cache.m5.large')console.log(node.nodeType) // 'cache.m5.large'console.log(node.vCPUs) // 2console.log(node.memoryGiB) // 6.38console.log(node.networkPerformance) // 'Up to 10 Gigabit' Copy
import { getElastiCacheNodeInfo } from 'aws-instance-info'const node = getElastiCacheNodeInfo('cache.m5.large')console.log(node.nodeType) // 'cache.m5.large'console.log(node.vCPUs) // 2console.log(node.memoryGiB) // 6.38console.log(node.networkPerformance) // 'Up to 10 Gigabit'
Get detailed information for a specific Elasticache node type. Loads only the JSON file for the requested node type. Results are cached using LRU.