interface TaintProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnNodegroupPropsMixin.TaintProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnNodegroupPropsMixin_TaintProperty |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnNodegroupPropsMixin.TaintProperty |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnNodegroupPropsMixin.TaintProperty |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnNodegroupPropsMixin » TaintProperty |
A property that allows a node to repel a Pod .
For more information, see Node taints on managed node groups in the Amazon EKS User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as eks_mixins } from '@aws-cdk/mixins-preview/aws-eks';
const taintProperty: eks_mixins.CfnNodegroupPropsMixin.TaintProperty = {
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.
key?
Type:
string
(optional)
The key of the taint.
value?
Type:
string
(optional)
The value of the taint.

.NET
Go
Java
Python
TypeScript