Interface CfnCluster.ClusterKubernetesTaintProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.ClusterKubernetesTaintProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.ClusterKubernetesTaintProperty
extends software.amazon.jsii.JsiiSerializable
A Kubernetes taint that can be applied to cluster nodes.
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.sagemaker.*;
ClusterKubernetesTaintProperty clusterKubernetesTaintProperty = ClusterKubernetesTaintProperty.builder()
.effect("effect")
.key("key")
// the properties below are optional
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.ClusterKubernetesTaintPropertystatic final classAn implementation forCfnCluster.ClusterKubernetesTaintProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEffect
The effect of the taint.Valid values are
NoSchedule,PreferNoSchedule, andNoExecute.- See Also:
-
getKey
The key of the taint.- See Also:
-
getValue
The value of the taint.- See Also:
-
builder
-