interface TaintSpec
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.TaintSpec |
Java | software.amazon.awscdk.services.eks.TaintSpec |
Python | aws_cdk.aws_eks.TaintSpec |
TypeScript (source) | @aws-cdk/aws-eks » TaintSpec |
Taint interface.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as eks from '@aws-cdk/aws-eks';
const taintSpec: eks.TaintSpec = {
effect: eks.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
Java
Python
TypeScript (