import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export interface KeyProperties { Description?: Value; EnableKeyRotation?: Value; Enabled?: Value; KeyPolicy: { [key: string]: any; }; KeyUsage?: Value; PendingWindowInDays?: Value; Tags?: List; } export default class Key extends ResourceBase { constructor(properties: KeyProperties); }