Function: getSecurityTier()
getSecurityTier(
name):SecurityTierConfig
Defined in: .source/wunderland/src/security/SecurityTiers.ts:513
Returns the full SecurityTierConfig for a given tier name.
Parameters
name
A valid security tier name.
Returns
The frozen tier configuration object.
Throws
If name is not a recognised tier.
Example
const tier = getSecurityTier('balanced');
console.log(tier.displayName); // "Balanced"