Package org.cdk8s.plus24.k8s
Interface ComponentCondition
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ComponentCondition.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-28T00:25:43.891Z") @Stability(Stable) public interface ComponentCondition extends software.amazon.jsii.JsiiSerializable
Information about the condition of a component.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ComponentCondition.Builder
A builder forComponentCondition
static class
ComponentCondition.Jsii$Proxy
An implementation forComponentCondition
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static ComponentCondition.Builder
builder()
default String
getError()
Condition error code for a component.default String
getMessage()
Message about the condition for a component.String
getStatus()
Status of the condition for a component.String
getType()
Type of condition for a component.
-
-
-
Method Detail
-
getStatus
@Stability(Stable) @NotNull String getStatus()
Status of the condition for a component.Valid values for "Healthy": "True", "False", or "Unknown".
-
getType
@Stability(Stable) @NotNull String getType()
Type of condition for a component.Valid value: "Healthy"
-
getError
@Stability(Stable) @Nullable default String getError()
Condition error code for a component.For example, a health check error code.
-
getMessage
@Stability(Stable) @Nullable default String getMessage()
Message about the condition for a component.For example, information about a health check.
-
builder
@Stability(Stable) static ComponentCondition.Builder builder()
- Returns:
- a
ComponentCondition.Builder
ofComponentCondition
-
-