import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface CustomerGatewayAssociationProperties { GlobalNetworkId: Value; DeviceId: Value; CustomerGatewayArn: Value; LinkId?: Value; } export default class CustomerGatewayAssociation extends ResourceBase { constructor(properties: CustomerGatewayAssociationProperties); }