aws-instance-info - v1.0.0
    Preparing search index...

    Function getElastiCacheFamilyNodeTypes

    • Get all node types belonging to a specific ElastiCache family.

      Parameters

      • family: string

        The node family (e.g., "M5")

      Returns Promise<string[]>

      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', ...]