Skip to content

Commit 43fc644

Browse files
committed
updates
1 parent 833925c commit 43fc644

File tree

1 file changed

+23
-3
lines changed
  • src/pages/[platform]/build-a-backend/data/aws-appsync-apollo-extensions

1 file changed

+23
-3
lines changed

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

+23-3
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Some common ones are
116116
* `guest` strategy, `identityPool` authMode, **IAMAuthorizer**
117117
* `owner` strategy, `userPool` authMode, **AuthTokenAuthorizer**
118118

119-
If you define multiple authorization strategies on a single model, you will have to create separate Apollo client instances for each Authorizer that you want to use in your app.
119+
If you define multiple authorization strategies within your schema, you will have to create separate Apollo client instances for each Authorizer that you want to use in your app.
120120

121121
#### API_KEY
122122

@@ -208,7 +208,15 @@ val apolloClient = ApolloClient.Builder()
208208

209209
### AppSync Authorizers
210210

211-
AWS AppSync supports the following [authorization modes](https://docs.aws.amazon.com/appsync/latest/devguide/security-authz.html):
211+
AWS AppSync supports the following [authorization modes](https://docs.aws.amazon.com/appsync/latest/devguide/security-authz.html). Use the corresponding Authorizer that matches the chosen authorization type.
212+
213+
Some common ones are
214+
215+
* API Key Authorization -> **APIKeyAuthorizer**
216+
* IAM Authorization -> **IAMAuthorizer**
217+
* Cognito User Pools -> **AuthTokenAuthorizer**
218+
219+
If you apply multiple authorization directives in your schema, you will have to create separate Apollo client instances for each Authorizer that you want to use in your app.
212220

213221
#### API_KEY
214222

@@ -240,6 +248,18 @@ val authorizer = AuthTokenAuthorizer {
240248
}
241249
//highlight-end
242250
```
251+
252+
#### AWS_IAM
253+
254+
When working directly with AppSync, you must implement the request signing yourself.
255+
256+
```kotlin
257+
// highlight-start
258+
// Provide an implementation of the signing function. This function should implement the
259+
// AWS Sig-v4 signing logic and return the authorization headers containing the token and signature.
260+
val authorizer = IamAuthorizer { signRequestAndReturnHeaders(it) }
261+
// highlight-end
262+
```
243263
</Block>
244264

245265
</BlockSwitcher>
@@ -351,7 +371,7 @@ Some common ones are
351371
* `guest` strategy, `identityPool` authMode, **IAMAuthorizer**
352372
* `owner` strategy, `userPool` authMode, **AuthTokenAuthorizer**
353373

354-
If you define multiple authorization strategies on a single model, you will have to create separate Apollo client instances for each Authorizer that you want to use in your app.
374+
If you define multiple authorization strategies within your schema, you will have to create separate Apollo client instances for each Authorizer that you want to use in your app.
355375

356376
</InlineFilter>
357377

0 commit comments

Comments
 (0)