Class Period
Time period for which quota settings apply.
Inheritance
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public sealed class Period : Enum
Syntax (vb)
Public NotInheritable Class Period
Inherits
Enum
Remarks
ExampleMetadata: infused
Examples
RestApi api;
var key = new RateLimitedApiKey(this, "rate-limited-api-key", new RateLimitedApiKeyProps {
CustomerId = "hello-customer",
ApiStages = new [] { new UsagePlanPerApiStage { Stage = api.DeploymentStage } },
Quota = new QuotaSettings {
Limit = 10000,
Period = Period.MONTH
}
});
Synopsis
Fields
DAY | |
MONTH | |
value__ | |
WEEK |
Fields
DAY
MONTH
value__
public int value__
Field Value
Type | Description |
---|---|
System. |