NodegroupScalingConfig

public struct NodegroupScalingConfig : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The current number of worker nodes that the managed node group should maintain.

    Declaration

    Swift

    public let desiredSize: Int?
  • The maximum number of worker nodes that the managed node group can scale out to. Managed node groups can support up to 100 nodes by default.

    Declaration

    Swift

    public let maxSize: Int?
  • The minimum number of worker nodes that the managed node group can scale in to. This number must be greater than zero.

    Declaration

    Swift

    public let minSize: Int?
  • Undocumented

    Declaration

    Swift

    public init(desiredSize: Int? = nil, maxSize: Int? = nil, minSize: Int? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws