UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

14 lines (13 loc) 466 B
import { ResourceBase } from "../../resource"; import { Value } from "../../data-types"; export interface ApiCacheProperties { Type: Value<string>; TransitEncryptionEnabled?: Value<boolean>; AtRestEncryptionEnabled?: Value<boolean>; ApiId: Value<string>; ApiCachingBehavior: Value<string>; Ttl: Value<number>; } export default class Inner_ApiCache extends ResourceBase<ApiCacheProperties> { constructor(properties: ApiCacheProperties); }