Skip to content

Commit 9b42f8a

Browse files
author
AWS
committed
AWS Amplify Update: Updating max results limit for listing any resources (Job, Artifacts, Branch, BackendResources, DomainAssociation) to 50 with the exception of list apps that where max results can be up to 100.
1 parent 15b3ffb commit 9b42f8a

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-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 Amplify",
4+
"contributor": "",
5+
"description": "Updating max results limit for listing any resources (Job, Artifacts, Branch, BackendResources, DomainAssociation) to 50 with the exception of list apps that where max results can be up to 100."
6+
}

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"endpointPrefix":"amplify",
66
"jsonVersion":"1.1",
77
"protocol":"rest-json",
8+
"protocols":["rest-json"],
89
"serviceAbbreviation":"Amplify",
910
"serviceFullName":"AWS Amplify",
1011
"serviceId":"Amplify",
@@ -2333,7 +2334,7 @@
23332334
"locationName":"nextToken"
23342335
},
23352336
"maxResults":{
2336-
"shape":"MaxResults",
2337+
"shape":"MaxResultsForListApps",
23372338
"documentation":"<p>The maximum number of records to list in a single response. </p>",
23382339
"location":"querystring",
23392340
"locationName":"maxResults"
@@ -2660,6 +2661,11 @@
26602661
"pattern":"(?s).*"
26612662
},
26622663
"MaxResults":{
2664+
"type":"integer",
2665+
"max":50,
2666+
"min":0
2667+
},
2668+
"MaxResultsForListApps":{
26632669
"type":"integer",
26642670
"max":100,
26652671
"min":0

0 commit comments

Comments
 (0)