Class: Aws::APIGateway::Types::QuotaSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::QuotaSettings
- 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
-
#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.
4575 4576 4577 4578 4579 4580 4581 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4575 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.
4575 4576 4577 4578 4579 4580 4581 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4575 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".
4575 4576 4577 4578 4579 4580 4581 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4575 class QuotaSettings < Struct.new( :limit, :offset, :period) SENSITIVE = [] include Aws::Structure end |