NodegroupScalingConfig

data class NodegroupScalingConfig(val desiredSize: Int? = null, val maxSize: Int? = null, val minSize: Int? = null)

An object representing a auto scaling group specification for AWS EKS Nodegroup.

Constructors

Link copied to clipboard
constructor(desiredSize: Int? = null, maxSize: Int? = null, minSize: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val desiredSize: Int? = null

The current number of nodes that the managed node group should maintain.

Link copied to clipboard
val maxSize: Int? = null

The maximum number of nodes that the managed node group can scale out to. For information about the maximum number that you can specify, see Amazon EKS service quotas in the Amazon EKS User Guide .

Link copied to clipboard
val minSize: Int? = null

The minimum number of nodes that the managed node group can scale in to.