@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
11 lines (10 loc) • 406 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface VPCGatewayAttachmentProperties {
InternetGatewayId?: Value<string>;
VpcId: Value<string>;
VpnGatewayId?: Value<string>;
}
export default class Inner_VPCGatewayAttachment extends ResourceBase<VPCGatewayAttachmentProperties> {
constructor(properties: VPCGatewayAttachmentProperties);
}