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: