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