@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.961Z") @Stability(value=Stable) public interface TaintSpec extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
TaintSpec.Builder
A builder for
TaintSpec |
static class |
TaintSpec.Jsii$Proxy
An implementation for
TaintSpec |
| Modifier and Type | Method and Description |
|---|---|
static TaintSpec.Builder |
builder() |
default TaintEffect |
getEffect()
Effect type.
|
default String |
getKey()
Taint key.
|
default String |
getValue()
Taint value.
|
@Stability(value=Stable) @Nullable default TaintEffect getEffect()
Default: - None
@Stability(value=Stable) @Nullable default String getKey()
Default: - None
@Stability(value=Stable) @Nullable default String getValue()
Default: - None
@Stability(value=Stable) static TaintSpec.Builder builder()
TaintSpec.Builder of TaintSpecCopyright © 2022. All rights reserved.