import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface VPCGatewayAttachmentProperties { InternetGatewayId?: Value; VpcId: Value; VpnGatewayId?: Value; } export default class VPCGatewayAttachment extends ResourceBase { constructor(properties: VPCGatewayAttachmentProperties); }