aws-instance-info - v0.2.1
    Preparing search index...

    Function getRDSInstanceInfo

    • Get detailed information for a specific RDS instance class. Loads only the JSON file for the requested instance class. Results are cached using LRU.

      Parameters

      Returns RDSInstanceDetails

      Instance class details including vCPUs, memory, network, and storage specs

      import { getRDSInstanceInfo } from 'aws-instance-info'

      const instance = getRDSInstanceInfo('db.m5.large')
      console.log(instance.instanceClass) // 'db.m5.large'
      console.log(instance.vCPUs) // 2
      console.log(instance.memoryGiB) // 8
      console.log(instance.networkBandwidthGbps) // 'Up to 10'