Class: Aws::Batch::Types::ArrayPropertiesSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::ArrayPropertiesSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-batch/types.rb
Overview
An object that represents the array properties of a job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#index ⇒ Integer
The job index within the array that’s associated with this job.
-
#size ⇒ Integer
The size of the array job.
Instance Attribute Details
#index ⇒ Integer
The job index within the array that’s associated with this job. This parameter is returned for children of array jobs.
68 69 70 71 72 73 |
# File 'lib/aws-sdk-batch/types.rb', line 68 class ArrayPropertiesSummary < Struct.new( :size, :index) SENSITIVE = [] include Aws::Structure end |
#size ⇒ Integer
The size of the array job. This parameter is returned for parent array jobs.
68 69 70 71 72 73 |
# File 'lib/aws-sdk-batch/types.rb', line 68 class ArrayPropertiesSummary < Struct.new( :size, :index) SENSITIVE = [] include Aws::Structure end |