Interface RateLimitedApiKeyProps

All Superinterfaces:
ApiKeyOptions, ApiKeyProps, software.amazon.jsii.JsiiSerializable, ResourceOptions
All Known Implementing Classes:
RateLimitedApiKeyProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:33:56.819Z") @Stability(Stable) public interface RateLimitedApiKeyProps extends software.amazon.jsii.JsiiSerializable, ApiKeyProps
RateLimitedApiKey properties.

Example:

 RestApi api;
 RateLimitedApiKey key = RateLimitedApiKey.Builder.create(this, "rate-limited-api-key")
         .customerId("hello-customer")
         .stages(List.of(api.getDeploymentStage()))
         .quota(QuotaSettings.builder()
                 .limit(10000)
                 .period(Period.MONTH)
                 .build())
         .build();