Table of Contents

Interface CfnUsagePlan.IThrottleSettingsProperty

Namespace
Amazon.CDK.AWS.APIGateway
Assembly
Amazon.CDK.AWS.APIGateway.dll

ThrottleSettings is a property of the AWS::ApiGateway::UsagePlan resource that specifies the overall request rate (average requests per second) and burst capacity when users call your REST APIs.

public interface CfnUsagePlan.IThrottleSettingsProperty

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.APIGateway;

             var throttleSettingsProperty = new ThrottleSettingsProperty {
                 BurstLimit = 123,
                 RateLimit = 123
             };

Remarks

Properties

BurstLimit

The API target request burst rate limit.

double? BurstLimit { get; }

Property Value

double?

Remarks

RateLimit

The API target request rate limit.

double? RateLimit { get; }

Property Value

double?

Remarks