@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
11 lines (10 loc) • 405 B
TypeScript
import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource";
import { Value, List } from "../../data-types";
export interface NatGatewayProperties {
AllocationId: Value<string>;
SubnetId: Value<string>;
Tags?: List<Inner_ResourceTag>;
}
export default class Inner_NatGateway extends ResourceBase<NatGatewayProperties> {
constructor(properties: NatGatewayProperties);
}