UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

17 lines (16 loc) 505 B
import { ResourceBase } from "../../resource"; import { Value, List } from "../../data-types"; export declare class Tags { Value?: Value<string>; Key?: Value<string>; constructor(properties: Tags); } export interface ApplicationProperties { Description?: Value<string>; Tags?: List<Tags>; Name: Value<string>; } export default class Inner_Application extends ResourceBase<ApplicationProperties> { static Tags: typeof Tags; constructor(properties: ApplicationProperties); }