UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

13 lines (12 loc) 400 B
import { ResourceBase } from "../../resource"; import { Value, MapOf } from "../../data-types"; export interface PresetProperties { Category?: Value<string>; Description?: Value<string>; SettingsJson: MapOf<any>; Tags?: MapOf<any>; Name?: Value<string>; } export default class Inner_Preset extends ResourceBase<PresetProperties> { constructor(properties: PresetProperties); }