Skip to content

Commit d65004f

Browse files
authored
Merge branch 'aws-amplify:main' into main
2 parents dcdfc7f + 19b6501 commit d65004f

File tree

7 files changed

+45
-8
lines changed

7 files changed

+45
-8
lines changed

.github/workflows/accessibility_scan.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
jobs:
99
accessibility:
1010
name: Runs accessibility scan on changed pages
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- name: Checkout branch
1414
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
@@ -32,7 +32,7 @@ jobs:
3232
const buildDir = process.env.BUILD_DIR;
3333
return getChangedPages({github, context, buildDir});
3434
- name: Run site
35-
run: |
35+
run: |
3636
python -m http.server 3000 -d ${{ env.BUILD_DIR }} &
3737
sleep 5
3838
- name: Run accessibility tests on changed/new MDX pages

.github/workflows/check_for_console_errors.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
contents: read
1010
jobs:
1111
CheckConsoleErrors:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Checkout repository
1515
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

.github/workflows/check_pr_for_broken_links.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
BUILD_DIR: 'client/www/next-build'
88
jobs:
99
CheckPRLinks:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Checkout repository
1313
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

cspell.json

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
"amazonaws",
6969
"amazonaws",
7070
"amazoncognito",
71+
"amazonlinux",
7172
"AmazonPersonalizeProvider",
7273
"AmazonS3Client",
7374
"Amplif",

src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx

+6
Original file line numberDiff line numberDiff line change
@@ -812,6 +812,12 @@ func confirmSignIn() -> AnyCancellable {
812812

813813
To sign in using an external identity provider such as Google, use the `signInWithRedirect` function.
814814

815+
<Callout info>
816+
817+
For guidance on configuring an external Identity Provider with Amplify see [External Identity Providers](/[platform]/build-a-backend/auth/concepts/external-identity-providers/)
818+
819+
</Callout>
820+
815821
```ts
816822
import { signInWithRedirect } from "aws-amplify/auth"
817823

src/pages/[platform]/build-a-backend/data/aws-appsync-apollo-extensions/index.mdx

+13
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,19 @@ You can alternatively download the introspection schema using the [`fetch-schema
320320
2. On the left side, select Schema
321321
3. When viewing your schema, there should a “Export schema” drop down. Select this and download the `schema.json` file.
322322
4. Add this file to your project as directed by [Apollo documentation](https://www.apollographql.com/docs/kotlin/advanced/plugin-recipes#specifying-the-schema-location)
323+
324+
### Type Mapping AppSync Scalars
325+
By default, [AWS AppSync Scalars](https://docs.aws.amazon.com/appsync/latest/devguide/scalars.html#graph-ql-aws-appsync-scalars) will default to the `Any` type. You can map these scalars to more explicit types by editing the `apollo` block in your `app/build.gradle[.kts]` file. In the example below, we are now mapping a few of our AppSync scalar types to `String` instead of `Any`. Additional improvements could be made by writing [custom class adapters](https://www.apollographql.com/docs/kotlin/essentials/custom-scalars#define-class-mapping) to convert date/time scalars into Kotlin date/time class types.
326+
327+
```kotlin
328+
apollo {
329+
service("{serviceName}") {
330+
packageName.set("{packageName}")
331+
mapScalarToKotlinString("AWSDateTime")
332+
mapScalarToKotlinString("AWSEmail")
333+
}
334+
}
335+
```
323336
</InlineFilter>
324337

325338
### Performing Queries, Mutations, and Subscriptions with Apollo client

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

+21-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ AWS Amplify Gen 2 functions are AWS Lambda functions that can be used to perform
3434

3535
<Callout warning>
3636

37-
**Note:** [Fullstack Git-based environments](https://docs.amplify.aws/react/how-amplify-works/concepts/#fullstack-git-based-environments) do not support Docker for functions bundling out of the box.
37+
**Note:** [Fullstack Git-based environments](https://docs.amplify.aws/react/how-amplify-works/concepts/#fullstack-git-based-environments) do not support Docker for functions bundling out of the box. To learn more [skip to the Docker section](#docker).
3838

3939
</Callout>
4040

@@ -81,7 +81,7 @@ Next, create the corresponding handler file at `amplify/functions/say-hello/inde
8181

8282
```ts title="amplify/functions/say-hello/index.py"
8383
import json
84-
84+
8585
def handler(event, context):
8686
return {
8787
"statusCode": 200,
@@ -104,7 +104,7 @@ some-other-package>=1.0.0
104104
You're now ready to deploy your python function. Next is the same process as the Node.js/TypeScript function. Go to [Common steps for all languages](#common-steps-for-all-languages) to continue.
105105
106106
## Go
107-
To get started, Create a new directory and a resource file, `amplify/functions/say-hello/resource.ts`. Then, define the function with `defineFunction`:
107+
To get started, Create a new directory and a resource file, `amplify/functions/say-hello/resource.ts`. Then, define the function with `defineFunction`:
108108
109109
```ts title="amplify/functions/say-hello/resource.ts"
110110
import { execSync } from "node:child_process";
@@ -187,7 +187,7 @@ go mod tidy
187187

188188
You're now ready to deploy your golang function. Next is the same process as the Node.js/TypeScript function.
189189

190-
## Common steps for all languages
190+
## Common steps for all languages
191191

192192
Regardless of the language used, your function needs to be added to your backend.
193193
```ts title="amplify/backend.ts"
@@ -228,3 +228,20 @@ export const data = defineData({
228228
},
229229
})
230230
```
231+
232+
## Docker
233+
234+
Custom function may require [Docker](https://www.docker.com/) in order to build and bundle function's code. A deployment failing with `CustomFunctionProviderDockerError` error indicates that a custom function requires Docker but the Docker daemon was not found. In that case you need to provide a working Docker installation at runtime.
235+
236+
### Personal sandboxes
237+
238+
Ensure that Docker is installed on your computer and that Docker daemon is running. You can check if Docker daemon is running using the following command:
239+
```bash title="terminal" showLineNumbers={false}
240+
docker info
241+
```
242+
243+
### Fullstack Git-based environments
244+
245+
Amplify does not provide Docker daemon out of the box in branch deployments. However, you have an option to provide [your own image that meets Amplify requirements](https://docs.aws.amazon.com/amplify/latest/userguide/custom-build-image.html) and includes a Docker installation.
246+
247+
For example, the `aws/codebuild/amazonlinux-x86_64-standard:5.0` image ([see definition](https://github.com/aws/aws-codebuild-docker-images)) meets Amplify requirements and includes Docker installation.

0 commit comments

Comments
 (0)