Files
2026-05-06 18:55:16 -05:00

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;
}