Package org.cdk8s.plus25.k8s
Interface LimitResponseV1Beta1
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LimitResponseV1Beta1.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.730Z") @Stability(Stable) public interface LimitResponseV1Beta1 extends software.amazon.jsii.JsiiSerializable
LimitResponse defines how to handle requests that can not be executed right now.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classLimitResponseV1Beta1.BuilderA builder forLimitResponseV1Beta1static classLimitResponseV1Beta1.Jsii$ProxyAn implementation forLimitResponseV1Beta1
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static LimitResponseV1Beta1.Builderbuilder()default QueuingConfigurationV1Beta1getQueuing()queuingholds the configuration parameters for queuing.StringgetType()typeis "Queue" or "Reject".
-
-
-
Method Detail
-
getType
@Stability(Stable) @NotNull String getType()
typeis "Queue" or "Reject"."Queue" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. "Reject" means that requests that can not be executed upon arrival are rejected. Required.
-
getQueuing
@Stability(Stable) @Nullable default QueuingConfigurationV1Beta1 getQueuing()
queuingholds the configuration parameters for queuing.This field may be non-empty only if
typeis"Queue".
-
builder
@Stability(Stable) static LimitResponseV1Beta1.Builder builder()
- Returns:
- a
LimitResponseV1Beta1.BuilderofLimitResponseV1Beta1
-
-