Package org.cdk8s.plus24.k8s
Interface LimitResponseV1Beta2
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LimitResponseV1Beta2.Jsii$Proxy
@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-11-24T11:18:28.974Z") @Stability(Stable) public interface LimitResponseV1Beta2 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 class
LimitResponseV1Beta2.Builder
A builder forLimitResponseV1Beta2
static class
LimitResponseV1Beta2.Jsii$Proxy
An implementation forLimitResponseV1Beta2
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static LimitResponseV1Beta2.Builder
builder()
default QueuingConfigurationV1Beta2
getQueuing()
`queuing` holds the configuration parameters for queuing.String
getType()
`type` is "Queue" or "Reject".
-
-
-
Method Detail
-
getType
@Stability(Stable) @NotNull String getType()
`type` is "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 QueuingConfigurationV1Beta2 getQueuing()
`queuing` holds the configuration parameters for queuing.This field may be non-empty only if
type
is"Queue"
.
-
builder
@Stability(Stable) static LimitResponseV1Beta2.Builder builder()
- Returns:
- a
LimitResponseV1Beta2.Builder
ofLimitResponseV1Beta2
-
-