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.
-
#ecs_properties_override ⇒ Types::EcsPropertiesOverride
An object that contains the properties that you want to replace for the existing Amazon ECS resources of a job.
-
#eks_properties_override ⇒ Types::EksPropertiesOverride
An object that contains the properties that you want to replace for the existing Amazon EKS resources of a job.
-
#instance_types ⇒ Array<String>
An object that contains the instance types that you want to replace for the existing resources of a job.
-
#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.
6363 6364 6365 6366 6367 6368 6369 6370 6371 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6363 class NodePropertyOverride < Struct.new( :target_nodes, :container_overrides, :ecs_properties_override, :instance_types, :eks_properties_override) SENSITIVE = [] include Aws::Structure end |
#ecs_properties_override ⇒ Types::EcsPropertiesOverride
An object that contains the properties that you want to replace for the existing Amazon ECS resources of a job.
6363 6364 6365 6366 6367 6368 6369 6370 6371 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6363 class NodePropertyOverride < Struct.new( :target_nodes, :container_overrides, :ecs_properties_override, :instance_types, :eks_properties_override) SENSITIVE = [] include Aws::Structure end |
#eks_properties_override ⇒ Types::EksPropertiesOverride
An object that contains the properties that you want to replace for the existing Amazon EKS resources of a job.
6363 6364 6365 6366 6367 6368 6369 6370 6371 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6363 class NodePropertyOverride < Struct.new( :target_nodes, :container_overrides, :ecs_properties_override, :instance_types, :eks_properties_override) SENSITIVE = [] include Aws::Structure end |
#instance_types ⇒ Array<String>
An object that contains the instance types that you want to replace for the existing resources of a job.
6363 6364 6365 6366 6367 6368 6369 6370 6371 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6363 class NodePropertyOverride < Struct.new( :target_nodes, :container_overrides, :ecs_properties_override, :instance_types, :eks_properties_override) 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.
6363 6364 6365 6366 6367 6368 6369 6370 6371 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6363 class NodePropertyOverride < Struct.new( :target_nodes, :container_overrides, :ecs_properties_override, :instance_types, :eks_properties_override) SENSITIVE = [] include Aws::Structure end |