import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export interface CustomerGatewayProperties { BgpAsn: Value; IpAddress: Value; Tags?: List; Type: Value; } export default class CustomerGateway extends ResourceBase { constructor(properties: CustomerGatewayProperties); }