Class: Aws::Batch::Types::NodePropertyOverride
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::NodePropertyOverride
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
The object that represents any node overrides to a job definition that's used in a SubmitJob API operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_overrides ⇒ Types::ContainerOverrides
The overrides that are sent to a node range.
-
#target_nodes ⇒ String
The range of nodes, using node index values, that's used to override.
Instance Attribute Details
#container_overrides ⇒ Types::ContainerOverrides
The overrides that are sent to a node range.
5322 5323 5324 5325 5326 5327 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5322 class NodePropertyOverride < Struct.new( :target_nodes, :container_overrides) SENSITIVE = [] include Aws::Structure end |
#target_nodes ⇒ String
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.
5322 5323 5324 5325 5326 5327 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5322 class NodePropertyOverride < Struct.new( :target_nodes, :container_overrides) SENSITIVE = [] include Aws::Structure end |