interface RateConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayRateLimit.RateConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayRateLimit_RateConfigProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayRateLimit.RateConfigProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayRateLimit.RateConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayRateLimit » RateConfigProperty |
Rate configuration for a metric (requests or tokens).
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 rateConfigProperty: bedrockagentcore.CfnGatewayRateLimit.RateConfigProperty = {
period: 'period',
rate: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| period | string | Time period for rate limiting. |
| rate | number |
period
Type:
string
Time period for rate limiting.
rate
Type:
number

.NET
Go
Java
Python
TypeScript