Package org.cdk8s.plus25.k8s
Interface ComponentCondition
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ComponentCondition.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.466Z") @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 classComponentCondition.BuilderA builder forComponentConditionstatic classComponentCondition.Jsii$ProxyAn implementation forComponentCondition
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static ComponentCondition.Builderbuilder()default StringgetError()Condition error code for a component.default StringgetMessage()Message about the condition for a component.StringgetStatus()Status of the condition for a component.StringgetType()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.BuilderofComponentCondition
-
-