interface HorizontalPodAutoscalerControllerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCluster.HorizontalPodAutoscalerControllerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCluster_HorizontalPodAutoscalerControllerConfigProperty |
Java | software.amazon.awscdk.services.eks.CfnCluster.HorizontalPodAutoscalerControllerConfigProperty |
Python | aws_cdk.aws_eks.CfnCluster.HorizontalPodAutoscalerControllerConfigProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCluster » HorizontalPodAutoscalerControllerConfigProperty |
The horizontal pod autoscaler 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-lib';
const horizontalPodAutoscalerControllerConfigProperty: eks.CfnCluster.HorizontalPodAutoscalerControllerConfigProperty = {
horizontalPodAutoscalerSyncPeriod: 'horizontalPodAutoscalerSyncPeriod',
};
Properties
| Name | Type | Description |
|---|---|---|
| horizontal | string | The interval between each sync of the horizontal pod autoscaler (e.g., 15s, 1m). |
horizontalPodAutoscalerSyncPeriod?
Type:
string
(optional)
The interval between each sync of the horizontal pod autoscaler (e.g., 15s, 1m).

.NET
Go
Java
Python
TypeScript