interface PodGcControllerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKSv2.CfnCluster.PodGcControllerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseksv2#CfnCluster_PodGcControllerConfigProperty |
Java | software.amazon.awscdk.services.eks_v2.CfnCluster.PodGcControllerConfigProperty |
Python | aws_cdk.aws_eks_v2.CfnCluster.PodGcControllerConfigProperty |
TypeScript | aws-cdk-lib » aws_eks_v2 » CfnCluster » PodGcControllerConfigProperty |
The pod garbage collector controller configuration.
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 podGcControllerConfigProperty: eks_v2.CfnCluster.PodGcControllerConfigProperty = {
terminatedPodGcThreshold: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| terminated | number | The number of terminated pods that can exist before the terminated pod garbage collector starts deleting them. |
terminatedPodGcThreshold?
Type:
number
(optional)
The number of terminated pods that can exist before the terminated pod garbage collector starts deleting them.

.NET
Go
Java
Python
TypeScript