13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
import type { IResource } from '../../../core';
|
|
import type { IIntegrationRef } from '../apigatewayv2.generated';
|
|
/**
|
|
* Represents an integration to an API Route.
|
|
*/
|
|
export interface IIntegration extends IResource, IIntegrationRef {
|
|
/**
|
|
* Id of the integration.
|
|
* @attribute
|
|
*/
|
|
readonly integrationId: string;
|
|
}
|