interface RateConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayRateLimitPropsMixin.RateConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayRateLimitPropsMixin_RateConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayRateLimitPropsMixin.RateConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayRateLimitPropsMixin.RateConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayRateLimitPropsMixin » 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/cfn-property-mixins';
const rateConfigProperty: bedrockagentcore.CfnGatewayRateLimitPropsMixin.RateConfigProperty = {
period: 'period',
rate: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| period? | string | Time period for rate limiting. |
| rate? | number |
period?
Type:
string
(optional)
Time period for rate limiting.
rate?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript