Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Documentation
data NodePropertyOverride Source #
Object representing any node overrides to a job definition that's used in a SubmitJob API operation.
See: newNodePropertyOverride
smart constructor.
NodePropertyOverride' | |
|
Instances
newNodePropertyOverride Source #
Create a value of NodePropertyOverride
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:containerOverrides:NodePropertyOverride'
, nodePropertyOverride_containerOverrides
- The overrides that should be sent to a node range.
$sel:targetNodes:NodePropertyOverride'
, nodePropertyOverride_targetNodes
- The range of nodes, using node index values, that's used to override. A
range of 0:3
indicates nodes with index values of 0
through 3
. If
the starting range value is omitted (:n
), then 0
is used to start
the range. If the ending range value is omitted (n:
), then the highest
possible node index is used to end the range.
nodePropertyOverride_containerOverrides :: Lens' NodePropertyOverride (Maybe ContainerOverrides) Source #
The overrides that should be sent to a node range.
nodePropertyOverride_targetNodes :: Lens' NodePropertyOverride Text Source #
The range of nodes, using node index values, that's used to override. A
range of 0:3
indicates nodes with index values of 0
through 3
. If
the starting range value is omitted (:n
), then 0
is used to start
the range. If the ending range value is omitted (n:
), then the highest
possible node index is used to end the range.