Interface TaintSpec
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TaintSpec.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:01.503Z")
@Stability(Stable)
public interface TaintSpec
extends software.amazon.jsii.JsiiSerializable
Taint interface.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.eks.*; TaintSpec taintSpec = TaintSpec.builder() .effect(TaintEffect.NO_SCHEDULE) .key("key") .value("value") .build();
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic TaintSpec.Builder
builder()
default TaintEffect
Effect type.default String
getKey()
Taint key.default String
getValue()
Taint value.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEffect
Effect type.Default: - None
-
getKey
Taint key.Default: - None
-
getValue
Taint value.Default: - None
-
builder
- Returns:
- a
TaintSpec.Builder
ofTaintSpec
-