From c879cd0debf76a4ff0babe258ff4882d5f117357 Mon Sep 17 00:00:00 2001 From: Kahnco <44552228+ggj0418@users.noreply.github.com> Date: Thu, 23 May 2024 17:17:11 +0900 Subject: [PATCH] Update index.mdx typo: wrong file name description from `amplify/functions/dynamoDB-function/resource.ts` to `amplify/functions/dynamoDB-function/handler.ts` --- .../functions/examples/dynamo-db-stream/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/[platform]/build-a-backend/functions/examples/dynamo-db-stream/index.mdx b/src/pages/[platform]/build-a-backend/functions/examples/dynamo-db-stream/index.mdx index af1418989fb..9674d6827b4 100644 --- a/src/pages/[platform]/build-a-backend/functions/examples/dynamo-db-stream/index.mdx +++ b/src/pages/[platform]/build-a-backend/functions/examples/dynamo-db-stream/index.mdx @@ -51,7 +51,7 @@ export const myDynamoDBFunction = defineFunction({ Third, create the corresponding handler file, `amplify/functions/dynamoDB-function/handler.ts`, file with the following contents: -```ts title="amplify/functions/dynamoDB-function/resource.ts" +```ts title="amplify/functions/dynamoDB-function/handler.ts" import type { DynamoDBStreamHandler } from "aws-lambda"; import { Logger } from "@aws-lambda-powertools/logger";