@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
12 lines (11 loc) • 406 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface BasePathMappingProperties {
BasePath?: Value<string>;
DomainName: Value<string>;
RestApiId?: Value<string>;
Stage?: Value<string>;
}
export default class Inner_BasePathMapping extends ResourceBase<BasePathMappingProperties> {
constructor(properties: BasePathMappingProperties);
}