Get all data for an RDS instance family. Includes the list of instance classes in the family. Results are cached using LRU.
The instance family (e.g., "M5")
Family data including category and instance class list
import { getRDSFamily } from 'aws-instance-info'const family = getRDSFamily('M5')console.log(family.category) // 'general_purpose'console.log(family.instanceClasses) // ['db.m5.large', 'db.m5.xlarge', ...] Copy
import { getRDSFamily } from 'aws-instance-info'const family = getRDSFamily('M5')console.log(family.category) // 'general_purpose'console.log(family.instanceClasses) // ['db.m5.large', 'db.m5.xlarge', ...]
Get all data for an RDS instance family. Includes the list of instance classes in the family. Results are cached using LRU.