interface TaintSpec
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EKS.TaintSpec |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#TaintSpec |
Java | software.amazon.awscdk.services.eks.TaintSpec |
Python | aws_cdk.aws_eks.TaintSpec |
TypeScript (source) | aws-cdk-lib » 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 { aws_eks as eks } from 'aws-cdk-lib';
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.