Class: Aws::CloudWatchEvents::Types::BatchArrayProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchEvents::Types::BatchArrayProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchevents/types.rb
Overview
The array properties for the submitted job, such as the size of the array. The array size can be between 2 and 10,000. If you specify array properties for a job, it becomes an array job. This parameter is used only if the target is an Batch job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#size ⇒ Integer
The size of the array, if this is an array batch job.
Instance Attribute Details
#size ⇒ Integer
The size of the array, if this is an array batch job. Valid values are integers between 2 and 10,000.
177 178 179 180 181 |
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 177 class BatchArrayProperties < Struct.new( :size) SENSITIVE = [] include Aws::Structure end |