@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
16 lines (15 loc) • 495 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, MapOf } from "../../data-types";
export interface ParameterProperties {
Type: Value<string>;
Description?: Value<string>;
Policies?: Value<string>;
AllowedPattern?: Value<string>;
Tier?: Value<string>;
Value: Value<string>;
Tags?: MapOf<any>;
Name?: Value<string>;
}
export default class Inner_Parameter extends ResourceBase<ParameterProperties> {
constructor(properties: ParameterProperties);
}