Skip to content

Commit 4e3c4ea

Browse files
authored
Fix number type (#102)
1 parent d84abc6 commit 4e3c4ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cdk/lib/cognito-passwordless.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ export class Passwordless extends Construct {
8787
*
8888
* @default 1000
8989
*/
90-
throttlingBurstLimit?: 1000;
90+
throttlingBurstLimit?: number;
9191
/**
9292
* The throttling rate limit for the deployment stage: https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-request-throttling.html
9393
*
9494
* @default 2000
9595
*/
96-
throttlingRateLimit?: 2000;
96+
throttlingRateLimit?: number;
9797
/**
9898
* Create a log role for API Gateway and add this to API Gateway account settings?
9999
* Set to false if you have already set this up in your account and region,

0 commit comments

Comments
 (0)