using System.Collections.Generic;
namespace Amazon.Lambda.CloudWatchEvents.BatchEvents
{
///
/// An object representing the array properties of a job.
/// https://docs.aws.amazon.com/batch/latest/APIReference/API_ArrayPropertiesDetail.html
///
public class ArrayPropertiesDetail
{
///
/// The job index within the array that is associated with this job.
/// This parameter is returned for array job children.
///
public int Index { get; set; }
///
/// The size of the array job. This parameter is returned for parent array jobs.
///
public int Size { get; set; }
///
/// A summary of the number of array job children in each available job status.
/// This parameter is returned for parent array jobs.
///
public Dictionary StatusSummary { get; set; }
}
}