Interface CfnUsagePlan.QuotaSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUsagePlan.QuotaSettingsProperty.Jsii$Proxy
Enclosing class:
CfnUsagePlan

@Stability(Stable) public static interface CfnUsagePlan.QuotaSettingsProperty extends software.amazon.jsii.JsiiSerializable
QuotaSettings is a property of the AWS::ApiGateway::UsagePlan resource that specifies a target for the maximum number of requests users can make to your REST APIs.

In some cases clients can exceed the targets that you set. Don’t rely on usage plans to control costs. Consider using AWS Budgets to monitor costs and AWS WAF to manage API requests.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.apigateway.*;
 QuotaSettingsProperty quotaSettingsProperty = QuotaSettingsProperty.builder()
         .limit(123)
         .offset(123)
         .period("period")
         .build();