Skip to content

Commit 9493c35

Browse files
author
Vaibhav Walia
committed
feat(apigateway): Adds construct which allow configuring ratelimiting at api key level
Incorporates changes from code review.
1 parent 4bccb02 commit 9493c35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@aws-cdk/aws-apigateway/lib/rate-limited-api-key.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class RateLimitedApiKey extends Resource implements IApiKey {
3838
physicalName: props.apiKeyName,
3939
});
4040

41-
const resource = new ApiKey(this, 'Resource', props);
41+
const resource = new ApiKey(this, 'Resource', props);
4242

4343
if (props.apiStages || props.quota || props.throttle) {
4444
new UsagePlan(this, 'UsagePlanResource', {

0 commit comments

Comments
 (0)