Class: Aws::APIGateway::Types::ThrottleSettings

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#burst_limitInteger

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.

Returns:

  • (Integer)


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

#rate_limitFloat

The API request steady-state rate limit.

Returns:

  • (Float)


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