import { ResourceBase, ResourceTag } from '../resource'; import { List } from '../dataTypes'; export interface InternetGatewayProperties { Tags?: List; } export default class InternetGateway extends ResourceBase { constructor(properties?: InternetGatewayProperties); }