Package org.cdk8s.plus28.k8s
Interface LimitResponseV1Beta3
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LimitResponseV1Beta3.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-03T12:13:25.816Z") @Stability(Stable) public interface LimitResponseV1Beta3 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 classLimitResponseV1Beta3.BuilderA builder forLimitResponseV1Beta3static classLimitResponseV1Beta3.Jsii$ProxyAn implementation forLimitResponseV1Beta3
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static LimitResponseV1Beta3.Builderbuilder()default QueuingConfigurationV1Beta3getQueuing()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 QueuingConfigurationV1Beta3 getQueuing()
queuingholds the configuration parameters for queuing.This field may be non-empty only if
typeis"Queue".
-
builder
@Stability(Stable) static LimitResponseV1Beta3.Builder builder()
- Returns:
- a
LimitResponseV1Beta3.BuilderofLimitResponseV1Beta3
-
-