interface CfnGatewayRateLimitProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayRateLimitProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayRateLimitProps |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayRateLimitProps |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayRateLimitProps |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayRateLimitProps |
Properties for defining a CfnGatewayRateLimit.
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 cfnGatewayRateLimitProps: bedrockagentcore.CfnGatewayRateLimitProps = {
dimensionKeys: ['dimensionKeys'],
entries: [{
dimensions: {
dimensionsKey: 'dimensions',
},
// the properties below are optional
connections: [{
period: 'period',
rate: 123,
}],
requests: [{
period: 'period',
rate: 123,
}],
tokens: [{
period: 'period',
rate: 123,
}],
}],
// the properties below are optional
description: 'description',
gatewayIdentifier: 'gatewayIdentifier',
rateLimitId: 'rateLimitId',
};
Properties
| Name | Type | Description |
|---|---|---|
| dimension | string[] | Ordered list of dimension names defining the scope of this limit. |
| entries | IResolvable | (IResolvable | Limit)[] | Rule entries mapping dimension values to rate configurations. |
| description? | string | Optional human-readable description for this limit. |
| gateway | string | |
| rate | string | Limit identifier. |
dimensionKeys
Type:
string[]
Ordered list of dimension names defining the scope of this limit.
Unique per gateway — no two limits can share the same dimensionKeys.
entries
Type:
IResolvable | (IResolvable | Limit)[]
Rule entries mapping dimension values to rate configurations.
description?
Type:
string
(optional)
Optional human-readable description for this limit.
gatewayIdentifier?
Type:
string
(optional)
rateLimitId?
Type:
string
(optional)
Limit identifier.
Optional on Create (system-generates if not provided by customer). Always present in responses.

.NET
Go
Java
Python
TypeScript