import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface EgressOnlyInternetGatewayProperties { VpcId: Value; } export default class EgressOnlyInternetGateway extends ResourceBase { constructor(properties: EgressOnlyInternetGatewayProperties); }