Interface CfnGatewayRateLimit.LimitEntryProperty

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

@Stability(Stable) public static interface CfnGatewayRateLimit.LimitEntryProperty extends software.amazon.jsii.JsiiSerializable
A single rule entry within a limit, mapping dimension values to rate configurations.

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.bedrockagentcore.*;
 LimitEntryProperty limitEntryProperty = LimitEntryProperty.builder()
         .dimensions(Map.of(
                 "dimensionsKey", "dimensions"))
         // the properties below are optional
         .connections(List.of(RateConfigProperty.builder()
                 .period("period")
                 .rate(123)
                 .build()))
         .requests(List.of(RateConfigProperty.builder()
                 .period("period")
                 .rate(123)
                 .build()))
         .tokens(List.of(RateConfigProperty.builder()
                 .period("period")
                 .rate(123)
                 .build()))
         .build();
 

See Also: