aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
13 lines (12 loc) • 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;
}