interface TaintSpec
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKSv2.TaintSpec |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseksv2#TaintSpec |
Java | software.amazon.awscdk.services.eks_v2.TaintSpec |
Python | aws_cdk.aws_eks_v2.TaintSpec |
TypeScript (source) | aws-cdk-lib » aws_eks_v2 » TaintSpec |
Taint interface.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks_v2 as eks_v2 } from 'aws-cdk-lib';
const taintSpec: eks_v2.TaintSpec = {
effect: eks_v2.TaintEffect.NO_SCHEDULE,
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| effect? | Taint | Effect type. |
| key? | string | Taint key. |
| value? | string | Taint value. |
effect?
Type:
Taint
(optional, default: None)
Effect type.
key?
Type:
string
(optional, default: None)
Taint key.
value?
Type:
string
(optional, default: None)
Taint value.

.NET
Go
Java
Python
TypeScript (