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

    Function getElastiCacheFamily

    • Get all data for an ElastiCache node family. Includes the list of node types in the family. Results are served from LRU cache.

      Parameters

      • family: string

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

      Returns Promise<ElastiCacheFamilyData>

      Promise resolving to family data including category and node type list

      import { getElastiCacheFamily } from 'aws-instance-info/async'

      const family = await getElastiCacheFamily('M5')
      console.log(family.category) // 'general_purpose'
      console.log(family.nodeTypes) // ['cache.m5.large', 'cache.m5.xlarge', ...]