Interface CfnUsagePlan.ApiStageProperty

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

@Stability(Stable) public static interface CfnUsagePlan.ApiStageProperty extends software.amazon.jsii.JsiiSerializable
API stage name of the associated API stage in a usage plan.

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.*;
 ApiStageProperty apiStageProperty = ApiStageProperty.builder()
         .apiId("apiId")
         .stage("stage")
         .throttle(Map.of(
                 "throttleKey", ThrottleSettingsProperty.builder()
                         .burstLimit(123)
                         .rateLimit(123)
                         .build()))
         .build();