Interface RateLimitedApiKeyProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:45.051Z") @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")
         .resources(List.of(api))
         .quota(QuotaSettings.builder()
                 .limit(10000)
                 .period(Period.MONTH)
                 .build())
         .build();