Get all data for an RDS instance family. Includes the list of instance classes in the family. Results are served from LRU cache.
The instance family (e.g., "M5")
Promise resolving to family data including category and instance class list
import { getRDSFamily } from 'aws-instance-info/async'const family = await 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/async'const family = await 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 served from LRU cache.