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)


5406
5407
5408
5409
5410
5411
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 5406

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

#rate_limitFloat

The API target request rate limit.

Returns:

  • (Float)


5406
5407
5408
5409
5410
5411
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 5406

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