You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
120
120
121
121
#### API_KEY
122
122
@@ -208,7 +208,15 @@ val apolloClient = ApolloClient.Builder()
208
208
209
209
### AppSync Authorizers
210
210
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.
212
220
213
221
#### API_KEY
214
222
@@ -240,6 +248,18 @@ val authorizer = AuthTokenAuthorizer {
240
248
}
241
249
//highlight-end
242
250
```
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) }
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.
0 commit comments