Skip to content

Commit 337a4bb

Browse files
author
AWS
committed
AWS AppSync Update: Adding support for paginators in AppSync list APIs
1 parent b0450ec commit 337a4bb

File tree

3 files changed

+68
-1
lines changed

3 files changed

+68
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS AppSync",
4+
"contributor": "",
5+
"description": "Adding support for paginators in AppSync list APIs"
6+
}
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,64 @@
11
{
22
"pagination": {
3+
"ListApiKeys": {
4+
"input_token": "nextToken",
5+
"output_token": "nextToken",
6+
"limit_key": "maxResults",
7+
"result_key": "apiKeys"
8+
},
9+
"ListDataSources": {
10+
"input_token": "nextToken",
11+
"output_token": "nextToken",
12+
"limit_key": "maxResults",
13+
"result_key": "dataSources"
14+
},
15+
"ListDomainNames": {
16+
"input_token": "nextToken",
17+
"output_token": "nextToken",
18+
"limit_key": "maxResults",
19+
"result_key": "domainNameConfigs"
20+
},
21+
"ListFunctions": {
22+
"input_token": "nextToken",
23+
"output_token": "nextToken",
24+
"limit_key": "maxResults",
25+
"result_key": "functions"
26+
},
27+
"ListGraphqlApis": {
28+
"input_token": "nextToken",
29+
"output_token": "nextToken",
30+
"limit_key": "maxResults",
31+
"result_key": "graphqlApis"
32+
},
33+
"ListResolvers": {
34+
"input_token": "nextToken",
35+
"output_token": "nextToken",
36+
"limit_key": "maxResults",
37+
"result_key": "resolvers"
38+
},
39+
"ListResolversByFunction": {
40+
"input_token": "nextToken",
41+
"output_token": "nextToken",
42+
"limit_key": "maxResults",
43+
"result_key": "resolvers"
44+
},
45+
"ListSourceApiAssociations": {
46+
"input_token": "nextToken",
47+
"output_token": "nextToken",
48+
"limit_key": "maxResults",
49+
"result_key": "sourceApiAssociationSummaries"
50+
},
51+
"ListTypes": {
52+
"input_token": "nextToken",
53+
"output_token": "nextToken",
54+
"limit_key": "maxResults",
55+
"result_key": "types"
56+
},
57+
"ListTypesByAssociation": {
58+
"input_token": "nextToken",
59+
"output_token": "nextToken",
60+
"limit_key": "maxResults",
61+
"result_key": "types"
62+
}
363
}
464
}

services/appsync/src/main/resources/codegen-resources/service-2.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"serviceId":"AppSync",
1212
"signatureVersion":"v4",
1313
"signingName":"appsync",
14-
"uid":"appsync-2017-07-25"
14+
"uid":"appsync-2017-07-25",
15+
"auth":["aws.auth#sigv4"]
1516
},
1617
"operations":{
1718
"AssociateApi":{

0 commit comments

Comments
 (0)