Get the category for an RDS instance family.
The instance family (e.g., "M5")
The category (e.g., "general_purpose")
import { getRDSFamilyCategory } from 'aws-instance-info'const category = getRDSFamilyCategory('M5')console.log(category) // 'general_purpose'const category2 = getRDSFamilyCategory('R6g')console.log(category2) // 'memory_optimized' Copy
import { getRDSFamilyCategory } from 'aws-instance-info'const category = getRDSFamilyCategory('M5')console.log(category) // 'general_purpose'const category2 = getRDSFamilyCategory('R6g')console.log(category2) // 'memory_optimized'
Get the category for an RDS instance family.