interface ClusterKubernetesTaintProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnClusterPropsMixin.ClusterKubernetesTaintProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnClusterPropsMixin_ClusterKubernetesTaintProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnClusterPropsMixin.ClusterKubernetesTaintProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnClusterPropsMixin.ClusterKubernetesTaintProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnClusterPropsMixin » ClusterKubernetesTaintProperty |
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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const clusterKubernetesTaintProperty: sagemaker_mixins.CfnClusterPropsMixin.ClusterKubernetesTaintProperty = {
effect: 'effect',
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| effect? | string | The effect of the taint. |
| key? | string | The key of the taint. |
| value? | string | The value of the taint. |
effect?
Type:
string
(optional)
The effect of the taint.
Valid values are NoSchedule , PreferNoSchedule , and NoExecute .
key?
Type:
string
(optional)
The key of the taint.
value?
Type:
string
(optional)
The value of the taint.

.NET
Go
Java
Python
TypeScript