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