Get detailed information for a specific ElastiCache node type. Triggers the initial bulk fetch on first call; subsequent calls use LRU cache.
The node type (e.g., "cache.m5.large")
Promise resolving to node type details including vCPUs, memory, and network specs
import { getElastiCacheNodeInfo } from 'aws-instance-info/async'const node = await 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/async'const node = await 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. Triggers the initial bulk fetch on first call; subsequent calls use LRU cache.