Class: Aws::APIGateway::Types::QuotaSettings

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

Overview

Quotas configured for a usage plan.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

The target maximum number of requests that can be made in a given time period.

Returns:

  • (Integer)


4388
4389
4390
4391
4392
4393
4394
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4388

class QuotaSettings < Struct.new(
  :limit,
  :offset,
  :period)
  SENSITIVE = []
  include Aws::Structure
end

#offsetInteger

The number of requests subtracted from the given limit in the initial time period.

Returns:

  • (Integer)


4388
4389
4390
4391
4392
4393
4394
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4388

class QuotaSettings < Struct.new(
  :limit,
  :offset,
  :period)
  SENSITIVE = []
  include Aws::Structure
end

#periodString

The time period in which the limit applies. Valid values are "DAY", "WEEK" or "MONTH".

Returns:

  • (String)


4388
4389
4390
4391
4392
4393
4394
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4388

class QuotaSettings < Struct.new(
  :limit,
  :offset,
  :period)
  SENSITIVE = []
  include Aws::Structure
end