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 NodeDetails
{
///
/// Specifies whether the current node is the main node for a multi-node parallel job.
///
public bool IsMainNode { get; set; }
///
/// The node index for the node. Node index numbering begins at zero. This index is also
/// available on the node with the AWS_BATCH_JOB_NODE_INDEX environment variable.
///
public int NodeIndex { get; set; }
}
}