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.

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)


6858
6859
6860
6861
6862
# File 'lib/aws-sdk-apigateway/types.rb', line 6858

class ThrottleSettings < Struct.new(
  :burst_limit,
  :rate_limit)
  include Aws::Structure
end

#rate_limitFloat

The API request steady-state rate limit.

Returns:

  • (Float)


6858
6859
6860
6861
6862
# File 'lib/aws-sdk-apigateway/types.rb', line 6858

class ThrottleSettings < Struct.new(
  :burst_limit,
  :rate_limit)
  include Aws::Structure
end