CIA Compliance Manager API Documentation - v1.1.6
    Preparing search index...

    Variable IMPLEMENTATION_COSTSConst

    IMPLEMENTATION_COSTS: Record<
        SecurityLevel,
        { developmentEffort: string; expertise: string; maintenance: string },
    > = ...

    Implementation cost estimates by security level.

    Provides rough estimates for development effort, ongoing maintenance, and required expertise for each security level. These estimates help stakeholders understand the resource requirements for implementing different security postures.

    // Display implementation requirements
    const level = 'High';
    const costs = IMPLEMENTATION_COSTS[level];

    console.log(`Development: ${costs.developmentEffort}`); // "1-2 Months"
    console.log(`Maintenance: ${costs.maintenance}`); // "Daily monitoring"
    console.log(`Expertise: ${costs.expertise}`); // "Senior"

    // In cost estimation widget
    <div>
    <p>Development Effort: {costs.developmentEffort}</p>
    <p>Maintenance: {costs.maintenance}</p>
    <p>Required Expertise: {costs.expertise}</p>
    </div>