UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

15 lines (14 loc) 508 B
import { ResourceBase } from "../../resource"; import { Value, MapOf } from "../../data-types"; export declare class AttributePayload { Attributes?: MapOf<Value<string>>; constructor(properties: AttributePayload); } export interface ThingProperties { AttributePayload?: AttributePayload; ThingName?: Value<string>; } export default class Inner_Thing extends ResourceBase<ThingProperties> { static AttributePayload: typeof AttributePayload; constructor(properties: ThingProperties); }