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.
Constant Summary collapse
- SENSITIVE =
[]
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
permalink #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.
7150 7151 7152 7153 7154 7155 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7150 class ThrottleSettings < Struct.new( :burst_limit, :rate_limit) SENSITIVE = [] include Aws::Structure end |
permalink #rate_limit ⇒ Float
The API request steady-state rate limit.
7150 7151 7152 7153 7154 7155 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7150 class ThrottleSettings < Struct.new( :burst_limit, :rate_limit) SENSITIVE = [] include Aws::Structure end |