import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface RouteProperties { DestinationCidrBlock?: Value; DestinationIpv6CidrBlock?: Value; EgressOnlyInternetGatewayId?: Value; GatewayId?: Value; InstanceId?: Value; NatGatewayId?: Value; NetworkInterfaceId?: Value; RouteTableId: Value; TransitGatewayId?: Value; VpcPeeringConnectionId?: Value; } export default class Route extends ResourceBase { constructor(properties: RouteProperties); }