import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface UsagePlanKeyProperties { KeyId: Value; KeyType: Value; UsagePlanId: Value; } export default class UsagePlanKey extends ResourceBase { constructor(properties: UsagePlanKeyProperties); }