Skip to content

Commit

Permalink
feat(client-amplify): Updating max results limit for listing any reso…
Browse files Browse the repository at this point in the history
…urces (Job, Artifacts, Branch, BackendResources, DomainAssociation) to 50 with the exception of list apps that where max results can be up to 100.
  • Loading branch information
awstools committed Apr 29, 2024
1 parent 1d96144 commit c6d74d1
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion codegen/sdk-codegen/aws-models/amplify.json
Original file line number Diff line number Diff line change
Expand Up @@ -4341,7 +4341,7 @@
}
},
"maxResults": {
"target": "com.amazonaws.amplify#MaxResults",
"target": "com.amazonaws.amplify#MaxResultsForListApps",
"traits": {
"smithy.api#default": 0,
"smithy.api#documentation": "<p>The maximum number of records to list in a single response. </p>",
Expand Down Expand Up @@ -5006,6 +5006,16 @@
}
},
"com.amazonaws.amplify#MaxResults": {
"type": "integer",
"traits": {
"smithy.api#default": 0,
"smithy.api#range": {
"min": 0,
"max": 50
}
}
},
"com.amazonaws.amplify#MaxResultsForListApps": {
"type": "integer",
"traits": {
"smithy.api#default": 0,
Expand Down

0 comments on commit c6d74d1

Please sign in to comment.