interface TaintProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EKS.CfnNodegroupPropsMixin.TaintProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseks#CfnNodegroupPropsMixin_TaintProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.eks.CfnNodegroupPropsMixin.TaintProperty |
Python | aws_cdk.cfn_property_mixins.aws_eks.CfnNodegroupPropsMixin.TaintProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eks » 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 { aws_eks as eks } from '@aws-cdk/cfn-property-mixins';
const taintProperty: eks.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