How can we do cross-stack reference from serverless.yml to aws cdk code

i have my lambda’s setup in serverless frame work. I want to import the the endpoint of the lambda to aws cdk. i have already exported the output in the serverless.yml file how can Import it to aws cdk>> SST .

You’ll need to do a CloudFormation import:

import * as cdk from '@aws-cdk/core';

cdk.Fn.importValue(“export-name”)