Class CfnClusterPropsMixin.ClusterKubernetesTaintProperty
A Kubernetes taint that can be applied to cluster nodes.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnClusterPropsMixin.ClusterKubernetesTaintProperty : CfnClusterPropsMixin.IClusterKubernetesTaintProperty
Syntax (vb)
Public Class CfnClusterPropsMixin.ClusterKubernetesTaintProperty Implements CfnClusterPropsMixin.IClusterKubernetesTaintProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var clusterKubernetesTaintProperty = new ClusterKubernetesTaintProperty {
Effect = "effect",
Key = "key",
Value = "value"
};
Synopsis
Constructors
| ClusterKubernetesTaintProperty() | A Kubernetes taint that can be applied to cluster nodes. |
Properties
| Effect | The effect of the taint. |
| Key | The key of the taint. |
| Value | The value of the taint. |
Constructors
ClusterKubernetesTaintProperty()
A Kubernetes taint that can be applied to cluster nodes.
public ClusterKubernetesTaintProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var clusterKubernetesTaintProperty = new ClusterKubernetesTaintProperty {
Effect = "effect",
Key = "key",
Value = "value"
};
Properties
Effect
The effect of the taint.
public string? Effect { get; set; }
Property Value
Remarks
Valid values are NoSchedule , PreferNoSchedule , and NoExecute .
Key
The key of the taint.
public string? Key { get; set; }
Property Value
Remarks
Value
The value of the taint.
public string? Value { get; set; }