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