Show / Hide Table of Contents

Class CfnClusterPropsMixin.ClusterKubernetesTaintProperty

A Kubernetes taint that can be applied to cluster nodes.

Inheritance
object
CfnClusterPropsMixin.ClusterKubernetesTaintProperty
Implements
CfnClusterPropsMixin.IClusterKubernetesTaintProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetestaint.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetestaint.html

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

string

Remarks

Valid values are NoSchedule , PreferNoSchedule , and NoExecute .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetestaint.html#cfn-sagemaker-cluster-clusterkubernetestaint-effect

Key

The key of the taint.

public string? Key { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetestaint.html#cfn-sagemaker-cluster-clusterkubernetestaint-key

Value

The value of the taint.

public string? Value { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetestaint.html#cfn-sagemaker-cluster-clusterkubernetestaint-value

Implements

CfnClusterPropsMixin.IClusterKubernetesTaintProperty
Back to top Generated by DocFX