Class: Aws::EventBridge::Types::BatchArrayProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::BatchArrayProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/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.
200 201 202 203 204 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 200 class BatchArrayProperties < Struct.new( :size) SENSITIVE = [] include Aws::Structure end |