13 lines
283 B
TypeScript
13 lines
283 B
TypeScript
import type { IResource } from '../../../core';
|
|
import type { IRouteRef } from '../apigatewayv2.generated';
|
|
/**
|
|
* Represents a route.
|
|
*/
|
|
export interface IRoute extends IResource, IRouteRef {
|
|
/**
|
|
* Id of the Route
|
|
* @attribute
|
|
*/
|
|
readonly routeId: string;
|
|
}
|