using System;
using System.Collections.Generic;
using System.Text;
namespace Amazon.Lambda.CloudWatchEvents.BatchEvents
{
///
/// https://docs.aws.amazon.com/batch/latest/userguide/batch_cwe_events.html
/// https://docs.aws.amazon.com/batch/latest/APIReference/API_JobDetail.html
/// https://docs.aws.amazon.com/batch/latest/APIReference/API_DescribeJobs.html
///
public class NodeProperties
{
///
/// Specifies the node index for the main node of a multi-node parallel job.
///
public int MainNode { get; set; }
///
/// A list of node ranges and their properties associated with a multi-node parallel job.
///
public List NodeRangeProperties { get; set; }
///
/// The number of nodes associated with a multi-node parallel job.
///
public int NumNodes { get; set; }
}
}