Skip to content

Commit 1837cf3

Browse files
committed
Add callouts for backend-function configuration not supported in custom functions
1 parent 9dd6a7e commit 1837cf3

File tree

5 files changed

+30
-0
lines changed

5 files changed

+30
-0
lines changed

src/pages/[platform]/build-a-backend/functions/add-lambda-layers/index.mdx

+6
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ export function getStaticProps() {
3131

3232
Amplify offers the ability to add layers to your functions which contain your library dependencies. Lambda layers allow you to separate your function code from its dependencies, enabling easier management of shared components across multiple functions and reducing deployment package sizes.
3333

34+
<Callout info>
35+
36+
**Note:** Configuring or adding layers in `defineFunction` is not supported for [Custom Functions](/[platform]/build-a-backend/functions/custom-functions/).
37+
38+
</Callout>
39+
3440
To add a Lambda layer to your function, follow these steps:
3541

3642
1. First, create and set up your Lambda layer in AWS. You can do this through the AWS Console or using the AWS CLI. For guidance on creating layers, refer to the [AWS documentation on creating Lambda layers](https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html#configuration-layers-create).

src/pages/[platform]/build-a-backend/functions/configure-functions/index.mdx

+6
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ export function getStaticProps() {
3232

3333
`defineFunction` comes out-of-the-box with sensible but minimal defaults. The following options are provided to tweak the function configuration.
3434

35+
<Callout info>
36+
37+
**Note:** The following options are not supported for [Custom Functions](/[platform]/build-a-backend/functions/custom-functions/) except for `resourceGroupName`.
38+
39+
</Callout>
40+
3541
## `name`
3642

3743
By default, functions are named based on the directory the `defineFunction` call is placed in. In the above example, defining the function in `amplify/functions/my-demo-function/resource.ts` will cause the function to be named `my-demo-function` by default.

src/pages/[platform]/build-a-backend/functions/custom-functions/index.mdx

+6
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ AWS Amplify Gen 2 functions are AWS Lambda functions that can be used to perform
3838

3939
</Callout>
4040

41+
<Callout info>
42+
43+
**Note:** [Environment variables and secrets](/[platform]/build-a-backend/functions/environment-variables-and-secrets/), [scheduling configuration](/[platform]/build-a-backend/functions/scheduling-functions/), [lambda layers](/[platform]/build-a-backend/functions/add-lambda-layers/) and [functions-options](/[platform]/build-a-backend/functions/configure-functions/) in `defineFunction` are not supported for Custom Functions. You can specify these configurations directly in your CDK Function definition.
44+
45+
</Callout>
46+
4147
In this guide, you will learn how to create Python and Go functions with Amplify functions. The examples shown in this guide do not use Docker to build functions. Instead, the examples use commands that run on your host system to build, and as such require the necessary tooling for the language you are using for your functions.
4248

4349
## Python

src/pages/[platform]/build-a-backend/functions/environment-variables-and-secrets/index.mdx

+6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ Amplify Functions support setting environment variables and secrets on the `envi
3737

3838
</Callout>
3939

40+
<Callout info>
41+
42+
**Note:** Environment variables and secrets configuration in `defineFunction` is not supported for [Custom Functions](/[platform]/build-a-backend/functions/custom-functions/).
43+
44+
</Callout>
45+
4046
## Environment variables
4147

4248
Environment variables can be configured in `defineFunction` using the `environment` property.

src/pages/[platform]/build-a-backend/functions/scheduling-functions/index.mdx

+6
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ export function getStaticProps() {
3131

3232
Amplify offers the ability to schedule Functions to run on specific intervals using natural language or [cron expressions](https://en.wikipedia.org/wiki/Cron). To get started, specify the `schedule` property in `defineFunction`:
3333

34+
<Callout info>
35+
36+
**Note:** Configuring the schedule in `defineFunction` is not supported for [Custom Functions](/[platform]/build-a-backend/functions/custom-functions/).
37+
38+
</Callout>
39+
3440
```ts title="amplify/jobs/weekly-digest/resource.ts"
3541
import { defineFunction } from "@aws-amplify/backend";
3642

0 commit comments

Comments
 (0)