Get all node types belonging to a specific ElastiCache family.
The node family (e.g., "M5")
Promise resolving to array of node type names in the family
import { getElastiCacheFamilyNodeTypes } from 'aws-instance-info/async'const nodeTypes = await getElastiCacheFamilyNodeTypes('M5')console.log(nodeTypes) // ['cache.m5.large', 'cache.m5.xlarge', 'cache.m5.2xlarge', ...] Copy
import { getElastiCacheFamilyNodeTypes } from 'aws-instance-info/async'const nodeTypes = await getElastiCacheFamilyNodeTypes('M5')console.log(nodeTypes) // ['cache.m5.large', 'cache.m5.xlarge', 'cache.m5.2xlarge', ...]
Get all node types belonging to a specific ElastiCache family.