Skip to content

Commit 3c960c5

Browse files
authored
change int to integer for maxresults (#447)
1 parent b216db2 commit 3c960c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/software/amazon/cloudformation/proxy/HandlerRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class HandlerRequest<ResourceT, CallbackT, ConfigurationT> {
2929
private String awsAccountId;
3030
private String bearerToken;
3131
private String nextToken;
32-
private int maxResults;
32+
private Integer maxResults;
3333
private String region;
3434
private String resourceType;
3535
private String resourceTypeVersion;

src/main/java/software/amazon/cloudformation/proxy/ResourceHandlerRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ public class ResourceHandlerRequest<T> {
5151
private Map<String, Object> creationPolicy;
5252
private String region;
5353
private String stackId;
54-
private int maxResults;
54+
private Integer maxResults;
5555
}

0 commit comments

Comments
 (0)