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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb

Overview

The API request rate limits.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#burst_limitInteger

The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit.

Returns:

  • (Integer)


5115
5116
5117
5118
5119
5120
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 5115

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

#rate_limitFloat

The API target request rate limit.

Returns:

  • (Float)


5115
5116
5117
5118
5119
5120
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 5115

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