Class: Aws::APIGateway::Types::QuotaSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::QuotaSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Quotas configured for a usage plan.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The target maximum number of requests that can be made in a given time period.
-
#offset ⇒ Integer
The number of requests subtracted from the given limit in the initial time period.
-
#period ⇒ String
The time period in which the limit applies.
Instance Attribute Details
#limit ⇒ Integer
The target maximum number of requests that can be made in a given time period.
4388 4389 4390 4391 4392 4393 4394 |
# File 'lib/aws-sdk-apigateway/types.rb', line 4388 class QuotaSettings < Struct.new( :limit, :offset, :period) SENSITIVE = [] include Aws::Structure end |
#offset ⇒ Integer
The number of requests subtracted from the given limit in the initial time period.
4388 4389 4390 4391 4392 4393 4394 |
# File 'lib/aws-sdk-apigateway/types.rb', line 4388 class QuotaSettings < Struct.new( :limit, :offset, :period) SENSITIVE = [] include Aws::Structure end |
#period ⇒ String
The time period in which the limit applies. Valid values are “DAY”, “WEEK” or “MONTH”.
4388 4389 4390 4391 4392 4393 4394 |
# File 'lib/aws-sdk-apigateway/types.rb', line 4388 class QuotaSettings < Struct.new( :limit, :offset, :period) SENSITIVE = [] include Aws::Structure end |