@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
12 lines (11 loc) • 402 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, MapOf } from "../../data-types";
export interface PlacementProperties {
PlacementName?: Value<string>;
ProjectName: Value<string>;
AssociatedDevices?: MapOf<any>;
Attributes?: MapOf<any>;
}
export default class Inner_Placement extends ResourceBase<PlacementProperties> {
constructor(properties: PlacementProperties);
}