UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

12 lines (11 loc) 427 B
import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource"; import { Value, List, MapOf } from "../../data-types"; export interface DocumentProperties { Content: MapOf<any>; DocumentType?: Value<string>; Name?: Value<string>; Tags?: List<Inner_ResourceTag>; } export default class Inner_Document extends ResourceBase<DocumentProperties> { constructor(properties: DocumentProperties); }