@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:41.420Z") @Stability(value=Experimental) public interface ThrottlingPerMethod extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigateway.*;
Method method;
ThrottlingPerMethod throttlingPerMethod = ThrottlingPerMethod.builder()
.method(method)
.throttle(ThrottleSettings.builder()
.burstLimit(123)
.rateLimit(123)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ThrottlingPerMethod.Builder
A builder for
ThrottlingPerMethod |
static class |
ThrottlingPerMethod.Jsii$Proxy
An implementation for
ThrottlingPerMethod |
| Modifier and Type | Method and Description |
|---|---|
static ThrottlingPerMethod.Builder |
builder() |
Method |
getMethod()
(experimental) [disable-awslint:ref-via-interface] The method for which you specify the throttling settings.
|
ThrottleSettings |
getThrottle()
(experimental) Specifies the overall request rate (average requests per second) and burst capacity.
|
@Stability(value=Experimental) @NotNull Method getMethod()
Default: none
@Stability(value=Experimental) @NotNull ThrottleSettings getThrottle()
Default: none
@Stability(value=Experimental) static ThrottlingPerMethod.Builder builder()
ThrottlingPerMethod.Builder of ThrottlingPerMethodCopyright © 2022. All rights reserved.