From 8925b77aca9ab0da09ae2f2c97afeecdea9f12f0 Mon Sep 17 00:00:00 2001 From: "Aaron S." <94858815+stocaaro@users.noreply.github.com> Date: Mon, 9 Dec 2024 12:34:37 -0600 Subject: [PATCH] Apply suggestions from code review Co-authored-by: josef --- .../functions/examples/create-user-profile-record/index.mdx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/pages/[platform]/build-a-backend/functions/examples/create-user-profile-record/index.mdx b/src/pages/[platform]/build-a-backend/functions/examples/create-user-profile-record/index.mdx index 6b169907e90..26a5dcd39fc 100644 --- a/src/pages/[platform]/build-a-backend/functions/examples/create-user-profile-record/index.mdx +++ b/src/pages/[platform]/build-a-backend/functions/examples/create-user-profile-record/index.mdx @@ -89,7 +89,6 @@ import { defineFunction } from '@aws-amplify/backend'; export const postConfirmation = defineFunction({ name: 'post-confirmation', - entry: './handler.ts' }); ``` @@ -123,9 +122,7 @@ export const handler: PostConfirmationTriggerHandler = async (event) => { ``` - When configuring Amplify with `getAmplifyDataClientConfig`, your function consumes schema information from an S3 bucket - created during backend deployment with grants for the access your function need to use it. Any changes to this - bucket outside of backend deployment may break your function. +When configuring Amplify with `getAmplifyDataClientConfig`, your function consumes schema information from an S3 bucket created during backend deployment with grants for the access your function need to use it. Any changes to this bucket outside of backend deployment may break your function.