interface CfnGatewayRateLimitMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayRateLimitMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayRateLimitMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayRateLimitMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayRateLimitMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayRateLimitMixinProps |
Properties for CfnGatewayRateLimitPropsMixin.
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 cfnGatewayRateLimitMixinProps: bedrockagentcore.CfnGatewayRateLimitMixinProps = {
description: 'description',
dimensionKeys: ['dimensionKeys'],
entries: [{
connections: [{
period: 'period',
rate: 123,
}],
dimensions: {
dimensionsKey: 'dimensions',
},
requests: [{
period: 'period',
rate: 123,
}],
tokens: [{
period: 'period',
rate: 123,
}],
}],
gatewayIdentifier: 'gatewayIdentifier',
rateLimitId: 'rateLimitId',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | Optional human-readable description for this limit. |
| 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. |
| gateway | string | |
| rate | string | Limit identifier. |
description?
Type:
string
(optional)
Optional human-readable description for this limit.
dimensionKeys?
Type:
string[]
(optional)
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)[]
(optional)
Rule entries mapping dimension values to rate configurations.
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