Skip to content

Bedrock Agentcore Control  >  Structures  >  LimitEntry

LimitEntry

Structure Class

LimitEntry dataclass

A single rule entry within a limit, mapping dimension values to rate configurations

Attributes

connections class-attribute instance-attribute
connections: list[RateConfig] | None = None

Connection rate limits (per second only). Limited to 1 entry for now. --- P2

dimensions instance-attribute
dimensions: dict[str, str]

Map of dimension name to dimension value, matching the parent limit's dimensionKeys. Keys must exactly match the dimensionKeys. Values may be "" as a wildcard. "" may only appear at trailing positions (based on dimensionKeys ordering).

requests class-attribute instance-attribute
requests: list[RateConfig] | None = None

Request rate limits (RPS or RPM). Limited to 1 entry for now.

tokens class-attribute instance-attribute
tokens: list[RateConfig] | None = None

Token rate limits (TPM). Limited to 1 entry for now. --- P1