Get business impact details for a specific component and security level
This function retrieves comprehensive business impact information based on the CIA component (availability, integrity, or confidentiality) and the selected security level.
CIA component to get impact for
Security level for the component
Business impact details including risk level, revenue loss, and recovery time
If component or level is invalid
const impact = getBusinessImpact("availability", "High");console.log(impact.riskLevel); // "Low"console.log(impact.annualRevenueLoss); // "Potential revenue loss <2% annually" Copy
const impact = getBusinessImpact("availability", "High");console.log(impact.riskLevel); // "Low"console.log(impact.annualRevenueLoss); // "Potential revenue loss <2% annually"
Get business impact details for a specific component and security level
This function retrieves comprehensive business impact information based on the CIA component (availability, integrity, or confidentiality) and the selected security level.