@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
11 lines (10 loc) • 401 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, MapOf } from "../../data-types";
export interface ParameterGroupProperties {
ParameterNameValues?: MapOf<any>;
Description?: Value<string>;
ParameterGroupName?: Value<string>;
}
export default class Inner_ParameterGroup extends ResourceBase<ParameterGroupProperties> {
constructor(properties: ParameterGroupProperties);
}