@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
9 lines (8 loc) • 353 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface EgressOnlyInternetGatewayProperties {
VpcId: Value<string>;
}
export default class Inner_EgressOnlyInternetGateway extends ResourceBase<EgressOnlyInternetGatewayProperties> {
constructor(properties: EgressOnlyInternetGatewayProperties);
}