UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

13 lines (12 loc) 337 B
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; }