Class: Aws::Batch::Types::Ulimit

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-batch/types.rb

Overview

The ‘ulimit` settings to pass to the container. For more information, see [Ulimit].

<note markdown=“1”> This object isn’t applicable to jobs that are running on Fargate resources.

</note>

[1]: docs.aws.amazon.com/AmazonECS/latest/APIReference/API_Ulimit.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hard_limitInteger

The hard limit for the ‘ulimit` type.

Returns:

  • (Integer)


8106
8107
8108
8109
8110
8111
8112
# File 'lib/aws-sdk-batch/types.rb', line 8106

class Ulimit < Struct.new(
  :hard_limit,
  :name,
  :soft_limit)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The ‘type` of the `ulimit`. Valid values are: `core` | `cpu` | `data` | `fsize` | `locks` | `memlock` | `msgqueue` | `nice` | `nofile` | `nproc` | `rss` | `rtprio` | `rttime` | `sigpending` | `stack`.

Returns:

  • (String)


8106
8107
8108
8109
8110
8111
8112
# File 'lib/aws-sdk-batch/types.rb', line 8106

class Ulimit < Struct.new(
  :hard_limit,
  :name,
  :soft_limit)
  SENSITIVE = []
  include Aws::Structure
end

#soft_limitInteger

The soft limit for the ‘ulimit` type.

Returns:

  • (Integer)


8106
8107
8108
8109
8110
8111
8112
# File 'lib/aws-sdk-batch/types.rb', line 8106

class Ulimit < Struct.new(
  :hard_limit,
  :name,
  :soft_limit)
  SENSITIVE = []
  include Aws::Structure
end