UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

12 lines (11 loc) 430 B
import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource"; import { Value, List } from "../../data-types"; export interface LedgerProperties { PermissionsMode: Value<string>; DeletionProtection?: Value<boolean>; Tags?: List<Inner_ResourceTag>; Name?: Value<string>; } export default class Inner_Ledger extends ResourceBase<LedgerProperties> { constructor(properties: LedgerProperties); }