Skip to content

Commit

Permalink
remove IRoute extension
Browse files Browse the repository at this point in the history
  • Loading branch information
shikha372 committed Sep 17, 2024
1 parent 6f734ff commit 7fc41d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/@aws-cdk/aws-ec2-alpha/lib/route.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CfnEIP, CfnEgressOnlyInternetGateway, CfnInternetGateway, CfnNatGateway, CfnRoute, CfnRouteTable, CfnVPCGatewayAttachment, CfnVPNGateway, CfnVPNGatewayRoutePropagation, GatewayVpcEndpoint, IRouteTable, IVpcEndpoint, RouterType } from 'aws-cdk-lib/aws-ec2';
import { Construct, IConstruct, IDependable } from 'constructs';
import { Annotations, Duration, IResource, Resource } from 'aws-cdk-lib/core';
import { Construct, IDependable } from 'constructs';
import { Annotations, Duration, Resource } from 'aws-cdk-lib/core';
import { IVpcV2, VPNGatewayV2Options } from './vpc-v2-base';
import { NetworkUtils, allRouteTableIds } from './util';
import { ISubnetV2 } from './subnet-v2';
Expand Down Expand Up @@ -456,7 +456,7 @@ export class RouteTargetType {
/**
* Interface to define a route.
*/
export interface IRoute extends IConstruct, IResource {
export interface IRoute {
/**
* The ID of the route table for the route.
* @attribute routeTable
Expand Down

0 comments on commit 7fc41d0

Please sign in to comment.