interface ThrottlingPerMethod
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.APIGateway.ThrottlingPerMethod | 
|  Java | software.amazon.awscdk.services.apigateway.ThrottlingPerMethod | 
|  Python | aws_cdk.aws_apigateway.ThrottlingPerMethod | 
|  TypeScript (source) | @aws-cdk/aws-apigateway»ThrottlingPerMethod | 
Represents per-method throttling for a resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apigateway from '@aws-cdk/aws-apigateway';
declare const method: apigateway.Method;
const throttlingPerMethod: apigateway.ThrottlingPerMethod = {
  method: method,
  throttle: {
    burstLimit: 123,
    rateLimit: 123,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| method | Method | [disable-awslint:ref-via-interface] The method for which you specify the throttling settings. | 
| throttle | Throttle | Specifies the overall request rate (average requests per second) and burst capacity. | 
method
Type:
Method
[disable-awslint:ref-via-interface] The method for which you specify the throttling settings.
throttle
Type:
Throttle
Specifies the overall request rate (average requests per second) and burst capacity.
