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

    Interface AvailabilityImpact

    Impact associated with the availability of the system

    Describes the expected uptime and recovery characteristics for the selected availability security level.

    const impact: AvailabilityImpact = {
    level: 'High',
    description: 'System must be available 99.9% of the time',
    uptime: '99.9%',
    recoveryTime: '< 1 hour'
    };
    interface AvailabilityImpact {
        description: string;
        level: SecurityLevel;
        recoveryTime: string;
        uptime: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    description: string

    Human-readable description of the impact

    Security level associated with this impact

    recoveryTime: string

    Maximum acceptable recovery time (e.g., "< 1 hour", "< 15 minutes")

    uptime: string

    Expected uptime percentage (e.g., "99.9%", "99.99%")