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 NodeOverrides Source #
Object representing any node overrides to a job definition that's used in a SubmitJob API operation.
This isn't applicable to jobs that are running on Fargate resources and
shouldn't be provided; use containerOverrides
instead.
See: newNodeOverrides
smart constructor.
NodeOverrides' | |
|
Instances
newNodeOverrides :: NodeOverrides Source #
Create a value of NodeOverrides
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:numNodes:NodeOverrides'
, nodeOverrides_numNodes
- The number of nodes to use with a multi-node parallel job. This value
overrides the number of nodes that are specified in the job definition.
To use this override:
- There must be at least one node range in your job definition that
has an open upper boundary (such as
:
orn:
). - The lower boundary of the node range specified in the job definition must be fewer than the number of nodes specified in the override.
- The main node index specified in the job definition must be fewer than the number of nodes specified in the override.
$sel:nodePropertyOverrides:NodeOverrides'
, nodeOverrides_nodePropertyOverrides
- The node property overrides for the job.
nodeOverrides_numNodes :: Lens' NodeOverrides (Maybe Int) Source #
The number of nodes to use with a multi-node parallel job. This value overrides the number of nodes that are specified in the job definition. To use this override:
- There must be at least one node range in your job definition that
has an open upper boundary (such as
:
orn:
). - The lower boundary of the node range specified in the job definition must be fewer than the number of nodes specified in the override.
- The main node index specified in the job definition must be fewer than the number of nodes specified in the override.
nodeOverrides_nodePropertyOverrides :: Lens' NodeOverrides (Maybe [NodePropertyOverride]) Source #
The node property overrides for the job.