Skip to content

Commit

Permalink
fix(kms): have EncryptionKeyBase implement IEncryptionKey (#1728)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Goodwin committed Feb 11, 2019
1 parent 2016b8d commit 49080c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-kms/lib/key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface EncryptionKeyImportProps {
keyArn: string;
}

export abstract class EncryptionKeyBase extends Construct {
export abstract class EncryptionKeyBase extends Construct implements IEncryptionKey {
/**
* The ARN of the key.
*/
Expand Down

0 comments on commit 49080c6

Please sign in to comment.