namespace Amazon.Lambda.CloudWatchEvents.BatchEvents
{
///
/// The ulimit settings to pass to the container.
/// https://docs.aws.amazon.com/batch/latest/APIReference/API_Ulimit.html
///
public class Ulimit
{
///
/// The hard limit for the ulimit type.
///
public int HardLimit { get; set; }
///
/// The type of the ulimit.
///
public string Name { get; set; }
///
/// The soft limit for the ulimit type.
///
public int SoftLimit { get; set; }
}
}