Class: Aws::APIGateway::Types::ThrottleSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::ThrottleSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass ThrottleSettings data as a hash:
{
burst_limit: 1,
rate_limit: 1.0,
}
The API request rate limits.
Instance Attribute Summary collapse
-
#burst_limit ⇒ Integer
The API request burst limit, the maximum rate limit over a time ranging from one to a few seconds, depending upon whether the underlying token bucket is at its full capacity.
-
#rate_limit ⇒ Float
The API request steady-state rate limit.
Instance Attribute Details
#burst_limit ⇒ Integer
The API request burst limit, the maximum rate limit over a time ranging from one to a few seconds, depending upon whether the underlying token bucket is at its full capacity.
5867 5868 5869 5870 5871 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5867 class ThrottleSettings < Struct.new( :burst_limit, :rate_limit) include Aws::Structure end |
#rate_limit ⇒ Float
The API request steady-state rate limit.
5867 5868 5869 5870 5871 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5867 class ThrottleSettings < Struct.new( :burst_limit, :rate_limit) include Aws::Structure end |