Security profile containing all security levels
Represents a complete security configuration for a system, including individual CIA component levels and an overall security level.
const profile: SecurityProfile = { availabilityLevel: 'High', integrityLevel: 'Very High', confidentialityLevel: 'High', securityLevel: 'Very High' // Calculated from highest component level}; Copy
const profile: SecurityProfile = { availabilityLevel: 'High', integrityLevel: 'Very High', confidentialityLevel: 'High', securityLevel: 'Very High' // Calculated from highest component level};
Security level for system availability
Security level for data confidentiality
Security level for data integrity
Overall security level (typically the highest of the three components)
Security profile containing all security levels
Represents a complete security configuration for a system, including individual CIA component levels and an overall security level.
Example