Interface PolicyPackArgs

The set of arguments for constructing a PolicyPack.

interface PolicyPackArgs {
    enforcementLevel?: EnforcementLevel;
    policies: Policies;
}

Properties

enforcementLevel?: EnforcementLevel

Indicates what to do on policy violation, e.g., block deployment but allow override with proper permissions. Default for all policies in the PolicyPack. Individual policies can override.

policies: Policies

The policies associated with a PolicyPack. These check for and enforce policies.

Generated using TypeDoc