import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface ApiCacheProperties { Type: Value; TransitEncryptionEnabled?: Value; AtRestEncryptionEnabled?: Value; ApiId: Value; ApiCachingBehavior: Value; Ttl: Value; } export default class ApiCache extends ResourceBase { constructor(properties: ApiCacheProperties); }