Class: Aws::APIGateway::Types::ThrottleSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::ThrottleSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
The API request rate limits.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#burst_limit ⇒ Integer
The API target request burst rate limit.
-
#rate_limit ⇒ Float
The API target request rate limit.
Instance Attribute Details
#burst_limit ⇒ Integer
The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit.
5115 5116 5117 5118 5119 5120 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5115 class ThrottleSettings < Struct.new( :burst_limit, :rate_limit) SENSITIVE = [] include Aws::Structure end |
#rate_limit ⇒ Float
The API target request rate limit.
5115 5116 5117 5118 5119 5120 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5115 class ThrottleSettings < Struct.new( :burst_limit, :rate_limit) SENSITIVE = [] include Aws::Structure end |