Enum UlimitName

java.lang.Object
java.lang.Enum<UlimitName>
software.amazon.awscdk.services.batch.UlimitName
All Implemented Interfaces:
Serializable, Comparable<UlimitName>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-08-02T00:29:07.250Z") @Stability(Stable) public enum UlimitName extends Enum<UlimitName>
The resources to be limited.
  • Enum Constant Details

    • CORE

      @Stability(Stable) public static final UlimitName CORE
      max core dump file size.
    • CPU

      @Stability(Stable) public static final UlimitName CPU
      max cpu time (seconds) for a process.
    • DATA

      @Stability(Stable) public static final UlimitName DATA
      max data segment size.
    • FSIZE

      @Stability(Stable) public static final UlimitName FSIZE
      max file size.
    • LOCKS

      @Stability(Stable) public static final UlimitName LOCKS
      max number of file locks.
    • MEMLOCK

      @Stability(Stable) public static final UlimitName MEMLOCK
      max locked memory.
    • MSGQUEUE

      @Stability(Stable) public static final UlimitName MSGQUEUE
      max POSIX message queue size.
    • NICE

      @Stability(Stable) public static final UlimitName NICE
      max nice value for any process this user is running.
    • NOFILE

      @Stability(Stable) public static final UlimitName NOFILE
      maximum number of open file descriptors.
    • NPROC

      @Stability(Stable) public static final UlimitName NPROC
      maximum number of processes.
    • RSS

      @Stability(Stable) public static final UlimitName RSS
      size of the process' resident set (in pages).
    • RTPRIO

      @Stability(Stable) public static final UlimitName RTPRIO
      max realtime priority.
    • RTTIME

      @Stability(Stable) public static final UlimitName RTTIME
      timeout for realtime tasks.
    • SIGPENDING

      @Stability(Stable) public static final UlimitName SIGPENDING
      max number of pending signals.
    • STACK

      @Stability(Stable) public static final UlimitName STACK
      max stack size (in bytes).
  • Method Details

    • values

      public static UlimitName[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static UlimitName valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null