UNPKG

@enfo/aws-cdkompliance

Version:

Tagging and compliant resources using the CDK

17 lines 493 B
import { Key as KMSKey, KeyProps } from 'aws-cdk-lib/aws-kms'; import { Construct } from 'constructs'; /** * Properties for a new Compliant KMS Key */ export declare const defaultKeyProps: KeyProps; /** * Compliant KMS Key. * * See README for usage examples */ export declare class Key extends KMSKey { protected calculatedProps: KeyProps; constructor(scope: Construct, id: string, props?: KeyProps); protected checkEncryption(): string[]; } //# sourceMappingURL=kms.d.ts.map