Copyright | (c) 2013-2023 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Documentation
data NodegroupUpdateConfig Source #
The node group update configuration.
See: newNodegroupUpdateConfig
smart constructor.
NodegroupUpdateConfig' | |
|
Instances
newNodegroupUpdateConfig :: NodegroupUpdateConfig Source #
Create a value of NodegroupUpdateConfig
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:maxUnavailable:NodegroupUpdateConfig'
, nodegroupUpdateConfig_maxUnavailable
- The maximum number of nodes unavailable at once during a version update.
Nodes will be updated in parallel. This value or
maxUnavailablePercentage
is required to have a value.The maximum
number is 100.
$sel:maxUnavailablePercentage:NodegroupUpdateConfig'
, nodegroupUpdateConfig_maxUnavailablePercentage
- The maximum percentage of nodes unavailable during a version update.
This percentage of nodes will be updated in parallel, up to 100 nodes at
once. This value or maxUnavailable
is required to have a value.
nodegroupUpdateConfig_maxUnavailable :: Lens' NodegroupUpdateConfig (Maybe Natural) Source #
The maximum number of nodes unavailable at once during a version update.
Nodes will be updated in parallel. This value or
maxUnavailablePercentage
is required to have a value.The maximum
number is 100.
nodegroupUpdateConfig_maxUnavailablePercentage :: Lens' NodegroupUpdateConfig (Maybe Natural) Source #
The maximum percentage of nodes unavailable during a version update.
This percentage of nodes will be updated in parallel, up to 100 nodes at
once. This value or maxUnavailable
is required to have a value.