Class CfnClusterPropsMixin.PodGcControllerConfigProperty
The pod garbage collector controller configuration.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.EKS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnClusterPropsMixin.PodGcControllerConfigProperty : CfnClusterPropsMixin.IPodGcControllerConfigProperty
Syntax (vb)
Public Class CfnClusterPropsMixin.PodGcControllerConfigProperty Implements CfnClusterPropsMixin.IPodGcControllerConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.EKS;
var podGcControllerConfigProperty = new PodGcControllerConfigProperty {
TerminatedPodGcThreshold = 123
};
Synopsis
Constructors
| PodGcControllerConfigProperty() | The pod garbage collector controller configuration. |
Properties
| TerminatedPodGcThreshold | The number of terminated pods that can exist before the terminated pod garbage collector starts deleting them. |
Constructors
PodGcControllerConfigProperty()
The pod garbage collector controller configuration.
public PodGcControllerConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.EKS;
var podGcControllerConfigProperty = new PodGcControllerConfigProperty {
TerminatedPodGcThreshold = 123
};
Properties
TerminatedPodGcThreshold
The number of terminated pods that can exist before the terminated pod garbage collector starts deleting them.
public double? TerminatedPodGcThreshold { get; set; }