interface LimitEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayRateLimit.LimitEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayRateLimit_LimitEntryProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayRateLimit.LimitEntryProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayRateLimit.LimitEntryProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayRateLimit » LimitEntryProperty |
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 { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const limitEntryProperty: bedrockagentcore.CfnGatewayRateLimit.LimitEntryProperty = {
dimensions: {
dimensionsKey: 'dimensions',
},
// the properties below are optional
connections: [{
period: 'period',
rate: 123,
}],
requests: [{
period: 'period',
rate: 123,
}],
tokens: [{
period: 'period',
rate: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dimensions | IResolvable | { [string]: string } | Map of dimension name to dimension value for a rule entry. |
| connections? | IResolvable | (IResolvable | Rate)[] | Connection rate limits (per second only). |
| requests? | IResolvable | (IResolvable | Rate)[] | Request rate limits (RPS or RPM). |
| tokens? | IResolvable | (IResolvable | Rate)[] | Token rate limits (TPM). |
dimensions
Type:
IResolvable | { [string]: string }
Map of dimension name to dimension value for a rule entry.
connections?
Type:
IResolvable | (IResolvable | Rate)[]
(optional)
Connection rate limits (per second only).
Limited to 1 entry for now. — P2
requests?
Type:
IResolvable | (IResolvable | Rate)[]
(optional)
Request rate limits (RPS or RPM).
Limited to 1 entry for now.
tokens?
Type:
IResolvable | (IResolvable | Rate)[]
(optional)
Token rate limits (TPM).
Limited to 1 entry for now. — P1

.NET
Go
Java
Python
TypeScript