/Knowledge/sources/honojs__hono/llms-full/lambda-edge-deploy--part-02--5b03f526ac0b.md
Lambda@Edge: Deploy (part 02) - hono-docs
Lambda@Edge: Deploy (part 02) Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt 3 deploy Summary ts impo...
Lambda@Edge: Deploy (part 02)
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#3-deploy
Summary
## Content
```ts
import { Construct } from 'constructs'
import * as cdk from 'aws-cdk-lib'
import * as cloudfront from 'aws-cdk-lib/aws-cloudfront'
import * as origins from 'aws-cdk-lib/aws-cloudfront-origins'
import * as lambda from 'aws-cdk-lib/aws-lambda'
import { NodejsFunction } from 'aws-cdk-lib/aws-lambda-nodejs'
import * as s3 from 'aws-cdk-lib/aws-s3'
export class MyAppStack extends cdk.Stack {
public readonly edgeFn: lambda.Function
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props)
const edgeFn = new NodejsFunction(this, 'edgeViewer', {
entry: 'lambda/index_edge.ts',
handler: 'handler',
runtime: lambda.Runtime.NODEJS_20_X,
})
// Upload any html
const originBucket = new s3.Bucket(this, 'originBucket')
new cloudfront.Distribution(this, 'Cdn', {
defaultBehavior: {
origin: new origins.S3Origin(originBucket),
edgeLambdas: [
{
functionVersion: edgeFn.currentVersion,
eventType: cloudfront.LambdaEdgeEventType.VIEWER_REQUEST,
},
],
},
})
}
}
Metadata
{
"chunk_index": 1,
"citation": "https://hono.dev/llms-full.txt#3-deploy",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Lambda@Edge > 3. Deploy (2)",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 494,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Lambda@Edge: Deploy (part 02)",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}